diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2016-08-23 19:50:31 -0800 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2016-08-25 17:39:01 -0800 |
commit | cdd61de630124d5b3d30e8927c9be02735f85f80 (patch) | |
tree | 522d4e4c835378f31782da90efabc15f4345bc64 /bcache.h | |
parent | 932ece1567dfc4ea7d993c8f62ccc9adfcf736ef (diff) |
Rework option handling
Diffstat (limited to 'bcache.h')
-rw-r--r-- | bcache.h | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -17,4 +17,19 @@ extern const char * const error_actions[]; extern const char * const bdev_cache_mode[]; extern const char * const bdev_state[]; +int cmd_format(int argc, char *argv[]); + +int cmd_unlock(int argc, char *argv[]); +int cmd_assemble(int argc, char *argv[]); +int cmd_incremental(int argc, char *argv[]); +int cmd_run(int argc, char *argv[]); +int cmd_stop(int argc, char *argv[]); + +int cmd_fs_show(int argc, char *argv[]); +int cmd_fs_set(int argc, char *argv[]); + +int cmd_device_show(int argc, char *argv[]); +int cmd_device_add(int argc, char *argv[]); +int cmd_device_remove(int argc, char *argv[]); + #endif /* _BCACHE_H */ |