diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2017-01-08 00:13:18 -0900 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2017-01-20 09:07:08 -0900 |
commit | b33fc8298f7e13226b9895abc57c9bfce5e3fa2d (patch) | |
tree | a3d2a5a909b6372f7777c1c5c18cef5f81d123a9 /bcache-cmds.h | |
parent | 7f4191a202ea4558ca2d5eb8a47daea33c9999c7 (diff) |
bcache in userspace; userspace fsck
Diffstat (limited to 'bcache-cmds.h')
-rw-r--r-- | bcache-cmds.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/bcache-cmds.h b/bcache-cmds.h new file mode 100644 index 0000000..36035c2 --- /dev/null +++ b/bcache-cmds.h @@ -0,0 +1,28 @@ +/* + * Author: Kent Overstreet <kent.overstreet@gmail.com> + * + * GPLv2 + */ + +#ifndef _BCACHE_H +#define _BCACHE_H + +#include "tools-util.h" + +int cmd_format(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[]); + +int cmd_fsck(int argc, char *argv[]); + +#endif /* _BCACHE_H */ |