uint32_t parallel_direct_writes : 1;
/** Padding. Reserved for future use*/
- unsigned int padding : 23;
- unsigned int padding2 : 32;
- unsigned int padding3 : 32;
+ uint32_t padding : 23;
+ uint32_t padding2 : 32;
+ uint32_t padding3 : 32;
/** File handle id. May be filled in by filesystem in create,
* open, and opendir(). Available in most other file operations on the
/**
* Major version of the protocol (read-only)
*/
- unsigned proto_major;
+ uint32_t proto_major;
/**
* Minor version of the protocol (read-only)
*/
- unsigned proto_minor;
+ uint32_t proto_minor;
/**
* Maximum size of the write buffer
*/
- unsigned max_write;
+ uint32_t max_write;
/**
* Maximum size of read requests. A value of zero indicates no
* in the future, specifying the mount option will no longer
* be necessary.
*/
- unsigned max_read;
+ uint32_t max_read;
/**
* Maximum readahead
*/
- unsigned max_readahead;
+ uint32_t max_readahead;
/**
* Capability flags that the kernel supports (read-only)
*/
- unsigned capable;
+ uint32_t capable;
/**
* Capability flags that the filesystem wants to enable.
* libfuse attempts to initialize this field with
* reasonable default values before calling the init() handler.
*/
- unsigned want;
+ uint32_t want;
/**
* Maximum number of pending "background" requests. A
* call actually blocks, so these are also limited to one per
* thread).
*/
- unsigned max_background;
+ uint32_t max_background;
/**
* Kernel congestion threshold parameter. If the number of pending
* adjust its algorithms accordingly (e.g. by putting a waiting thread
* to sleep instead of using a busy-loop).
*/
- unsigned congestion_threshold;
+ uint32_t congestion_threshold;
/**
* When FUSE_CAP_WRITEBACK_CACHE is enabled, the kernel is responsible
* nano-second resolution. Filesystems supporting only second resolution
* should set this to 1000000000.
*/
- unsigned time_gran;
+ uint32_t time_gran;
/**
* When FUSE_CAP_PASSTHROUGH is enabled, this is the maximum allowed
*/
#define FUSE_BACKING_STACKED_UNDER (0)
#define FUSE_BACKING_STACKED_OVER (1)
- unsigned max_backing_stack_depth;
+ uint32_t max_backing_stack_depth;
/**
* Disable FUSE_INTERRUPT requests.
* 2) Return ENOSYS for the reply of FUSE_INTERRUPT request to
* inform the kernel not to send the FUSE_INTERRUPT request.
*/
- unsigned no_interrupt;
+ uint32_t no_interrupt;
/**
* For future use.
*/
- unsigned reserved[20];
+ uint32_t reserved[20];
};
struct fuse_session;