mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
14 lines
294 B
C
14 lines
294 B
C
![]() |
#ifndef __IOCTL_
|
||
|
#define __IOCTL_
|
||
|
#include <linux/ioctl.h>
|
||
|
|
||
|
#define BTRFS_IOCTL_MAGIC 0x94
|
||
|
#define BTRFS_VOL_NAME_MAX 255
|
||
|
struct btrfs_ioctl_vol_args {
|
||
|
char name[BTRFS_VOL_NAME_MAX + 1];
|
||
|
};
|
||
|
|
||
|
#define BTRFS_IOC_SNAP_CREATE _IOW(BTRFS_IOCTL_MAGIC, 1, \
|
||
|
struct btrfs_ioctl_vol_args)
|
||
|
#endif
|