diff options
author | Ofer Heifetz <oferh@marvell.com> | 2017-07-24 09:17:40 +0300 |
---|---|---|
committer | Shaohua Li <shli@fb.com> | 2017-07-24 17:49:15 +0300 |
commit | 7e96d559634b73a8158ee99a7abece2eacec2668 (patch) | |
tree | f99f2d4f7b1475f420bf5652c87e06179c47ccdd /drivers/md/raid5.c | |
parent | 6308d8e3d42bea15461c696df1ad74c2944b5c23 (diff) | |
download | linux-7e96d559634b73a8158ee99a7abece2eacec2668.tar.xz |
md/raid5: add thread_group worker async_tx_issue_pending_all
Since thread_group worker and raid5d kthread are not in sync, if
worker writes stripe before raid5d then requests will be waiting
for issue_pendig.
Issue observed when building raid5 with ext4, in some build runs
jbd2 would get hung and requests were waiting in the HW engine
waiting to be issued.
Fix this by adding a call to async_tx_issue_pending_all in the
raid5_do_work.
Signed-off-by: Ofer Heifetz <oferh@marvell.com>
Cc: stable@vger.kernel.org
Signed-off-by: Shaohua Li <shli@fb.com>
Diffstat (limited to 'drivers/md/raid5.c')
-rw-r--r-- | drivers/md/raid5.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c index 4904dffec915..0fc2748aaf95 100644 --- a/drivers/md/raid5.c +++ b/drivers/md/raid5.c @@ -6234,6 +6234,8 @@ static void raid5_do_work(struct work_struct *work) pr_debug("%d stripes handled\n", handled); spin_unlock_irq(&conf->device_lock); + + async_tx_issue_pending_all(); blk_finish_plug(&plug); pr_debug("--- raid5worker inactive\n"); |