Merge branch 'linux-have-sysevent' into refs/top-bases/linux-zfs-branch

This commit is contained in:
Brian Behlendorf 2009-01-09 16:53:53 -08:00
commit 13ab1d30be
2 changed files with 8 additions and 2 deletions

View File

@ -560,6 +560,12 @@ libzfs_init(void)
return (NULL); return (NULL);
} }
#if defined(HAVE_SPL) && !defined(HAVE_GPL_ONLY_SYMBOLS)
/* If we don't have access to GPL-only symbols then we may not
* use the udev APIs, therefore we must mknod the device ourselves. */
(void)mknod(ZFS_DEV, S_IFCHR | 0600, makedev(ZFS_MAJOR, 0));
#endif
if ((hdl->libzfs_fd = open(ZFS_DEV, O_RDWR)) < 0) { if ((hdl->libzfs_fd = open(ZFS_DEV, O_RDWR)) < 0) {
free(hdl); free(hdl);
return (NULL); return (NULL);

View File

@ -3254,7 +3254,7 @@ init(void)
rc = _init(); rc = _init();
if (!rc) if (!rc)
printk(KERN_INFO "ZFS: Loaded v%s\n", VERSION); printk(KERN_INFO "ZFS: Loaded ZFS Filesystem v%s\n", VERSION);
return rc; return rc;
} }
@ -3263,7 +3263,7 @@ void
fini(void) fini(void)
{ {
(void)_fini(); (void)_fini();
printk(KERN_INFO "ZFS: Unloaded v%s\n", VERSION); printk(KERN_INFO "ZFS: Unloaded ZFS Filesystem v%s\n", VERSION);
} }
module_init(init); module_init(init);