diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2019-06-08 08:57:11 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2019-06-08 08:57:11 +0200 |
commit | 023ae75fc663d7978ea43e073be6f50b39f1f196 (patch) | |
tree | 18fef3ebf9ab2de6062810fedac7bd1eb68b398c | |
parent | 1230aec77a4034637ab6c95db6f8148c1d0df5e0 (diff) | |
download | busybox-w32-023ae75fc663d7978ea43e073be6f50b39f1f196.tar.gz busybox-w32-023ae75fc663d7978ea43e073be6f50b39f1f196.tar.bz2 busybox-w32-023ae75fc663d7978ea43e073be6f50b39f1f196.zip |
blockdev: add usage comment, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | util-linux/blockdev.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/util-linux/blockdev.c b/util-linux/blockdev.c index e9b5b8bf9..e60bbe609 100644 --- a/util-linux/blockdev.c +++ b/util-linux/blockdev.c | |||
@@ -29,7 +29,17 @@ | |||
29 | //usage: "\n --getsize64 Get device size in bytes" | 29 | //usage: "\n --getsize64 Get device size in bytes" |
30 | //usage: "\n --flushbufs Flush buffers" | 30 | //usage: "\n --flushbufs Flush buffers" |
31 | //usage: "\n --rereadpt Reread partition table" | 31 | //usage: "\n --rereadpt Reread partition table" |
32 | 32 | // util-linux 2.31 also has: | |
33 | // --getdiscardzeroes BLKDISCARDZEROES Get discard zeroes support status | ||
34 | // --getpbsz BLKPBSZGET Get physical block (sector) size | ||
35 | // --getiomin BLKIOMIN Get minimum I/O size | ||
36 | // --getioopt BLKIOOPT Get optimal I/O size | ||
37 | // --getalignoff BLKALIGNOFF Get alignment offset in bytes | ||
38 | // --getmaxsect BLKSECTGET Get max sectors per request | ||
39 | // --setra SECTORS BLKRASET Set readahead | ||
40 | // --getra BLKRAGET Get readahead | ||
41 | // --setfra SECTORS BLKFRASET Set filesystem readahead | ||
42 | // --getfra BLKFRAGET Get filesystem readahead | ||
33 | 43 | ||
34 | #include "libbb.h" | 44 | #include "libbb.h" |
35 | #include <linux/fs.h> | 45 | #include <linux/fs.h> |