summaryrefslogtreecommitdiff
path: root/cmds.h
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2017-03-12 06:53:43 -0800
committerKent Overstreet <kent.overstreet@gmail.com>2017-03-12 06:53:43 -0800
commitd252e12accd8b4fdc0e50b539370b203f3894de9 (patch)
tree075bef138b2a3bfe4a935dacfaa68d55cb0db7c1 /cmds.h
parent3bf874183a518cc1bf785d9944de05cf51a177d3 (diff)
Refactoring for device specific commands
Diffstat (limited to 'cmds.h')
-rw-r--r--cmds.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/cmds.h b/cmds.h
index 401f295c..7e4712a5 100644
--- a/cmds.h
+++ b/cmds.h
@@ -10,6 +10,7 @@
#include "tools-util.h"
int cmd_format(int argc, char *argv[]);
+int cmd_show_super(int argc, char *argv[]);
int cmd_unlock(int argc, char *argv[]);
int cmd_assemble(int argc, char *argv[]);
@@ -20,10 +21,12 @@ 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_fail(int argc, char *argv[]);
int cmd_device_remove(int argc, char *argv[]);
+int cmd_device_online(int argc, char *argv[]);
+int cmd_device_offline(int argc, char *argv[]);
+int cmd_device_evacuate(int argc, char *argv[]);
+int cmd_device_set_state(int argc, char *argv[]);
int cmd_fsck(int argc, char *argv[]);