diff options
author | Stefan Weinhuber <wein@de.ibm.com> | 2006-03-24 06:15:25 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-24 10:33:17 -0500 |
commit | 20c644680af1ef9a6b36c0873f59498c98b07ab1 (patch) | |
tree | af2e50faeb690b7aacf7be3480f08f0a6ec0b56f /drivers/s390/block/Makefile | |
parent | 554a826e0a29f1a88e5a5332f0718c059885ec17 (diff) |
[PATCH] s390: dasd extended error reporting
The DASD extended error reporting is a facility that allows to get detailed
information about certain problems in the DASD I/O. This information can be
used to implement fail-over applications that can recover these problems.
Signed-off-by: Stefan Weinhuber <wein@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/Makefile')
-rw-r--r-- | drivers/s390/block/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/s390/block/Makefile b/drivers/s390/block/Makefile index 163e97554f50..be9f22d52fd8 100644 --- a/drivers/s390/block/Makefile +++ b/drivers/s390/block/Makefile | |||
@@ -7,6 +7,9 @@ dasd_fba_mod-objs := dasd_fba.o dasd_3370_erp.o dasd_9336_erp.o | |||
7 | dasd_diag_mod-objs := dasd_diag.o | 7 | dasd_diag_mod-objs := dasd_diag.o |
8 | dasd_mod-objs := dasd.o dasd_ioctl.o dasd_proc.o dasd_devmap.o \ | 8 | dasd_mod-objs := dasd.o dasd_ioctl.o dasd_proc.o dasd_devmap.o \ |
9 | dasd_genhd.o dasd_erp.o | 9 | dasd_genhd.o dasd_erp.o |
10 | ifdef CONFIG_DASD_EER | ||
11 | dasd_mod-objs += dasd_eer.o | ||
12 | endif | ||
10 | 13 | ||
11 | obj-$(CONFIG_DASD) += dasd_mod.o | 14 | obj-$(CONFIG_DASD) += dasd_mod.o |
12 | obj-$(CONFIG_DASD_DIAG) += dasd_diag_mod.o | 15 | obj-$(CONFIG_DASD_DIAG) += dasd_diag_mod.o |