This errorcode is unfortunately missing in the errno module, so it is provided by Python-LLFUSE instead.
The inode of the root directory, i.e. the mount point of the file system.
This is a recommended set of options that should be passed to llfuse.init to get reasonable behavior and performance. Python-LLFUSE is compatible with any other combination of options as well, but you should only deviate from the defaults with good reason.
(The fsname=<foo> option is guaranteed never to be included in the default options, so you can always safely add it to the set).
This exception may be raised by request handlers to indicate that the requested operation could not be carried out. The system call that resulted in the request (if any) will then fail with error code errno_.
Instances of this class are passed to some Operations methods to provide information about the caller of the syscall that initiated the request.
Instances of this class store information about the file system. The attributes correspond to the elements of the statvfs struct, see statvfs(2) for details.
Instances of this class store attributes of directory entries. Most of the attributes correspond to the elements of the stat C struct as returned by e.g. fstat and should be self-explanatory.
The inode generation number
Validity timeout for the attributes of the directory entry
Floating point numbers may be used. Units are seconds.
Validity timeout for the name of the directory entry
Floating point numbers may be used. Units are seconds.
Time of last access in (integer) nanoseconds
Time of last inode modification in (integer) nanoseconds
Time of last modification in (integer) nanoseconds
SetattrFields instances are passed to the setattr handler to specify which attributes should be updated.
If this attribute is true, it signals the Operations.setattr method that the st_atime_ns field contains an updated value.
If this attribute is true, it signals the Operations.setattr method that the st_mtime_ns field contains an updated value.
If this attribute is true, it signals the Operations.setattr method that the st_mode field contains an updated value.
If this attribute is true, it signals the Operations.setattr method that the st_uid field contains an updated value.
If this attribute is true, it signals the Operations.setattr method that the st_gid field contains an updated value.
If this attribute is true, it signals the Operations.setattr method that the st_size field contains an updated value.