diff options
author | Brian Behlendorf <[email protected]> | 2015-07-23 11:21:08 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2015-07-23 13:25:49 -0700 |
commit | 62aa81a5776c0bc35f05f8923ea3e293527b5264 (patch) | |
tree | 106eee836ad350cbe2e5c0919af68a6ba3360870 /man/man5 | |
parent | 9eb361aaa537724c9a90ab6a9f33521bfd80bad9 (diff) |
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 <[email protected]>
Diffstat (limited to 'man/man5')
-rw-r--r-- | man/man5/spl-module-parameters.5 | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/man/man5/spl-module-parameters.5 b/man/man5/spl-module-parameters.5 index fc38605b2..acdd5b658 100644 --- a/man/man5/spl-module-parameters.5 +++ b/man/man5/spl-module-parameters.5 @@ -269,6 +269,21 @@ Default value: \fB1\fR .sp .ne 2 .na +\fBspl_taskq_thread_priority\fR (int) +.ad +.RS 12n +Allow newly created taskq threads to set a non-default scheduler priority. +When enabled the priority specified when a taskq is created will be applied +to all threads created by that taskq. When disabled all threads will use +the default Linux kernel thread priority. By default, this behavior is +enabled. +.sp +Default value: \fB1\fR +.RE + +.sp +.ne 2 +.na \fBspl_taskq_thread_sequential\fR (int) .ad .RS 12n |