a2cf97ec56
- lszcrypt fails when querying a specific domain (#2177613) - DASD autoquiesce support (#2196510) - zcrypt DD: AP command filtering (#2170362) - vmconvert and zgetdump consolidation (#2173925) - Support for List-Directed dump from ECKD DASD (#2159694) - Support for List-Directed IPL and re-IPL from ECKD DASD (#2159691) - Resolves: #2159698 #2177613 #2196510 #2170362 #2173925 #2159694 #2159691
32 lines
1023 B
Diff
32 lines
1023 B
Diff
From 25442f958a12b428b7d063b927ac48965dcd8164 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Dan=20Hor=C3=A1k?= <dan@danny.cz>
|
|
Date: Fri, 28 Jan 2011 16:11:19 +0100
|
|
Subject: [PATCH] use detected filesystem block size on FBA devices
|
|
|
|
If a FBA device is not properly formated, then the CMS file system can
|
|
have a different block size. The cmsfs tools were able to detect the file
|
|
system block size, but in fact they still used default 512 instead. And
|
|
using the default was causing crashes. Now the detected value is used.
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=651012
|
|
---
|
|
cmsfsany.c | 2 +-
|
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
|
|
|
diff --git a/cmsfsany.c b/cmsfsany.c
|
|
index 55bcfdc..18efffb 100644
|
|
--- a/cmsfsany.c
|
|
+++ b/cmsfsany.c
|
|
@@ -102,7 +102,7 @@ int cmsfs_find_label(struct CMSSUPER *vol,struct CMSFSADT *adt)
|
|
cmsfs_error(cmsfs_ermsg);
|
|
}
|
|
vol->flags = CMSFSFBA;
|
|
- vol->blksz = 512;
|
|
+ vol->blksz = blksz;
|
|
return vol->blksz;
|
|
} }
|
|
|
|
--
|
|
1.7.3.5
|
|
|