linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [patch 10/13] s390: fix blk_queue_ordered call in dasd.c.
@ 2006-01-12 17:17 Martin Schwidefsky
  2006-01-13 12:26 ` [PATCH] s390: fix blk_queue_ordered call in dasd.c fixup Heiko Carstens
  0 siblings, 1 reply; 2+ messages in thread
From: Martin Schwidefsky @ 2006-01-12 17:17 UTC (permalink / raw)
  To: akpm, linux-kernel

From: Martin Schwidefsky <schwidefsky@de.ibm.com>

[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@de.ibm.com>

---

 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);
 }
 
 /*

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH] s390: fix blk_queue_ordered call in dasd.c fixup
  2006-01-12 17:17 [patch 10/13] s390: fix blk_queue_ordered call in dasd.c Martin Schwidefsky
@ 2006-01-13 12:26 ` Heiko Carstens
  0 siblings, 0 replies; 2+ messages in thread
From: Heiko Carstens @ 2006-01-13 12:26 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Martin Schwidefsky, linux-kernel

From: Heiko Carstens <heiko.carstens@de.ibm.com>

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

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

diff -urN a/drivers/s390/block/dasd.c b/drivers/s390/block/dasd.c
--- a/drivers/s390/block/dasd.c	2006-01-13 12:15:58.000000000 +0100
+++ b/drivers/s390/block/dasd.c	2006-01-13 12:25:42.000000000 +0100
@@ -1635,7 +1635,7 @@
 	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);
 }
 
 /*

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-01-13 12:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-01-12 17:17 [patch 10/13] s390: fix blk_queue_ordered call in dasd.c Martin Schwidefsky
2006-01-13 12:26 ` [PATCH] s390: fix blk_queue_ordered call in dasd.c fixup Heiko Carstens

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).