]> asedeno.scripts.mit.edu Git - linux.git/commit
sbitmap: don't update the allocation hint on clear after resize
authorOmar Sandoval <osandov@fb.com>
Sat, 17 Sep 2016 19:20:54 +0000 (12:20 -0700)
committerJens Axboe <axboe@fb.com>
Sat, 17 Sep 2016 19:39:06 +0000 (13:39 -0600)
commit5c64a8df0ca88c79c9cb74674c2481e5f7ede511
treea10aa8ab518921ee8f16511076a15ff2b64e52ec
parent05fd095d53b979878f016c3a7080d3683cc89d72
sbitmap: don't update the allocation hint on clear after resize

If we have a bunch of high-numbered bits allocated and then we resize
the struct sbitmap_queue, when those bits get cleared, we'll update the
hint and then have to re-randomize it repeatedly. Avoid that by checking
that the cleared bit is still a valid hint. No measurable performance
difference in the common case.

Signed-off-by: Omar Sandoval <osandov@fb.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
lib/sbitmap.c