diff options
author | NeilBrown <neilb@suse.de> | 2012-07-03 19:35:35 -0400 |
---|---|---|
committer | NeilBrown <neilb@suse.de> | 2012-07-03 19:35:35 -0400 |
commit | 10684112c9d154172ac34e48a2ab68649e8f63ac (patch) | |
tree | ae3e70c27a6e9cb84220562fba52de3dd79821d1 /drivers/md | |
parent | b357f04a67c2aeee828b240863cd3f21d6cb3179 (diff) |
md/raid10: fix careless build error
build error introduced by commit b357f04a67c2aeee8
That function doesn't get extra args until a later patch. Bother.
Reported-by: Fengguang Wu <wfg@linux.intel.com>
Reported-by: Simon Kirby <sim@hostway.ca>
Reported-by: Tobias Klausmann <tobias.johannes.klausmann@mni.thm.de>
Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/raid10.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/raid10.c b/drivers/md/raid10.c index acf5a828c7e1..8da6282254c3 100644 --- a/drivers/md/raid10.c +++ b/drivers/md/raid10.c | |||
@@ -1394,7 +1394,7 @@ retry_write: | |||
1394 | bio_list_add(&conf->pending_bio_list, mbio); | 1394 | bio_list_add(&conf->pending_bio_list, mbio); |
1395 | conf->pending_count++; | 1395 | conf->pending_count++; |
1396 | spin_unlock_irqrestore(&conf->device_lock, flags); | 1396 | spin_unlock_irqrestore(&conf->device_lock, flags); |
1397 | if (!mddev_check_plugged(mddev, 0, 0)) | 1397 | if (!mddev_check_plugged(mddev)) |
1398 | md_wakeup_thread(mddev->thread); | 1398 | md_wakeup_thread(mddev->thread); |
1399 | 1399 | ||
1400 | if (!r10_bio->devs[i].repl_bio) | 1400 | if (!r10_bio->devs[i].repl_bio) |