Dirk Mueller
a0e284e535
- add scrub subcommand - scan /proc/partitions by default (or use --all-devices for all) - mkfs fixes and improvements - documentation fixes - update from git: - add btrfs-select-super utility - add btrfs-label utility - allow mixed data+metadata (option --mixed) - allow populating new filesystem with files (option --rootdir) - allow discard support in mkfs - lzo support - deprecate 'btrfsctl' 'btrfs-vol' 'btrfs-show' - other bugfixes and documentation improvements OBS-URL: https://build.opensuse.org/package/show/filesystems/btrfsprogs?expand=0&rev=104
31 lines
986 B
Diff
31 lines
986 B
Diff
From 1cae9a17f66b138a4d2292cb000e755ff0d1fe58 Mon Sep 17 00:00:00 2001
|
|
From: Arne Jansen <sensille@gmx.net>
|
|
Date: Mon, 14 Mar 2011 13:16:30 +0100
|
|
Subject: [PATCH 06/28] btrfs-map-logical: usage update
|
|
|
|
The option to give the number of bytes to read is -b, not -s. Updated
|
|
usage accordingly.
|
|
|
|
Signed-off-by: Arne Jansen <sensille@gmx.net>
|
|
Signed-off-by: Hugo Mills <hugo@carfax.org.uk>
|
|
---
|
|
btrfs-map-logical.c | 2 +-
|
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
|
|
|
diff --git a/btrfs-map-logical.c b/btrfs-map-logical.c
|
|
index 8a12074..678ff36 100644
|
|
--- a/btrfs-map-logical.c
|
|
+++ b/btrfs-map-logical.c
|
|
@@ -88,7 +88,7 @@ static void print_usage(void)
|
|
fprintf(stderr, "\t-l Logical extent to map\n");
|
|
fprintf(stderr, "\t-c Copy of the extent to read (usually 1 or 2)\n");
|
|
fprintf(stderr, "\t-o Output file to hold the extent\n");
|
|
- fprintf(stderr, "\t-s Number of bytes to read\n");
|
|
+ fprintf(stderr, "\t-b Number of bytes to read\n");
|
|
exit(1);
|
|
}
|
|
|
|
--
|
|
1.7.5.2.353.g5df3e
|
|
|