Skip to content

Commit

Permalink
md/raid10: fix careless build error
Browse files Browse the repository at this point in the history
build error introduced by commit b357f04

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>
  • Loading branch information
NeilBrown committed Jul 3, 2012
1 parent b357f04 commit 1068411
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/md/raid10.c
Original file line number Diff line number Diff line change
Expand Up @@ -1394,7 +1394,7 @@ static void make_request(struct mddev *mddev, struct bio * bio)
bio_list_add(&conf->pending_bio_list, mbio);
conf->pending_count++;
spin_unlock_irqrestore(&conf->device_lock, flags);
if (!mddev_check_plugged(mddev, 0, 0))
if (!mddev_check_plugged(mddev))
md_wakeup_thread(mddev->thread);

if (!r10_bio->devs[i].repl_bio)
Expand Down

0 comments on commit 1068411

Please sign in to comment.