diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2006-01-14 13:21:02 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-14 18:27:09 -0800 |
commit | bcc132651d384ad115a275868effb49c64b348ce (patch) | |
tree | 86613d17c58bc65c9d7fb86b6b2b5965ec807a01 /drivers/s390/block | |
parent | 53df751ccd0a404cca169dbd61bae571cc21559a (diff) | |
download | op-kernel-dev-bcc132651d384ad115a275868effb49c64b348ce.zip op-kernel-dev-bcc132651d384ad115a275868effb49c64b348ce.tar.gz |
[PATCH] s390: fix blk_queue_ordered call in dasdc
Add the missing third argument to the blk_queue_ordered call and use the
constant QUEUE_ORDERED_DRAIN instead of "1".
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/s390/block')
-rw-r--r-- | drivers/s390/block/dasd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/block/dasd.c b/drivers/s390/block/dasd.c index 9c25654..b147beb 100644 --- a/drivers/s390/block/dasd.c +++ b/drivers/s390/block/dasd.c @@ -1635,7 +1635,7 @@ dasd_setup_queue(struct dasd_device * device) blk_queue_max_hw_segments(device->request_queue, -1L); blk_queue_max_segment_size(device->request_queue, -1L); blk_queue_segment_boundary(device->request_queue, -1L); - blk_queue_ordered(device->request_queue, 1); + blk_queue_ordered(device->request_queue, QUEUE_ORDERED_DRAIN, NULL); } /* |