blkdiscard: accept -f (force) as no-op
function old new delta .rodata 104250 104251 +1 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
0599e0f87b
commit
c421388dca
@ -22,6 +22,8 @@
|
||||
//usage: "\n -o OFS Byte offset into device"
|
||||
//usage: "\n -l LEN Number of bytes to discard"
|
||||
//usage: "\n -s Perform a secure discard"
|
||||
///////: "\n -f Disable check for mounted filesystem"
|
||||
//////////////// -f: accepted but is a nop (we do no check anyway)
|
||||
//usage:
|
||||
//usage:#define blkdiscard_example_usage
|
||||
//usage: "$ blkdiscard -o 0 -l 1G /dev/sdb"
|
||||
@ -51,9 +53,10 @@ int blkdiscard_main(int argc UNUSED_PARAM, char **argv)
|
||||
OPT_OFFSET = (1 << 0),
|
||||
OPT_LENGTH = (1 << 1),
|
||||
OPT_SECURE = (1 << 2),
|
||||
OPT_FORCE = (1 << 3), //nop
|
||||
};
|
||||
|
||||
opts = getopt32(argv, "^" "o:l:s" "\0" "=1", &offset_str, &length_str);
|
||||
opts = getopt32(argv, "^" "o:l:sf" "\0" "=1", &offset_str, &length_str);
|
||||
argv += optind;
|
||||
|
||||
fd = xopen(argv[0], O_RDWR|O_EXCL);
|
||||
|
Loading…
Reference in New Issue
Block a user