diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2004-11-20 11:12:21 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-11-20 11:12:21 +0000 |
commit | 13ed482774a87185fb4753d84444741b1eb93780 (patch) | |
tree | e5f7d851ca6445bad3d6820a9202ae87bd7a7e2b /kernel/util.c | |
parent | 08ddb8e5e0af8c1326607f4d06c0dbc85733e483 (diff) | |
download | libfuse-13ed482774a87185fb4753d84444741b1eb93780.tar.gz |
fix
Diffstat (limited to 'kernel/util.c')
-rw-r--r-- | kernel/util.c | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/kernel/util.c b/kernel/util.c index ac6455d..fa5b082 100644 --- a/kernel/util.c +++ b/kernel/util.c @@ -9,7 +9,7 @@ #include "fuse_i.h" #include <linux/init.h> -#include <linux/slab.h> +#include <linux/module.h> MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>"); MODULE_DESCRIPTION("Filesystem in Userspace"); @@ -23,9 +23,11 @@ int __init fuse_init(void) { int res; - printk(KERN_DEBUG "fuse init %s (API version %i.%i)\n", - FUSE_VERSION, + printk("fuse init (API version %i.%i)\n", FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION); +#ifndef FUSE_MAINLINE + printk("fuse distribution version: %s\n", FUSE_VERSION); +#endif spin_lock_init(&fuse_lock); res = fuse_fs_init(); @@ -54,10 +56,3 @@ void __exit fuse_exit(void) module_init(fuse_init); module_exit(fuse_exit); - -/* - * Local Variables: - * indent-tabs-mode: t - * c-basic-offset: 8 - * End: - */ |