Merge branch 'linux-have-sysevent' into refs/top-bases/linux-zfs-branch
This commit is contained in:
commit
f8cd6b6b49
|
@ -67,6 +67,7 @@
|
||||||
#include "zfs_namecheck.h"
|
#include "zfs_namecheck.h"
|
||||||
#include "zfs_prop.h"
|
#include "zfs_prop.h"
|
||||||
#include "zfs_deleg.h"
|
#include "zfs_deleg.h"
|
||||||
|
#include "zfs_config.h"
|
||||||
|
|
||||||
extern struct modlfs zfs_modlfs;
|
extern struct modlfs zfs_modlfs;
|
||||||
|
|
||||||
|
@ -3299,7 +3300,8 @@ init(void)
|
||||||
|
|
||||||
rc = _init();
|
rc = _init();
|
||||||
if (!rc)
|
if (!rc)
|
||||||
printk(KERN_INFO "ZFS: Loaded ZFS Filesystem v%s\n", VERSION);
|
printk(KERN_INFO "ZFS: Loaded ZFS Filesystem v%s\n",
|
||||||
|
ZFS_META_VERSION);
|
||||||
|
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
@ -3308,7 +3310,8 @@ void
|
||||||
fini(void)
|
fini(void)
|
||||||
{
|
{
|
||||||
(void)_fini();
|
(void)_fini();
|
||||||
printk(KERN_INFO "ZFS: Unloaded ZFS Filesystem v%s\n", VERSION);
|
printk(KERN_INFO "ZFS: Unloaded ZFS Filesystem v%s\n",
|
||||||
|
ZFS_META_VERSION);
|
||||||
}
|
}
|
||||||
|
|
||||||
module_init(init);
|
module_init(init);
|
||||||
|
|
Loading…
Reference in New Issue