[PATCH] xfs_mkfs: Do not discard if '-N' is provided
Lukas Czerner
lczerner at redhat.com
Tue Feb 12 05:59:41 CST 2013
When '-N' is specified we really should not write anything to the
device, neither we should attempt to discard the device.
This commit fixes xfs_mkfs to not attempt to discard the device in the
case user specified '-N' flag.
Signed-off-by: Lukas Czerner <lczerner at redhat.com>
---
mkfs/xfs_mkfs.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/mkfs/xfs_mkfs.c b/mkfs/xfs_mkfs.c
index a889620..95e27e0 100644
--- a/mkfs/xfs_mkfs.c
+++ b/mkfs/xfs_mkfs.c
@@ -2010,7 +2010,7 @@ _("block size %d cannot be smaller than logical sector size %d\n"),
exit(1);
}
- if (discard) {
+ if (discard && !Nflag) {
discard_blocks(xi.ddev, xi.dsize);
if (xi.rtdev)
discard_blocks(xi.rtdev, xi.rtsize);
--
1.7.7.6
More information about the xfs
mailing list