diff options
author | Robert Mustacchi <rm@joyent.com> | 2015-10-02 15:21:10 +0000 |
---|---|---|
committer | Robert Mustacchi <rm@joyent.com> | 2015-10-12 22:20:40 -0700 |
commit | 7c5f01c17875fc96e2b6119c01a189afd6081e87 (patch) | |
tree | 931f7b7d49e64d4c59af1e7053b7bba28fd911b3 /usr/src/uts | |
parent | e9316f7696401f3e5e263a5939031cb8d5641a88 (diff) | |
download | illumos-gate-7c5f01c17875fc96e2b6119c01a189afd6081e87.tar.gz |
6315 taskq kstat uses the wrong label
Reviewed by: Jerry Jelinek <jerry.jelinek@joyent.com>
Reviewed by: Toomas Soome <tsoome@me.com>
Reviewed by: Garrett D'Amore <garrett@damore.org>
Reviewed by: Igor Kozhukhov <ikozhukhov@gmail.com>
Reviewed by: Josef 'Jeff' Sipek <josef.sipek@nexenta.com>
Approved by: Matthew Ahrens <mahrens@delphix.com>
Diffstat (limited to 'usr/src/uts')
-rw-r--r-- | usr/src/uts/common/os/taskq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/uts/common/os/taskq.c b/usr/src/uts/common/os/taskq.c index 0a781afb9f..f11f9cf3d7 100644 --- a/usr/src/uts/common/os/taskq.c +++ b/usr/src/uts/common/os/taskq.c @@ -602,8 +602,8 @@ struct taskq_kstat { { "executed", KSTAT_DATA_UINT64 }, { "maxtasks", KSTAT_DATA_UINT64 }, { "totaltime", KSTAT_DATA_UINT64 }, - { "nactive", KSTAT_DATA_UINT64 }, { "nalloc", KSTAT_DATA_UINT64 }, + { "nactive", KSTAT_DATA_UINT64 }, { "priority", KSTAT_DATA_UINT64 }, { "threads", KSTAT_DATA_UINT64 }, }; |