diff options
Diffstat (limited to 'include/fuse_kernel.h')
-rw-r--r-- | include/fuse_kernel.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/fuse_kernel.h b/include/fuse_kernel.h index 8bd7f0d..55d8e2c 100644 --- a/include/fuse_kernel.h +++ b/include/fuse_kernel.h @@ -575,7 +575,7 @@ struct fuse_read_in { uint32_t padding; }; -struct fuse_passthrough_out { +struct fuse_passthrough_out_v0 { uint32_t fd; /* For future implementation */ uint32_t len; @@ -834,7 +834,8 @@ struct fuse_notify_retrieve_in { /* Device ioctls: */ #define FUSE_DEV_IOC_CLONE _IOR(229, 0, uint32_t) -#define FUSE_DEV_IOC_PASSTHROUGH_OPEN _IOW(229, 1, struct fuse_passthrough_out) +#define FUSE_DEV_IOC_PASSTHROUGH_OPEN_V0 _IOW(229, 1, struct fuse_passthrough_out_v0) +#define FUSE_DEV_IOC_PASSTHROUGH_OPEN_V1 _IOW(229, 127, struct fuse_passthrough_out_v0) struct fuse_lseek_in { uint64_t fh; |