]> git.karo-electronics.de Git - karo-tx-linux.git/commit
raid5: make release_stripe lockless
authorShaohua Li <shli@kernel.org>
Wed, 24 Apr 2013 01:42:43 +0000 (11:42 +1000)
committerNeilBrown <neilb@suse.de>
Thu, 13 Jun 2013 22:10:28 +0000 (08:10 +1000)
commit52c6ede6919c47bdf04ebacd1d1ef94ed00859be
tree2dc3b0d6f629dd75abf486a9d69172630e21def3
parent913d740a506f4223bd3d4c185224cbc740ff59e9
raid5: make release_stripe lockless

release_stripe still has big lock contention. We just add the stripe to a llist
without taking device_lock. We let the raid5d thread to do the real stripe
release, which must hold device_lock anyway. In this way, release_stripe
doesn't hold any locks.

The side effect is the released stripes order is changed. But sounds not a big
deal, stripes are never handled in order. And I thought block layer can already
do nice request merge, which means order isn't that important.

I kept the unplug release batch, which is unnecessary with this patch from lock
contention avoid point of view, and actually if we delete it, the stripe_head
release_list and lru can share storage. But the unplug release batch is also
helpful for request merge. We probably can delay wakeup raid5d till unplug, but
I'm still afraid of the case which raid5d is running.

Signed-off-by: Shaohua Li <shli@fusionio.com>
Signed-off-by: NeilBrown <neilb@suse.de>
drivers/md/raid5.c
drivers/md/raid5.h