summaryrefslogtreecommitdiff
path: root/cmd_device.c
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2017-03-19 15:56:34 -0800
committerKent Overstreet <kent.overstreet@gmail.com>2017-03-19 17:31:47 -0800
commit5ec39af8eaba49aee7bafa44c661da39e2f40dc3 (patch)
tree1fb1a981602cbf22c7d2b2dba1168c715d7cecb5 /cmd_device.c
parentbb1941de5378a7b8122d3575dcbc7d0aeb6326f0 (diff)
Rename from bcache-tools to bcachefs-tools
Diffstat (limited to 'cmd_device.c')
-rw-r--r--cmd_device.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/cmd_device.c b/cmd_device.c
index d898733b..f71ab238 100644
--- a/cmd_device.c
+++ b/cmd_device.c
@@ -12,9 +12,9 @@
#include <sys/types.h>
#include <unistd.h>
+#include "bcachefs_ioctl.h"
#include "cmds.h"
-#include "libbcache.h"
-#include "linux/bcache-ioctl.h"
+#include "libbcachefs.h"
#include "opts.h"
#include "tools-util.h"
@@ -174,8 +174,8 @@ static void disk_ioctl(const char *fs, const char *dev, int cmd, int flags)
static void device_add_usage(void)
{
- puts("bcache device add - add a device to an existing filesystem\n"
- "Usage: bcache device add [OPTION]... filesystem device\n"
+ puts("bcachefs device add - add a device to an existing filesystem\n"
+ "Usage: bcachefs device add [OPTION]... filesystem device\n"
"\n"
"Options:\n"
" --fs_size=size Size of filesystem on device\n"
@@ -207,7 +207,7 @@ int cmd_device_add(int argc, char *argv[])
longopts, NULL)) != -1)
switch (opt) {
case 'S':
- if (bch_strtoull_h(optarg, &dev_opts.size))
+ if (bch2_strtoull_h(optarg, &dev_opts.size))
die("invalid filesystem size");
dev_opts.size >>= 9;
@@ -258,8 +258,8 @@ int cmd_device_add(int argc, char *argv[])
static void device_remove_usage(void)
{
- puts("bcache device_remove - remove a device from a filesystem\n"
- "Usage: bcache device remove filesystem device\n"
+ puts("bcachefs device_remove - remove a device from a filesystem\n"
+ "Usage: bcachefs device remove filesystem device\n"
"\n"
"Options:\n"
" -f, --force Force removal, even if some data\n"
@@ -303,8 +303,8 @@ int cmd_device_remove(int argc, char *argv[])
static void device_online_usage(void)
{
- puts("bcache device online - readd a device to a running filesystem\n"
- "Usage: bcache device online [OPTION]... filesystem device\n"
+ puts("bcachefs device online - readd a device to a running filesystem\n"
+ "Usage: bcachefs device online [OPTION]... filesystem device\n"
"\n"
"Options:\n"
" -h, --help Display this help and exit\n"
@@ -332,8 +332,8 @@ int cmd_device_online(int argc, char *argv[])
static void device_offline_usage(void)
{
- puts("bcache device offline - take a device offline, without removing it\n"
- "Usage: bcache device offline [OPTION]... filesystem device\n"
+ puts("bcachefs device offline - take a device offline, without removing it\n"
+ "Usage: bcachefs device offline [OPTION]... filesystem device\n"
"\n"
"Options:\n"
" -f, --force Force, if data redundancy will be degraded\n"
@@ -371,8 +371,8 @@ int cmd_device_offline(int argc, char *argv[])
static void device_evacuate_usage(void)
{
- puts("bcache device evacuate - move data off of a given device\n"
- "Usage: bcache device evacuate [OPTION]... filesystem device\n"
+ puts("bcachefs device evacuate - move data off of a given device\n"
+ "Usage: bcachefs device evacuate [OPTION]... filesystem device\n"
"\n"
"Options:\n"
" -h, --help Display this help and exit\n"
@@ -400,8 +400,8 @@ int cmd_device_evacuate(int argc, char *argv[])
static void device_set_state_usage(void)
{
- puts("bcache device set-state\n"
- "Usage: bcache device set-state filesystem device new-state\n"
+ puts("bcachefs device set-state\n"
+ "Usage: bcachefs device set-state filesystem device new-state\n"
"\n"
"Options:\n"
" -f, --force Force, if data redundancy will be degraded\n"
@@ -437,7 +437,7 @@ int cmd_device_set_state(int argc, char *argv[])
.flags = flags,
.dev = (__u64) argv[optind + 1],
.new_state = read_string_list_or_die(argv[optind + 2],
- bch_dev_state, "device state"),
+ bch2_dev_state, "device state"),
};
xioctl(fs.ioctl_fd, BCH_IOCTL_DISK_SET_STATE, &i);