diff options
author | Alexander Beregalov <a.beregalov@gmail.com> | 2009-04-06 17:35:56 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-06 17:40:07 -0400 |
commit | 91a9e99d76d71b1b16f422fae4bd844245f14638 (patch) | |
tree | 4b38dfbb004bb39a670bebdcb1d99ed452f2de49 /drivers/md/raid1.c | |
parent | bf538fe4689694b0b90d358dda91cde7b438097d (diff) |
md/raid1: fix build breakage
Fix this build error:
drivers/md/raid1.c: In function 'raid1_congested':
drivers/md/raid1.c:589: error: 'BDI_write_congested' undeclared
BDI_write_congested was changed in commit 1faa16d228 ("block: change the
request allocation/congestion logic to be sync/async based")
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
Cc: Neil Brown <neilb@suse.de>
Cc: Jens Axboe <jens.axboe@oracle.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/md/raid1.c')
-rw-r--r-- | drivers/md/raid1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c index f2247b0cd1a7..274b491a11c1 100644 --- a/drivers/md/raid1.c +++ b/drivers/md/raid1.c | |||
@@ -586,7 +586,7 @@ static int raid1_congested(void *data, int bits) | |||
586 | /* Note the '|| 1' - when read_balance prefers | 586 | /* Note the '|| 1' - when read_balance prefers |
587 | * non-congested targets, it can be removed | 587 | * non-congested targets, it can be removed |
588 | */ | 588 | */ |
589 | if ((bits & (1<<BDI_write_congested)) || 1) | 589 | if ((bits & (1<<BDI_async_congested)) || 1) |
590 | ret |= bdi_congested(&q->backing_dev_info, bits); | 590 | ret |= bdi_congested(&q->backing_dev_info, bits); |
591 | else | 591 | else |
592 | ret &= bdi_congested(&q->backing_dev_info, bits); | 592 | ret &= bdi_congested(&q->backing_dev_info, bits); |