]> git.proxmox.com Git - mirror_zfs.git/blobdiff - module/os/linux/spl/spl-taskq.c
Cleanup: Specify unsignedness on things that should not be signed
[mirror_zfs.git] / module / os / linux / spl / spl-taskq.c
index 3b0c29606c2e504c7ea26d980eb6c4c71d8f7c7c..abf4dca585b2cbfe56210ab184f1628399821520 100644 (file)
@@ -46,8 +46,10 @@ module_param(spl_taskq_thread_priority, int, 0644);
 MODULE_PARM_DESC(spl_taskq_thread_priority,
        "Allow non-default priority for taskq threads");
 
-static int spl_taskq_thread_sequential = 4;
-module_param(spl_taskq_thread_sequential, int, 0644);
+static uint_t spl_taskq_thread_sequential = 4;
+/* BEGIN CSTYLED */
+module_param(spl_taskq_thread_sequential, uint, 0644);
+/* END CSTYLED */
 MODULE_PARM_DESC(spl_taskq_thread_sequential,
        "Create new taskq threads after N sequential tasks");