Skip to content

Commit cc113a1

Browse files
committed
nvme: delete dir-send command human-readable option
Since the option is not used by the command actually. Signed-off-by: Tokunori Ikegami <[email protected]>
1 parent 1bd4a53 commit cc113a1

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

nvme.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6896,7 +6896,6 @@ static int dir_send(int argc, char **argv, struct command *cmd, struct plugin *p
68966896
__u16 dspec;
68976897
__u8 doper;
68986898
__u16 endir;
6899-
bool human_readable;
69006899
bool raw_binary;
69016900
char *file;
69026901
};
@@ -6909,7 +6908,6 @@ static int dir_send(int argc, char **argv, struct command *cmd, struct plugin *p
69096908
.dspec = 0,
69106909
.doper = 0,
69116910
.endir = 1,
6912-
.human_readable = false,
69136911
.raw_binary = false,
69146912
.file = "",
69156913
};
@@ -6922,7 +6920,6 @@ static int dir_send(int argc, char **argv, struct command *cmd, struct plugin *p
69226920
OPT_SHRT("dir-spec", 'S', &cfg.dspec, dspec_w_dtype),
69236921
OPT_BYTE("dir-oper", 'O', &cfg.doper, doper),
69246922
OPT_SHRT("endir", 'e', &cfg.endir, endir),
6925-
OPT_FLAG("human-readable", 'H', &cfg.human_readable, human_readable_directive),
69266923
OPT_FLAG("raw-binary", 'b', &cfg.raw_binary, raw_directive),
69276924
OPT_FILE("input-file", 'i', &cfg.file, input));
69286925

0 commit comments

Comments
 (0)