diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2001-10-29 14:57:57 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2001-10-29 14:57:57 +0000 |
commit | b483c93623dd64eb5f1dcf23f32adb32f616ee0e (patch) | |
tree | 63818a8154d98c143d8bbb63d444818dced3caac /include/linux/fuse.h | |
parent | 85c74fcdfd9e67d411c3e1734b34effd0d73fa4d (diff) | |
download | libfuse-b483c93623dd64eb5f1dcf23f32adb32f616ee0e.tar.gz |
x
Diffstat (limited to 'include/linux/fuse.h')
-rw-r--r-- | include/linux/fuse.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/include/linux/fuse.h b/include/linux/fuse.h index fb3aca0..b519a8d 100644 --- a/include/linux/fuse.h +++ b/include/linux/fuse.h @@ -39,6 +39,11 @@ enum fuse_opcode { FUSE_READLINK, FUSE_GETDIR, FUSE_MKNOD, + FUSE_MKDIR, + FUSE_SYMLINK, + FUSE_UNLINK, + FUSE_RMDIR, + FUSE_RENAME, }; /* Conservative buffer size for the client */ @@ -69,10 +74,21 @@ struct fuse_mknod_out { struct fuse_attr attr; }; +struct fuse_mkdir_in { + unsigned short mode; + char name[1]; +}; + + +struct fuse_rename_in { + unsigned long newdir; + char names[2]; +}; + struct fuse_in_header { int unique; enum fuse_opcode opcode; - unsigned long ino; + unsigned long ino; }; struct fuse_out_header { |