diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2004-01-26 11:28:44 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-01-26 11:28:44 +0000 |
commit | 307242f21bf3ca7a0fb0f30da45b5956f47b0250 (patch) | |
tree | 746fbdb6e416dcba61f905c19be0c33c52de5939 /kernel/fuse_i.h | |
parent | e815c03771bfe19a12f9ff76639b28567942903c (diff) | |
download | libfuse-307242f21bf3ca7a0fb0f30da45b5956f47b0250.tar.gz |
fix
Diffstat (limited to 'kernel/fuse_i.h')
-rw-r--r-- | kernel/fuse_i.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/kernel/fuse_i.h b/kernel/fuse_i.h index f2e55d4..cc386ac 100644 --- a/kernel/fuse_i.h +++ b/kernel/fuse_i.h @@ -8,15 +8,25 @@ #include <linux/fuse.h> +#include <linux/version.h> + +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0) && LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0) +#error Kernel version 2.5.* not supported +#endif +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0) +#define KERNEL_2_6 +#endif + +#ifndef KERNEL_2_6 #include <linux/config.h> #ifdef CONFIG_MODVERSIONS #define MODVERSIONS #include <linux/modversions.h> #endif +#endif #include <linux/kernel.h> #include <linux/module.h> -#include <linux/version.h> #include <linux/fs.h> #include <linux/list.h> #include <linux/spinlock.h> @@ -28,15 +38,6 @@ #define FUSE_BLOCK_PAGE_SHIFT (FUSE_BLOCK_SHIFT - PAGE_CACHE_SHIFT) -#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0) && LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0) -#error Kernel version 2.5.* not supported -#endif - -#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0) -#define KERNEL_2_6 -#endif - - /** * A Fuse connection. * |