]> granicus.if.org Git - zfs/commitdiff
Load zlib_inflate.ko
authorBrian Behlendorf <behlendorf1@llnl.gov>
Mon, 21 Mar 2011 23:32:29 +0000 (16:32 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 22 Mar 2011 19:18:44 +0000 (12:18 -0700)
Certain stock kernels (Debian Lenny) are built with zlib_inflate.ko
as a kernel module.  To ensure 'make check' works in-tree load this
module before loading the spl module.  This is now required for the
zlib splat regression test.

scripts/check.sh

index 4e4940685ece1533af5575517b16256c39746f02..8c0e0c5cbe2fcbb2b97e5e75c157abfbdfef5ff1 100755 (executable)
@@ -62,6 +62,7 @@ if [ ! -f ${spl_module} ] || [ ! -f ${splat_module} ]; then
        die "Source tree must be built, run 'make'"
 fi
 
+/sbin/modprobe zlib_inflate &>/dev/null
 /sbin/modprobe zlib_deflate &>/dev/null
 
 spl_module_params="spl_debug_mask=0xffffffff spl_debug_subsys=0xffffffff"