]> git.karo-electronics.de Git - karo-tx-linux.git/commit
bcache: Rework btree cache reserve handling
authorKent Overstreet <kmo@daterainc.com>
Tue, 18 Mar 2014 00:15:53 +0000 (17:15 -0700)
committerKent Overstreet <kmo@daterainc.com>
Tue, 18 Mar 2014 19:23:35 +0000 (12:23 -0700)
commit0a63b66db566cffdf90182eb6e66fdd4d0479e63
treed1284e5008b668befb8179de30aeb50d4e789177
parent56b30770b27d54d68ad51eccc6d888282b568cee
bcache: Rework btree cache reserve handling

This changes the bucket allocation reserves to use _real_ reserves - separate
freelists - instead of watermarks, which if nothing else makes the current code
saner to reason about and is going to be important in the future when we add
support for multiple btrees.

It also adds btree_check_reserve(), which checks (and locks) the reserves for
both bucket allocation and memory allocation for btree nodes; the old code just
kinda sorta assumed that since (e.g. for btree node splits) it had the root
locked and that meant no other threads could try to make use of the same
reserve; this technically should have been ok for memory allocation (we should
always have a reserve for memory allocation (the btree node cache is used as a
reserve and we preallocate it)), but multiple btrees will mean that locking the
root won't be sufficient anymore, and for the bucket allocation reserve it was
technically possible for the old code to deadlock.

Signed-off-by: Kent Overstreet <kmo@daterainc.com>
drivers/md/bcache/alloc.c
drivers/md/bcache/bcache.h
drivers/md/bcache/btree.c
drivers/md/bcache/btree.h
drivers/md/bcache/super.c
drivers/md/bcache/sysfs.c