]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
md/raid5: add missing call to schedule() after prepare_to_wait()
authorDan Williams <dan.j.williams@intel.com>
Tue, 16 Jun 2009 23:00:33 +0000 (16:00 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 2 Jul 2009 23:31:53 +0000 (16:31 -0700)
commitd571e2bcf7b4f0cf8da41fed61d95c4c1b247d40
tree7bc856151191c863a28ee68ab3d3e050013659b3
parentda4dec0d172d4a7e27d9530b5dd0c959d3af0a6f
md/raid5: add missing call to schedule() after prepare_to_wait()

commit 7a3ab908948b6296ee7e81d42f7c176361c51975 upstream.

In the unlikely event that reshape progresses past the current request
while it is waiting for a stripe we need to schedule() before retrying
for 2 reasons:
1/ Prevent list corruption from duplicated list_add() calls without
   intervening list_del().
2/ Give the reshape code a chance to make some progress to resolve the
   conflict.

Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/md/raid5.c