From: Martin Schwidefsky Date: Sat, 14 Jan 2006 21:21:02 +0000 (-0800) Subject: [PATCH] s390: fix blk_queue_ordered call in dasdc X-Git-Tag: v3.12-rc1~39273 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bcc132651d384ad115a275868effb49c64b348ce;p=kernel%2Fkernel-generic.git [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 Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- 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); } /*