Merge branch 'linux-zpios' into refs/top-bases/linux-zfs-branch
This commit is contained in:
commit
f15ef90618
|
@ -1264,8 +1264,6 @@ kpios_init(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
class_device_create(kpios_class, NULL, dev, NULL, "kpios");
|
class_device_create(kpios_class, NULL, dev, NULL, "kpios");
|
||||||
|
|
||||||
printk(KERN_INFO "kpios: Loaded Kernel PIOS Tests v%s\n", VERSION);
|
|
||||||
return 0;
|
return 0;
|
||||||
error:
|
error:
|
||||||
printk(KERN_ERR "kpios: Error registering kpios device, %d\n", rc);
|
printk(KERN_ERR "kpios: Error registering kpios device, %d\n", rc);
|
||||||
|
@ -1283,7 +1281,6 @@ kpios_fini(void)
|
||||||
cdev_del(&kpios_cdev);
|
cdev_del(&kpios_cdev);
|
||||||
unregister_chrdev_region(dev, KPIOS_MINORS);
|
unregister_chrdev_region(dev, KPIOS_MINORS);
|
||||||
|
|
||||||
printk(KERN_INFO "kpios: Unloaded Kernel PIOS Tests\n");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
prog=zpios.sh
|
prog=zpios.sh
|
||||||
. ../.script-config
|
. ../.script-config
|
||||||
|
|
||||||
SPL_OPTIONS="spl=spl_debug_mask=0 spl_debug_subsys=0 ${1}"
|
SPL_OPTIONS="spl=spl_debug_mask=-1 spl_debug_subsys=-1 spl_debug_mb=10 ${1}"
|
||||||
ZPOOL_OPTIONS="zpool=$2"
|
ZFS_OPTIONS="zfs=$2"
|
||||||
ZPIOS_OPTIONS=$3
|
ZPIOS_OPTIONS=$3
|
||||||
PROFILE_ZPIOS_LOGS=$4
|
PROFILE_ZPIOS_LOGS=$4
|
||||||
ZPIOS_PRE=$5
|
ZPIOS_PRE=$5
|
||||||
|
@ -27,13 +27,19 @@ echo ---------------------- SPL Sysctl Tunings ------------------------------
|
||||||
sysctl -A | grep spl
|
sysctl -A | grep spl
|
||||||
echo
|
echo
|
||||||
|
|
||||||
echo ------------------- SPL/ZPOOL Module Tunings ---------------------------
|
echo ------------------- SPL Module Tunings ---------------------------
|
||||||
if [ -d /sys/module/spl/parameters ]; then
|
if [ -d /sys/module/spl/parameters ]; then
|
||||||
grep [0-9] /sys/module/spl/parameters/*
|
grep [0-9] /sys/module/spl/parameters/*
|
||||||
grep [0-9] /sys/module/zpool/parameters/*
|
|
||||||
else
|
else
|
||||||
grep [0-9] /sys/module/spl/*
|
grep [0-9] /sys/module/spl/*
|
||||||
grep [0-9] /sys/module/zpool/*
|
fi
|
||||||
|
echo
|
||||||
|
|
||||||
|
echo ------------------- ZFS Module Tunings ---------------------------
|
||||||
|
if [ -d /sys/module/zfs/parameters ]; then
|
||||||
|
grep [0-9] /sys/module/zfs/parameters/*
|
||||||
|
else
|
||||||
|
grep [0-9] /sys/module/zfs/*
|
||||||
fi
|
fi
|
||||||
echo
|
echo
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue