diff options
author | Brian Behlendorf <[email protected]> | 2010-11-11 10:00:39 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2010-11-11 11:38:25 -0800 |
commit | cf47fad67d798f42e6d2edc8b0e9f9b43175703b (patch) | |
tree | 657fd464e797b8943e437042d134e61cd40228fd /zfs-script-config.sh.in | |
parent | e06be586410cdad14d2dce76af4f2d43eebe7c83 (diff) |
Unconditionally load core kernel modules
Loading and unloading the zlib modules as part of the zfs.sh
script has proven a little problematic for a few reasons.
* First, your kernel may not need to load either zlib_inflate
or zlib_deflate. This functionality may be built directly in
to your kernel. It depends entirely on what your distribution
decided was the right thing to do.
* Second, even if you do manage to load the correct modules you
may not be able to unload them. There may other consumers
of the modules with a reference preventing the unload.
To avoid both of these issues the test scripts have been updated to
attempt to unconditionally load all modules listed in KERNEL_MODULES.
If the module is successfully loaded you must have needed it. If
the module can't be loaded that almost certainly means either it is
built in to your kernel or is already being used by another consumer.
In both cases this is not an issue and we can move on to the spl/zfs
modules.
Finally, by removing these kernel modules from the MODULES list
we ensure they are never unloaded during 'zfs.sh -u'. This avoids
the issue of the script failing because there is another consumer
using the module we were not aware of. In other words the script
restricts unloading modules to only the spl/zfs modules.
Closes #78
Diffstat (limited to 'zfs-script-config.sh.in')
-rw-r--r-- | zfs-script-config.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zfs-script-config.sh.in b/zfs-script-config.sh.in index 5ded6dc8b..db4a84654 100644 --- a/zfs-script-config.sh.in +++ b/zfs-script-config.sh.in @@ -39,6 +39,7 @@ LDMOD=/sbin/insmod KERNEL_MODULES=( \ ${KERNELMOD}/lib/zlib_deflate/zlib_deflate.ko \ + ${KERNELMOD}/lib/zlib_inflate/zlib_inflate.ko \ ) SPL_MODULES=( \ @@ -59,7 +60,6 @@ ZPIOS_MODULES=( \ ) MODULES=( \ - ${KERNEL_MODULES[*]} \ ${SPL_MODULES[*]} \ ${ZFS_MODULES[*]} \ ) |