diff options
author | Horst Hummel <horst.hummel@de.ibm.com> | 2006-01-06 03:19:15 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-06 11:33:50 -0500 |
commit | 1c01b8a5963aec60488c1c97d67cffd8b5275e3f (patch) | |
tree | 48eb6c300541d77ff2cc5d8949ce5788fab1d82f /drivers/s390/block/dasd_diag.c | |
parent | 9a7af289660dc749d7c58234191601046a9bf488 (diff) |
[PATCH] s390: dasd failfast support
To properly support multipath-failover handling, the linux block layer has
introduced a special request flag, 'REQ_FAILFAST'. This flag is now used to
return requests immediately in case the device is not operational.
Signed-off-by: Horst Hummel <horst.hummel@de.ibm.com>
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>
Diffstat (limited to 'drivers/s390/block/dasd_diag.c')
-rw-r--r-- | drivers/s390/block/dasd_diag.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/s390/block/dasd_diag.c b/drivers/s390/block/dasd_diag.c index 16c4b7d94bd7..a33d4064b537 100644 --- a/drivers/s390/block/dasd_diag.c +++ b/drivers/s390/block/dasd_diag.c | |||
@@ -6,7 +6,7 @@ | |||
6 | * Bugreports.to..: <Linux390@de.ibm.com> | 6 | * Bugreports.to..: <Linux390@de.ibm.com> |
7 | * (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 1999,2000 | 7 | * (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 1999,2000 |
8 | * | 8 | * |
9 | * $Revision: 1.52 $ | 9 | * $Revision: 1.53 $ |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include <linux/config.h> | 12 | #include <linux/config.h> |
@@ -549,6 +549,8 @@ dasd_diag_build_cp(struct dasd_device * device, struct request *req) | |||
549 | } | 549 | } |
550 | cqr->retries = DIAG_MAX_RETRIES; | 550 | cqr->retries = DIAG_MAX_RETRIES; |
551 | cqr->buildclk = get_clock(); | 551 | cqr->buildclk = get_clock(); |
552 | if (req->flags & REQ_FAILFAST) | ||
553 | set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags); | ||
552 | cqr->device = device; | 554 | cqr->device = device; |
553 | cqr->expires = DIAG_TIMEOUT; | 555 | cqr->expires = DIAG_TIMEOUT; |
554 | cqr->status = DASD_CQR_FILLED; | 556 | cqr->status = DASD_CQR_FILLED; |