]> git.proxmox.com Git - mirror_spl.git/commit
Add defclsyspri macro
authorBrian Behlendorf <behlendorf1@llnl.gov>
Thu, 23 Jul 2015 18:21:08 +0000 (11:21 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Thu, 23 Jul 2015 20:25:49 +0000 (13:25 -0700)
commit62aa81a5776c0bc35f05f8923ea3e293527b5264
tree106eee836ad350cbe2e5c0919af68a6ba3360870
parent9eb361aaa537724c9a90ab6a9f33521bfd80bad9
Add defclsyspri macro

Add a new defclsyspri macro which can be used to request the default
Linux scheduler priority.  Neither the minclsyspri or maxclsyspri map
to the default Linux kernel thread priority.  This makes it awkward to
create taskqs which run with the same priority as the rest of the kernel
threads on the system which can lead to performance issues.

All SPL callers which previously used minclsyspri or maxclsyspri have
been changed to use defclsyspri.  The vast majority of callers were
part of the test suite which won't have an external impact.  The few
places where it could impact performance the change was from maxclsyspri
to defclsyspri.  This makes it more likely the process will be scheduled
which may help performance.

To facilitate further performance analysis the spl_taskq_thread_priority
module option has been added.  When disabled (0) all newly created kernel
threads will use the default kernel thread priority.  When enabled (1)
the specified taskq priority will be used.  By default this value is
enabled (1).

Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
include/sys/sysmacros.h
include/sys/taskq.h
man/man5/spl-module-parameters.5
module/spl/spl-kmem-cache.c
module/spl/spl-taskq.c
module/splat/splat-atomic.c
module/splat/splat-kmem.c
module/splat/splat-mutex.c
module/splat/splat-rwlock.c
module/splat/splat-taskq.c
module/splat/splat-thread.c