diff options
author | Miklos Szeredi <mszeredi@suse.cz> | 2008-12-01 19:14:02 +0100 |
---|---|---|
committer | Miklos Szeredi <mszeredi@suse.de> | 2008-12-01 19:14:02 +0100 |
commit | 1f55ed06cf0c361b293b32e5947d35d173eff2aa (patch) | |
tree | 6296fe27bfacb63fcf16100888e19f69948ebaee /include | |
parent | 43901aabd7a043e62e24e9459dc4949b4cd69f07 (diff) | |
download | op-kernel-dev-1f55ed06cf0c361b293b32e5947d35d173eff2aa.zip op-kernel-dev-1f55ed06cf0c361b293b32e5947d35d173eff2aa.tar.gz |
fuse: update interface version
Change interface version to 7.11 after adding the IOCTL and POLL
messages.
Also clean up the <linux/fuse.h> header a bit:
- update copyright date to 2008
- fix checkpatch warning:
WARNING: Use #include <linux/types.h> instead of <asm/types.h>
- remove FUSE_MAJOR define, which is not being used any more
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fuse.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/include/linux/fuse.h b/include/linux/fuse.h index 5650cf0..162e5de 100644 --- a/include/linux/fuse.h +++ b/include/linux/fuse.h @@ -1,6 +1,6 @@ /* FUSE: Filesystem in Userspace - Copyright (C) 2001-2006 Miklos Szeredi <miklos@szeredi.hu> + Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu> This program can be distributed under the terms of the GNU GPL. See the file COPYING. @@ -20,26 +20,27 @@ * * 7.10 * - add nonseekable open flag + * + * 7.11 + * - add IOCTL message + * - add unsolicited notification support + * - add POLL message and NOTIFY_POLL notification */ #ifndef _LINUX_FUSE_H #define _LINUX_FUSE_H -#include <asm/types.h> -#include <linux/major.h> +#include <linux/types.h> /** Version number of this interface */ #define FUSE_KERNEL_VERSION 7 /** Minor version number of this interface */ -#define FUSE_KERNEL_MINOR_VERSION 10 +#define FUSE_KERNEL_MINOR_VERSION 11 /** The node ID of the root inode */ #define FUSE_ROOT_ID 1 -/** The major number of the fuse character device */ -#define FUSE_MAJOR MISC_MAJOR - /* Make sure all structures are padded to 64bit boundary, so 32bit userspace works under 64bit kernels */ |