[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>

authored by Martin Schwidefsky and committed by Linus Torvalds bcc13265 53df751c

+1 -1
+1 -1
drivers/s390/block/dasd.c
··· 1635 blk_queue_max_hw_segments(device->request_queue, -1L); 1636 blk_queue_max_segment_size(device->request_queue, -1L); 1637 blk_queue_segment_boundary(device->request_queue, -1L); 1638 - blk_queue_ordered(device->request_queue, 1); 1639 } 1640 1641 /*
··· 1635 blk_queue_max_hw_segments(device->request_queue, -1L); 1636 blk_queue_max_segment_size(device->request_queue, -1L); 1637 blk_queue_segment_boundary(device->request_queue, -1L); 1638 + blk_queue_ordered(device->request_queue, QUEUE_ORDERED_DRAIN, NULL); 1639 } 1640 1641 /*