aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/ioctl.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/btrfs/ioctl.h')
-rw-r--r--fs/btrfs/ioctl.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/fs/btrfs/ioctl.h b/fs/btrfs/ioctl.h
new file mode 100644
index 000000000000..201fb3270723
--- /dev/null
+++ b/fs/btrfs/ioctl.h
@@ -0,0 +1,13 @@
1#ifndef __IOCTL_
2#define __IOCTL_
3#include <linux/ioctl.h>
4
5#define BTRFS_IOCTL_MAGIC 0x94
6#define BTRFS_VOL_NAME_MAX 255
7struct btrfs_ioctl_vol_args {
8 char name[BTRFS_VOL_NAME_MAX + 1];
9};
10
11#define BTRFS_IOC_SNAP_CREATE _IOW(BTRFS_IOCTL_MAGIC, 1, \
12 struct btrfs_ioctl_vol_args)
13#endif