Messages in this thread Patch in this message |  | | | Date | Fri, 14 Jan 2005 19:56:21 +0100 | | From | Martin Schwidefsky <> | | Subject | [patch 7/8] s390: vol1 partition recognition. |
| |
[patch 7/8] s390: vol1 partition recognition.
From: Carsten Otte <cotte@de.ibm.com>
Make the ECKD compatible disk layout labling detection conditional to run only on ECKD compatible disk layout volumes, do a fall back into the default LNX/unlabled case otherwise.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
diffstat: fs/partitions/ibm.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -urN linux-2.6/fs/partitions/ibm.c linux-2.6-patched/fs/partitions/ibm.c --- linux-2.6/fs/partitions/ibm.c 2004-12-24 22:35:40.000000000 +0100 +++ linux-2.6-patched/fs/partitions/ibm.c 2005-01-14 19:45:21.000000000 +0100 @@ -114,7 +114,8 @@ } put_partition(state, 1, offset*(blocksize >> 9), size-offset*(blocksize >> 9)); - } else if (strncmp(type, "VOL1", 4) == 0) { + } else if ((strncmp(type, "VOL1", 4) == 0) && + (!info->FBA_layout) && (!strcmp(info->type, "ECKD"))) { /* * New style VOL1 labeled disk */ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |