[patch 10/13] s390: fix blk_queue_ordered call in dasd.c.

From: Martin Schwidefsky
Date: Thu Jan 12 2006 - 12:16:34 EST


From: Martin Schwidefsky <schwidefsky@xxxxxxxxxx>

[patch 10/13] s390: fix blk_queue_ordered call in dasd.c.

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@xxxxxxxxxx>

---

drivers/s390/block/dasd.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)

diff -urpN linux-2.6/drivers/s390/block/dasd.c linux-2.6-patched/drivers/s390/block/dasd.c
--- linux-2.6/drivers/s390/block/dasd.c 2006-01-12 15:43:26.000000000 +0100
+++ linux-2.6-patched/drivers/s390/block/dasd.c 2006-01-12 15:44:00.000000000 +0100
@@ -1635,7 +1635,7 @@ dasd_setup_queue(struct dasd_device * de
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);
}

/*
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/