aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/inode.c
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2005-01-10 09:53:04 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2005-01-10 09:53:04 +0000
commitc6ee9fd893a781f4cc994d38598b82b03e183908 (patch)
tree422dcb3b7b486b08656c1f793f83962c4302b4cd /kernel/inode.c
parent8d775f79f17fdd596ee1c6b7e185a1063f260640 (diff)
downloadlibfuse-c6ee9fd893a781f4cc994d38598b82b03e183908.tar.gz
fix
Diffstat (limited to 'kernel/inode.c')
-rw-r--r--kernel/inode.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/kernel/inode.c b/kernel/inode.c
index d052f10..ef99a58 100644
--- a/kernel/inode.c
+++ b/kernel/inode.c
@@ -13,6 +13,7 @@
#include <linux/file.h>
#include <linux/mount.h>
#include <linux/seq_file.h>
+#include <linux/init.h>
#include <linux/module.h>
#ifdef KERNEL_2_6
#include <linux/moduleparam.h>
@@ -23,6 +24,13 @@
#include "compat/parser.h"
#endif
+MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>");
+MODULE_DESCRIPTION("Filesystem in Userspace");
+#ifdef MODULE_LICENSE
+MODULE_LICENSE("GPL");
+#endif
+
+spinlock_t fuse_lock;
static kmem_cache_t *fuse_inode_cachep;
static int mount_count;