smalloc: limit to 1 pool, and bump size to 16MB
authorJens Axboe <axboe@fb.com>
Wed, 14 Jan 2015 04:35:31 +0000 (21:35 -0700)
committerJens Axboe <axboe@fb.com>
Wed, 14 Jan 2015 04:35:31 +0000 (21:35 -0700)
commit23bd40f944b7b5adb776d92cf614107be2a56445
tree0b8bc8a478e2a2ccdf8a8a2130bfaa4a124f81ac
parentaded30f74e21498ecad5656c05ec8d41d6fb2e65
smalloc: limit to 1 pool, and bump size to 16MB

We can easily add new pools, but if we do this after jobs have been
forked off, then it wont really be shared storage as the new mmap
mappings will only apply to the process that instantiated them.
Since we moved the randommap mappings to private storage, we should
not need a lot of room for shared allocations. Hence I hope the 16MB
will suffice.

Signed-off-by: Jens Axboe <axboe@fb.com>
smalloc.c