]> git.proxmox.com Git - mirror_zfs.git/commit
Set zfs_autoimport_disable default value to 1
authorDan Swartzendruber <dswartz@druber.com>
Thu, 9 Oct 2014 20:45:46 +0000 (16:45 -0400)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 18 Feb 2015 00:09:41 +0000 (16:09 -0800)
commit1611bb7b4fb06cfe43730222e40ef6a109138f12
treef730f423c425928d5a74f53980c43b7124720257
parent7d2868d5fc88a4c30769b44f56a3a88a4277a9ab
Set zfs_autoimport_disable default value to 1

When loading the ZFS kernel modules they should not populate the
spa namespace using the cache file.  This behavior isn't consistent
with other Linux kernel modules and we need to move away from it.
Removing this makes the whole startup process predictable with four
basic steps which are driven by the init system.

1) modprobe
2) zpool import
3) zfs mount
4) zfs share

This change also helps lay the groundwork for eventually removing
the kobj_* compatibility code on the kernel side.  It may need to
be preserved in userspace because libzfs_init() depends on it.
This is why the conditional must be wrapped with an #ifdef _KERNEL.

Signed-off-by: Dan Swartzendruber <dswartz@druber.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #2820
module/zfs/spa_config.c
scripts/zconfig.sh