mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
[PATCH] s390: fix blk_queue_ordered call in dasd.c fixup
The QUEUE_ORDERED_* numbers got renumbered and by accident the dasd driver was changed to use QUEUE_ORDERED_DRAIN instead of QUEUE_ORDERED_TAG. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
4ce3b30cf3
commit
ed68cb3676
@ -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, QUEUE_ORDERED_DRAIN, NULL);
|
||||
blk_queue_ordered(device->request_queue, QUEUE_ORDERED_TAG, NULL);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user