diff options
Diffstat (limited to 'cmd_run.c')
-rw-r--r-- | cmd_run.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/cmd_run.c b/cmd_run.c new file mode 100644 index 00000000..74f32480 --- /dev/null +++ b/cmd_run.c @@ -0,0 +1,33 @@ + +#include <errno.h> +#include <stdbool.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +#include <fcntl.h> +#include <sys/ioctl.h> +#include <unistd.h> + +#include <uuid/uuid.h> + +#include "cmds.h" +#include "linux/bcache-ioctl.h" + +int cmd_run(int argc, char *argv[]) +{ + return 0; +} + +int cmd_stop(int argc, char *argv[]) +{ + if (argc != 2) + die("Please supply a filesystem"); + + struct bcache_handle fs = bcache_fs_open(argv[1]); + + if (ioctl(fs.ioctl_fd, BCH_IOCTL_STOP)) + die("BCH_IOCTL_STOP error: %s", strerror(errno)); + + return 0; +} |