diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2003-11-03 19:32:14 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2003-11-03 19:32:14 +0000 |
commit | 36ca556cdf9c2086f0b2cc9f1625a9616d307bd3 (patch) | |
tree | d88092c82848ed5d4a83b870be325f64ead4c089 /include | |
parent | 4aa9642bf3bf6ff50b1986572ab3a367e486d79d (diff) | |
download | libfuse-36ca556cdf9c2086f0b2cc9f1625a9616d307bd3.tar.gz |
read combining patch
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fuse.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/fuse.h b/include/linux/fuse.h index 507d872..4be9a28 100644 --- a/include/linux/fuse.h +++ b/include/linux/fuse.h @@ -17,6 +17,11 @@ /** Opening this will yield a new control file */ #define FUSE_DEV "/proc/fs/fuse/dev" +/** Read combining parameters */ +#define FUSE_BLOCK_SHIFT 16 +#define FUSE_BLOCK_SIZE 65536 +#define FUSE_BLOCK_MASK 0xffff0000 + /** Data passed to mount */ struct fuse_mount_data { /** Must be set to FUSE_KERNEL_VERSION */ |