aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/configure.ac2
-rw-r--r--kernel/inode.c8
2 files changed, 9 insertions, 1 deletions
diff --git a/kernel/configure.ac b/kernel/configure.ac
index 14d9593..687e45a 100644
--- a/kernel/configure.ac
+++ b/kernel/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(fuse-kernel, 2.2-pre2)
+AC_INIT(fuse-kernel, 2.2-pre3)
AC_CONFIG_HEADERS([config.h])
AC_PROG_INSTALL
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;