diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-01 14:46:00 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-01 14:46:00 -0400 |
commit | b17b3d479c4c43c3a980ee553c3be3ca456523de (patch) | |
tree | 6715c10bfe1301eb3c112b17a858b541ce14aef5 /drivers/md | |
parent | 31582b094d640fdab3fd29237b348a4c7c8646fb (diff) | |
parent | 93769f58078e2a066b56217cae1e343ac5a6b78c (diff) |
Merge branch 'for-linus' of git://git.kernel.dk/linux-2.6-block
* 'for-linus' of git://git.kernel.dk/linux-2.6-block:
md: the bitmap code needs to use blk_plug_device_unlocked()
block: add a blk_plug_device_unlocked() that grabs the queue lock
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/bitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/bitmap.c b/drivers/md/bitmap.c index 621a272a2c7..7e65bad522c 100644 --- a/drivers/md/bitmap.c +++ b/drivers/md/bitmap.c | |||
@@ -1234,7 +1234,7 @@ int bitmap_startwrite(struct bitmap *bitmap, sector_t offset, unsigned long sect | |||
1234 | case 0: | 1234 | case 0: |
1235 | bitmap_file_set_bit(bitmap, offset); | 1235 | bitmap_file_set_bit(bitmap, offset); |
1236 | bitmap_count_page(bitmap,offset, 1); | 1236 | bitmap_count_page(bitmap,offset, 1); |
1237 | blk_plug_device(bitmap->mddev->queue); | 1237 | blk_plug_device_unlocked(bitmap->mddev->queue); |
1238 | /* fall through */ | 1238 | /* fall through */ |
1239 | case 1: | 1239 | case 1: |
1240 | *bmc = 2; | 1240 | *bmc = 2; |