#[non_exhaustive]#[repr(C)]pub enum FuseOpCode {
Show 46 variants
FUSE_LOOKUP = 1,
FUSE_FORGET = 2,
FUSE_GETATTR = 3,
FUSE_SETATTR = 4,
FUSE_READLINK = 5,
FUSE_SYMLINK = 6,
FUSE_MKNOD = 8,
FUSE_MKDIR = 9,
FUSE_UNLINK = 10,
FUSE_RMDIR = 11,
FUSE_RENAME = 12,
FUSE_LINK = 13,
FUSE_OPEN = 14,
FUSE_READ = 15,
FUSE_WRITE = 16,
FUSE_STATFS = 17,
FUSE_RELEASE = 18,
FUSE_FSYNC = 20,
FUSE_SETXATTR = 21,
FUSE_GETXATTR = 22,
FUSE_LISTXATTR = 23,
FUSE_REMOVEXATTR = 24,
FUSE_FLUSH = 25,
FUSE_INIT = 26,
FUSE_OPENDIR = 27,
FUSE_READDIR = 28,
FUSE_RELEASEDIR = 29,
FUSE_FSYNCDIR = 30,
FUSE_GETLK = 31,
FUSE_SETLK = 32,
FUSE_SETLKW = 33,
FUSE_ACCESS = 34,
FUSE_CREATE = 35,
FUSE_INTERRUPT = 36,
FUSE_BMAP = 37,
FUSE_DESTROY = 38,
FUSE_IOCTL = 39,
FUSE_POLL = 40,
FUSE_NOTIFY_REPLY = 41,
FUSE_BATCH_FORGET = 42,
FUSE_FALLOCATE = 43,
FUSE_READDIRPLUS = 44,
FUSE_RENAME2 = 45,
FUSE_LSEEK = 46,
FUSE_COPY_FILE_RANGE = 47,
CUSE_INIT = 4_096,
}Expand description
FUSE operation code fuse_opcode
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
FUSE_LOOKUP = 1
Look up a directory entry by name and get its attributes
FUSE_FORGET = 2
Forget about an inode, no reply
FUSE_GETATTR = 3
Get file attributes
FUSE_SETATTR = 4
Set file attributes
FUSE_READLINK = 5
Read symbolic link
FUSE_SYMLINK = 6
Create a symbolic link
FUSE_MKNOD = 8
Create file node
FUSE_MKDIR = 9
Create a directory
FUSE_UNLINK = 10
Remove a file
FUSE_RMDIR = 11
Remove a directory
FUSE_RENAME = 12
Rename a file
FUSE_LINK = 13
Create a hard link
FUSE_OPEN = 14
Open a file
FUSE_READ = 15
Read data from file
FUSE_WRITE = 16
Write data to file
FUSE_STATFS = 17
Get file system statistics
FUSE_RELEASE = 18
Release an open file
FUSE_FSYNC = 20
Synchronize file contents
FUSE_SETXATTR = 21
Set an extended attribute
FUSE_GETXATTR = 22
Get an extended attribute
FUSE_LISTXATTR = 23
List extended attribute names
FUSE_REMOVEXATTR = 24
Remove an extended attribute
FUSE_FLUSH = 25
Flush file
FUSE_INIT = 26
Initialize filesystem
FUSE_OPENDIR = 27
Open a directory
FUSE_READDIR = 28
Read directory
FUSE_RELEASEDIR = 29
Release an open directory
FUSE_FSYNCDIR = 30
Synchronize directory contents
FUSE_GETLK = 31
Test for a POSIX file lock
FUSE_SETLK = 32
Acquire, modify or release a POSIX file lock
FUSE_SETLKW = 33
Acquire, modify or release a POSIX file lock and wait
FUSE_ACCESS = 34
Check file access permissions
FUSE_CREATE = 35
Create and open a file
FUSE_INTERRUPT = 36
Interrupt a previous FUSE request
FUSE_BMAP = 37
Map block index withClean up filesystemin file to block index within device
FUSE_DESTROY = 38
Clean up filesystem
FUSE_IOCTL = 39
Ioctl
FUSE_POLL = 40
Poll for IO readiness
FUSE_NOTIFY_REPLY = 41
A reply to a NOTIFY_RETRIEVE notification
FUSE_BATCH_FORGET = 42
Batch forget inodes
FUSE_FALLOCATE = 43
Allocate requested space
FUSE_READDIRPLUS = 44
Read directory with attributes
FUSE_RENAME2 = 45
Rename2
FUSE_LSEEK = 46
Find next data or hole after the specified offset
FUSE_COPY_FILE_RANGE = 47
Copy a range of data from an opened file to another
CUSE_INIT = 4_096
CUSE specific operations