]> git.karo-electronics.de Git - karo-tx-linux.git/commit
md/bitmap: use set_bit, test_bit, etc for operation on bitmap->flags.
authorNeilBrown <neilb@suse.de>
Tue, 22 May 2012 03:55:15 +0000 (13:55 +1000)
committerNeilBrown <neilb@suse.de>
Tue, 22 May 2012 03:55:15 +0000 (13:55 +1000)
commitb405fe91e50c60c80e72d798025aea4917096421
treebc0b8dc67e7bc7897c6299d4bc80e42a7842e7fe
parent84e923453e19d6427c6aa884d9561f01e1425d09
md/bitmap: use set_bit, test_bit, etc for operation on bitmap->flags.

We currently use '&' and '|' which isn't the norm in the kernel
and doesn't allow easy atomicity.
So change to bit numbers and {set,clear,test}_bit.
This allows us to remove a spinlock/unlock (which was dubious anyway)
and some other simplifications.

Signed-off-by: NeilBrown <neilb@suse.de>
drivers/md/bitmap.c
drivers/md/bitmap.h