Add ZFS load/unload console messages

This commit is contained in:
Brian Behlendorf 2009-01-09 16:28:26 -08:00
parent 1dc5e6d02e
commit d9a45283ce
1 changed files with 15 additions and 2 deletions

View File

@ -3181,13 +3181,26 @@ _fini(void)
}
#ifdef HAVE_SPL
int
__init(void)
{
int rc;
rc = _init();
if (!rc)
printk(KERN_INFO "ZFS: Loaded v%s\n", VERSION);
return rc;
}
void
__fini(void)
{
_fini();
(void)_fini();
printk(KERN_INFO "ZFS: Unloaded v%s\n", VERSION);
}
module_init(_init);
module_init(__init);
module_exit(__fini);
MODULE_AUTHOR("Sun Microsystems, Inc");