From a9a8f848d057eb5e8ab32ef4307ade45e5188bce Mon Sep 17 00:00:00 2001 From: Serapheim Dimitropoulos Date: Fri, 25 Sep 2020 15:04:17 +0000 Subject: [PATCH 1/5] mypy: disallow untyped calls for the sdb directory There was recent work in drgn where all the helpers were annotated with types. With that work in place we no longer need to allow untyped calls. --- .github/workflows/main.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 04db557a..aaff060e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -94,10 +94,7 @@ jobs: # comes with Ubuntu is 0.75 which has a couple of bugs triggered # by our codebase (they've been resolved on trunk though so we # may want to change this soon). - # [2] We supply --allow-untyped-calls because even though drgn has - # stubs on typeshed now, there are still some untyped functions - # (mainly in the helper API). - # [3] We supply --ignore-missing-imports to the tests package because + # [2] We supply --ignore-missing-imports to the tests package because # pytest doesn't provide stubs on typeshed. # mypy: @@ -109,7 +106,7 @@ jobs: python-version: '3.6' - run: ./.github/scripts/install-drgn.sh - run: python3 -m pip install mypy==0.730 - - run: python3 -m mypy --strict --allow-untyped-calls --show-error-codes -p sdb + - run: python3 -m mypy --strict --show-error-codes -p sdb - run: python3 -m mypy --strict --ignore-missing-imports --show-error-codes -p tests # # Verify that "shfmt" ran successfully against our shell scripts. From 140716dbefc76463ab06ea65924ff180aa857e9f Mon Sep 17 00:00:00 2001 From: Matthew Ahrens Date: Fri, 25 Sep 2020 15:11:30 +0000 Subject: [PATCH 2/5] Walker should check for canonicalized type names As we know, drgn type equality does not work right, so we need to compare canonicalized type names. When combined with openzfs/zfs#10236, `zfs_dbgmsg` now works on ztest core dumps. Serapheim Note: With drgn changing its type rules once again this commit is now needed for existing tests to not fail. --- sdb/command.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sdb/command.py b/sdb/command.py index bc75b046..670b6037 100644 --- a/sdb/command.py +++ b/sdb/command.py @@ -643,13 +643,13 @@ def _call(self, objs: Iterable[drgn.Object]) -> Iterable[drgn.Object]: the types as we go. """ assert self.input_type is not None - type_ = target.get_type(self.input_type) + expected_type = type_canonicalize_name(self.input_type) for obj in objs: - if obj.type_ != type_: + if type_canonical_name(obj.type_) != expected_type: raise CommandError( self.name, 'expected input of type {}, but received {}'.format( - type_, obj.type_)) + expected_type, type_canonical_name(obj.type_))) yield from self.walk(obj) From 216a1bfce5ee3223e46a29c0c69b9f6ec39e9379 Mon Sep 17 00:00:00 2001 From: Serapheim Dimitropoulos Date: Fri, 25 Sep 2020 15:15:22 +0000 Subject: [PATCH 3/5] update regression output drgn recently updated its error messages when it comes to page table lookups to match the latest terminology used by the kernel. --- .../data/regression_output/linux/echo 0x0 | cpu_counter_sum | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/data/regression_output/linux/echo 0x0 | cpu_counter_sum b/tests/integration/data/regression_output/linux/echo 0x0 | cpu_counter_sum index be77fffa..c4445251 100644 --- a/tests/integration/data/regression_output/linux/echo 0x0 | cpu_counter_sum +++ b/tests/integration/data/regression_output/linux/echo 0x0 | cpu_counter_sum @@ -1 +1 @@ -sdb: cpu_counter_sum: invalid memory access: could not read memory from kdump: Cannot get page I/O address: PDPT table not present: pgd[0] = 0x0: 0x8 +sdb: cpu_counter_sum: invalid memory access: could not read memory from kdump: Cannot get page I/O address: PDPT table not present: p4d[0] = 0x0: 0x8 From f0bbc585d180f811abd505324a5bea5a6bc00f9f Mon Sep 17 00:00:00 2001 From: Serapheim Dimitropoulos Date: Fri, 25 Sep 2020 15:17:14 +0000 Subject: [PATCH 4/5] ptype: remove anonymous union test and improve error handling In the past we used to assume lazy type rules from drgn and printing an anonymous union or struct from its typedef just worked. Unfortunately, with the latest updates for types in drgn, this no longer works so part of this commit removes the expectation of this functionality from our tests. We may want to introduce this functionality again in the future implemented in a different way. Fortunately, these kind of types are rare. The second part of this commit improves the error handling of looking up types. --- sdb/commands/internal/util.py | 44 +++++++++++++++++-- sdb/commands/ptype.py | 9 ++-- .../data/regression_output/core/ptype $abc | 1 + .../data/regression_output/core/ptype 'a b c' | 1 + .../core/ptype 'bogus union' | 1 + .../core/ptype 'struct bogus' | 1 + .../core/ptype 'struct union' | 1 + .../regression_output/core/ptype 'struct' | 1 + .../core/ptype 'union struct struct' | 1 + .../data/regression_output/core/ptype 2abc | 1 + .../data/regression_output/core/ptype @ | 1 + ...=> ptype zfs_case 'struct v' thread_union} | 7 ++- tests/integration/test_core_generic.py | 12 ++++- 13 files changed, 67 insertions(+), 14 deletions(-) create mode 100644 tests/integration/data/regression_output/core/ptype $abc create mode 100644 tests/integration/data/regression_output/core/ptype 'a b c' create mode 100644 tests/integration/data/regression_output/core/ptype 'bogus union' create mode 100644 tests/integration/data/regression_output/core/ptype 'struct bogus' create mode 100644 tests/integration/data/regression_output/core/ptype 'struct union' create mode 100644 tests/integration/data/regression_output/core/ptype 'struct' create mode 100644 tests/integration/data/regression_output/core/ptype 'union struct struct' create mode 100644 tests/integration/data/regression_output/core/ptype 2abc create mode 100644 tests/integration/data/regression_output/core/ptype @ rename tests/integration/data/regression_output/core/{ptype zfs_case v_t thread_union => ptype zfs_case 'struct v' thread_union} (78%) diff --git a/sdb/commands/internal/util.py b/sdb/commands/internal/util.py index 765832f5..7eb7a046 100644 --- a/sdb/commands/internal/util.py +++ b/sdb/commands/internal/util.py @@ -24,13 +24,46 @@ def get_valid_type_by_name(cmd: sdb.Command, tname: str) -> drgn.Type: """ Given a type name in string form (`tname`) without any C keyword prefixes (e.g. 'struct', 'enum', 'class', 'union'), return the - corresponding drgn.Type object. + corresponding drgn.Type object. If `tname` starts with a C keyword + we just return the type as is. This function is used primarily by commands that accept a type name as an argument and exist only to save keystrokes for the user. """ - if tname in ['struct', 'enum', 'union', 'class']: + TYPE_KEYWORDS = ['struct', 'enum', 'union', 'class'] + + tokens = tname.split() + if len(tokens) > 2: + # + # drgn fails in all kinds of ways when we pass it an + # invalid type that consists of more than 2 text tokens. + # + raise sdb.CommandError(cmd.name, + f"input '{tname}' is not a valid type name") + + if len(tokens) == 2: + if tokens[0] not in TYPE_KEYWORDS or tokens[1] in TYPE_KEYWORDS: + # + # For the same reason mentioned in the above comment + # we also ensure that someone may not invalid two-token + # input that has the following errors: + # 1] Doesn't start with a type keyword - e.g "bogus type" + # 2] Has a type keyword as its type name (also see + # comment below) - e.g. struct struct + # + raise sdb.CommandError(cmd.name, + f"input '{tname}' is not a valid type name") + try: + return sdb.get_type(tname) + except LookupError as err: + raise sdb.CommandError(cmd.name, + f"couldn't find type '{tname}'") from err + except SyntaxError as err: + raise sdb.CommandError( + cmd.name, f"input '{tname}' is not a valid type name") from err + + if tname in TYPE_KEYWORDS: # # Note: We have to do this because currently in drgn # prog.type('struct') returns a different error than @@ -82,9 +115,12 @@ def get_valid_type_by_name(cmd: sdb.Command, tname: str) -> drgn.Type: # it is a structure, an enum, or a union. # pass - for prefix in ["struct ", "enum ", "union "]: + except SyntaxError as err: + raise sdb.CommandError( + cmd.name, f"input '{tname}' is not a valid type name") from err + for prefix in TYPE_KEYWORDS: try: - return sdb.get_type(f"{prefix}{tname}") + return sdb.get_type(f"{prefix} {tname}") except LookupError: pass raise sdb.CommandError( diff --git a/sdb/commands/ptype.py b/sdb/commands/ptype.py index 76395239..2c3c0002 100644 --- a/sdb/commands/ptype.py +++ b/sdb/commands/ptype.py @@ -50,16 +50,15 @@ class PType(sdb.Command): Print enums and unions: - sdb> ptype zfs_case v_t thread_union + sdb> ptype zfs_case 'struct v' thread_union enum zfs_case { ZFS_CASE_SENSITIVE = 0, ZFS_CASE_INSENSITIVE = 1, ZFS_CASE_MIXED = 2, } - typedef union { - iv_t e; - uint8_t b[8]; - } v_t + struct v { + uint8_t b[16]; + } union thread_union { struct task_struct task; unsigned long stack[2048]; diff --git a/tests/integration/data/regression_output/core/ptype $abc b/tests/integration/data/regression_output/core/ptype $abc new file mode 100644 index 00000000..778d3f1f --- /dev/null +++ b/tests/integration/data/regression_output/core/ptype $abc @@ -0,0 +1 @@ +sdb: ptype: input '$abc' is not a valid type name diff --git a/tests/integration/data/regression_output/core/ptype 'a b c' b/tests/integration/data/regression_output/core/ptype 'a b c' new file mode 100644 index 00000000..a01fdde4 --- /dev/null +++ b/tests/integration/data/regression_output/core/ptype 'a b c' @@ -0,0 +1 @@ +sdb: ptype: input 'a b c' is not a valid type name diff --git a/tests/integration/data/regression_output/core/ptype 'bogus union' b/tests/integration/data/regression_output/core/ptype 'bogus union' new file mode 100644 index 00000000..cc1731b6 --- /dev/null +++ b/tests/integration/data/regression_output/core/ptype 'bogus union' @@ -0,0 +1 @@ +sdb: ptype: input 'bogus union' is not a valid type name diff --git a/tests/integration/data/regression_output/core/ptype 'struct bogus' b/tests/integration/data/regression_output/core/ptype 'struct bogus' new file mode 100644 index 00000000..70772673 --- /dev/null +++ b/tests/integration/data/regression_output/core/ptype 'struct bogus' @@ -0,0 +1 @@ +sdb: ptype: couldn't find type 'struct bogus' diff --git a/tests/integration/data/regression_output/core/ptype 'struct union' b/tests/integration/data/regression_output/core/ptype 'struct union' new file mode 100644 index 00000000..5cf94487 --- /dev/null +++ b/tests/integration/data/regression_output/core/ptype 'struct union' @@ -0,0 +1 @@ +sdb: ptype: input 'struct union' is not a valid type name diff --git a/tests/integration/data/regression_output/core/ptype 'struct' b/tests/integration/data/regression_output/core/ptype 'struct' new file mode 100644 index 00000000..3a998af7 --- /dev/null +++ b/tests/integration/data/regression_output/core/ptype 'struct' @@ -0,0 +1 @@ +sdb: ptype: skip keyword 'struct' or quote your type "struct " diff --git a/tests/integration/data/regression_output/core/ptype 'union struct struct' b/tests/integration/data/regression_output/core/ptype 'union struct struct' new file mode 100644 index 00000000..dd412f24 --- /dev/null +++ b/tests/integration/data/regression_output/core/ptype 'union struct struct' @@ -0,0 +1 @@ +sdb: ptype: input 'union struct struct' is not a valid type name diff --git a/tests/integration/data/regression_output/core/ptype 2abc b/tests/integration/data/regression_output/core/ptype 2abc new file mode 100644 index 00000000..39f91fb4 --- /dev/null +++ b/tests/integration/data/regression_output/core/ptype 2abc @@ -0,0 +1 @@ +sdb: ptype: input '2abc' is not a valid type name diff --git a/tests/integration/data/regression_output/core/ptype @ b/tests/integration/data/regression_output/core/ptype @ new file mode 100644 index 00000000..ac8e79dd --- /dev/null +++ b/tests/integration/data/regression_output/core/ptype @ @@ -0,0 +1 @@ +sdb: ptype: input '@' is not a valid type name diff --git a/tests/integration/data/regression_output/core/ptype zfs_case v_t thread_union b/tests/integration/data/regression_output/core/ptype zfs_case 'struct v' thread_union similarity index 78% rename from tests/integration/data/regression_output/core/ptype zfs_case v_t thread_union rename to tests/integration/data/regression_output/core/ptype zfs_case 'struct v' thread_union index 6d123d97..10ab01f0 100644 --- a/tests/integration/data/regression_output/core/ptype zfs_case v_t thread_union +++ b/tests/integration/data/regression_output/core/ptype zfs_case 'struct v' thread_union @@ -3,10 +3,9 @@ enum zfs_case { ZFS_CASE_INSENSITIVE = 1, ZFS_CASE_MIXED = 2, } -typedef union { - iv_t e; - uint8_t b[8]; -} v_t +struct v { + uint8_t b[16]; +} union thread_union { struct task_struct task; unsigned long stack[2048]; diff --git a/tests/integration/test_core_generic.py b/tests/integration/test_core_generic.py index 0a0fea28..b65aabdb 100644 --- a/tests/integration/test_core_generic.py +++ b/tests/integration/test_core_generic.py @@ -119,7 +119,7 @@ # ptype "ptype spa_t", "ptype spa vdev", - "ptype zfs_case v_t thread_union", + "ptype zfs_case 'struct v' thread_union", "ptype 'struct spa'", # sizeof @@ -181,8 +181,18 @@ # ptype - bogus type "ptype bogus_t", + "ptype 'struct bogus'", + "ptype 'a b c'", # ptype - freestanding C keyword "ptype struct spa", + "ptype 'struct'", + "ptype 'struct union'", + "ptype 'bogus union'", + "ptype 'union struct struct'", + # ptype - invalid characters + "ptype @", + "ptype 2abc", + "ptype $abc", # pretty printer passed incorrect type "spa | range_tree", From f0aa360dfcb9d1571a1d2c6950b844702a2dc844 Mon Sep 17 00:00:00 2001 From: Prakash Surya Date: Mon, 19 Oct 2020 10:48:14 -0700 Subject: [PATCH 5/5] Add "cmdline" column to "threads" command (#249) --- sdb/commands/threads.py | 39 +- ...er \"obj.comm == \\\"bogus\\\"\" | thread" | 4 +- .../data/regression_output/linux/thread | 1150 ++++++++--------- .../data/regression_output/linux/threads | 1150 ++++++++--------- ...| filter 'obj.comm == \"java\"' | threads" | 170 +-- 5 files changed, 1269 insertions(+), 1244 deletions(-) diff --git a/sdb/commands/threads.py b/sdb/commands/threads.py index 5845914a..e46eb25a 100644 --- a/sdb/commands/threads.py +++ b/sdb/commands/threads.py @@ -16,16 +16,40 @@ # pylint: disable=missing-docstring +from textwrap import shorten from typing import Callable, Dict, Iterable, Union import drgn from drgn.helpers.linux.pid import for_each_task +from drgn.helpers.linux.mm import cmdline import sdb from sdb.commands.internal.table import Table from sdb.commands.stacks import Stacks +def _cmdline(obj: drgn.Object) -> str: + try: + s = " ".join(map(lambda s: s.decode("utf-8"), cmdline(obj))) + + # + # The command line for a given thread can be obnoxiously long, + # so (by default) we limit it to 50 characters here. This helps + # preserve the readability of the command's output, but comes at + # the cost of not always showing the full command line of a + # thread. + # + return shorten(s, width=50) + except drgn.FaultError: + # + # The command line information is contained in the user address + # space of each thread, rather than in the kernel's address + # space. Thus, often, it may not be possible to retreive the + # thread's command line; e.g. when reading from a core dump. + # + return "" + + class Threads(sdb.Locator, sdb.PrettyPrinter): """ Locate and print information about threads (task_stuct) @@ -36,16 +60,16 @@ class Threads(sdb.Locator, sdb.PrettyPrinter): pid - the pid of the thread's process prio - the priority of the thread comm - the thread's command + cmdline - the thread's command line (when available) EXAMPLE sdb> threads | filter 'obj.comm == "java"' | threads - task state pid prio comm - ------------------ ------------- ---- ---- ---- - 0xffff95d48b0e8000 INTERRUPTIBLE 4386 120 java - 0xffff95d48b0e96c0 INTERRUPTIBLE 4388 120 java - 0xffff95d48b0ead80 INTERRUPTIBLE 4387 120 java - 0xffff95d48b0edb00 INTERRUPTIBLE 4304 120 java - 0xffff95d4af20ad80 INTERRUPTIBLE 4395 120 java + task state pid prio comm cmdline + ------------------ ------------- ---- ---- ---- ---------------------------------------- + 0xffff8c96a7c70000 INTERRUPTIBLE 3029 120 java /usr/bin/java -Ddelphix.debug=true [...] + 0xffff8c96a7c71740 INTERRUPTIBLE 3028 120 java /usr/bin/java -Ddelphix.debug=true [...] + 0xffff8c96a7c75d00 INTERRUPTIBLE 3024 120 java /usr/bin/java -Ddelphix.debug=true [...] + 0xffff8c9715808000 INTERRUPTIBLE 3027 120 java /usr/bin/java -Ddelphix.debug=true [...] """ names = ["threads", "thread"] @@ -58,6 +82,7 @@ class Threads(sdb.Locator, sdb.PrettyPrinter): "pid": lambda obj: int(obj.pid), "prio": lambda obj: int(obj.prio), "comm": lambda obj: str(obj.comm.string_().decode("utf-8")), + "cmdline": _cmdline, } def pretty_print(self, objs: Iterable[drgn.Object]) -> None: diff --git "a/tests/integration/data/regression_output/core/thread | filter \"obj.comm == \\\"bogus\\\"\" | thread" "b/tests/integration/data/regression_output/core/thread | filter \"obj.comm == \\\"bogus\\\"\" | thread" index 8f9d7510..ab7ddfc3 100644 --- "a/tests/integration/data/regression_output/core/thread | filter \"obj.comm == \\\"bogus\\\"\" | thread" +++ "b/tests/integration/data/regression_output/core/thread | filter \"obj.comm == \\\"bogus\\\"\" | thread" @@ -1,2 +1,2 @@ -task state pid prio comm ----- ----- --- ---- ---- +task state pid prio comm cmdline +---- ----- --- ---- ---- ------- diff --git a/tests/integration/data/regression_output/linux/thread b/tests/integration/data/regression_output/linux/thread index e67f513f..572a5f5e 100644 --- a/tests/integration/data/regression_output/linux/thread +++ b/tests/integration/data/regression_output/linux/thread @@ -1,575 +1,575 @@ -task state pid prio comm ------------------- ------------- ---- ---- --------------- -0xffffa087d20edc00 INTERRUPTIBLE 6279 139 z_vdev_file -0xffffa08883df0000 INTERRUPTIBLE 5673 139 zthr_procedure -0xffffa08883df1700 INTERRUPTIBLE 5675 139 zthr_procedure -0xffffa08883df2e00 INTERRUPTIBLE 6190 100 z_wr_int -0xffffa08883df4500 INTERRUPTIBLE 6191 139 z_vdev_file -0xffffa08883df5c00 INTERRUPTIBLE 5674 139 zthr_procedure -0xffffa08884830000 INTERRUPTIBLE 6028 120 su -0xffffa08884831700 RUNNING 6029 120 bash -0xffffa08884832e00 INTERRUPTIBLE 6026 120 sudo -0xffffa08884834500 INTERRUPTIBLE 5981 120 sudo -0xffffa0888548ae00 INTERRUPTIBLE 4506 120 bash -0xffffa08888af9700 INTERRUPTIBLE 4160 120 postgres -0xffffa08888afc500 INTERRUPTIBLE 4158 120 postgres -0xffffa08888afdc00 INTERRUPTIBLE 4159 120 postgres -0xffffa08888c48000 INTERRUPTIBLE 4731 120 java -0xffffa08888c49700 INTERRUPTIBLE 4730 120 java -0xffffa08889750000 INTERRUPTIBLE 4156 120 postgres -0xffffa08889751700 INTERRUPTIBLE 4154 120 postgres -0xffffa08889752e00 INTERRUPTIBLE 4155 120 postgres -0xffffa08889754500 INTERRUPTIBLE 4157 120 postgres -0xffffa08889755c00 INTERRUPTIBLE 4153 120 postgres -0xffffa08889c90000 INTERRUPTIBLE 4369 120 java -0xffffa08889c91700 INTERRUPTIBLE 4163 120 java -0xffffa08889c92e00 INTERRUPTIBLE 4104 120 java -0xffffa08889c94500 INTERRUPTIBLE 4374 120 java -0xffffa08889c95c00 INTERRUPTIBLE 4136 120 java -0xffffa0888c778000 INTERRUPTIBLE 5543 100 z_fr_iss -0xffffa0888c779700 INTERRUPTIBLE 5539 100 z_fr_iss -0xffffa0888c77ae00 INTERRUPTIBLE 5542 100 z_fr_iss -0xffffa0888c77c500 INTERRUPTIBLE 5541 100 z_fr_iss -0xffffa0888c77dc00 INTERRUPTIBLE 5540 100 z_fr_iss -0xffffa0888c784500 INTERRUPTIBLE 5899 139 z_vdev_file -0xffffa0888cc62e00 RUNNING 5983 120 dd -0xffffa0888cc64500 INTERRUPTIBLE 4275 120 bash -0xffffa0888d2c8000 INTERRUPTIBLE 6194 100 z_wr_int -0xffffa0888d2cae00 INTERRUPTIBLE 6030 139 z_vdev_file -0xffffa0888d2cc500 INTERRUPTIBLE 6192 139 z_vdev_file -0xffffa0888d2cdc00 INTERRUPTIBLE 5602 120 mmp -0xffffa0888d2fdc00 INTERRUPTIBLE 6196 100 z_wr_int -0xffffa0888e8a0000 INTERRUPTIBLE 4373 120 java -0xffffa0888e8a1700 INTERRUPTIBLE 4367 120 java -0xffffa0888e8a2e00 INTERRUPTIBLE 4375 120 java -0xffffa0888e8a5c00 INTERRUPTIBLE 4368 120 java -0xffffa08893668000 INTERRUPTIBLE 4726 120 java -0xffffa08893669700 INTERRUPTIBLE 4372 120 java -0xffffa0889366c500 INTERRUPTIBLE 4293 120 java -0xffffa08894458000 INTERRUPTIBLE 4483 120 java -0xffffa0889445ae00 INTERRUPTIBLE 4482 120 java -0xffffa0889445c500 INTERRUPTIBLE 4484 120 java -0xffffa0889445dc00 INTERRUPTIBLE 4481 120 python3 -0xffffa08894560000 INTERRUPTIBLE 4478 120 java -0xffffa08894561700 INTERRUPTIBLE 4729 120 java -0xffffa08894562e00 INTERRUPTIBLE 4479 120 java -0xffffa08894564500 INTERRUPTIBLE 4477 120 python2 -0xffffa08894565c00 INTERRUPTIBLE 4480 120 java -0xffffa08894a68000 INTERRUPTIBLE 4724 120 java -0xffffa08894a69700 INTERRUPTIBLE 4722 120 java -0xffffa08894a6ae00 INTERRUPTIBLE 4723 120 java -0xffffa08894a6dc00 INTERRUPTIBLE 4725 120 java -0xffffa08896518000 INTERRUPTIBLE 4312 120 java -0xffffa08896519700 INTERRUPTIBLE 4364 120 java -0xffffa0889651ae00 INTERRUPTIBLE 4365 120 java -0xffffa0889651c500 INTERRUPTIBLE 4366 120 java -0xffffa0889651dc00 INTERRUPTIBLE 4363 120 java -0xffffa0889bef0000 INTERRUPTIBLE 5553 100 z_trim_int -0xffffa0889bef1700 INTERRUPTIBLE 5549 100 z_cl_int -0xffffa0889bef2e00 INTERRUPTIBLE 5552 100 z_trim_iss -0xffffa0889bef4500 INTERRUPTIBLE 5551 100 z_ioctl_int -0xffffa0889bef5c00 INTERRUPTIBLE 5550 100 z_ioctl_iss -0xffffa0889c9e8000 INTERRUPTIBLE 5555 120 z_prefetch -0xffffa0889c9e9700 INTERRUPTIBLE 5556 120 z_upgrade -0xffffa0889c9eae00 INTERRUPTIBLE 5554 120 z_zvol -0xffffa0889c9ec500 INTERRUPTIBLE 6189 100 z_wr_int -0xffffa0889c9edc00 INTERRUPTIBLE 5589 100 metaslab_group_ -0xffffa0889cd48000 INTERRUPTIBLE 4003 120 java -0xffffa0889cd49700 INTERRUPTIBLE 4099 120 java -0xffffa0889cd4ae00 INTERRUPTIBLE 4007 120 java -0xffffa0889cd4c500 INTERRUPTIBLE 4098 120 java -0xffffa0889cd4dc00 INTERRUPTIBLE 3865 120 java -0xffffa0889fdd0000 INTERRUPTIBLE 4376 120 java -0xffffa0889fdd1700 INTERRUPTIBLE 4469 120 java -0xffffa0889fdd2e00 INTERRUPTIBLE 4379 120 java -0xffffa0889fdd4500 INTERRUPTIBLE 4728 120 java -0xffffa0889fdd5c00 INTERRUPTIBLE 4727 120 java -0xffffa088a150ae00 INTERRUPTIBLE 4505 120 sshd -0xffffa088be0f8000 INTERRUPTIBLE 4152 120 postgres -0xffffa088be0f9700 INTERRUPTIBLE 4150 120 postgres -0xffffa088be0fae00 INTERRUPTIBLE 4151 120 postgres -0xffffa088be0fc500 INTERRUPTIBLE 4148 120 postgres -0xffffa088be0fdc00 INTERRUPTIBLE 4149 120 postgres -0xffffa088c58a8000 INTERRUPTIBLE 5527 100 z_rd_int -0xffffa088c58a9700 INTERRUPTIBLE 5528 101 z_wr_iss -0xffffa088c58aae00 INTERRUPTIBLE 4250 120 (sd-pam) -0xffffa088c58ac500 INTERRUPTIBLE 5529 100 z_wr_iss_h -0xffffa088c58adc00 INTERRUPTIBLE 5526 100 z_rd_int -0xffffa088ca871700 INTERRUPTIBLE 4733 120 java -0xffffa088ca872e00 INTERRUPTIBLE 4735 120 java -0xffffa088ca874500 INTERRUPTIBLE 4732 120 java -0xffffa088ca875c00 INTERRUPTIBLE 4734 120 java -0xffffa088ce681700 INTERRUPTIBLE 5952 139 z_vdev_file -0xffffa088ce682e00 INTERRUPTIBLE 6184 100 z_wr_int -0xffffa088d33d0000 INTERRUPTIBLE 4074 120 java -0xffffa088d33d1700 INTERRUPTIBLE 4033 120 java -0xffffa088d33d2e00 INTERRUPTIBLE 4038 120 java -0xffffa088d33d4500 INTERRUPTIBLE 4291 120 java -0xffffa088d33d5c00 INTERRUPTIBLE 4070 120 java -0xffffa088ef2d0000 INTERRUPTIBLE 2862 120 java -0xffffa088ef2d1700 INTERRUPTIBLE 2866 120 java -0xffffa088ef2d2e00 INTERRUPTIBLE 2861 120 java -0xffffa088ef2d4500 INTERRUPTIBLE 2865 120 java -0xffffa088ef2d5c00 INTERRUPTIBLE 2859 120 java -0xffffa088f0978000 INTERRUPTIBLE 2869 120 java -0xffffa088f0979700 INTERRUPTIBLE 2877 120 java -0xffffa088f097ae00 INTERRUPTIBLE 2868 120 java -0xffffa088f097c500 INTERRUPTIBLE 3859 120 java -0xffffa088f097dc00 INTERRUPTIBLE 2867 120 java -0xffffa088f1e95c00 INTERRUPTIBLE 6309 120 sleep -0xffffa088f6778000 INTERRUPTIBLE 3863 120 java -0xffffa088f6779700 INTERRUPTIBLE 3861 120 java -0xffffa088f677ae00 INTERRUPTIBLE 3864 120 java -0xffffa088f677c500 INTERRUPTIBLE 3862 120 java -0xffffa088f677dc00 INTERRUPTIBLE 3860 120 java -0xffffa088f6e58000 INTERRUPTIBLE 4292 120 java -0xffffa088f6e59700 INTERRUPTIBLE 4006 120 java -0xffffa088f6e5ae00 INTERRUPTIBLE 4005 120 java -0xffffa088f6e5c500 INTERRUPTIBLE 2870 120 java -0xffffa088f6e5dc00 INTERRUPTIBLE 3921 120 java -0xffffa088f7408000 INTERRUPTIBLE 4381 120 java -0xffffa088f7409700 INTERRUPTIBLE 4476 120 java -0xffffa088f740ae00 INTERRUPTIBLE 4474 120 java -0xffffa088f740c500 INTERRUPTIBLE 4473 120 python2 -0xffffa088f740dc00 INTERRUPTIBLE 4475 120 java -0xffffa08905908000 IDLE 3249 120 kworker/1:3 -0xffffa08905909700 INTERRUPTIBLE 2445 120 iscsi_np -0xffffa0890590ae00 INTERRUPTIBLE 5532 100 z_wr_int -0xffffa0890590c500 IDLE 2438 100 target_completi -0xffffa0890590dc00 IDLE 2439 100 xcopy_wq -0xffffa0891e0ec500 INTERRUPTIBLE 2255 120 postgres -0xffffa08930464500 INTERRUPTIBLE 1972 120 gdbus -0xffffa089304e8000 IDLE 774 100 xprtiod -0xffffa089304e9700 INTERRUPTIBLE 2025 120 nfsd -0xffffa089304eae00 INTERRUPTIBLE 2124 120 automount -0xffffa089304ec500 IDLE 935 120 kworker/1:2 -0xffffa089304edc00 INTERRUPTIBLE 1911 120 polkitd -0xffffa08930858000 INTERRUPTIBLE 1291 100 metaslab_group_ -0xffffa08930859700 INTERRUPTIBLE 1795 120 rs:main Q:Reg -0xffffa0893085ae00 INTERRUPTIBLE 1542 120 systemd-network -0xffffa0893085c500 INTERRUPTIBLE 1290 100 metaslab_group_ -0xffffa0893085dc00 IDLE 765 120 kworker/0:3 -0xffffa08931488000 INTERRUPTIBLE 4625 120 nginx -0xffffa08931968000 INTERRUPTIBLE 779 120 blkmapd -0xffffa08931969700 INTERRUPTIBLE 1756 120 cron -0xffffa0893196ae00 INTERRUPTIBLE 4496 120 sshd -0xffffa0893196c500 INTERRUPTIBLE 4237 120 systemd -0xffffa0893196dc00 INTERRUPTIBLE 781 120 systemd-udevd -0xffffa08931d50000 INTERRUPTIBLE 1941 120 delphix-stat-se -0xffffa089320c0000 INTERRUPTIBLE 1942 120 sed -0xffffa089320c1700 INTERRUPTIBLE 1918 120 profile -0xffffa089320c2e00 INTERRUPTIBLE 1977 120 delphix-stat-se -0xffffa089320c4500 INTERRUPTIBLE 1936 120 timeout -0xffffa089320c5c00 INTERRUPTIBLE 1940 120 mpstat -0xffffa089320e0000 IDLE 735 120 kworker/0:2 -0xffffa089320e1700 INTERRUPTIBLE 743 119 systemd-journal -0xffffa089320e2e00 INTERRUPTIBLE 5531 100 z_wr_int -0xffffa089320e4500 INTERRUPTIBLE 1033 120 vmtoolsd -0xffffa089320e5c00 INTERRUPTIBLE 830 49 irq/16-vmwgfx -0xffffa08933048000 INTERRUPTIBLE 1895 120 delphix-stat-se -0xffffa08933049700 INTERRUPTIBLE 1903 120 sed -0xffffa0893304ae00 INTERRUPTIBLE 1934 120 sed -0xffffa0893304c500 INTERRUPTIBLE 1919 120 delphix-stat-se -0xffffa0893304dc00 INTERRUPTIBLE 1871 120 sed -0xffffa0893319dc00 INTERRUPTIBLE 1952 120 nginx -0xffffa08934b58000 INTERRUPTIBLE 2073 120 nfsd -0xffffa08934b59700 INTERRUPTIBLE 2074 120 nfsd -0xffffa08934b5ae00 INTERRUPTIBLE 2077 120 nfsd -0xffffa08934b5c500 INTERRUPTIBLE 2076 120 nfsd -0xffffa08934b5dc00 INTERRUPTIBLE 2075 120 nfsd -0xffffa08934e00000 INTERRUPTIBLE 2067 120 nfsd -0xffffa08934e01700 INTERRUPTIBLE 2068 120 nfsd -0xffffa08934e02e00 INTERRUPTIBLE 2072 120 nfsd -0xffffa08934e04500 INTERRUPTIBLE 2071 120 nfsd -0xffffa08934e05c00 INTERRUPTIBLE 2069 120 nfsd -0xffffa089358f0000 INTERRUPTIBLE 2085 120 nfsd -0xffffa089358f1700 INTERRUPTIBLE 2078 120 nfsd -0xffffa089358f2e00 INTERRUPTIBLE 2084 120 nfsd -0xffffa089358f4500 INTERRUPTIBLE 2082 120 nfsd -0xffffa089358f5c00 INTERRUPTIBLE 2080 120 nfsd -0xffffa08936498000 INTERRUPTIBLE 1910 120 timeout -0xffffa0893649ae00 INTERRUPTIBLE 1906 120 timeout -0xffffa0893649dc00 INTERRUPTIBLE 2021 120 nfs_delete -0xffffa08936800000 INTERRUPTIBLE 2079 120 postgres -0xffffa08936801700 INTERRUPTIBLE 2055 120 sudo -0xffffa08936802e00 INTERRUPTIBLE 4147 120 postgres -0xffffa08936804500 INTERRUPTIBLE 4146 120 postgres -0xffffa08936805c00 INTERRUPTIBLE 4145 120 postgres -0xffffa08936918000 INTERRUPTIBLE 1858 120 sed -0xffffa08936919700 INTERRUPTIBLE 1861 120 sed -0xffffa0893691ae00 INTERRUPTIBLE 1870 120 delphix-stat-se -0xffffa0893691c500 INTERRUPTIBLE 1860 120 delphix-stat-se -0xffffa0893691dc00 INTERRUPTIBLE 1857 120 delphix-stat-se -0xffffa08937f4dc00 INTERRUPTIBLE 5676 139 zthr_procedure -0xffffa08939f70000 INTERRUPTIBLE 2100 120 nfsd -0xffffa08939f71700 INTERRUPTIBLE 2101 120 nfsd -0xffffa08939f72e00 INTERRUPTIBLE 2105 120 nfsd -0xffffa08939f74500 INTERRUPTIBLE 2104 120 nfsd -0xffffa08939f75c00 INTERRUPTIBLE 2103 120 nfsd -0xffffa0893a532e00 INTERRUPTIBLE 1038 116 auditd -0xffffa0893bf78000 INTERRUPTIBLE 2042 120 nfsd -0xffffa0893bf79700 INTERRUPTIBLE 2044 120 nfsd -0xffffa0893bf7ae00 INTERRUPTIBLE 2039 120 nfsd -0xffffa0893bf7c500 INTERRUPTIBLE 2050 120 nfsd -0xffffa0893bf7dc00 INTERRUPTIBLE 2049 120 nfsd -0xffffa0893c088000 INTERRUPTIBLE 5517 100 z_null_iss -0xffffa0893c089700 INTERRUPTIBLE 5519 100 z_rd_iss -0xffffa0893c08ae00 INTERRUPTIBLE 2106 120 nfsd -0xffffa0893c08c500 INTERRUPTIBLE 4742 120 native_oom_hand -0xffffa0893c08dc00 INTERRUPTIBLE 5518 100 z_null_int -0xffffa0893c2b0000 INTERRUPTIBLE 5530 100 z_wr_int -0xffffa0893c2b1700 INTERRUPTIBLE 2127 120 agetty -0xffffa0893c2b2e00 IDLE 4665 120 kworker/1:4 -0xffffa0893c2b4500 INTERRUPTIBLE 2132 120 login -0xffffa0893c2b5c00 IDLE 4666 120 kworker/1:5 -0xffffa0893d898000 INTERRUPTIBLE 2087 120 nfsd -0xffffa0893d899700 INTERRUPTIBLE 2088 120 nfsd -0xffffa0893d89ae00 INTERRUPTIBLE 2086 120 nfsd -0xffffa0893d89c500 INTERRUPTIBLE 2097 120 nfsd -0xffffa0893d89dc00 INTERRUPTIBLE 2089 120 nfsd -0xffffa0893dd30000 INTERRUPTIBLE 2878 120 sleep -0xffffa0893dd31700 INTERRUPTIBLE 2083 120 sleep -0xffffa0893dd34500 INTERRUPTIBLE 2874 120 sleep -0xffffa0893f968000 INTERRUPTIBLE 2093 120 nfsd -0xffffa0893f969700 INTERRUPTIBLE 2095 120 nfsd -0xffffa0893f96ae00 INTERRUPTIBLE 2092 120 nfsd -0xffffa0893f96c500 INTERRUPTIBLE 2091 120 nfsd -0xffffa0893f96dc00 INTERRUPTIBLE 2096 120 nfsd -0xffffa089405c9700 INTERRUPTIBLE 1995 120 sed -0xffffa089405cc500 INTERRUPTIBLE 2879 120 sleep -0xffffa089405cdc00 INTERRUPTIBLE 5464 120 sleep -0xffffa089408f0000 INTERRUPTIBLE 2098 120 nfsd -0xffffa089408f1700 INTERRUPTIBLE 1578 120 systemd-resolve -0xffffa089408f2e00 INTERRUPTIBLE 1688 120 sshd -0xffffa089408f4500 INTERRUPTIBLE 1794 120 in:imklog -0xffffa089408f5c00 INTERRUPTIBLE 1793 120 in:imuxsock -0xffffa089408f8000 INTERRUPTIBLE 1781 120 networkd-dispat -0xffffa089408f9700 INTERRUPTIBLE 1998 120 nfsd -0xffffa089408fae00 INTERRUPTIBLE 2017 120 nfsd -0xffffa089408fc500 INTERRUPTIBLE 1783 120 systemd-logind -0xffffa089408fdc00 INTERRUPTIBLE 1782 120 zed -0xffffa08940960000 INTERRUPTIBLE 2035 120 nfsd -0xffffa08940961700 INTERRUPTIBLE 2028 120 nfsd -0xffffa08940962e00 INTERRUPTIBLE 1730 120 dbus-daemon -0xffffa08940964500 INTERRUPTIBLE 5525 100 z_rd_int -0xffffa08940965c00 INTERRUPTIBLE 1728 120 rsyslogd -0xffffa089410b9700 INTERRUPTIBLE 2125 120 automount -0xffffa089410bae00 INTERRUPTIBLE 2126 120 automount -0xffffa089410bc500 INTERRUPTIBLE 2150 120 automount -0xffffa08941a68000 INTERRUPTIBLE 5548 100 z_cl_iss -0xffffa08941a69700 INTERRUPTIBLE 5544 100 z_fr_iss -0xffffa08941a6ae00 INTERRUPTIBLE 5547 100 z_fr_int -0xffffa08941a6c500 INTERRUPTIBLE 5546 100 z_fr_iss -0xffffa08941a6dc00 INTERRUPTIBLE 5545 100 z_fr_iss -0xffffa08941afae00 INTERRUPTIBLE 4756 120 oom_waiter -0xffffa08941f68000 INTERRUPTIBLE 2063 120 nfsd -0xffffa08941f69700 INTERRUPTIBLE 2064 120 nfsd -0xffffa08941f6ae00 INTERRUPTIBLE 2062 120 nfsd -0xffffa08941f6c500 INTERRUPTIBLE 2059 120 nfsd -0xffffa08941f6dc00 INTERRUPTIBLE 2066 120 nfsd -0xffffa0894483dc00 INTERRUPTIBLE 2045 120 gmain -0xffffa089481b8000 INTERRUPTIBLE 5520 100 z_rd_int -0xffffa089481b9700 INTERRUPTIBLE 5524 100 z_rd_int -0xffffa089481bae00 INTERRUPTIBLE 5521 100 z_rd_int -0xffffa089481bc500 INTERRUPTIBLE 5523 100 z_rd_int -0xffffa089481bdc00 INTERRUPTIBLE 5522 100 z_rd_int -0xffffa0894b280000 INTERRUPTIBLE 1958 120 iostat -0xffffa0894b281700 INTERRUPTIBLE 1959 120 delphix-stat-se -0xffffa0894b282e00 INTERRUPTIBLE 1964 120 sed -0xffffa0894b284500 INTERRUPTIBLE 5472 120 sleep -0xffffa0894b285c00 INTERRUPTIBLE 2011 120 delphix-stat-se -0xffffa0894cc80000 INTERRUPTIBLE 2252 120 postgres -0xffffa0894cc81700 INTERRUPTIBLE 2250 120 postgres -0xffffa0894cc82e00 INTERRUPTIBLE 2251 120 postgres -0xffffa0894cc84500 INTERRUPTIBLE 2254 120 postgres -0xffffa0894cc85c00 INTERRUPTIBLE 2253 120 postgres -0xffffa0894e6a8000 INTERRUPTIBLE 5976 139 z_vdev_file -0xffffa0894e6a9700 INTERRUPTIBLE 1772 120 nscd -0xffffa0894e6aae00 INTERRUPTIBLE 2004 120 nfsd -0xffffa0894e6ac500 INTERRUPTIBLE 2007 120 nfsd -0xffffa0894e6adc00 INTERRUPTIBLE 2013 120 nfsd -0xffffa0894e7b0000 INTERRUPTIBLE 1984 120 nfsd -0xffffa0894e7b1700 INTERRUPTIBLE 1987 120 nfsd -0xffffa0894e7b2e00 INTERRUPTIBLE 1237 100 z_null_iss -0xffffa0894e7b4500 INTERRUPTIBLE 1991 120 nfsd -0xffffa0894e7b5c00 INTERRUPTIBLE 1986 120 nfsd -0xffffa0894e7f0000 INTERRUPTIBLE 1240 100 z_rd_int -0xffffa0894e7f1700 INTERRUPTIBLE 1241 100 z_rd_int -0xffffa0894e7f2e00 INTERRUPTIBLE 1239 100 z_rd_iss -0xffffa0894e7f4500 INTERRUPTIBLE 1238 100 z_null_int -0xffffa0894e7f5c00 INTERRUPTIBLE 1242 100 z_rd_int -0xffffa0894e7f8000 INTERRUPTIBLE 1246 100 z_rd_int -0xffffa0894e7f9700 INTERRUPTIBLE 1247 100 z_rd_int -0xffffa0894e7fae00 INTERRUPTIBLE 1245 100 z_rd_int -0xffffa0894e7fc500 INTERRUPTIBLE 1244 100 z_rd_int -0xffffa0894e7fdc00 INTERRUPTIBLE 1243 100 z_rd_int -0xffffa0894ea70000 INTERRUPTIBLE 1252 100 z_wr_int -0xffffa0894ea71700 INTERRUPTIBLE 1248 101 z_wr_iss -0xffffa0894ea72e00 INTERRUPTIBLE 1251 100 z_wr_int -0xffffa0894ea74500 INTERRUPTIBLE 1250 100 z_wr_int -0xffffa0894ea75c00 INTERRUPTIBLE 1249 100 z_wr_iss_h -0xffffa0894ea78000 INTERRUPTIBLE 1256 100 z_wr_int -0xffffa0894ea79700 INTERRUPTIBLE 1257 100 z_wr_int -0xffffa0894ea7ae00 INTERRUPTIBLE 1255 100 z_wr_int -0xffffa0894ea7c500 INTERRUPTIBLE 1254 100 z_wr_int -0xffffa0894ea7dc00 INTERRUPTIBLE 1253 100 z_wr_int -0xffffa0894eaa8000 INTERRUPTIBLE 1259 100 z_fr_iss -0xffffa0894eaa9700 INTERRUPTIBLE 1260 100 z_fr_iss -0xffffa0894eaaae00 INTERRUPTIBLE 1258 100 z_wr_int_h -0xffffa0894eaac500 INTERRUPTIBLE 1262 100 z_fr_iss -0xffffa0894eaadc00 INTERRUPTIBLE 1261 100 z_fr_iss -0xffffa0894eab8000 INTERRUPTIBLE 1264 100 z_fr_iss -0xffffa0894eab9700 INTERRUPTIBLE 1265 100 z_fr_iss -0xffffa0894eabae00 INTERRUPTIBLE 1263 100 z_fr_iss -0xffffa0894eabc500 INTERRUPTIBLE 1267 100 z_fr_int -0xffffa0894eabdc00 INTERRUPTIBLE 1266 100 z_fr_iss -0xffffa0894eb60000 INTERRUPTIBLE 1272 100 z_trim_iss -0xffffa0894eb61700 INTERRUPTIBLE 1268 100 z_cl_iss -0xffffa0894eb62e00 INTERRUPTIBLE 1271 100 z_ioctl_int -0xffffa0894eb64500 INTERRUPTIBLE 1270 100 z_ioctl_iss -0xffffa0894eb65c00 INTERRUPTIBLE 1269 100 z_cl_int -0xffffa0894eb68000 INTERRUPTIBLE 2057 120 nfsd -0xffffa0894eb69700 INTERRUPTIBLE 1273 100 z_trim_int -0xffffa0894eb6ae00 INTERRUPTIBLE 1276 120 z_upgrade -0xffffa0894eb6c500 INTERRUPTIBLE 1275 120 z_prefetch -0xffffa0894eb6dc00 INTERRUPTIBLE 1274 120 z_zvol -0xffffa0894ebb0000 INTERRUPTIBLE 1282 139 dp_zil_clean_ta -0xffffa0894ebb1700 INTERRUPTIBLE 1283 139 dp_zil_clean_ta -0xffffa0894ebb2e00 INTERRUPTIBLE 1281 139 dp_sync_taskq -0xffffa0894ebb4500 INTERRUPTIBLE 1284 120 z_iput -0xffffa0894ebb5c00 INTERRUPTIBLE 1285 120 z_unlinked_drai -0xffffa08950a89700 INTERRUPTIBLE 2121 120 rngd -0xffffa08951028000 INTERRUPTIBLE 5534 100 z_wr_int -0xffffa08951029700 INTERRUPTIBLE 5535 100 z_wr_int -0xffffa0895102ae00 INTERRUPTIBLE 5538 100 z_wr_int_h -0xffffa0895102c500 INTERRUPTIBLE 5537 100 z_wr_int -0xffffa0895102dc00 INTERRUPTIBLE 5536 100 z_wr_int -0xffffa08952e58000 INTERRUPTIBLE 555 139 zthr_procedure -0xffffa08952e59700 INTERRUPTIBLE 557 139 zthr_procedure -0xffffa08952e5ae00 INTERRUPTIBLE 553 120 mmp -0xffffa08952e5c500 INTERRUPTIBLE 556 139 zthr_procedure -0xffffa08952e5dc00 INTERRUPTIBLE 554 139 zthr_procedure -0xffffa08952e70000 INTERRUPTIBLE 494 100 metaslab_group_ -0xffffa08952e71700 INTERRUPTIBLE 491 120 z_unlinked_drai -0xffffa08952e72e00 IDLE 766 120 kworker/0:4 -0xffffa08952e74500 IDLE 767 100 rpciod -0xffffa08952e75c00 INTERRUPTIBLE 493 100 metaslab_group_ -0xffffa08952ec0000 INTERRUPTIBLE 1887 120 rpc.mountd -0xffffa08952ec1700 INTERRUPTIBLE 5533 100 z_wr_int -0xffffa08952ec2e00 INTERRUPTIBLE 1878 120 rpc.idmapd -0xffffa08952ec4500 INTERRUPTIBLE 1037 116 auditd -0xffffa08952ec5c00 INTERRUPTIBLE 1968 120 gmain -0xffffa089533f8000 INTERRUPTIBLE 489 139 dp_zil_clean_ta -0xffffa089533f9700 INTERRUPTIBLE 490 120 z_iput -0xffffa089533fae00 INTERRUPTIBLE 488 139 dp_zil_clean_ta -0xffffa089533fc500 INTERRUPTIBLE 487 139 dp_sync_taskq -0xffffa089533fdc00 INTERRUPTIBLE 485 120 z_upgrade -0xffffa08953468000 INTERRUPTIBLE 482 100 z_trim_int -0xffffa08953469700 INTERRUPTIBLE 483 120 z_zvol -0xffffa0895346ae00 INTERRUPTIBLE 481 100 z_trim_iss -0xffffa0895346c500 INTERRUPTIBLE 480 100 z_ioctl_int -0xffffa0895346dc00 INTERRUPTIBLE 484 120 z_prefetch -0xffffa08953470000 INTERRUPTIBLE 477 100 z_cl_iss -0xffffa08953471700 INTERRUPTIBLE 478 100 z_cl_int -0xffffa08953472e00 INTERRUPTIBLE 476 100 z_fr_int -0xffffa08953474500 INTERRUPTIBLE 475 100 z_fr_iss -0xffffa08953475c00 INTERRUPTIBLE 479 100 z_ioctl_iss -0xffffa089534a0000 INTERRUPTIBLE 471 100 z_fr_iss -0xffffa089534a1700 INTERRUPTIBLE 472 100 z_fr_iss -0xffffa089534a2e00 INTERRUPTIBLE 470 100 z_fr_iss -0xffffa089534a4500 INTERRUPTIBLE 474 100 z_fr_iss -0xffffa089534a5c00 INTERRUPTIBLE 473 100 z_fr_iss -0xffffa089534b0000 INTERRUPTIBLE 467 100 z_wr_int_h -0xffffa089534b1700 INTERRUPTIBLE 468 100 z_fr_iss -0xffffa089534b2e00 INTERRUPTIBLE 466 100 z_wr_int -0xffffa089534b4500 INTERRUPTIBLE 465 100 z_wr_int -0xffffa089534b5c00 INTERRUPTIBLE 469 100 z_fr_iss -0xffffa08953508000 INTERRUPTIBLE 461 100 z_wr_int -0xffffa08953509700 INTERRUPTIBLE 462 100 z_wr_int -0xffffa0895350ae00 INTERRUPTIBLE 460 100 z_wr_int -0xffffa0895350c500 INTERRUPTIBLE 464 100 z_wr_int -0xffffa0895350dc00 INTERRUPTIBLE 463 100 z_wr_int -0xffffa08953510000 INTERRUPTIBLE 458 100 z_wr_iss_h -0xffffa08953511700 INTERRUPTIBLE 459 100 z_wr_int -0xffffa08953512e00 INTERRUPTIBLE 457 101 z_wr_iss -0xffffa08953514500 INTERRUPTIBLE 456 100 z_rd_int -0xffffa08953515c00 INTERRUPTIBLE 455 100 z_rd_int -0xffffa08953ac5c00 INTERRUPTIBLE 5588 100 metaslab_group_ -0xffffa08953ac8000 INTERRUPTIBLE 5595 139 dp_zil_clean_ta -0xffffa08953ac9700 INTERRUPTIBLE 6186 139 z_vdev_file -0xffffa08953acae00 INTERRUPTIBLE 5592 139 dp_sync_taskq -0xffffa08953acdc00 INTERRUPTIBLE 6188 139 z_vdev_file -0xffffa089553a8000 INTERRUPTIBLE 1335 120 txg_quiesce -0xffffa089553a9700 INTERRUPTIBLE 1336 120 txg_sync -0xffffa089553aae00 INTERRUPTIBLE 2099 120 nfsd -0xffffa089553ac500 INTERRUPTIBLE 1338 139 zthr_procedure -0xffffa089553adc00 INTERRUPTIBLE 1337 120 mmp -0xffffa089553b8000 INTERRUPTIBLE 1340 139 zthr_procedure -0xffffa089553b9700 INTERRUPTIBLE 1341 139 zthr_procedure -0xffffa089553bae00 INTERRUPTIBLE 1339 139 zthr_procedure -0xffffa089553bc500 INTERRUPTIBLE 1792 120 snmpd -0xffffa089553bdc00 INTERRUPTIBLE 2002 120 nfsd -0xffffa0895541ae00 INTERRUPTIBLE 1798 120 zed -0xffffa0895541dc00 INTERRUPTIBLE 1797 120 zed -0xffffa08956018000 INTERRUPTIBLE 1785 120 nscd -0xffffa08956019700 INTERRUPTIBLE 1786 120 nscd -0xffffa0895601ae00 INTERRUPTIBLE 1788 120 nscd -0xffffa0895601c500 INTERRUPTIBLE 1787 120 nscd -0xffffa0895601dc00 INTERRUPTIBLE 1784 120 nscd -0xffffa089560c1700 INTERRUPTIBLE 1789 120 nscd -0xffffa089560c2e00 INTERRUPTIBLE 1791 120 nscd -0xffffa089560c4500 INTERRUPTIBLE 1790 120 nscd -0xffffa08956848000 INTERRUPTIBLE 367 120 arc_prune -0xffffa08956849700 INTERRUPTIBLE 372 139 zthr_procedure -0xffffa0895684ae00 INTERRUPTIBLE 373 120 dbu_evict -0xffffa0895684c500 INTERRUPTIBLE 371 139 zthr_procedure -0xffffa0895684dc00 INTERRUPTIBLE 375 139 dbuf_evict -0xffffa08957580000 IDLE 266 100 scsi_tmf_2 -0xffffa08957581700 IDLE 267 120 kworker/u4:4 -0xffffa08957582e00 INTERRUPTIBLE 265 120 scsi_eh_2 -0xffffa08957584500 IDLE 268 120 kworker/u4:5 -0xffffa08957585c00 IDLE 264 100 kworker/0:1H -0xffffa08957d18000 IDLE 170 100 scsi_tmf_0 -0xffffa08957d19700 INTERRUPTIBLE 171 120 scsi_eh_1 -0xffffa08957d1ae00 INTERRUPTIBLE 1845 120 rsync -0xffffa08957d1c500 IDLE 173 120 kworker/u4:2 -0xffffa08957d1dc00 IDLE 172 100 scsi_tmf_1 -0xffffa08957da8000 INTERRUPTIBLE 346 100 spl_system_task -0xffffa08957da9700 INTERRUPTIBLE 552 120 txg_sync -0xffffa08957daae00 INTERRUPTIBLE 349 100 spl_kmem_cache -0xffffa08957dac500 INTERRUPTIBLE 348 100 spl_dynamic_tas -0xffffa08957dadc00 INTERRUPTIBLE 347 100 spl_delay_taskq -0xffffa08957db0000 INTERRUPTIBLE 451 100 z_rd_int -0xffffa08957db1700 INTERRUPTIBLE 452 100 z_rd_int -0xffffa08957db2e00 INTERRUPTIBLE 453 100 z_rd_int -0xffffa08957db4500 INTERRUPTIBLE 454 100 z_rd_int -0xffffa08957db5c00 IDLE 251 100 mpt_poll_0 -0xffffa08957db8000 IDLE 199 100 charger_manager -0xffffa08957db9700 INTERRUPTIBLE 450 100 z_rd_int -0xffffa08957dbae00 INTERRUPTIBLE 449 100 z_rd_int -0xffffa08957dbc500 INTERRUPTIBLE 448 100 z_rd_iss -0xffffa08957dbdc00 IDLE 200 100 kworker/1:1H -0xffffa08957e38000 IDLE 837 100 ttm_swap -0xffffa08957e39700 IDLE 1926 100 kworker/u5:1 -0xffffa08957e3ae00 INTERRUPTIBLE 2019 120 nfsd -0xffffa08957e3c500 INTERRUPTIBLE 551 120 txg_quiesce -0xffffa08957e3dc00 INTERRUPTIBLE 2054 120 nfsd -0xffffa08958028000 INTERRUPTIBLE 143 49 irq/31-pciehp -0xffffa08958029700 INTERRUPTIBLE 142 49 irq/30-pciehp -0xffffa0895802ae00 INTERRUPTIBLE 144 49 irq/32-pciehp -0xffffa0895802c500 INTERRUPTIBLE 140 49 irq/28-pciehp -0xffffa0895802dc00 INTERRUPTIBLE 141 49 irq/29-pciehp -0xffffa08958030000 INTERRUPTIBLE 153 49 irq/41-pciehp -0xffffa08958031700 INTERRUPTIBLE 150 49 irq/38-pciehp -0xffffa08958032e00 INTERRUPTIBLE 154 49 irq/42-pciehp -0xffffa08958034500 INTERRUPTIBLE 151 49 irq/39-pciehp -0xffffa08958035c00 INTERRUPTIBLE 152 49 irq/40-pciehp -0xffffa08958038000 INTERRUPTIBLE 139 49 irq/27-pciehp -0xffffa08958039700 IDLE 135 100 kthrotld -0xffffa0895803ae00 INTERRUPTIBLE 138 49 irq/26-pciehp -0xffffa0895803c500 INTERRUPTIBLE 136 49 irq/24-pciehp -0xffffa0895803dc00 INTERRUPTIBLE 137 49 irq/25-pciehp -0xffffa08958080000 INTERRUPTIBLE 2058 120 nfsd -0xffffa08958081700 INTERRUPTIBLE 1031 120 VGAuthService -0xffffa08958082e00 IDLE 174 120 kworker/u4:3 -0xffffa08958084500 IDLE 175 100 kstrp -0xffffa08958085c00 INTERRUPTIBLE 1979 120 nfsd -0xffffa08958088000 INTERRUPTIBLE 163 49 irq/51-pciehp -0xffffa08958089700 INTERRUPTIBLE 160 49 irq/48-pciehp -0xffffa0895808ae00 INTERRUPTIBLE 161 49 irq/49-pciehp -0xffffa0895808c500 INTERRUPTIBLE 164 49 irq/52-pciehp -0xffffa0895808dc00 INTERRUPTIBLE 162 49 irq/50-pciehp -0xffffa08958098000 INTERRUPTIBLE 149 49 irq/37-pciehp -0xffffa08958099700 INTERRUPTIBLE 148 49 irq/36-pciehp -0xffffa0895809ae00 INTERRUPTIBLE 145 49 irq/33-pciehp -0xffffa0895809c500 INTERRUPTIBLE 146 49 irq/34-pciehp -0xffffa0895809dc00 INTERRUPTIBLE 147 49 irq/35-pciehp -0xffffa089580b0000 INTERRUPTIBLE 1992 120 nfsd -0xffffa089580b1700 INTERRUPTIBLE 379 120 l2arc_feed -0xffffa089580b2e00 INTERRUPTIBLE 378 139 z_vdev_file -0xffffa089580b4500 INTERRUPTIBLE 1996 120 nfsd -0xffffa089580b5c00 INTERRUPTIBLE 1994 120 nfsd -0xffffa089580e0000 INTERRUPTIBLE 158 49 irq/46-pciehp -0xffffa089580e1700 INTERRUPTIBLE 157 49 irq/45-pciehp -0xffffa089580e2e00 INTERRUPTIBLE 155 49 irq/43-pciehp -0xffffa089580e4500 INTERRUPTIBLE 159 49 irq/47-pciehp -0xffffa089580e5c00 INTERRUPTIBLE 156 49 irq/44-pciehp -0xffffa08958208000 INTERRUPTIBLE 167 49 irq/55-pciehp -0xffffa08958209700 IDLE 168 100 acpi_thermal_pm -0xffffa0895820ae00 INTERRUPTIBLE 166 49 irq/54-pciehp -0xffffa0895820c500 INTERRUPTIBLE 165 49 irq/53-pciehp -0xffffa0895820dc00 INTERRUPTIBLE 169 120 scsi_eh_0 -0xffffa089587b8000 INTERRUPTIBLE 447 100 z_null_int -0xffffa089587b9700 IDLE 253 100 mpt/0 -0xffffa089587bae00 INTERRUPTIBLE 446 100 z_null_iss -0xffffa089587bc500 INTERRUPTIBLE 46 120 ecryptfs-kthrea -0xffffa089587bdc00 IDLE 45 100 kworker/u5:0 -0xffffa08959894500 INTERRUPTIBLE 5891 139 z_vdev_file -0xffffa0895a318000 INTERRUPTIBLE 5599 120 txg_quiesce -0xffffa0895a319700 INTERRUPTIBLE 5597 120 z_iput -0xffffa0895a31ae00 INTERRUPTIBLE 5598 120 z_unlinked_drai -0xffffa0895a31c500 INTERRUPTIBLE 5596 139 dp_zil_clean_ta -0xffffa0895a31dc00 INTERRUPTIBLE 5601 120 txg_sync -0xffffa0895a328000 INTERRUPTIBLE 4143 120 postgres -0xffffa0895a329700 INTERRUPTIBLE 4141 120 postgres -0xffffa0895a32ae00 INTERRUPTIBLE 4144 120 postgres -0xffffa0895a32dc00 INTERRUPTIBLE 4142 120 postgres -0xffffa08960a20000 INTERRUPTIBLE 3853 120 java -0xffffa08960a21700 INTERRUPTIBLE 3858 120 java -0xffffa08960a22e00 INTERRUPTIBLE 3857 120 java -0xffffa08960a24500 INTERRUPTIBLE 2910 120 java -0xffffa08960a25c00 INTERRUPTIBLE 3856 120 java -0xffffa08960a38000 INTERRUPTIBLE 2853 120 java -0xffffa08960a39700 INTERRUPTIBLE 2880 120 java -0xffffa08960a3ae00 INTERRUPTIBLE 2857 120 java -0xffffa08960a3c500 INTERRUPTIBLE 2858 120 java -0xffffa08960a3dc00 INTERRUPTIBLE 2856 120 java -0xffffa08960f42e00 INTERRUPTIBLE 2156 120 automount -0xffffa08965109700 INTERRUPTIBLE 2012 120 sed -0xffffa0896510ae00 INTERRUPTIBLE 1990 120 delphix-stat-se -0xffffa0896510c500 INTERRUPTIBLE 5468 120 sleep -0xffffa0896510dc00 INTERRUPTIBLE 1982 120 sed -0xffffa089666d0000 IDLE 38 100 devfreq_wq -0xffffa089666d1700 INTERRUPTIBLE 39 0 watchdogd -0xffffa089666d2e00 IDLE 37 100 edac-poller -0xffffa089666d4500 IDLE 36 100 md -0xffffa089666d5c00 IDLE 35 100 ata_sff -0xffffa08966790000 IDLE 318 100 raid5wq -0xffffa08966791700 INTERRUPTIBLE 44 120 kswapd0 -0xffffa08966792e00 INTERRUPTIBLE 357 100 zvol -0xffffa08966794500 IDLE 41 120 kworker/u4:1 -0xffffa08966795c00 IDLE 40 120 kworker/1:1 -0xffffa089669e8000 IDLE 4 100 rcu_par_gp -0xffffa089669e9700 IDLE 5 120 kworker/0:0 -0xffffa089669eae00 IDLE 3 100 rcu_gp -0xffffa089669ec500 INTERRUPTIBLE 2 120 kthreadd -0xffffa089669edc00 INTERRUPTIBLE 1 120 systemd -0xffffa08966a00000 INTERRUPTIBLE 9 120 ksoftirqd/0 -0xffffa08966a01700 RUNNING 10 120 rcu_sched -0xffffa08966a02e00 IDLE 8 100 mm_percpu_wq -0xffffa08966a04500 IDLE 7 120 kworker/u4:0 -0xffffa08966a05c00 IDLE 6 100 kworker/0:0H -0xffffa08966a08000 INTERRUPTIBLE 12 49 idle_inject/0 -0xffffa08966a09700 IDLE 13 120 kworker/0:1 -0xffffa08966a0ae00 INTERRUPTIBLE 11 0 migration/0 -0xffffa08966a0c500 INTERRUPTIBLE 14 120 cpuhp/0 -0xffffa08966a50000 INTERRUPTIBLE 15 120 cpuhp/1 -0xffffa08966a51700 INTERRUPTIBLE 16 49 idle_inject/1 -0xffffa08966a52e00 IDLE 19 120 kworker/1:0 -0xffffa08966a54500 INTERRUPTIBLE 18 120 ksoftirqd/1 -0xffffa08966a55c00 INTERRUPTIBLE 17 0 migration/1 -0xffffa08966a68000 INTERRUPTIBLE 24 120 kauditd -0xffffa08966a69700 IDLE 20 100 kworker/1:0H -0xffffa08966a6ae00 INTERRUPTIBLE 23 120 rcu_tasks_kthre -0xffffa08966a6c500 IDLE 22 100 netns -0xffffa08966a6dc00 INTERRUPTIBLE 21 120 kdevtmpfs -0xffffa08966bc8000 INTERRUPTIBLE 26 120 oom_reaper -0xffffa08966bc9700 IDLE 27 100 writeback -0xffffa08966bcae00 INTERRUPTIBLE 25 120 khungtaskd -0xffffa08966bcc500 INTERRUPTIBLE 29 125 ksmd -0xffffa08966bcdc00 INTERRUPTIBLE 28 120 kcompactd0 -0xffffa08966bd0000 IDLE 31 100 crypto -0xffffa08966bd1700 IDLE 32 100 kintegrityd -0xffffa08966bd2e00 INTERRUPTIBLE 30 139 khugepaged -0xffffa08966bd4500 IDLE 34 100 tpm_dev_wq -0xffffa08966bd5c00 IDLE 33 100 kblockd +task state pid prio comm cmdline +------------------ ------------- ---- ---- --------------- ------- +0xffffa087d20edc00 INTERRUPTIBLE 6279 139 z_vdev_file +0xffffa08883df0000 INTERRUPTIBLE 5673 139 zthr_procedure +0xffffa08883df1700 INTERRUPTIBLE 5675 139 zthr_procedure +0xffffa08883df2e00 INTERRUPTIBLE 6190 100 z_wr_int +0xffffa08883df4500 INTERRUPTIBLE 6191 139 z_vdev_file +0xffffa08883df5c00 INTERRUPTIBLE 5674 139 zthr_procedure +0xffffa08884830000 INTERRUPTIBLE 6028 120 su +0xffffa08884831700 RUNNING 6029 120 bash +0xffffa08884832e00 INTERRUPTIBLE 6026 120 sudo +0xffffa08884834500 INTERRUPTIBLE 5981 120 sudo +0xffffa0888548ae00 INTERRUPTIBLE 4506 120 bash +0xffffa08888af9700 INTERRUPTIBLE 4160 120 postgres +0xffffa08888afc500 INTERRUPTIBLE 4158 120 postgres +0xffffa08888afdc00 INTERRUPTIBLE 4159 120 postgres +0xffffa08888c48000 INTERRUPTIBLE 4731 120 java +0xffffa08888c49700 INTERRUPTIBLE 4730 120 java +0xffffa08889750000 INTERRUPTIBLE 4156 120 postgres +0xffffa08889751700 INTERRUPTIBLE 4154 120 postgres +0xffffa08889752e00 INTERRUPTIBLE 4155 120 postgres +0xffffa08889754500 INTERRUPTIBLE 4157 120 postgres +0xffffa08889755c00 INTERRUPTIBLE 4153 120 postgres +0xffffa08889c90000 INTERRUPTIBLE 4369 120 java +0xffffa08889c91700 INTERRUPTIBLE 4163 120 java +0xffffa08889c92e00 INTERRUPTIBLE 4104 120 java +0xffffa08889c94500 INTERRUPTIBLE 4374 120 java +0xffffa08889c95c00 INTERRUPTIBLE 4136 120 java +0xffffa0888c778000 INTERRUPTIBLE 5543 100 z_fr_iss +0xffffa0888c779700 INTERRUPTIBLE 5539 100 z_fr_iss +0xffffa0888c77ae00 INTERRUPTIBLE 5542 100 z_fr_iss +0xffffa0888c77c500 INTERRUPTIBLE 5541 100 z_fr_iss +0xffffa0888c77dc00 INTERRUPTIBLE 5540 100 z_fr_iss +0xffffa0888c784500 INTERRUPTIBLE 5899 139 z_vdev_file +0xffffa0888cc62e00 RUNNING 5983 120 dd +0xffffa0888cc64500 INTERRUPTIBLE 4275 120 bash +0xffffa0888d2c8000 INTERRUPTIBLE 6194 100 z_wr_int +0xffffa0888d2cae00 INTERRUPTIBLE 6030 139 z_vdev_file +0xffffa0888d2cc500 INTERRUPTIBLE 6192 139 z_vdev_file +0xffffa0888d2cdc00 INTERRUPTIBLE 5602 120 mmp +0xffffa0888d2fdc00 INTERRUPTIBLE 6196 100 z_wr_int +0xffffa0888e8a0000 INTERRUPTIBLE 4373 120 java +0xffffa0888e8a1700 INTERRUPTIBLE 4367 120 java +0xffffa0888e8a2e00 INTERRUPTIBLE 4375 120 java +0xffffa0888e8a5c00 INTERRUPTIBLE 4368 120 java +0xffffa08893668000 INTERRUPTIBLE 4726 120 java +0xffffa08893669700 INTERRUPTIBLE 4372 120 java +0xffffa0889366c500 INTERRUPTIBLE 4293 120 java +0xffffa08894458000 INTERRUPTIBLE 4483 120 java +0xffffa0889445ae00 INTERRUPTIBLE 4482 120 java +0xffffa0889445c500 INTERRUPTIBLE 4484 120 java +0xffffa0889445dc00 INTERRUPTIBLE 4481 120 python3 +0xffffa08894560000 INTERRUPTIBLE 4478 120 java +0xffffa08894561700 INTERRUPTIBLE 4729 120 java +0xffffa08894562e00 INTERRUPTIBLE 4479 120 java +0xffffa08894564500 INTERRUPTIBLE 4477 120 python2 +0xffffa08894565c00 INTERRUPTIBLE 4480 120 java +0xffffa08894a68000 INTERRUPTIBLE 4724 120 java +0xffffa08894a69700 INTERRUPTIBLE 4722 120 java +0xffffa08894a6ae00 INTERRUPTIBLE 4723 120 java +0xffffa08894a6dc00 INTERRUPTIBLE 4725 120 java +0xffffa08896518000 INTERRUPTIBLE 4312 120 java +0xffffa08896519700 INTERRUPTIBLE 4364 120 java +0xffffa0889651ae00 INTERRUPTIBLE 4365 120 java +0xffffa0889651c500 INTERRUPTIBLE 4366 120 java +0xffffa0889651dc00 INTERRUPTIBLE 4363 120 java +0xffffa0889bef0000 INTERRUPTIBLE 5553 100 z_trim_int +0xffffa0889bef1700 INTERRUPTIBLE 5549 100 z_cl_int +0xffffa0889bef2e00 INTERRUPTIBLE 5552 100 z_trim_iss +0xffffa0889bef4500 INTERRUPTIBLE 5551 100 z_ioctl_int +0xffffa0889bef5c00 INTERRUPTIBLE 5550 100 z_ioctl_iss +0xffffa0889c9e8000 INTERRUPTIBLE 5555 120 z_prefetch +0xffffa0889c9e9700 INTERRUPTIBLE 5556 120 z_upgrade +0xffffa0889c9eae00 INTERRUPTIBLE 5554 120 z_zvol +0xffffa0889c9ec500 INTERRUPTIBLE 6189 100 z_wr_int +0xffffa0889c9edc00 INTERRUPTIBLE 5589 100 metaslab_group_ +0xffffa0889cd48000 INTERRUPTIBLE 4003 120 java +0xffffa0889cd49700 INTERRUPTIBLE 4099 120 java +0xffffa0889cd4ae00 INTERRUPTIBLE 4007 120 java +0xffffa0889cd4c500 INTERRUPTIBLE 4098 120 java +0xffffa0889cd4dc00 INTERRUPTIBLE 3865 120 java +0xffffa0889fdd0000 INTERRUPTIBLE 4376 120 java +0xffffa0889fdd1700 INTERRUPTIBLE 4469 120 java +0xffffa0889fdd2e00 INTERRUPTIBLE 4379 120 java +0xffffa0889fdd4500 INTERRUPTIBLE 4728 120 java +0xffffa0889fdd5c00 INTERRUPTIBLE 4727 120 java +0xffffa088a150ae00 INTERRUPTIBLE 4505 120 sshd +0xffffa088be0f8000 INTERRUPTIBLE 4152 120 postgres +0xffffa088be0f9700 INTERRUPTIBLE 4150 120 postgres +0xffffa088be0fae00 INTERRUPTIBLE 4151 120 postgres +0xffffa088be0fc500 INTERRUPTIBLE 4148 120 postgres +0xffffa088be0fdc00 INTERRUPTIBLE 4149 120 postgres +0xffffa088c58a8000 INTERRUPTIBLE 5527 100 z_rd_int +0xffffa088c58a9700 INTERRUPTIBLE 5528 101 z_wr_iss +0xffffa088c58aae00 INTERRUPTIBLE 4250 120 (sd-pam) +0xffffa088c58ac500 INTERRUPTIBLE 5529 100 z_wr_iss_h +0xffffa088c58adc00 INTERRUPTIBLE 5526 100 z_rd_int +0xffffa088ca871700 INTERRUPTIBLE 4733 120 java +0xffffa088ca872e00 INTERRUPTIBLE 4735 120 java +0xffffa088ca874500 INTERRUPTIBLE 4732 120 java +0xffffa088ca875c00 INTERRUPTIBLE 4734 120 java +0xffffa088ce681700 INTERRUPTIBLE 5952 139 z_vdev_file +0xffffa088ce682e00 INTERRUPTIBLE 6184 100 z_wr_int +0xffffa088d33d0000 INTERRUPTIBLE 4074 120 java +0xffffa088d33d1700 INTERRUPTIBLE 4033 120 java +0xffffa088d33d2e00 INTERRUPTIBLE 4038 120 java +0xffffa088d33d4500 INTERRUPTIBLE 4291 120 java +0xffffa088d33d5c00 INTERRUPTIBLE 4070 120 java +0xffffa088ef2d0000 INTERRUPTIBLE 2862 120 java +0xffffa088ef2d1700 INTERRUPTIBLE 2866 120 java +0xffffa088ef2d2e00 INTERRUPTIBLE 2861 120 java +0xffffa088ef2d4500 INTERRUPTIBLE 2865 120 java +0xffffa088ef2d5c00 INTERRUPTIBLE 2859 120 java +0xffffa088f0978000 INTERRUPTIBLE 2869 120 java +0xffffa088f0979700 INTERRUPTIBLE 2877 120 java +0xffffa088f097ae00 INTERRUPTIBLE 2868 120 java +0xffffa088f097c500 INTERRUPTIBLE 3859 120 java +0xffffa088f097dc00 INTERRUPTIBLE 2867 120 java +0xffffa088f1e95c00 INTERRUPTIBLE 6309 120 sleep +0xffffa088f6778000 INTERRUPTIBLE 3863 120 java +0xffffa088f6779700 INTERRUPTIBLE 3861 120 java +0xffffa088f677ae00 INTERRUPTIBLE 3864 120 java +0xffffa088f677c500 INTERRUPTIBLE 3862 120 java +0xffffa088f677dc00 INTERRUPTIBLE 3860 120 java +0xffffa088f6e58000 INTERRUPTIBLE 4292 120 java +0xffffa088f6e59700 INTERRUPTIBLE 4006 120 java +0xffffa088f6e5ae00 INTERRUPTIBLE 4005 120 java +0xffffa088f6e5c500 INTERRUPTIBLE 2870 120 java +0xffffa088f6e5dc00 INTERRUPTIBLE 3921 120 java +0xffffa088f7408000 INTERRUPTIBLE 4381 120 java +0xffffa088f7409700 INTERRUPTIBLE 4476 120 java +0xffffa088f740ae00 INTERRUPTIBLE 4474 120 java +0xffffa088f740c500 INTERRUPTIBLE 4473 120 python2 +0xffffa088f740dc00 INTERRUPTIBLE 4475 120 java +0xffffa08905908000 IDLE 3249 120 kworker/1:3 +0xffffa08905909700 INTERRUPTIBLE 2445 120 iscsi_np +0xffffa0890590ae00 INTERRUPTIBLE 5532 100 z_wr_int +0xffffa0890590c500 IDLE 2438 100 target_completi +0xffffa0890590dc00 IDLE 2439 100 xcopy_wq +0xffffa0891e0ec500 INTERRUPTIBLE 2255 120 postgres +0xffffa08930464500 INTERRUPTIBLE 1972 120 gdbus +0xffffa089304e8000 IDLE 774 100 xprtiod +0xffffa089304e9700 INTERRUPTIBLE 2025 120 nfsd +0xffffa089304eae00 INTERRUPTIBLE 2124 120 automount +0xffffa089304ec500 IDLE 935 120 kworker/1:2 +0xffffa089304edc00 INTERRUPTIBLE 1911 120 polkitd +0xffffa08930858000 INTERRUPTIBLE 1291 100 metaslab_group_ +0xffffa08930859700 INTERRUPTIBLE 1795 120 rs:main Q:Reg +0xffffa0893085ae00 INTERRUPTIBLE 1542 120 systemd-network +0xffffa0893085c500 INTERRUPTIBLE 1290 100 metaslab_group_ +0xffffa0893085dc00 IDLE 765 120 kworker/0:3 +0xffffa08931488000 INTERRUPTIBLE 4625 120 nginx +0xffffa08931968000 INTERRUPTIBLE 779 120 blkmapd +0xffffa08931969700 INTERRUPTIBLE 1756 120 cron +0xffffa0893196ae00 INTERRUPTIBLE 4496 120 sshd +0xffffa0893196c500 INTERRUPTIBLE 4237 120 systemd +0xffffa0893196dc00 INTERRUPTIBLE 781 120 systemd-udevd +0xffffa08931d50000 INTERRUPTIBLE 1941 120 delphix-stat-se +0xffffa089320c0000 INTERRUPTIBLE 1942 120 sed +0xffffa089320c1700 INTERRUPTIBLE 1918 120 profile +0xffffa089320c2e00 INTERRUPTIBLE 1977 120 delphix-stat-se +0xffffa089320c4500 INTERRUPTIBLE 1936 120 timeout +0xffffa089320c5c00 INTERRUPTIBLE 1940 120 mpstat +0xffffa089320e0000 IDLE 735 120 kworker/0:2 +0xffffa089320e1700 INTERRUPTIBLE 743 119 systemd-journal +0xffffa089320e2e00 INTERRUPTIBLE 5531 100 z_wr_int +0xffffa089320e4500 INTERRUPTIBLE 1033 120 vmtoolsd +0xffffa089320e5c00 INTERRUPTIBLE 830 49 irq/16-vmwgfx +0xffffa08933048000 INTERRUPTIBLE 1895 120 delphix-stat-se +0xffffa08933049700 INTERRUPTIBLE 1903 120 sed +0xffffa0893304ae00 INTERRUPTIBLE 1934 120 sed +0xffffa0893304c500 INTERRUPTIBLE 1919 120 delphix-stat-se +0xffffa0893304dc00 INTERRUPTIBLE 1871 120 sed +0xffffa0893319dc00 INTERRUPTIBLE 1952 120 nginx +0xffffa08934b58000 INTERRUPTIBLE 2073 120 nfsd +0xffffa08934b59700 INTERRUPTIBLE 2074 120 nfsd +0xffffa08934b5ae00 INTERRUPTIBLE 2077 120 nfsd +0xffffa08934b5c500 INTERRUPTIBLE 2076 120 nfsd +0xffffa08934b5dc00 INTERRUPTIBLE 2075 120 nfsd +0xffffa08934e00000 INTERRUPTIBLE 2067 120 nfsd +0xffffa08934e01700 INTERRUPTIBLE 2068 120 nfsd +0xffffa08934e02e00 INTERRUPTIBLE 2072 120 nfsd +0xffffa08934e04500 INTERRUPTIBLE 2071 120 nfsd +0xffffa08934e05c00 INTERRUPTIBLE 2069 120 nfsd +0xffffa089358f0000 INTERRUPTIBLE 2085 120 nfsd +0xffffa089358f1700 INTERRUPTIBLE 2078 120 nfsd +0xffffa089358f2e00 INTERRUPTIBLE 2084 120 nfsd +0xffffa089358f4500 INTERRUPTIBLE 2082 120 nfsd +0xffffa089358f5c00 INTERRUPTIBLE 2080 120 nfsd +0xffffa08936498000 INTERRUPTIBLE 1910 120 timeout +0xffffa0893649ae00 INTERRUPTIBLE 1906 120 timeout +0xffffa0893649dc00 INTERRUPTIBLE 2021 120 nfs_delete +0xffffa08936800000 INTERRUPTIBLE 2079 120 postgres +0xffffa08936801700 INTERRUPTIBLE 2055 120 sudo +0xffffa08936802e00 INTERRUPTIBLE 4147 120 postgres +0xffffa08936804500 INTERRUPTIBLE 4146 120 postgres +0xffffa08936805c00 INTERRUPTIBLE 4145 120 postgres +0xffffa08936918000 INTERRUPTIBLE 1858 120 sed +0xffffa08936919700 INTERRUPTIBLE 1861 120 sed +0xffffa0893691ae00 INTERRUPTIBLE 1870 120 delphix-stat-se +0xffffa0893691c500 INTERRUPTIBLE 1860 120 delphix-stat-se +0xffffa0893691dc00 INTERRUPTIBLE 1857 120 delphix-stat-se +0xffffa08937f4dc00 INTERRUPTIBLE 5676 139 zthr_procedure +0xffffa08939f70000 INTERRUPTIBLE 2100 120 nfsd +0xffffa08939f71700 INTERRUPTIBLE 2101 120 nfsd +0xffffa08939f72e00 INTERRUPTIBLE 2105 120 nfsd +0xffffa08939f74500 INTERRUPTIBLE 2104 120 nfsd +0xffffa08939f75c00 INTERRUPTIBLE 2103 120 nfsd +0xffffa0893a532e00 INTERRUPTIBLE 1038 116 auditd +0xffffa0893bf78000 INTERRUPTIBLE 2042 120 nfsd +0xffffa0893bf79700 INTERRUPTIBLE 2044 120 nfsd +0xffffa0893bf7ae00 INTERRUPTIBLE 2039 120 nfsd +0xffffa0893bf7c500 INTERRUPTIBLE 2050 120 nfsd +0xffffa0893bf7dc00 INTERRUPTIBLE 2049 120 nfsd +0xffffa0893c088000 INTERRUPTIBLE 5517 100 z_null_iss +0xffffa0893c089700 INTERRUPTIBLE 5519 100 z_rd_iss +0xffffa0893c08ae00 INTERRUPTIBLE 2106 120 nfsd +0xffffa0893c08c500 INTERRUPTIBLE 4742 120 native_oom_hand +0xffffa0893c08dc00 INTERRUPTIBLE 5518 100 z_null_int +0xffffa0893c2b0000 INTERRUPTIBLE 5530 100 z_wr_int +0xffffa0893c2b1700 INTERRUPTIBLE 2127 120 agetty +0xffffa0893c2b2e00 IDLE 4665 120 kworker/1:4 +0xffffa0893c2b4500 INTERRUPTIBLE 2132 120 login +0xffffa0893c2b5c00 IDLE 4666 120 kworker/1:5 +0xffffa0893d898000 INTERRUPTIBLE 2087 120 nfsd +0xffffa0893d899700 INTERRUPTIBLE 2088 120 nfsd +0xffffa0893d89ae00 INTERRUPTIBLE 2086 120 nfsd +0xffffa0893d89c500 INTERRUPTIBLE 2097 120 nfsd +0xffffa0893d89dc00 INTERRUPTIBLE 2089 120 nfsd +0xffffa0893dd30000 INTERRUPTIBLE 2878 120 sleep +0xffffa0893dd31700 INTERRUPTIBLE 2083 120 sleep +0xffffa0893dd34500 INTERRUPTIBLE 2874 120 sleep +0xffffa0893f968000 INTERRUPTIBLE 2093 120 nfsd +0xffffa0893f969700 INTERRUPTIBLE 2095 120 nfsd +0xffffa0893f96ae00 INTERRUPTIBLE 2092 120 nfsd +0xffffa0893f96c500 INTERRUPTIBLE 2091 120 nfsd +0xffffa0893f96dc00 INTERRUPTIBLE 2096 120 nfsd +0xffffa089405c9700 INTERRUPTIBLE 1995 120 sed +0xffffa089405cc500 INTERRUPTIBLE 2879 120 sleep +0xffffa089405cdc00 INTERRUPTIBLE 5464 120 sleep +0xffffa089408f0000 INTERRUPTIBLE 2098 120 nfsd +0xffffa089408f1700 INTERRUPTIBLE 1578 120 systemd-resolve +0xffffa089408f2e00 INTERRUPTIBLE 1688 120 sshd +0xffffa089408f4500 INTERRUPTIBLE 1794 120 in:imklog +0xffffa089408f5c00 INTERRUPTIBLE 1793 120 in:imuxsock +0xffffa089408f8000 INTERRUPTIBLE 1781 120 networkd-dispat +0xffffa089408f9700 INTERRUPTIBLE 1998 120 nfsd +0xffffa089408fae00 INTERRUPTIBLE 2017 120 nfsd +0xffffa089408fc500 INTERRUPTIBLE 1783 120 systemd-logind +0xffffa089408fdc00 INTERRUPTIBLE 1782 120 zed +0xffffa08940960000 INTERRUPTIBLE 2035 120 nfsd +0xffffa08940961700 INTERRUPTIBLE 2028 120 nfsd +0xffffa08940962e00 INTERRUPTIBLE 1730 120 dbus-daemon +0xffffa08940964500 INTERRUPTIBLE 5525 100 z_rd_int +0xffffa08940965c00 INTERRUPTIBLE 1728 120 rsyslogd +0xffffa089410b9700 INTERRUPTIBLE 2125 120 automount +0xffffa089410bae00 INTERRUPTIBLE 2126 120 automount +0xffffa089410bc500 INTERRUPTIBLE 2150 120 automount +0xffffa08941a68000 INTERRUPTIBLE 5548 100 z_cl_iss +0xffffa08941a69700 INTERRUPTIBLE 5544 100 z_fr_iss +0xffffa08941a6ae00 INTERRUPTIBLE 5547 100 z_fr_int +0xffffa08941a6c500 INTERRUPTIBLE 5546 100 z_fr_iss +0xffffa08941a6dc00 INTERRUPTIBLE 5545 100 z_fr_iss +0xffffa08941afae00 INTERRUPTIBLE 4756 120 oom_waiter +0xffffa08941f68000 INTERRUPTIBLE 2063 120 nfsd +0xffffa08941f69700 INTERRUPTIBLE 2064 120 nfsd +0xffffa08941f6ae00 INTERRUPTIBLE 2062 120 nfsd +0xffffa08941f6c500 INTERRUPTIBLE 2059 120 nfsd +0xffffa08941f6dc00 INTERRUPTIBLE 2066 120 nfsd +0xffffa0894483dc00 INTERRUPTIBLE 2045 120 gmain +0xffffa089481b8000 INTERRUPTIBLE 5520 100 z_rd_int +0xffffa089481b9700 INTERRUPTIBLE 5524 100 z_rd_int +0xffffa089481bae00 INTERRUPTIBLE 5521 100 z_rd_int +0xffffa089481bc500 INTERRUPTIBLE 5523 100 z_rd_int +0xffffa089481bdc00 INTERRUPTIBLE 5522 100 z_rd_int +0xffffa0894b280000 INTERRUPTIBLE 1958 120 iostat +0xffffa0894b281700 INTERRUPTIBLE 1959 120 delphix-stat-se +0xffffa0894b282e00 INTERRUPTIBLE 1964 120 sed +0xffffa0894b284500 INTERRUPTIBLE 5472 120 sleep +0xffffa0894b285c00 INTERRUPTIBLE 2011 120 delphix-stat-se +0xffffa0894cc80000 INTERRUPTIBLE 2252 120 postgres +0xffffa0894cc81700 INTERRUPTIBLE 2250 120 postgres +0xffffa0894cc82e00 INTERRUPTIBLE 2251 120 postgres +0xffffa0894cc84500 INTERRUPTIBLE 2254 120 postgres +0xffffa0894cc85c00 INTERRUPTIBLE 2253 120 postgres +0xffffa0894e6a8000 INTERRUPTIBLE 5976 139 z_vdev_file +0xffffa0894e6a9700 INTERRUPTIBLE 1772 120 nscd +0xffffa0894e6aae00 INTERRUPTIBLE 2004 120 nfsd +0xffffa0894e6ac500 INTERRUPTIBLE 2007 120 nfsd +0xffffa0894e6adc00 INTERRUPTIBLE 2013 120 nfsd +0xffffa0894e7b0000 INTERRUPTIBLE 1984 120 nfsd +0xffffa0894e7b1700 INTERRUPTIBLE 1987 120 nfsd +0xffffa0894e7b2e00 INTERRUPTIBLE 1237 100 z_null_iss +0xffffa0894e7b4500 INTERRUPTIBLE 1991 120 nfsd +0xffffa0894e7b5c00 INTERRUPTIBLE 1986 120 nfsd +0xffffa0894e7f0000 INTERRUPTIBLE 1240 100 z_rd_int +0xffffa0894e7f1700 INTERRUPTIBLE 1241 100 z_rd_int +0xffffa0894e7f2e00 INTERRUPTIBLE 1239 100 z_rd_iss +0xffffa0894e7f4500 INTERRUPTIBLE 1238 100 z_null_int +0xffffa0894e7f5c00 INTERRUPTIBLE 1242 100 z_rd_int +0xffffa0894e7f8000 INTERRUPTIBLE 1246 100 z_rd_int +0xffffa0894e7f9700 INTERRUPTIBLE 1247 100 z_rd_int +0xffffa0894e7fae00 INTERRUPTIBLE 1245 100 z_rd_int +0xffffa0894e7fc500 INTERRUPTIBLE 1244 100 z_rd_int +0xffffa0894e7fdc00 INTERRUPTIBLE 1243 100 z_rd_int +0xffffa0894ea70000 INTERRUPTIBLE 1252 100 z_wr_int +0xffffa0894ea71700 INTERRUPTIBLE 1248 101 z_wr_iss +0xffffa0894ea72e00 INTERRUPTIBLE 1251 100 z_wr_int +0xffffa0894ea74500 INTERRUPTIBLE 1250 100 z_wr_int +0xffffa0894ea75c00 INTERRUPTIBLE 1249 100 z_wr_iss_h +0xffffa0894ea78000 INTERRUPTIBLE 1256 100 z_wr_int +0xffffa0894ea79700 INTERRUPTIBLE 1257 100 z_wr_int +0xffffa0894ea7ae00 INTERRUPTIBLE 1255 100 z_wr_int +0xffffa0894ea7c500 INTERRUPTIBLE 1254 100 z_wr_int +0xffffa0894ea7dc00 INTERRUPTIBLE 1253 100 z_wr_int +0xffffa0894eaa8000 INTERRUPTIBLE 1259 100 z_fr_iss +0xffffa0894eaa9700 INTERRUPTIBLE 1260 100 z_fr_iss +0xffffa0894eaaae00 INTERRUPTIBLE 1258 100 z_wr_int_h +0xffffa0894eaac500 INTERRUPTIBLE 1262 100 z_fr_iss +0xffffa0894eaadc00 INTERRUPTIBLE 1261 100 z_fr_iss +0xffffa0894eab8000 INTERRUPTIBLE 1264 100 z_fr_iss +0xffffa0894eab9700 INTERRUPTIBLE 1265 100 z_fr_iss +0xffffa0894eabae00 INTERRUPTIBLE 1263 100 z_fr_iss +0xffffa0894eabc500 INTERRUPTIBLE 1267 100 z_fr_int +0xffffa0894eabdc00 INTERRUPTIBLE 1266 100 z_fr_iss +0xffffa0894eb60000 INTERRUPTIBLE 1272 100 z_trim_iss +0xffffa0894eb61700 INTERRUPTIBLE 1268 100 z_cl_iss +0xffffa0894eb62e00 INTERRUPTIBLE 1271 100 z_ioctl_int +0xffffa0894eb64500 INTERRUPTIBLE 1270 100 z_ioctl_iss +0xffffa0894eb65c00 INTERRUPTIBLE 1269 100 z_cl_int +0xffffa0894eb68000 INTERRUPTIBLE 2057 120 nfsd +0xffffa0894eb69700 INTERRUPTIBLE 1273 100 z_trim_int +0xffffa0894eb6ae00 INTERRUPTIBLE 1276 120 z_upgrade +0xffffa0894eb6c500 INTERRUPTIBLE 1275 120 z_prefetch +0xffffa0894eb6dc00 INTERRUPTIBLE 1274 120 z_zvol +0xffffa0894ebb0000 INTERRUPTIBLE 1282 139 dp_zil_clean_ta +0xffffa0894ebb1700 INTERRUPTIBLE 1283 139 dp_zil_clean_ta +0xffffa0894ebb2e00 INTERRUPTIBLE 1281 139 dp_sync_taskq +0xffffa0894ebb4500 INTERRUPTIBLE 1284 120 z_iput +0xffffa0894ebb5c00 INTERRUPTIBLE 1285 120 z_unlinked_drai +0xffffa08950a89700 INTERRUPTIBLE 2121 120 rngd +0xffffa08951028000 INTERRUPTIBLE 5534 100 z_wr_int +0xffffa08951029700 INTERRUPTIBLE 5535 100 z_wr_int +0xffffa0895102ae00 INTERRUPTIBLE 5538 100 z_wr_int_h +0xffffa0895102c500 INTERRUPTIBLE 5537 100 z_wr_int +0xffffa0895102dc00 INTERRUPTIBLE 5536 100 z_wr_int +0xffffa08952e58000 INTERRUPTIBLE 555 139 zthr_procedure +0xffffa08952e59700 INTERRUPTIBLE 557 139 zthr_procedure +0xffffa08952e5ae00 INTERRUPTIBLE 553 120 mmp +0xffffa08952e5c500 INTERRUPTIBLE 556 139 zthr_procedure +0xffffa08952e5dc00 INTERRUPTIBLE 554 139 zthr_procedure +0xffffa08952e70000 INTERRUPTIBLE 494 100 metaslab_group_ +0xffffa08952e71700 INTERRUPTIBLE 491 120 z_unlinked_drai +0xffffa08952e72e00 IDLE 766 120 kworker/0:4 +0xffffa08952e74500 IDLE 767 100 rpciod +0xffffa08952e75c00 INTERRUPTIBLE 493 100 metaslab_group_ +0xffffa08952ec0000 INTERRUPTIBLE 1887 120 rpc.mountd +0xffffa08952ec1700 INTERRUPTIBLE 5533 100 z_wr_int +0xffffa08952ec2e00 INTERRUPTIBLE 1878 120 rpc.idmapd +0xffffa08952ec4500 INTERRUPTIBLE 1037 116 auditd +0xffffa08952ec5c00 INTERRUPTIBLE 1968 120 gmain +0xffffa089533f8000 INTERRUPTIBLE 489 139 dp_zil_clean_ta +0xffffa089533f9700 INTERRUPTIBLE 490 120 z_iput +0xffffa089533fae00 INTERRUPTIBLE 488 139 dp_zil_clean_ta +0xffffa089533fc500 INTERRUPTIBLE 487 139 dp_sync_taskq +0xffffa089533fdc00 INTERRUPTIBLE 485 120 z_upgrade +0xffffa08953468000 INTERRUPTIBLE 482 100 z_trim_int +0xffffa08953469700 INTERRUPTIBLE 483 120 z_zvol +0xffffa0895346ae00 INTERRUPTIBLE 481 100 z_trim_iss +0xffffa0895346c500 INTERRUPTIBLE 480 100 z_ioctl_int +0xffffa0895346dc00 INTERRUPTIBLE 484 120 z_prefetch +0xffffa08953470000 INTERRUPTIBLE 477 100 z_cl_iss +0xffffa08953471700 INTERRUPTIBLE 478 100 z_cl_int +0xffffa08953472e00 INTERRUPTIBLE 476 100 z_fr_int +0xffffa08953474500 INTERRUPTIBLE 475 100 z_fr_iss +0xffffa08953475c00 INTERRUPTIBLE 479 100 z_ioctl_iss +0xffffa089534a0000 INTERRUPTIBLE 471 100 z_fr_iss +0xffffa089534a1700 INTERRUPTIBLE 472 100 z_fr_iss +0xffffa089534a2e00 INTERRUPTIBLE 470 100 z_fr_iss +0xffffa089534a4500 INTERRUPTIBLE 474 100 z_fr_iss +0xffffa089534a5c00 INTERRUPTIBLE 473 100 z_fr_iss +0xffffa089534b0000 INTERRUPTIBLE 467 100 z_wr_int_h +0xffffa089534b1700 INTERRUPTIBLE 468 100 z_fr_iss +0xffffa089534b2e00 INTERRUPTIBLE 466 100 z_wr_int +0xffffa089534b4500 INTERRUPTIBLE 465 100 z_wr_int +0xffffa089534b5c00 INTERRUPTIBLE 469 100 z_fr_iss +0xffffa08953508000 INTERRUPTIBLE 461 100 z_wr_int +0xffffa08953509700 INTERRUPTIBLE 462 100 z_wr_int +0xffffa0895350ae00 INTERRUPTIBLE 460 100 z_wr_int +0xffffa0895350c500 INTERRUPTIBLE 464 100 z_wr_int +0xffffa0895350dc00 INTERRUPTIBLE 463 100 z_wr_int +0xffffa08953510000 INTERRUPTIBLE 458 100 z_wr_iss_h +0xffffa08953511700 INTERRUPTIBLE 459 100 z_wr_int +0xffffa08953512e00 INTERRUPTIBLE 457 101 z_wr_iss +0xffffa08953514500 INTERRUPTIBLE 456 100 z_rd_int +0xffffa08953515c00 INTERRUPTIBLE 455 100 z_rd_int +0xffffa08953ac5c00 INTERRUPTIBLE 5588 100 metaslab_group_ +0xffffa08953ac8000 INTERRUPTIBLE 5595 139 dp_zil_clean_ta +0xffffa08953ac9700 INTERRUPTIBLE 6186 139 z_vdev_file +0xffffa08953acae00 INTERRUPTIBLE 5592 139 dp_sync_taskq +0xffffa08953acdc00 INTERRUPTIBLE 6188 139 z_vdev_file +0xffffa089553a8000 INTERRUPTIBLE 1335 120 txg_quiesce +0xffffa089553a9700 INTERRUPTIBLE 1336 120 txg_sync +0xffffa089553aae00 INTERRUPTIBLE 2099 120 nfsd +0xffffa089553ac500 INTERRUPTIBLE 1338 139 zthr_procedure +0xffffa089553adc00 INTERRUPTIBLE 1337 120 mmp +0xffffa089553b8000 INTERRUPTIBLE 1340 139 zthr_procedure +0xffffa089553b9700 INTERRUPTIBLE 1341 139 zthr_procedure +0xffffa089553bae00 INTERRUPTIBLE 1339 139 zthr_procedure +0xffffa089553bc500 INTERRUPTIBLE 1792 120 snmpd +0xffffa089553bdc00 INTERRUPTIBLE 2002 120 nfsd +0xffffa0895541ae00 INTERRUPTIBLE 1798 120 zed +0xffffa0895541dc00 INTERRUPTIBLE 1797 120 zed +0xffffa08956018000 INTERRUPTIBLE 1785 120 nscd +0xffffa08956019700 INTERRUPTIBLE 1786 120 nscd +0xffffa0895601ae00 INTERRUPTIBLE 1788 120 nscd +0xffffa0895601c500 INTERRUPTIBLE 1787 120 nscd +0xffffa0895601dc00 INTERRUPTIBLE 1784 120 nscd +0xffffa089560c1700 INTERRUPTIBLE 1789 120 nscd +0xffffa089560c2e00 INTERRUPTIBLE 1791 120 nscd +0xffffa089560c4500 INTERRUPTIBLE 1790 120 nscd +0xffffa08956848000 INTERRUPTIBLE 367 120 arc_prune +0xffffa08956849700 INTERRUPTIBLE 372 139 zthr_procedure +0xffffa0895684ae00 INTERRUPTIBLE 373 120 dbu_evict +0xffffa0895684c500 INTERRUPTIBLE 371 139 zthr_procedure +0xffffa0895684dc00 INTERRUPTIBLE 375 139 dbuf_evict +0xffffa08957580000 IDLE 266 100 scsi_tmf_2 +0xffffa08957581700 IDLE 267 120 kworker/u4:4 +0xffffa08957582e00 INTERRUPTIBLE 265 120 scsi_eh_2 +0xffffa08957584500 IDLE 268 120 kworker/u4:5 +0xffffa08957585c00 IDLE 264 100 kworker/0:1H +0xffffa08957d18000 IDLE 170 100 scsi_tmf_0 +0xffffa08957d19700 INTERRUPTIBLE 171 120 scsi_eh_1 +0xffffa08957d1ae00 INTERRUPTIBLE 1845 120 rsync +0xffffa08957d1c500 IDLE 173 120 kworker/u4:2 +0xffffa08957d1dc00 IDLE 172 100 scsi_tmf_1 +0xffffa08957da8000 INTERRUPTIBLE 346 100 spl_system_task +0xffffa08957da9700 INTERRUPTIBLE 552 120 txg_sync +0xffffa08957daae00 INTERRUPTIBLE 349 100 spl_kmem_cache +0xffffa08957dac500 INTERRUPTIBLE 348 100 spl_dynamic_tas +0xffffa08957dadc00 INTERRUPTIBLE 347 100 spl_delay_taskq +0xffffa08957db0000 INTERRUPTIBLE 451 100 z_rd_int +0xffffa08957db1700 INTERRUPTIBLE 452 100 z_rd_int +0xffffa08957db2e00 INTERRUPTIBLE 453 100 z_rd_int +0xffffa08957db4500 INTERRUPTIBLE 454 100 z_rd_int +0xffffa08957db5c00 IDLE 251 100 mpt_poll_0 +0xffffa08957db8000 IDLE 199 100 charger_manager +0xffffa08957db9700 INTERRUPTIBLE 450 100 z_rd_int +0xffffa08957dbae00 INTERRUPTIBLE 449 100 z_rd_int +0xffffa08957dbc500 INTERRUPTIBLE 448 100 z_rd_iss +0xffffa08957dbdc00 IDLE 200 100 kworker/1:1H +0xffffa08957e38000 IDLE 837 100 ttm_swap +0xffffa08957e39700 IDLE 1926 100 kworker/u5:1 +0xffffa08957e3ae00 INTERRUPTIBLE 2019 120 nfsd +0xffffa08957e3c500 INTERRUPTIBLE 551 120 txg_quiesce +0xffffa08957e3dc00 INTERRUPTIBLE 2054 120 nfsd +0xffffa08958028000 INTERRUPTIBLE 143 49 irq/31-pciehp +0xffffa08958029700 INTERRUPTIBLE 142 49 irq/30-pciehp +0xffffa0895802ae00 INTERRUPTIBLE 144 49 irq/32-pciehp +0xffffa0895802c500 INTERRUPTIBLE 140 49 irq/28-pciehp +0xffffa0895802dc00 INTERRUPTIBLE 141 49 irq/29-pciehp +0xffffa08958030000 INTERRUPTIBLE 153 49 irq/41-pciehp +0xffffa08958031700 INTERRUPTIBLE 150 49 irq/38-pciehp +0xffffa08958032e00 INTERRUPTIBLE 154 49 irq/42-pciehp +0xffffa08958034500 INTERRUPTIBLE 151 49 irq/39-pciehp +0xffffa08958035c00 INTERRUPTIBLE 152 49 irq/40-pciehp +0xffffa08958038000 INTERRUPTIBLE 139 49 irq/27-pciehp +0xffffa08958039700 IDLE 135 100 kthrotld +0xffffa0895803ae00 INTERRUPTIBLE 138 49 irq/26-pciehp +0xffffa0895803c500 INTERRUPTIBLE 136 49 irq/24-pciehp +0xffffa0895803dc00 INTERRUPTIBLE 137 49 irq/25-pciehp +0xffffa08958080000 INTERRUPTIBLE 2058 120 nfsd +0xffffa08958081700 INTERRUPTIBLE 1031 120 VGAuthService +0xffffa08958082e00 IDLE 174 120 kworker/u4:3 +0xffffa08958084500 IDLE 175 100 kstrp +0xffffa08958085c00 INTERRUPTIBLE 1979 120 nfsd +0xffffa08958088000 INTERRUPTIBLE 163 49 irq/51-pciehp +0xffffa08958089700 INTERRUPTIBLE 160 49 irq/48-pciehp +0xffffa0895808ae00 INTERRUPTIBLE 161 49 irq/49-pciehp +0xffffa0895808c500 INTERRUPTIBLE 164 49 irq/52-pciehp +0xffffa0895808dc00 INTERRUPTIBLE 162 49 irq/50-pciehp +0xffffa08958098000 INTERRUPTIBLE 149 49 irq/37-pciehp +0xffffa08958099700 INTERRUPTIBLE 148 49 irq/36-pciehp +0xffffa0895809ae00 INTERRUPTIBLE 145 49 irq/33-pciehp +0xffffa0895809c500 INTERRUPTIBLE 146 49 irq/34-pciehp +0xffffa0895809dc00 INTERRUPTIBLE 147 49 irq/35-pciehp +0xffffa089580b0000 INTERRUPTIBLE 1992 120 nfsd +0xffffa089580b1700 INTERRUPTIBLE 379 120 l2arc_feed +0xffffa089580b2e00 INTERRUPTIBLE 378 139 z_vdev_file +0xffffa089580b4500 INTERRUPTIBLE 1996 120 nfsd +0xffffa089580b5c00 INTERRUPTIBLE 1994 120 nfsd +0xffffa089580e0000 INTERRUPTIBLE 158 49 irq/46-pciehp +0xffffa089580e1700 INTERRUPTIBLE 157 49 irq/45-pciehp +0xffffa089580e2e00 INTERRUPTIBLE 155 49 irq/43-pciehp +0xffffa089580e4500 INTERRUPTIBLE 159 49 irq/47-pciehp +0xffffa089580e5c00 INTERRUPTIBLE 156 49 irq/44-pciehp +0xffffa08958208000 INTERRUPTIBLE 167 49 irq/55-pciehp +0xffffa08958209700 IDLE 168 100 acpi_thermal_pm +0xffffa0895820ae00 INTERRUPTIBLE 166 49 irq/54-pciehp +0xffffa0895820c500 INTERRUPTIBLE 165 49 irq/53-pciehp +0xffffa0895820dc00 INTERRUPTIBLE 169 120 scsi_eh_0 +0xffffa089587b8000 INTERRUPTIBLE 447 100 z_null_int +0xffffa089587b9700 IDLE 253 100 mpt/0 +0xffffa089587bae00 INTERRUPTIBLE 446 100 z_null_iss +0xffffa089587bc500 INTERRUPTIBLE 46 120 ecryptfs-kthrea +0xffffa089587bdc00 IDLE 45 100 kworker/u5:0 +0xffffa08959894500 INTERRUPTIBLE 5891 139 z_vdev_file +0xffffa0895a318000 INTERRUPTIBLE 5599 120 txg_quiesce +0xffffa0895a319700 INTERRUPTIBLE 5597 120 z_iput +0xffffa0895a31ae00 INTERRUPTIBLE 5598 120 z_unlinked_drai +0xffffa0895a31c500 INTERRUPTIBLE 5596 139 dp_zil_clean_ta +0xffffa0895a31dc00 INTERRUPTIBLE 5601 120 txg_sync +0xffffa0895a328000 INTERRUPTIBLE 4143 120 postgres +0xffffa0895a329700 INTERRUPTIBLE 4141 120 postgres +0xffffa0895a32ae00 INTERRUPTIBLE 4144 120 postgres +0xffffa0895a32dc00 INTERRUPTIBLE 4142 120 postgres +0xffffa08960a20000 INTERRUPTIBLE 3853 120 java +0xffffa08960a21700 INTERRUPTIBLE 3858 120 java +0xffffa08960a22e00 INTERRUPTIBLE 3857 120 java +0xffffa08960a24500 INTERRUPTIBLE 2910 120 java +0xffffa08960a25c00 INTERRUPTIBLE 3856 120 java +0xffffa08960a38000 INTERRUPTIBLE 2853 120 java +0xffffa08960a39700 INTERRUPTIBLE 2880 120 java +0xffffa08960a3ae00 INTERRUPTIBLE 2857 120 java +0xffffa08960a3c500 INTERRUPTIBLE 2858 120 java +0xffffa08960a3dc00 INTERRUPTIBLE 2856 120 java +0xffffa08960f42e00 INTERRUPTIBLE 2156 120 automount +0xffffa08965109700 INTERRUPTIBLE 2012 120 sed +0xffffa0896510ae00 INTERRUPTIBLE 1990 120 delphix-stat-se +0xffffa0896510c500 INTERRUPTIBLE 5468 120 sleep +0xffffa0896510dc00 INTERRUPTIBLE 1982 120 sed +0xffffa089666d0000 IDLE 38 100 devfreq_wq +0xffffa089666d1700 INTERRUPTIBLE 39 0 watchdogd +0xffffa089666d2e00 IDLE 37 100 edac-poller +0xffffa089666d4500 IDLE 36 100 md +0xffffa089666d5c00 IDLE 35 100 ata_sff +0xffffa08966790000 IDLE 318 100 raid5wq +0xffffa08966791700 INTERRUPTIBLE 44 120 kswapd0 +0xffffa08966792e00 INTERRUPTIBLE 357 100 zvol +0xffffa08966794500 IDLE 41 120 kworker/u4:1 +0xffffa08966795c00 IDLE 40 120 kworker/1:1 +0xffffa089669e8000 IDLE 4 100 rcu_par_gp +0xffffa089669e9700 IDLE 5 120 kworker/0:0 +0xffffa089669eae00 IDLE 3 100 rcu_gp +0xffffa089669ec500 INTERRUPTIBLE 2 120 kthreadd +0xffffa089669edc00 INTERRUPTIBLE 1 120 systemd +0xffffa08966a00000 INTERRUPTIBLE 9 120 ksoftirqd/0 +0xffffa08966a01700 RUNNING 10 120 rcu_sched +0xffffa08966a02e00 IDLE 8 100 mm_percpu_wq +0xffffa08966a04500 IDLE 7 120 kworker/u4:0 +0xffffa08966a05c00 IDLE 6 100 kworker/0:0H +0xffffa08966a08000 INTERRUPTIBLE 12 49 idle_inject/0 +0xffffa08966a09700 IDLE 13 120 kworker/0:1 +0xffffa08966a0ae00 INTERRUPTIBLE 11 0 migration/0 +0xffffa08966a0c500 INTERRUPTIBLE 14 120 cpuhp/0 +0xffffa08966a50000 INTERRUPTIBLE 15 120 cpuhp/1 +0xffffa08966a51700 INTERRUPTIBLE 16 49 idle_inject/1 +0xffffa08966a52e00 IDLE 19 120 kworker/1:0 +0xffffa08966a54500 INTERRUPTIBLE 18 120 ksoftirqd/1 +0xffffa08966a55c00 INTERRUPTIBLE 17 0 migration/1 +0xffffa08966a68000 INTERRUPTIBLE 24 120 kauditd +0xffffa08966a69700 IDLE 20 100 kworker/1:0H +0xffffa08966a6ae00 INTERRUPTIBLE 23 120 rcu_tasks_kthre +0xffffa08966a6c500 IDLE 22 100 netns +0xffffa08966a6dc00 INTERRUPTIBLE 21 120 kdevtmpfs +0xffffa08966bc8000 INTERRUPTIBLE 26 120 oom_reaper +0xffffa08966bc9700 IDLE 27 100 writeback +0xffffa08966bcae00 INTERRUPTIBLE 25 120 khungtaskd +0xffffa08966bcc500 INTERRUPTIBLE 29 125 ksmd +0xffffa08966bcdc00 INTERRUPTIBLE 28 120 kcompactd0 +0xffffa08966bd0000 IDLE 31 100 crypto +0xffffa08966bd1700 IDLE 32 100 kintegrityd +0xffffa08966bd2e00 INTERRUPTIBLE 30 139 khugepaged +0xffffa08966bd4500 IDLE 34 100 tpm_dev_wq +0xffffa08966bd5c00 IDLE 33 100 kblockd diff --git a/tests/integration/data/regression_output/linux/threads b/tests/integration/data/regression_output/linux/threads index e67f513f..572a5f5e 100644 --- a/tests/integration/data/regression_output/linux/threads +++ b/tests/integration/data/regression_output/linux/threads @@ -1,575 +1,575 @@ -task state pid prio comm ------------------- ------------- ---- ---- --------------- -0xffffa087d20edc00 INTERRUPTIBLE 6279 139 z_vdev_file -0xffffa08883df0000 INTERRUPTIBLE 5673 139 zthr_procedure -0xffffa08883df1700 INTERRUPTIBLE 5675 139 zthr_procedure -0xffffa08883df2e00 INTERRUPTIBLE 6190 100 z_wr_int -0xffffa08883df4500 INTERRUPTIBLE 6191 139 z_vdev_file -0xffffa08883df5c00 INTERRUPTIBLE 5674 139 zthr_procedure -0xffffa08884830000 INTERRUPTIBLE 6028 120 su -0xffffa08884831700 RUNNING 6029 120 bash -0xffffa08884832e00 INTERRUPTIBLE 6026 120 sudo -0xffffa08884834500 INTERRUPTIBLE 5981 120 sudo -0xffffa0888548ae00 INTERRUPTIBLE 4506 120 bash -0xffffa08888af9700 INTERRUPTIBLE 4160 120 postgres -0xffffa08888afc500 INTERRUPTIBLE 4158 120 postgres -0xffffa08888afdc00 INTERRUPTIBLE 4159 120 postgres -0xffffa08888c48000 INTERRUPTIBLE 4731 120 java -0xffffa08888c49700 INTERRUPTIBLE 4730 120 java -0xffffa08889750000 INTERRUPTIBLE 4156 120 postgres -0xffffa08889751700 INTERRUPTIBLE 4154 120 postgres -0xffffa08889752e00 INTERRUPTIBLE 4155 120 postgres -0xffffa08889754500 INTERRUPTIBLE 4157 120 postgres -0xffffa08889755c00 INTERRUPTIBLE 4153 120 postgres -0xffffa08889c90000 INTERRUPTIBLE 4369 120 java -0xffffa08889c91700 INTERRUPTIBLE 4163 120 java -0xffffa08889c92e00 INTERRUPTIBLE 4104 120 java -0xffffa08889c94500 INTERRUPTIBLE 4374 120 java -0xffffa08889c95c00 INTERRUPTIBLE 4136 120 java -0xffffa0888c778000 INTERRUPTIBLE 5543 100 z_fr_iss -0xffffa0888c779700 INTERRUPTIBLE 5539 100 z_fr_iss -0xffffa0888c77ae00 INTERRUPTIBLE 5542 100 z_fr_iss -0xffffa0888c77c500 INTERRUPTIBLE 5541 100 z_fr_iss -0xffffa0888c77dc00 INTERRUPTIBLE 5540 100 z_fr_iss -0xffffa0888c784500 INTERRUPTIBLE 5899 139 z_vdev_file -0xffffa0888cc62e00 RUNNING 5983 120 dd -0xffffa0888cc64500 INTERRUPTIBLE 4275 120 bash -0xffffa0888d2c8000 INTERRUPTIBLE 6194 100 z_wr_int -0xffffa0888d2cae00 INTERRUPTIBLE 6030 139 z_vdev_file -0xffffa0888d2cc500 INTERRUPTIBLE 6192 139 z_vdev_file -0xffffa0888d2cdc00 INTERRUPTIBLE 5602 120 mmp -0xffffa0888d2fdc00 INTERRUPTIBLE 6196 100 z_wr_int -0xffffa0888e8a0000 INTERRUPTIBLE 4373 120 java -0xffffa0888e8a1700 INTERRUPTIBLE 4367 120 java -0xffffa0888e8a2e00 INTERRUPTIBLE 4375 120 java -0xffffa0888e8a5c00 INTERRUPTIBLE 4368 120 java -0xffffa08893668000 INTERRUPTIBLE 4726 120 java -0xffffa08893669700 INTERRUPTIBLE 4372 120 java -0xffffa0889366c500 INTERRUPTIBLE 4293 120 java -0xffffa08894458000 INTERRUPTIBLE 4483 120 java -0xffffa0889445ae00 INTERRUPTIBLE 4482 120 java -0xffffa0889445c500 INTERRUPTIBLE 4484 120 java -0xffffa0889445dc00 INTERRUPTIBLE 4481 120 python3 -0xffffa08894560000 INTERRUPTIBLE 4478 120 java -0xffffa08894561700 INTERRUPTIBLE 4729 120 java -0xffffa08894562e00 INTERRUPTIBLE 4479 120 java -0xffffa08894564500 INTERRUPTIBLE 4477 120 python2 -0xffffa08894565c00 INTERRUPTIBLE 4480 120 java -0xffffa08894a68000 INTERRUPTIBLE 4724 120 java -0xffffa08894a69700 INTERRUPTIBLE 4722 120 java -0xffffa08894a6ae00 INTERRUPTIBLE 4723 120 java -0xffffa08894a6dc00 INTERRUPTIBLE 4725 120 java -0xffffa08896518000 INTERRUPTIBLE 4312 120 java -0xffffa08896519700 INTERRUPTIBLE 4364 120 java -0xffffa0889651ae00 INTERRUPTIBLE 4365 120 java -0xffffa0889651c500 INTERRUPTIBLE 4366 120 java -0xffffa0889651dc00 INTERRUPTIBLE 4363 120 java -0xffffa0889bef0000 INTERRUPTIBLE 5553 100 z_trim_int -0xffffa0889bef1700 INTERRUPTIBLE 5549 100 z_cl_int -0xffffa0889bef2e00 INTERRUPTIBLE 5552 100 z_trim_iss -0xffffa0889bef4500 INTERRUPTIBLE 5551 100 z_ioctl_int -0xffffa0889bef5c00 INTERRUPTIBLE 5550 100 z_ioctl_iss -0xffffa0889c9e8000 INTERRUPTIBLE 5555 120 z_prefetch -0xffffa0889c9e9700 INTERRUPTIBLE 5556 120 z_upgrade -0xffffa0889c9eae00 INTERRUPTIBLE 5554 120 z_zvol -0xffffa0889c9ec500 INTERRUPTIBLE 6189 100 z_wr_int -0xffffa0889c9edc00 INTERRUPTIBLE 5589 100 metaslab_group_ -0xffffa0889cd48000 INTERRUPTIBLE 4003 120 java -0xffffa0889cd49700 INTERRUPTIBLE 4099 120 java -0xffffa0889cd4ae00 INTERRUPTIBLE 4007 120 java -0xffffa0889cd4c500 INTERRUPTIBLE 4098 120 java -0xffffa0889cd4dc00 INTERRUPTIBLE 3865 120 java -0xffffa0889fdd0000 INTERRUPTIBLE 4376 120 java -0xffffa0889fdd1700 INTERRUPTIBLE 4469 120 java -0xffffa0889fdd2e00 INTERRUPTIBLE 4379 120 java -0xffffa0889fdd4500 INTERRUPTIBLE 4728 120 java -0xffffa0889fdd5c00 INTERRUPTIBLE 4727 120 java -0xffffa088a150ae00 INTERRUPTIBLE 4505 120 sshd -0xffffa088be0f8000 INTERRUPTIBLE 4152 120 postgres -0xffffa088be0f9700 INTERRUPTIBLE 4150 120 postgres -0xffffa088be0fae00 INTERRUPTIBLE 4151 120 postgres -0xffffa088be0fc500 INTERRUPTIBLE 4148 120 postgres -0xffffa088be0fdc00 INTERRUPTIBLE 4149 120 postgres -0xffffa088c58a8000 INTERRUPTIBLE 5527 100 z_rd_int -0xffffa088c58a9700 INTERRUPTIBLE 5528 101 z_wr_iss -0xffffa088c58aae00 INTERRUPTIBLE 4250 120 (sd-pam) -0xffffa088c58ac500 INTERRUPTIBLE 5529 100 z_wr_iss_h -0xffffa088c58adc00 INTERRUPTIBLE 5526 100 z_rd_int -0xffffa088ca871700 INTERRUPTIBLE 4733 120 java -0xffffa088ca872e00 INTERRUPTIBLE 4735 120 java -0xffffa088ca874500 INTERRUPTIBLE 4732 120 java -0xffffa088ca875c00 INTERRUPTIBLE 4734 120 java -0xffffa088ce681700 INTERRUPTIBLE 5952 139 z_vdev_file -0xffffa088ce682e00 INTERRUPTIBLE 6184 100 z_wr_int -0xffffa088d33d0000 INTERRUPTIBLE 4074 120 java -0xffffa088d33d1700 INTERRUPTIBLE 4033 120 java -0xffffa088d33d2e00 INTERRUPTIBLE 4038 120 java -0xffffa088d33d4500 INTERRUPTIBLE 4291 120 java -0xffffa088d33d5c00 INTERRUPTIBLE 4070 120 java -0xffffa088ef2d0000 INTERRUPTIBLE 2862 120 java -0xffffa088ef2d1700 INTERRUPTIBLE 2866 120 java -0xffffa088ef2d2e00 INTERRUPTIBLE 2861 120 java -0xffffa088ef2d4500 INTERRUPTIBLE 2865 120 java -0xffffa088ef2d5c00 INTERRUPTIBLE 2859 120 java -0xffffa088f0978000 INTERRUPTIBLE 2869 120 java -0xffffa088f0979700 INTERRUPTIBLE 2877 120 java -0xffffa088f097ae00 INTERRUPTIBLE 2868 120 java -0xffffa088f097c500 INTERRUPTIBLE 3859 120 java -0xffffa088f097dc00 INTERRUPTIBLE 2867 120 java -0xffffa088f1e95c00 INTERRUPTIBLE 6309 120 sleep -0xffffa088f6778000 INTERRUPTIBLE 3863 120 java -0xffffa088f6779700 INTERRUPTIBLE 3861 120 java -0xffffa088f677ae00 INTERRUPTIBLE 3864 120 java -0xffffa088f677c500 INTERRUPTIBLE 3862 120 java -0xffffa088f677dc00 INTERRUPTIBLE 3860 120 java -0xffffa088f6e58000 INTERRUPTIBLE 4292 120 java -0xffffa088f6e59700 INTERRUPTIBLE 4006 120 java -0xffffa088f6e5ae00 INTERRUPTIBLE 4005 120 java -0xffffa088f6e5c500 INTERRUPTIBLE 2870 120 java -0xffffa088f6e5dc00 INTERRUPTIBLE 3921 120 java -0xffffa088f7408000 INTERRUPTIBLE 4381 120 java -0xffffa088f7409700 INTERRUPTIBLE 4476 120 java -0xffffa088f740ae00 INTERRUPTIBLE 4474 120 java -0xffffa088f740c500 INTERRUPTIBLE 4473 120 python2 -0xffffa088f740dc00 INTERRUPTIBLE 4475 120 java -0xffffa08905908000 IDLE 3249 120 kworker/1:3 -0xffffa08905909700 INTERRUPTIBLE 2445 120 iscsi_np -0xffffa0890590ae00 INTERRUPTIBLE 5532 100 z_wr_int -0xffffa0890590c500 IDLE 2438 100 target_completi -0xffffa0890590dc00 IDLE 2439 100 xcopy_wq -0xffffa0891e0ec500 INTERRUPTIBLE 2255 120 postgres -0xffffa08930464500 INTERRUPTIBLE 1972 120 gdbus -0xffffa089304e8000 IDLE 774 100 xprtiod -0xffffa089304e9700 INTERRUPTIBLE 2025 120 nfsd -0xffffa089304eae00 INTERRUPTIBLE 2124 120 automount -0xffffa089304ec500 IDLE 935 120 kworker/1:2 -0xffffa089304edc00 INTERRUPTIBLE 1911 120 polkitd -0xffffa08930858000 INTERRUPTIBLE 1291 100 metaslab_group_ -0xffffa08930859700 INTERRUPTIBLE 1795 120 rs:main Q:Reg -0xffffa0893085ae00 INTERRUPTIBLE 1542 120 systemd-network -0xffffa0893085c500 INTERRUPTIBLE 1290 100 metaslab_group_ -0xffffa0893085dc00 IDLE 765 120 kworker/0:3 -0xffffa08931488000 INTERRUPTIBLE 4625 120 nginx -0xffffa08931968000 INTERRUPTIBLE 779 120 blkmapd -0xffffa08931969700 INTERRUPTIBLE 1756 120 cron -0xffffa0893196ae00 INTERRUPTIBLE 4496 120 sshd -0xffffa0893196c500 INTERRUPTIBLE 4237 120 systemd -0xffffa0893196dc00 INTERRUPTIBLE 781 120 systemd-udevd -0xffffa08931d50000 INTERRUPTIBLE 1941 120 delphix-stat-se -0xffffa089320c0000 INTERRUPTIBLE 1942 120 sed -0xffffa089320c1700 INTERRUPTIBLE 1918 120 profile -0xffffa089320c2e00 INTERRUPTIBLE 1977 120 delphix-stat-se -0xffffa089320c4500 INTERRUPTIBLE 1936 120 timeout -0xffffa089320c5c00 INTERRUPTIBLE 1940 120 mpstat -0xffffa089320e0000 IDLE 735 120 kworker/0:2 -0xffffa089320e1700 INTERRUPTIBLE 743 119 systemd-journal -0xffffa089320e2e00 INTERRUPTIBLE 5531 100 z_wr_int -0xffffa089320e4500 INTERRUPTIBLE 1033 120 vmtoolsd -0xffffa089320e5c00 INTERRUPTIBLE 830 49 irq/16-vmwgfx -0xffffa08933048000 INTERRUPTIBLE 1895 120 delphix-stat-se -0xffffa08933049700 INTERRUPTIBLE 1903 120 sed -0xffffa0893304ae00 INTERRUPTIBLE 1934 120 sed -0xffffa0893304c500 INTERRUPTIBLE 1919 120 delphix-stat-se -0xffffa0893304dc00 INTERRUPTIBLE 1871 120 sed -0xffffa0893319dc00 INTERRUPTIBLE 1952 120 nginx -0xffffa08934b58000 INTERRUPTIBLE 2073 120 nfsd -0xffffa08934b59700 INTERRUPTIBLE 2074 120 nfsd -0xffffa08934b5ae00 INTERRUPTIBLE 2077 120 nfsd -0xffffa08934b5c500 INTERRUPTIBLE 2076 120 nfsd -0xffffa08934b5dc00 INTERRUPTIBLE 2075 120 nfsd -0xffffa08934e00000 INTERRUPTIBLE 2067 120 nfsd -0xffffa08934e01700 INTERRUPTIBLE 2068 120 nfsd -0xffffa08934e02e00 INTERRUPTIBLE 2072 120 nfsd -0xffffa08934e04500 INTERRUPTIBLE 2071 120 nfsd -0xffffa08934e05c00 INTERRUPTIBLE 2069 120 nfsd -0xffffa089358f0000 INTERRUPTIBLE 2085 120 nfsd -0xffffa089358f1700 INTERRUPTIBLE 2078 120 nfsd -0xffffa089358f2e00 INTERRUPTIBLE 2084 120 nfsd -0xffffa089358f4500 INTERRUPTIBLE 2082 120 nfsd -0xffffa089358f5c00 INTERRUPTIBLE 2080 120 nfsd -0xffffa08936498000 INTERRUPTIBLE 1910 120 timeout -0xffffa0893649ae00 INTERRUPTIBLE 1906 120 timeout -0xffffa0893649dc00 INTERRUPTIBLE 2021 120 nfs_delete -0xffffa08936800000 INTERRUPTIBLE 2079 120 postgres -0xffffa08936801700 INTERRUPTIBLE 2055 120 sudo -0xffffa08936802e00 INTERRUPTIBLE 4147 120 postgres -0xffffa08936804500 INTERRUPTIBLE 4146 120 postgres -0xffffa08936805c00 INTERRUPTIBLE 4145 120 postgres -0xffffa08936918000 INTERRUPTIBLE 1858 120 sed -0xffffa08936919700 INTERRUPTIBLE 1861 120 sed -0xffffa0893691ae00 INTERRUPTIBLE 1870 120 delphix-stat-se -0xffffa0893691c500 INTERRUPTIBLE 1860 120 delphix-stat-se -0xffffa0893691dc00 INTERRUPTIBLE 1857 120 delphix-stat-se -0xffffa08937f4dc00 INTERRUPTIBLE 5676 139 zthr_procedure -0xffffa08939f70000 INTERRUPTIBLE 2100 120 nfsd -0xffffa08939f71700 INTERRUPTIBLE 2101 120 nfsd -0xffffa08939f72e00 INTERRUPTIBLE 2105 120 nfsd -0xffffa08939f74500 INTERRUPTIBLE 2104 120 nfsd -0xffffa08939f75c00 INTERRUPTIBLE 2103 120 nfsd -0xffffa0893a532e00 INTERRUPTIBLE 1038 116 auditd -0xffffa0893bf78000 INTERRUPTIBLE 2042 120 nfsd -0xffffa0893bf79700 INTERRUPTIBLE 2044 120 nfsd -0xffffa0893bf7ae00 INTERRUPTIBLE 2039 120 nfsd -0xffffa0893bf7c500 INTERRUPTIBLE 2050 120 nfsd -0xffffa0893bf7dc00 INTERRUPTIBLE 2049 120 nfsd -0xffffa0893c088000 INTERRUPTIBLE 5517 100 z_null_iss -0xffffa0893c089700 INTERRUPTIBLE 5519 100 z_rd_iss -0xffffa0893c08ae00 INTERRUPTIBLE 2106 120 nfsd -0xffffa0893c08c500 INTERRUPTIBLE 4742 120 native_oom_hand -0xffffa0893c08dc00 INTERRUPTIBLE 5518 100 z_null_int -0xffffa0893c2b0000 INTERRUPTIBLE 5530 100 z_wr_int -0xffffa0893c2b1700 INTERRUPTIBLE 2127 120 agetty -0xffffa0893c2b2e00 IDLE 4665 120 kworker/1:4 -0xffffa0893c2b4500 INTERRUPTIBLE 2132 120 login -0xffffa0893c2b5c00 IDLE 4666 120 kworker/1:5 -0xffffa0893d898000 INTERRUPTIBLE 2087 120 nfsd -0xffffa0893d899700 INTERRUPTIBLE 2088 120 nfsd -0xffffa0893d89ae00 INTERRUPTIBLE 2086 120 nfsd -0xffffa0893d89c500 INTERRUPTIBLE 2097 120 nfsd -0xffffa0893d89dc00 INTERRUPTIBLE 2089 120 nfsd -0xffffa0893dd30000 INTERRUPTIBLE 2878 120 sleep -0xffffa0893dd31700 INTERRUPTIBLE 2083 120 sleep -0xffffa0893dd34500 INTERRUPTIBLE 2874 120 sleep -0xffffa0893f968000 INTERRUPTIBLE 2093 120 nfsd -0xffffa0893f969700 INTERRUPTIBLE 2095 120 nfsd -0xffffa0893f96ae00 INTERRUPTIBLE 2092 120 nfsd -0xffffa0893f96c500 INTERRUPTIBLE 2091 120 nfsd -0xffffa0893f96dc00 INTERRUPTIBLE 2096 120 nfsd -0xffffa089405c9700 INTERRUPTIBLE 1995 120 sed -0xffffa089405cc500 INTERRUPTIBLE 2879 120 sleep -0xffffa089405cdc00 INTERRUPTIBLE 5464 120 sleep -0xffffa089408f0000 INTERRUPTIBLE 2098 120 nfsd -0xffffa089408f1700 INTERRUPTIBLE 1578 120 systemd-resolve -0xffffa089408f2e00 INTERRUPTIBLE 1688 120 sshd -0xffffa089408f4500 INTERRUPTIBLE 1794 120 in:imklog -0xffffa089408f5c00 INTERRUPTIBLE 1793 120 in:imuxsock -0xffffa089408f8000 INTERRUPTIBLE 1781 120 networkd-dispat -0xffffa089408f9700 INTERRUPTIBLE 1998 120 nfsd -0xffffa089408fae00 INTERRUPTIBLE 2017 120 nfsd -0xffffa089408fc500 INTERRUPTIBLE 1783 120 systemd-logind -0xffffa089408fdc00 INTERRUPTIBLE 1782 120 zed -0xffffa08940960000 INTERRUPTIBLE 2035 120 nfsd -0xffffa08940961700 INTERRUPTIBLE 2028 120 nfsd -0xffffa08940962e00 INTERRUPTIBLE 1730 120 dbus-daemon -0xffffa08940964500 INTERRUPTIBLE 5525 100 z_rd_int -0xffffa08940965c00 INTERRUPTIBLE 1728 120 rsyslogd -0xffffa089410b9700 INTERRUPTIBLE 2125 120 automount -0xffffa089410bae00 INTERRUPTIBLE 2126 120 automount -0xffffa089410bc500 INTERRUPTIBLE 2150 120 automount -0xffffa08941a68000 INTERRUPTIBLE 5548 100 z_cl_iss -0xffffa08941a69700 INTERRUPTIBLE 5544 100 z_fr_iss -0xffffa08941a6ae00 INTERRUPTIBLE 5547 100 z_fr_int -0xffffa08941a6c500 INTERRUPTIBLE 5546 100 z_fr_iss -0xffffa08941a6dc00 INTERRUPTIBLE 5545 100 z_fr_iss -0xffffa08941afae00 INTERRUPTIBLE 4756 120 oom_waiter -0xffffa08941f68000 INTERRUPTIBLE 2063 120 nfsd -0xffffa08941f69700 INTERRUPTIBLE 2064 120 nfsd -0xffffa08941f6ae00 INTERRUPTIBLE 2062 120 nfsd -0xffffa08941f6c500 INTERRUPTIBLE 2059 120 nfsd -0xffffa08941f6dc00 INTERRUPTIBLE 2066 120 nfsd -0xffffa0894483dc00 INTERRUPTIBLE 2045 120 gmain -0xffffa089481b8000 INTERRUPTIBLE 5520 100 z_rd_int -0xffffa089481b9700 INTERRUPTIBLE 5524 100 z_rd_int -0xffffa089481bae00 INTERRUPTIBLE 5521 100 z_rd_int -0xffffa089481bc500 INTERRUPTIBLE 5523 100 z_rd_int -0xffffa089481bdc00 INTERRUPTIBLE 5522 100 z_rd_int -0xffffa0894b280000 INTERRUPTIBLE 1958 120 iostat -0xffffa0894b281700 INTERRUPTIBLE 1959 120 delphix-stat-se -0xffffa0894b282e00 INTERRUPTIBLE 1964 120 sed -0xffffa0894b284500 INTERRUPTIBLE 5472 120 sleep -0xffffa0894b285c00 INTERRUPTIBLE 2011 120 delphix-stat-se -0xffffa0894cc80000 INTERRUPTIBLE 2252 120 postgres -0xffffa0894cc81700 INTERRUPTIBLE 2250 120 postgres -0xffffa0894cc82e00 INTERRUPTIBLE 2251 120 postgres -0xffffa0894cc84500 INTERRUPTIBLE 2254 120 postgres -0xffffa0894cc85c00 INTERRUPTIBLE 2253 120 postgres -0xffffa0894e6a8000 INTERRUPTIBLE 5976 139 z_vdev_file -0xffffa0894e6a9700 INTERRUPTIBLE 1772 120 nscd -0xffffa0894e6aae00 INTERRUPTIBLE 2004 120 nfsd -0xffffa0894e6ac500 INTERRUPTIBLE 2007 120 nfsd -0xffffa0894e6adc00 INTERRUPTIBLE 2013 120 nfsd -0xffffa0894e7b0000 INTERRUPTIBLE 1984 120 nfsd -0xffffa0894e7b1700 INTERRUPTIBLE 1987 120 nfsd -0xffffa0894e7b2e00 INTERRUPTIBLE 1237 100 z_null_iss -0xffffa0894e7b4500 INTERRUPTIBLE 1991 120 nfsd -0xffffa0894e7b5c00 INTERRUPTIBLE 1986 120 nfsd -0xffffa0894e7f0000 INTERRUPTIBLE 1240 100 z_rd_int -0xffffa0894e7f1700 INTERRUPTIBLE 1241 100 z_rd_int -0xffffa0894e7f2e00 INTERRUPTIBLE 1239 100 z_rd_iss -0xffffa0894e7f4500 INTERRUPTIBLE 1238 100 z_null_int -0xffffa0894e7f5c00 INTERRUPTIBLE 1242 100 z_rd_int -0xffffa0894e7f8000 INTERRUPTIBLE 1246 100 z_rd_int -0xffffa0894e7f9700 INTERRUPTIBLE 1247 100 z_rd_int -0xffffa0894e7fae00 INTERRUPTIBLE 1245 100 z_rd_int -0xffffa0894e7fc500 INTERRUPTIBLE 1244 100 z_rd_int -0xffffa0894e7fdc00 INTERRUPTIBLE 1243 100 z_rd_int -0xffffa0894ea70000 INTERRUPTIBLE 1252 100 z_wr_int -0xffffa0894ea71700 INTERRUPTIBLE 1248 101 z_wr_iss -0xffffa0894ea72e00 INTERRUPTIBLE 1251 100 z_wr_int -0xffffa0894ea74500 INTERRUPTIBLE 1250 100 z_wr_int -0xffffa0894ea75c00 INTERRUPTIBLE 1249 100 z_wr_iss_h -0xffffa0894ea78000 INTERRUPTIBLE 1256 100 z_wr_int -0xffffa0894ea79700 INTERRUPTIBLE 1257 100 z_wr_int -0xffffa0894ea7ae00 INTERRUPTIBLE 1255 100 z_wr_int -0xffffa0894ea7c500 INTERRUPTIBLE 1254 100 z_wr_int -0xffffa0894ea7dc00 INTERRUPTIBLE 1253 100 z_wr_int -0xffffa0894eaa8000 INTERRUPTIBLE 1259 100 z_fr_iss -0xffffa0894eaa9700 INTERRUPTIBLE 1260 100 z_fr_iss -0xffffa0894eaaae00 INTERRUPTIBLE 1258 100 z_wr_int_h -0xffffa0894eaac500 INTERRUPTIBLE 1262 100 z_fr_iss -0xffffa0894eaadc00 INTERRUPTIBLE 1261 100 z_fr_iss -0xffffa0894eab8000 INTERRUPTIBLE 1264 100 z_fr_iss -0xffffa0894eab9700 INTERRUPTIBLE 1265 100 z_fr_iss -0xffffa0894eabae00 INTERRUPTIBLE 1263 100 z_fr_iss -0xffffa0894eabc500 INTERRUPTIBLE 1267 100 z_fr_int -0xffffa0894eabdc00 INTERRUPTIBLE 1266 100 z_fr_iss -0xffffa0894eb60000 INTERRUPTIBLE 1272 100 z_trim_iss -0xffffa0894eb61700 INTERRUPTIBLE 1268 100 z_cl_iss -0xffffa0894eb62e00 INTERRUPTIBLE 1271 100 z_ioctl_int -0xffffa0894eb64500 INTERRUPTIBLE 1270 100 z_ioctl_iss -0xffffa0894eb65c00 INTERRUPTIBLE 1269 100 z_cl_int -0xffffa0894eb68000 INTERRUPTIBLE 2057 120 nfsd -0xffffa0894eb69700 INTERRUPTIBLE 1273 100 z_trim_int -0xffffa0894eb6ae00 INTERRUPTIBLE 1276 120 z_upgrade -0xffffa0894eb6c500 INTERRUPTIBLE 1275 120 z_prefetch -0xffffa0894eb6dc00 INTERRUPTIBLE 1274 120 z_zvol -0xffffa0894ebb0000 INTERRUPTIBLE 1282 139 dp_zil_clean_ta -0xffffa0894ebb1700 INTERRUPTIBLE 1283 139 dp_zil_clean_ta -0xffffa0894ebb2e00 INTERRUPTIBLE 1281 139 dp_sync_taskq -0xffffa0894ebb4500 INTERRUPTIBLE 1284 120 z_iput -0xffffa0894ebb5c00 INTERRUPTIBLE 1285 120 z_unlinked_drai -0xffffa08950a89700 INTERRUPTIBLE 2121 120 rngd -0xffffa08951028000 INTERRUPTIBLE 5534 100 z_wr_int -0xffffa08951029700 INTERRUPTIBLE 5535 100 z_wr_int -0xffffa0895102ae00 INTERRUPTIBLE 5538 100 z_wr_int_h -0xffffa0895102c500 INTERRUPTIBLE 5537 100 z_wr_int -0xffffa0895102dc00 INTERRUPTIBLE 5536 100 z_wr_int -0xffffa08952e58000 INTERRUPTIBLE 555 139 zthr_procedure -0xffffa08952e59700 INTERRUPTIBLE 557 139 zthr_procedure -0xffffa08952e5ae00 INTERRUPTIBLE 553 120 mmp -0xffffa08952e5c500 INTERRUPTIBLE 556 139 zthr_procedure -0xffffa08952e5dc00 INTERRUPTIBLE 554 139 zthr_procedure -0xffffa08952e70000 INTERRUPTIBLE 494 100 metaslab_group_ -0xffffa08952e71700 INTERRUPTIBLE 491 120 z_unlinked_drai -0xffffa08952e72e00 IDLE 766 120 kworker/0:4 -0xffffa08952e74500 IDLE 767 100 rpciod -0xffffa08952e75c00 INTERRUPTIBLE 493 100 metaslab_group_ -0xffffa08952ec0000 INTERRUPTIBLE 1887 120 rpc.mountd -0xffffa08952ec1700 INTERRUPTIBLE 5533 100 z_wr_int -0xffffa08952ec2e00 INTERRUPTIBLE 1878 120 rpc.idmapd -0xffffa08952ec4500 INTERRUPTIBLE 1037 116 auditd -0xffffa08952ec5c00 INTERRUPTIBLE 1968 120 gmain -0xffffa089533f8000 INTERRUPTIBLE 489 139 dp_zil_clean_ta -0xffffa089533f9700 INTERRUPTIBLE 490 120 z_iput -0xffffa089533fae00 INTERRUPTIBLE 488 139 dp_zil_clean_ta -0xffffa089533fc500 INTERRUPTIBLE 487 139 dp_sync_taskq -0xffffa089533fdc00 INTERRUPTIBLE 485 120 z_upgrade -0xffffa08953468000 INTERRUPTIBLE 482 100 z_trim_int -0xffffa08953469700 INTERRUPTIBLE 483 120 z_zvol -0xffffa0895346ae00 INTERRUPTIBLE 481 100 z_trim_iss -0xffffa0895346c500 INTERRUPTIBLE 480 100 z_ioctl_int -0xffffa0895346dc00 INTERRUPTIBLE 484 120 z_prefetch -0xffffa08953470000 INTERRUPTIBLE 477 100 z_cl_iss -0xffffa08953471700 INTERRUPTIBLE 478 100 z_cl_int -0xffffa08953472e00 INTERRUPTIBLE 476 100 z_fr_int -0xffffa08953474500 INTERRUPTIBLE 475 100 z_fr_iss -0xffffa08953475c00 INTERRUPTIBLE 479 100 z_ioctl_iss -0xffffa089534a0000 INTERRUPTIBLE 471 100 z_fr_iss -0xffffa089534a1700 INTERRUPTIBLE 472 100 z_fr_iss -0xffffa089534a2e00 INTERRUPTIBLE 470 100 z_fr_iss -0xffffa089534a4500 INTERRUPTIBLE 474 100 z_fr_iss -0xffffa089534a5c00 INTERRUPTIBLE 473 100 z_fr_iss -0xffffa089534b0000 INTERRUPTIBLE 467 100 z_wr_int_h -0xffffa089534b1700 INTERRUPTIBLE 468 100 z_fr_iss -0xffffa089534b2e00 INTERRUPTIBLE 466 100 z_wr_int -0xffffa089534b4500 INTERRUPTIBLE 465 100 z_wr_int -0xffffa089534b5c00 INTERRUPTIBLE 469 100 z_fr_iss -0xffffa08953508000 INTERRUPTIBLE 461 100 z_wr_int -0xffffa08953509700 INTERRUPTIBLE 462 100 z_wr_int -0xffffa0895350ae00 INTERRUPTIBLE 460 100 z_wr_int -0xffffa0895350c500 INTERRUPTIBLE 464 100 z_wr_int -0xffffa0895350dc00 INTERRUPTIBLE 463 100 z_wr_int -0xffffa08953510000 INTERRUPTIBLE 458 100 z_wr_iss_h -0xffffa08953511700 INTERRUPTIBLE 459 100 z_wr_int -0xffffa08953512e00 INTERRUPTIBLE 457 101 z_wr_iss -0xffffa08953514500 INTERRUPTIBLE 456 100 z_rd_int -0xffffa08953515c00 INTERRUPTIBLE 455 100 z_rd_int -0xffffa08953ac5c00 INTERRUPTIBLE 5588 100 metaslab_group_ -0xffffa08953ac8000 INTERRUPTIBLE 5595 139 dp_zil_clean_ta -0xffffa08953ac9700 INTERRUPTIBLE 6186 139 z_vdev_file -0xffffa08953acae00 INTERRUPTIBLE 5592 139 dp_sync_taskq -0xffffa08953acdc00 INTERRUPTIBLE 6188 139 z_vdev_file -0xffffa089553a8000 INTERRUPTIBLE 1335 120 txg_quiesce -0xffffa089553a9700 INTERRUPTIBLE 1336 120 txg_sync -0xffffa089553aae00 INTERRUPTIBLE 2099 120 nfsd -0xffffa089553ac500 INTERRUPTIBLE 1338 139 zthr_procedure -0xffffa089553adc00 INTERRUPTIBLE 1337 120 mmp -0xffffa089553b8000 INTERRUPTIBLE 1340 139 zthr_procedure -0xffffa089553b9700 INTERRUPTIBLE 1341 139 zthr_procedure -0xffffa089553bae00 INTERRUPTIBLE 1339 139 zthr_procedure -0xffffa089553bc500 INTERRUPTIBLE 1792 120 snmpd -0xffffa089553bdc00 INTERRUPTIBLE 2002 120 nfsd -0xffffa0895541ae00 INTERRUPTIBLE 1798 120 zed -0xffffa0895541dc00 INTERRUPTIBLE 1797 120 zed -0xffffa08956018000 INTERRUPTIBLE 1785 120 nscd -0xffffa08956019700 INTERRUPTIBLE 1786 120 nscd -0xffffa0895601ae00 INTERRUPTIBLE 1788 120 nscd -0xffffa0895601c500 INTERRUPTIBLE 1787 120 nscd -0xffffa0895601dc00 INTERRUPTIBLE 1784 120 nscd -0xffffa089560c1700 INTERRUPTIBLE 1789 120 nscd -0xffffa089560c2e00 INTERRUPTIBLE 1791 120 nscd -0xffffa089560c4500 INTERRUPTIBLE 1790 120 nscd -0xffffa08956848000 INTERRUPTIBLE 367 120 arc_prune -0xffffa08956849700 INTERRUPTIBLE 372 139 zthr_procedure -0xffffa0895684ae00 INTERRUPTIBLE 373 120 dbu_evict -0xffffa0895684c500 INTERRUPTIBLE 371 139 zthr_procedure -0xffffa0895684dc00 INTERRUPTIBLE 375 139 dbuf_evict -0xffffa08957580000 IDLE 266 100 scsi_tmf_2 -0xffffa08957581700 IDLE 267 120 kworker/u4:4 -0xffffa08957582e00 INTERRUPTIBLE 265 120 scsi_eh_2 -0xffffa08957584500 IDLE 268 120 kworker/u4:5 -0xffffa08957585c00 IDLE 264 100 kworker/0:1H -0xffffa08957d18000 IDLE 170 100 scsi_tmf_0 -0xffffa08957d19700 INTERRUPTIBLE 171 120 scsi_eh_1 -0xffffa08957d1ae00 INTERRUPTIBLE 1845 120 rsync -0xffffa08957d1c500 IDLE 173 120 kworker/u4:2 -0xffffa08957d1dc00 IDLE 172 100 scsi_tmf_1 -0xffffa08957da8000 INTERRUPTIBLE 346 100 spl_system_task -0xffffa08957da9700 INTERRUPTIBLE 552 120 txg_sync -0xffffa08957daae00 INTERRUPTIBLE 349 100 spl_kmem_cache -0xffffa08957dac500 INTERRUPTIBLE 348 100 spl_dynamic_tas -0xffffa08957dadc00 INTERRUPTIBLE 347 100 spl_delay_taskq -0xffffa08957db0000 INTERRUPTIBLE 451 100 z_rd_int -0xffffa08957db1700 INTERRUPTIBLE 452 100 z_rd_int -0xffffa08957db2e00 INTERRUPTIBLE 453 100 z_rd_int -0xffffa08957db4500 INTERRUPTIBLE 454 100 z_rd_int -0xffffa08957db5c00 IDLE 251 100 mpt_poll_0 -0xffffa08957db8000 IDLE 199 100 charger_manager -0xffffa08957db9700 INTERRUPTIBLE 450 100 z_rd_int -0xffffa08957dbae00 INTERRUPTIBLE 449 100 z_rd_int -0xffffa08957dbc500 INTERRUPTIBLE 448 100 z_rd_iss -0xffffa08957dbdc00 IDLE 200 100 kworker/1:1H -0xffffa08957e38000 IDLE 837 100 ttm_swap -0xffffa08957e39700 IDLE 1926 100 kworker/u5:1 -0xffffa08957e3ae00 INTERRUPTIBLE 2019 120 nfsd -0xffffa08957e3c500 INTERRUPTIBLE 551 120 txg_quiesce -0xffffa08957e3dc00 INTERRUPTIBLE 2054 120 nfsd -0xffffa08958028000 INTERRUPTIBLE 143 49 irq/31-pciehp -0xffffa08958029700 INTERRUPTIBLE 142 49 irq/30-pciehp -0xffffa0895802ae00 INTERRUPTIBLE 144 49 irq/32-pciehp -0xffffa0895802c500 INTERRUPTIBLE 140 49 irq/28-pciehp -0xffffa0895802dc00 INTERRUPTIBLE 141 49 irq/29-pciehp -0xffffa08958030000 INTERRUPTIBLE 153 49 irq/41-pciehp -0xffffa08958031700 INTERRUPTIBLE 150 49 irq/38-pciehp -0xffffa08958032e00 INTERRUPTIBLE 154 49 irq/42-pciehp -0xffffa08958034500 INTERRUPTIBLE 151 49 irq/39-pciehp -0xffffa08958035c00 INTERRUPTIBLE 152 49 irq/40-pciehp -0xffffa08958038000 INTERRUPTIBLE 139 49 irq/27-pciehp -0xffffa08958039700 IDLE 135 100 kthrotld -0xffffa0895803ae00 INTERRUPTIBLE 138 49 irq/26-pciehp -0xffffa0895803c500 INTERRUPTIBLE 136 49 irq/24-pciehp -0xffffa0895803dc00 INTERRUPTIBLE 137 49 irq/25-pciehp -0xffffa08958080000 INTERRUPTIBLE 2058 120 nfsd -0xffffa08958081700 INTERRUPTIBLE 1031 120 VGAuthService -0xffffa08958082e00 IDLE 174 120 kworker/u4:3 -0xffffa08958084500 IDLE 175 100 kstrp -0xffffa08958085c00 INTERRUPTIBLE 1979 120 nfsd -0xffffa08958088000 INTERRUPTIBLE 163 49 irq/51-pciehp -0xffffa08958089700 INTERRUPTIBLE 160 49 irq/48-pciehp -0xffffa0895808ae00 INTERRUPTIBLE 161 49 irq/49-pciehp -0xffffa0895808c500 INTERRUPTIBLE 164 49 irq/52-pciehp -0xffffa0895808dc00 INTERRUPTIBLE 162 49 irq/50-pciehp -0xffffa08958098000 INTERRUPTIBLE 149 49 irq/37-pciehp -0xffffa08958099700 INTERRUPTIBLE 148 49 irq/36-pciehp -0xffffa0895809ae00 INTERRUPTIBLE 145 49 irq/33-pciehp -0xffffa0895809c500 INTERRUPTIBLE 146 49 irq/34-pciehp -0xffffa0895809dc00 INTERRUPTIBLE 147 49 irq/35-pciehp -0xffffa089580b0000 INTERRUPTIBLE 1992 120 nfsd -0xffffa089580b1700 INTERRUPTIBLE 379 120 l2arc_feed -0xffffa089580b2e00 INTERRUPTIBLE 378 139 z_vdev_file -0xffffa089580b4500 INTERRUPTIBLE 1996 120 nfsd -0xffffa089580b5c00 INTERRUPTIBLE 1994 120 nfsd -0xffffa089580e0000 INTERRUPTIBLE 158 49 irq/46-pciehp -0xffffa089580e1700 INTERRUPTIBLE 157 49 irq/45-pciehp -0xffffa089580e2e00 INTERRUPTIBLE 155 49 irq/43-pciehp -0xffffa089580e4500 INTERRUPTIBLE 159 49 irq/47-pciehp -0xffffa089580e5c00 INTERRUPTIBLE 156 49 irq/44-pciehp -0xffffa08958208000 INTERRUPTIBLE 167 49 irq/55-pciehp -0xffffa08958209700 IDLE 168 100 acpi_thermal_pm -0xffffa0895820ae00 INTERRUPTIBLE 166 49 irq/54-pciehp -0xffffa0895820c500 INTERRUPTIBLE 165 49 irq/53-pciehp -0xffffa0895820dc00 INTERRUPTIBLE 169 120 scsi_eh_0 -0xffffa089587b8000 INTERRUPTIBLE 447 100 z_null_int -0xffffa089587b9700 IDLE 253 100 mpt/0 -0xffffa089587bae00 INTERRUPTIBLE 446 100 z_null_iss -0xffffa089587bc500 INTERRUPTIBLE 46 120 ecryptfs-kthrea -0xffffa089587bdc00 IDLE 45 100 kworker/u5:0 -0xffffa08959894500 INTERRUPTIBLE 5891 139 z_vdev_file -0xffffa0895a318000 INTERRUPTIBLE 5599 120 txg_quiesce -0xffffa0895a319700 INTERRUPTIBLE 5597 120 z_iput -0xffffa0895a31ae00 INTERRUPTIBLE 5598 120 z_unlinked_drai -0xffffa0895a31c500 INTERRUPTIBLE 5596 139 dp_zil_clean_ta -0xffffa0895a31dc00 INTERRUPTIBLE 5601 120 txg_sync -0xffffa0895a328000 INTERRUPTIBLE 4143 120 postgres -0xffffa0895a329700 INTERRUPTIBLE 4141 120 postgres -0xffffa0895a32ae00 INTERRUPTIBLE 4144 120 postgres -0xffffa0895a32dc00 INTERRUPTIBLE 4142 120 postgres -0xffffa08960a20000 INTERRUPTIBLE 3853 120 java -0xffffa08960a21700 INTERRUPTIBLE 3858 120 java -0xffffa08960a22e00 INTERRUPTIBLE 3857 120 java -0xffffa08960a24500 INTERRUPTIBLE 2910 120 java -0xffffa08960a25c00 INTERRUPTIBLE 3856 120 java -0xffffa08960a38000 INTERRUPTIBLE 2853 120 java -0xffffa08960a39700 INTERRUPTIBLE 2880 120 java -0xffffa08960a3ae00 INTERRUPTIBLE 2857 120 java -0xffffa08960a3c500 INTERRUPTIBLE 2858 120 java -0xffffa08960a3dc00 INTERRUPTIBLE 2856 120 java -0xffffa08960f42e00 INTERRUPTIBLE 2156 120 automount -0xffffa08965109700 INTERRUPTIBLE 2012 120 sed -0xffffa0896510ae00 INTERRUPTIBLE 1990 120 delphix-stat-se -0xffffa0896510c500 INTERRUPTIBLE 5468 120 sleep -0xffffa0896510dc00 INTERRUPTIBLE 1982 120 sed -0xffffa089666d0000 IDLE 38 100 devfreq_wq -0xffffa089666d1700 INTERRUPTIBLE 39 0 watchdogd -0xffffa089666d2e00 IDLE 37 100 edac-poller -0xffffa089666d4500 IDLE 36 100 md -0xffffa089666d5c00 IDLE 35 100 ata_sff -0xffffa08966790000 IDLE 318 100 raid5wq -0xffffa08966791700 INTERRUPTIBLE 44 120 kswapd0 -0xffffa08966792e00 INTERRUPTIBLE 357 100 zvol -0xffffa08966794500 IDLE 41 120 kworker/u4:1 -0xffffa08966795c00 IDLE 40 120 kworker/1:1 -0xffffa089669e8000 IDLE 4 100 rcu_par_gp -0xffffa089669e9700 IDLE 5 120 kworker/0:0 -0xffffa089669eae00 IDLE 3 100 rcu_gp -0xffffa089669ec500 INTERRUPTIBLE 2 120 kthreadd -0xffffa089669edc00 INTERRUPTIBLE 1 120 systemd -0xffffa08966a00000 INTERRUPTIBLE 9 120 ksoftirqd/0 -0xffffa08966a01700 RUNNING 10 120 rcu_sched -0xffffa08966a02e00 IDLE 8 100 mm_percpu_wq -0xffffa08966a04500 IDLE 7 120 kworker/u4:0 -0xffffa08966a05c00 IDLE 6 100 kworker/0:0H -0xffffa08966a08000 INTERRUPTIBLE 12 49 idle_inject/0 -0xffffa08966a09700 IDLE 13 120 kworker/0:1 -0xffffa08966a0ae00 INTERRUPTIBLE 11 0 migration/0 -0xffffa08966a0c500 INTERRUPTIBLE 14 120 cpuhp/0 -0xffffa08966a50000 INTERRUPTIBLE 15 120 cpuhp/1 -0xffffa08966a51700 INTERRUPTIBLE 16 49 idle_inject/1 -0xffffa08966a52e00 IDLE 19 120 kworker/1:0 -0xffffa08966a54500 INTERRUPTIBLE 18 120 ksoftirqd/1 -0xffffa08966a55c00 INTERRUPTIBLE 17 0 migration/1 -0xffffa08966a68000 INTERRUPTIBLE 24 120 kauditd -0xffffa08966a69700 IDLE 20 100 kworker/1:0H -0xffffa08966a6ae00 INTERRUPTIBLE 23 120 rcu_tasks_kthre -0xffffa08966a6c500 IDLE 22 100 netns -0xffffa08966a6dc00 INTERRUPTIBLE 21 120 kdevtmpfs -0xffffa08966bc8000 INTERRUPTIBLE 26 120 oom_reaper -0xffffa08966bc9700 IDLE 27 100 writeback -0xffffa08966bcae00 INTERRUPTIBLE 25 120 khungtaskd -0xffffa08966bcc500 INTERRUPTIBLE 29 125 ksmd -0xffffa08966bcdc00 INTERRUPTIBLE 28 120 kcompactd0 -0xffffa08966bd0000 IDLE 31 100 crypto -0xffffa08966bd1700 IDLE 32 100 kintegrityd -0xffffa08966bd2e00 INTERRUPTIBLE 30 139 khugepaged -0xffffa08966bd4500 IDLE 34 100 tpm_dev_wq -0xffffa08966bd5c00 IDLE 33 100 kblockd +task state pid prio comm cmdline +------------------ ------------- ---- ---- --------------- ------- +0xffffa087d20edc00 INTERRUPTIBLE 6279 139 z_vdev_file +0xffffa08883df0000 INTERRUPTIBLE 5673 139 zthr_procedure +0xffffa08883df1700 INTERRUPTIBLE 5675 139 zthr_procedure +0xffffa08883df2e00 INTERRUPTIBLE 6190 100 z_wr_int +0xffffa08883df4500 INTERRUPTIBLE 6191 139 z_vdev_file +0xffffa08883df5c00 INTERRUPTIBLE 5674 139 zthr_procedure +0xffffa08884830000 INTERRUPTIBLE 6028 120 su +0xffffa08884831700 RUNNING 6029 120 bash +0xffffa08884832e00 INTERRUPTIBLE 6026 120 sudo +0xffffa08884834500 INTERRUPTIBLE 5981 120 sudo +0xffffa0888548ae00 INTERRUPTIBLE 4506 120 bash +0xffffa08888af9700 INTERRUPTIBLE 4160 120 postgres +0xffffa08888afc500 INTERRUPTIBLE 4158 120 postgres +0xffffa08888afdc00 INTERRUPTIBLE 4159 120 postgres +0xffffa08888c48000 INTERRUPTIBLE 4731 120 java +0xffffa08888c49700 INTERRUPTIBLE 4730 120 java +0xffffa08889750000 INTERRUPTIBLE 4156 120 postgres +0xffffa08889751700 INTERRUPTIBLE 4154 120 postgres +0xffffa08889752e00 INTERRUPTIBLE 4155 120 postgres +0xffffa08889754500 INTERRUPTIBLE 4157 120 postgres +0xffffa08889755c00 INTERRUPTIBLE 4153 120 postgres +0xffffa08889c90000 INTERRUPTIBLE 4369 120 java +0xffffa08889c91700 INTERRUPTIBLE 4163 120 java +0xffffa08889c92e00 INTERRUPTIBLE 4104 120 java +0xffffa08889c94500 INTERRUPTIBLE 4374 120 java +0xffffa08889c95c00 INTERRUPTIBLE 4136 120 java +0xffffa0888c778000 INTERRUPTIBLE 5543 100 z_fr_iss +0xffffa0888c779700 INTERRUPTIBLE 5539 100 z_fr_iss +0xffffa0888c77ae00 INTERRUPTIBLE 5542 100 z_fr_iss +0xffffa0888c77c500 INTERRUPTIBLE 5541 100 z_fr_iss +0xffffa0888c77dc00 INTERRUPTIBLE 5540 100 z_fr_iss +0xffffa0888c784500 INTERRUPTIBLE 5899 139 z_vdev_file +0xffffa0888cc62e00 RUNNING 5983 120 dd +0xffffa0888cc64500 INTERRUPTIBLE 4275 120 bash +0xffffa0888d2c8000 INTERRUPTIBLE 6194 100 z_wr_int +0xffffa0888d2cae00 INTERRUPTIBLE 6030 139 z_vdev_file +0xffffa0888d2cc500 INTERRUPTIBLE 6192 139 z_vdev_file +0xffffa0888d2cdc00 INTERRUPTIBLE 5602 120 mmp +0xffffa0888d2fdc00 INTERRUPTIBLE 6196 100 z_wr_int +0xffffa0888e8a0000 INTERRUPTIBLE 4373 120 java +0xffffa0888e8a1700 INTERRUPTIBLE 4367 120 java +0xffffa0888e8a2e00 INTERRUPTIBLE 4375 120 java +0xffffa0888e8a5c00 INTERRUPTIBLE 4368 120 java +0xffffa08893668000 INTERRUPTIBLE 4726 120 java +0xffffa08893669700 INTERRUPTIBLE 4372 120 java +0xffffa0889366c500 INTERRUPTIBLE 4293 120 java +0xffffa08894458000 INTERRUPTIBLE 4483 120 java +0xffffa0889445ae00 INTERRUPTIBLE 4482 120 java +0xffffa0889445c500 INTERRUPTIBLE 4484 120 java +0xffffa0889445dc00 INTERRUPTIBLE 4481 120 python3 +0xffffa08894560000 INTERRUPTIBLE 4478 120 java +0xffffa08894561700 INTERRUPTIBLE 4729 120 java +0xffffa08894562e00 INTERRUPTIBLE 4479 120 java +0xffffa08894564500 INTERRUPTIBLE 4477 120 python2 +0xffffa08894565c00 INTERRUPTIBLE 4480 120 java +0xffffa08894a68000 INTERRUPTIBLE 4724 120 java +0xffffa08894a69700 INTERRUPTIBLE 4722 120 java +0xffffa08894a6ae00 INTERRUPTIBLE 4723 120 java +0xffffa08894a6dc00 INTERRUPTIBLE 4725 120 java +0xffffa08896518000 INTERRUPTIBLE 4312 120 java +0xffffa08896519700 INTERRUPTIBLE 4364 120 java +0xffffa0889651ae00 INTERRUPTIBLE 4365 120 java +0xffffa0889651c500 INTERRUPTIBLE 4366 120 java +0xffffa0889651dc00 INTERRUPTIBLE 4363 120 java +0xffffa0889bef0000 INTERRUPTIBLE 5553 100 z_trim_int +0xffffa0889bef1700 INTERRUPTIBLE 5549 100 z_cl_int +0xffffa0889bef2e00 INTERRUPTIBLE 5552 100 z_trim_iss +0xffffa0889bef4500 INTERRUPTIBLE 5551 100 z_ioctl_int +0xffffa0889bef5c00 INTERRUPTIBLE 5550 100 z_ioctl_iss +0xffffa0889c9e8000 INTERRUPTIBLE 5555 120 z_prefetch +0xffffa0889c9e9700 INTERRUPTIBLE 5556 120 z_upgrade +0xffffa0889c9eae00 INTERRUPTIBLE 5554 120 z_zvol +0xffffa0889c9ec500 INTERRUPTIBLE 6189 100 z_wr_int +0xffffa0889c9edc00 INTERRUPTIBLE 5589 100 metaslab_group_ +0xffffa0889cd48000 INTERRUPTIBLE 4003 120 java +0xffffa0889cd49700 INTERRUPTIBLE 4099 120 java +0xffffa0889cd4ae00 INTERRUPTIBLE 4007 120 java +0xffffa0889cd4c500 INTERRUPTIBLE 4098 120 java +0xffffa0889cd4dc00 INTERRUPTIBLE 3865 120 java +0xffffa0889fdd0000 INTERRUPTIBLE 4376 120 java +0xffffa0889fdd1700 INTERRUPTIBLE 4469 120 java +0xffffa0889fdd2e00 INTERRUPTIBLE 4379 120 java +0xffffa0889fdd4500 INTERRUPTIBLE 4728 120 java +0xffffa0889fdd5c00 INTERRUPTIBLE 4727 120 java +0xffffa088a150ae00 INTERRUPTIBLE 4505 120 sshd +0xffffa088be0f8000 INTERRUPTIBLE 4152 120 postgres +0xffffa088be0f9700 INTERRUPTIBLE 4150 120 postgres +0xffffa088be0fae00 INTERRUPTIBLE 4151 120 postgres +0xffffa088be0fc500 INTERRUPTIBLE 4148 120 postgres +0xffffa088be0fdc00 INTERRUPTIBLE 4149 120 postgres +0xffffa088c58a8000 INTERRUPTIBLE 5527 100 z_rd_int +0xffffa088c58a9700 INTERRUPTIBLE 5528 101 z_wr_iss +0xffffa088c58aae00 INTERRUPTIBLE 4250 120 (sd-pam) +0xffffa088c58ac500 INTERRUPTIBLE 5529 100 z_wr_iss_h +0xffffa088c58adc00 INTERRUPTIBLE 5526 100 z_rd_int +0xffffa088ca871700 INTERRUPTIBLE 4733 120 java +0xffffa088ca872e00 INTERRUPTIBLE 4735 120 java +0xffffa088ca874500 INTERRUPTIBLE 4732 120 java +0xffffa088ca875c00 INTERRUPTIBLE 4734 120 java +0xffffa088ce681700 INTERRUPTIBLE 5952 139 z_vdev_file +0xffffa088ce682e00 INTERRUPTIBLE 6184 100 z_wr_int +0xffffa088d33d0000 INTERRUPTIBLE 4074 120 java +0xffffa088d33d1700 INTERRUPTIBLE 4033 120 java +0xffffa088d33d2e00 INTERRUPTIBLE 4038 120 java +0xffffa088d33d4500 INTERRUPTIBLE 4291 120 java +0xffffa088d33d5c00 INTERRUPTIBLE 4070 120 java +0xffffa088ef2d0000 INTERRUPTIBLE 2862 120 java +0xffffa088ef2d1700 INTERRUPTIBLE 2866 120 java +0xffffa088ef2d2e00 INTERRUPTIBLE 2861 120 java +0xffffa088ef2d4500 INTERRUPTIBLE 2865 120 java +0xffffa088ef2d5c00 INTERRUPTIBLE 2859 120 java +0xffffa088f0978000 INTERRUPTIBLE 2869 120 java +0xffffa088f0979700 INTERRUPTIBLE 2877 120 java +0xffffa088f097ae00 INTERRUPTIBLE 2868 120 java +0xffffa088f097c500 INTERRUPTIBLE 3859 120 java +0xffffa088f097dc00 INTERRUPTIBLE 2867 120 java +0xffffa088f1e95c00 INTERRUPTIBLE 6309 120 sleep +0xffffa088f6778000 INTERRUPTIBLE 3863 120 java +0xffffa088f6779700 INTERRUPTIBLE 3861 120 java +0xffffa088f677ae00 INTERRUPTIBLE 3864 120 java +0xffffa088f677c500 INTERRUPTIBLE 3862 120 java +0xffffa088f677dc00 INTERRUPTIBLE 3860 120 java +0xffffa088f6e58000 INTERRUPTIBLE 4292 120 java +0xffffa088f6e59700 INTERRUPTIBLE 4006 120 java +0xffffa088f6e5ae00 INTERRUPTIBLE 4005 120 java +0xffffa088f6e5c500 INTERRUPTIBLE 2870 120 java +0xffffa088f6e5dc00 INTERRUPTIBLE 3921 120 java +0xffffa088f7408000 INTERRUPTIBLE 4381 120 java +0xffffa088f7409700 INTERRUPTIBLE 4476 120 java +0xffffa088f740ae00 INTERRUPTIBLE 4474 120 java +0xffffa088f740c500 INTERRUPTIBLE 4473 120 python2 +0xffffa088f740dc00 INTERRUPTIBLE 4475 120 java +0xffffa08905908000 IDLE 3249 120 kworker/1:3 +0xffffa08905909700 INTERRUPTIBLE 2445 120 iscsi_np +0xffffa0890590ae00 INTERRUPTIBLE 5532 100 z_wr_int +0xffffa0890590c500 IDLE 2438 100 target_completi +0xffffa0890590dc00 IDLE 2439 100 xcopy_wq +0xffffa0891e0ec500 INTERRUPTIBLE 2255 120 postgres +0xffffa08930464500 INTERRUPTIBLE 1972 120 gdbus +0xffffa089304e8000 IDLE 774 100 xprtiod +0xffffa089304e9700 INTERRUPTIBLE 2025 120 nfsd +0xffffa089304eae00 INTERRUPTIBLE 2124 120 automount +0xffffa089304ec500 IDLE 935 120 kworker/1:2 +0xffffa089304edc00 INTERRUPTIBLE 1911 120 polkitd +0xffffa08930858000 INTERRUPTIBLE 1291 100 metaslab_group_ +0xffffa08930859700 INTERRUPTIBLE 1795 120 rs:main Q:Reg +0xffffa0893085ae00 INTERRUPTIBLE 1542 120 systemd-network +0xffffa0893085c500 INTERRUPTIBLE 1290 100 metaslab_group_ +0xffffa0893085dc00 IDLE 765 120 kworker/0:3 +0xffffa08931488000 INTERRUPTIBLE 4625 120 nginx +0xffffa08931968000 INTERRUPTIBLE 779 120 blkmapd +0xffffa08931969700 INTERRUPTIBLE 1756 120 cron +0xffffa0893196ae00 INTERRUPTIBLE 4496 120 sshd +0xffffa0893196c500 INTERRUPTIBLE 4237 120 systemd +0xffffa0893196dc00 INTERRUPTIBLE 781 120 systemd-udevd +0xffffa08931d50000 INTERRUPTIBLE 1941 120 delphix-stat-se +0xffffa089320c0000 INTERRUPTIBLE 1942 120 sed +0xffffa089320c1700 INTERRUPTIBLE 1918 120 profile +0xffffa089320c2e00 INTERRUPTIBLE 1977 120 delphix-stat-se +0xffffa089320c4500 INTERRUPTIBLE 1936 120 timeout +0xffffa089320c5c00 INTERRUPTIBLE 1940 120 mpstat +0xffffa089320e0000 IDLE 735 120 kworker/0:2 +0xffffa089320e1700 INTERRUPTIBLE 743 119 systemd-journal +0xffffa089320e2e00 INTERRUPTIBLE 5531 100 z_wr_int +0xffffa089320e4500 INTERRUPTIBLE 1033 120 vmtoolsd +0xffffa089320e5c00 INTERRUPTIBLE 830 49 irq/16-vmwgfx +0xffffa08933048000 INTERRUPTIBLE 1895 120 delphix-stat-se +0xffffa08933049700 INTERRUPTIBLE 1903 120 sed +0xffffa0893304ae00 INTERRUPTIBLE 1934 120 sed +0xffffa0893304c500 INTERRUPTIBLE 1919 120 delphix-stat-se +0xffffa0893304dc00 INTERRUPTIBLE 1871 120 sed +0xffffa0893319dc00 INTERRUPTIBLE 1952 120 nginx +0xffffa08934b58000 INTERRUPTIBLE 2073 120 nfsd +0xffffa08934b59700 INTERRUPTIBLE 2074 120 nfsd +0xffffa08934b5ae00 INTERRUPTIBLE 2077 120 nfsd +0xffffa08934b5c500 INTERRUPTIBLE 2076 120 nfsd +0xffffa08934b5dc00 INTERRUPTIBLE 2075 120 nfsd +0xffffa08934e00000 INTERRUPTIBLE 2067 120 nfsd +0xffffa08934e01700 INTERRUPTIBLE 2068 120 nfsd +0xffffa08934e02e00 INTERRUPTIBLE 2072 120 nfsd +0xffffa08934e04500 INTERRUPTIBLE 2071 120 nfsd +0xffffa08934e05c00 INTERRUPTIBLE 2069 120 nfsd +0xffffa089358f0000 INTERRUPTIBLE 2085 120 nfsd +0xffffa089358f1700 INTERRUPTIBLE 2078 120 nfsd +0xffffa089358f2e00 INTERRUPTIBLE 2084 120 nfsd +0xffffa089358f4500 INTERRUPTIBLE 2082 120 nfsd +0xffffa089358f5c00 INTERRUPTIBLE 2080 120 nfsd +0xffffa08936498000 INTERRUPTIBLE 1910 120 timeout +0xffffa0893649ae00 INTERRUPTIBLE 1906 120 timeout +0xffffa0893649dc00 INTERRUPTIBLE 2021 120 nfs_delete +0xffffa08936800000 INTERRUPTIBLE 2079 120 postgres +0xffffa08936801700 INTERRUPTIBLE 2055 120 sudo +0xffffa08936802e00 INTERRUPTIBLE 4147 120 postgres +0xffffa08936804500 INTERRUPTIBLE 4146 120 postgres +0xffffa08936805c00 INTERRUPTIBLE 4145 120 postgres +0xffffa08936918000 INTERRUPTIBLE 1858 120 sed +0xffffa08936919700 INTERRUPTIBLE 1861 120 sed +0xffffa0893691ae00 INTERRUPTIBLE 1870 120 delphix-stat-se +0xffffa0893691c500 INTERRUPTIBLE 1860 120 delphix-stat-se +0xffffa0893691dc00 INTERRUPTIBLE 1857 120 delphix-stat-se +0xffffa08937f4dc00 INTERRUPTIBLE 5676 139 zthr_procedure +0xffffa08939f70000 INTERRUPTIBLE 2100 120 nfsd +0xffffa08939f71700 INTERRUPTIBLE 2101 120 nfsd +0xffffa08939f72e00 INTERRUPTIBLE 2105 120 nfsd +0xffffa08939f74500 INTERRUPTIBLE 2104 120 nfsd +0xffffa08939f75c00 INTERRUPTIBLE 2103 120 nfsd +0xffffa0893a532e00 INTERRUPTIBLE 1038 116 auditd +0xffffa0893bf78000 INTERRUPTIBLE 2042 120 nfsd +0xffffa0893bf79700 INTERRUPTIBLE 2044 120 nfsd +0xffffa0893bf7ae00 INTERRUPTIBLE 2039 120 nfsd +0xffffa0893bf7c500 INTERRUPTIBLE 2050 120 nfsd +0xffffa0893bf7dc00 INTERRUPTIBLE 2049 120 nfsd +0xffffa0893c088000 INTERRUPTIBLE 5517 100 z_null_iss +0xffffa0893c089700 INTERRUPTIBLE 5519 100 z_rd_iss +0xffffa0893c08ae00 INTERRUPTIBLE 2106 120 nfsd +0xffffa0893c08c500 INTERRUPTIBLE 4742 120 native_oom_hand +0xffffa0893c08dc00 INTERRUPTIBLE 5518 100 z_null_int +0xffffa0893c2b0000 INTERRUPTIBLE 5530 100 z_wr_int +0xffffa0893c2b1700 INTERRUPTIBLE 2127 120 agetty +0xffffa0893c2b2e00 IDLE 4665 120 kworker/1:4 +0xffffa0893c2b4500 INTERRUPTIBLE 2132 120 login +0xffffa0893c2b5c00 IDLE 4666 120 kworker/1:5 +0xffffa0893d898000 INTERRUPTIBLE 2087 120 nfsd +0xffffa0893d899700 INTERRUPTIBLE 2088 120 nfsd +0xffffa0893d89ae00 INTERRUPTIBLE 2086 120 nfsd +0xffffa0893d89c500 INTERRUPTIBLE 2097 120 nfsd +0xffffa0893d89dc00 INTERRUPTIBLE 2089 120 nfsd +0xffffa0893dd30000 INTERRUPTIBLE 2878 120 sleep +0xffffa0893dd31700 INTERRUPTIBLE 2083 120 sleep +0xffffa0893dd34500 INTERRUPTIBLE 2874 120 sleep +0xffffa0893f968000 INTERRUPTIBLE 2093 120 nfsd +0xffffa0893f969700 INTERRUPTIBLE 2095 120 nfsd +0xffffa0893f96ae00 INTERRUPTIBLE 2092 120 nfsd +0xffffa0893f96c500 INTERRUPTIBLE 2091 120 nfsd +0xffffa0893f96dc00 INTERRUPTIBLE 2096 120 nfsd +0xffffa089405c9700 INTERRUPTIBLE 1995 120 sed +0xffffa089405cc500 INTERRUPTIBLE 2879 120 sleep +0xffffa089405cdc00 INTERRUPTIBLE 5464 120 sleep +0xffffa089408f0000 INTERRUPTIBLE 2098 120 nfsd +0xffffa089408f1700 INTERRUPTIBLE 1578 120 systemd-resolve +0xffffa089408f2e00 INTERRUPTIBLE 1688 120 sshd +0xffffa089408f4500 INTERRUPTIBLE 1794 120 in:imklog +0xffffa089408f5c00 INTERRUPTIBLE 1793 120 in:imuxsock +0xffffa089408f8000 INTERRUPTIBLE 1781 120 networkd-dispat +0xffffa089408f9700 INTERRUPTIBLE 1998 120 nfsd +0xffffa089408fae00 INTERRUPTIBLE 2017 120 nfsd +0xffffa089408fc500 INTERRUPTIBLE 1783 120 systemd-logind +0xffffa089408fdc00 INTERRUPTIBLE 1782 120 zed +0xffffa08940960000 INTERRUPTIBLE 2035 120 nfsd +0xffffa08940961700 INTERRUPTIBLE 2028 120 nfsd +0xffffa08940962e00 INTERRUPTIBLE 1730 120 dbus-daemon +0xffffa08940964500 INTERRUPTIBLE 5525 100 z_rd_int +0xffffa08940965c00 INTERRUPTIBLE 1728 120 rsyslogd +0xffffa089410b9700 INTERRUPTIBLE 2125 120 automount +0xffffa089410bae00 INTERRUPTIBLE 2126 120 automount +0xffffa089410bc500 INTERRUPTIBLE 2150 120 automount +0xffffa08941a68000 INTERRUPTIBLE 5548 100 z_cl_iss +0xffffa08941a69700 INTERRUPTIBLE 5544 100 z_fr_iss +0xffffa08941a6ae00 INTERRUPTIBLE 5547 100 z_fr_int +0xffffa08941a6c500 INTERRUPTIBLE 5546 100 z_fr_iss +0xffffa08941a6dc00 INTERRUPTIBLE 5545 100 z_fr_iss +0xffffa08941afae00 INTERRUPTIBLE 4756 120 oom_waiter +0xffffa08941f68000 INTERRUPTIBLE 2063 120 nfsd +0xffffa08941f69700 INTERRUPTIBLE 2064 120 nfsd +0xffffa08941f6ae00 INTERRUPTIBLE 2062 120 nfsd +0xffffa08941f6c500 INTERRUPTIBLE 2059 120 nfsd +0xffffa08941f6dc00 INTERRUPTIBLE 2066 120 nfsd +0xffffa0894483dc00 INTERRUPTIBLE 2045 120 gmain +0xffffa089481b8000 INTERRUPTIBLE 5520 100 z_rd_int +0xffffa089481b9700 INTERRUPTIBLE 5524 100 z_rd_int +0xffffa089481bae00 INTERRUPTIBLE 5521 100 z_rd_int +0xffffa089481bc500 INTERRUPTIBLE 5523 100 z_rd_int +0xffffa089481bdc00 INTERRUPTIBLE 5522 100 z_rd_int +0xffffa0894b280000 INTERRUPTIBLE 1958 120 iostat +0xffffa0894b281700 INTERRUPTIBLE 1959 120 delphix-stat-se +0xffffa0894b282e00 INTERRUPTIBLE 1964 120 sed +0xffffa0894b284500 INTERRUPTIBLE 5472 120 sleep +0xffffa0894b285c00 INTERRUPTIBLE 2011 120 delphix-stat-se +0xffffa0894cc80000 INTERRUPTIBLE 2252 120 postgres +0xffffa0894cc81700 INTERRUPTIBLE 2250 120 postgres +0xffffa0894cc82e00 INTERRUPTIBLE 2251 120 postgres +0xffffa0894cc84500 INTERRUPTIBLE 2254 120 postgres +0xffffa0894cc85c00 INTERRUPTIBLE 2253 120 postgres +0xffffa0894e6a8000 INTERRUPTIBLE 5976 139 z_vdev_file +0xffffa0894e6a9700 INTERRUPTIBLE 1772 120 nscd +0xffffa0894e6aae00 INTERRUPTIBLE 2004 120 nfsd +0xffffa0894e6ac500 INTERRUPTIBLE 2007 120 nfsd +0xffffa0894e6adc00 INTERRUPTIBLE 2013 120 nfsd +0xffffa0894e7b0000 INTERRUPTIBLE 1984 120 nfsd +0xffffa0894e7b1700 INTERRUPTIBLE 1987 120 nfsd +0xffffa0894e7b2e00 INTERRUPTIBLE 1237 100 z_null_iss +0xffffa0894e7b4500 INTERRUPTIBLE 1991 120 nfsd +0xffffa0894e7b5c00 INTERRUPTIBLE 1986 120 nfsd +0xffffa0894e7f0000 INTERRUPTIBLE 1240 100 z_rd_int +0xffffa0894e7f1700 INTERRUPTIBLE 1241 100 z_rd_int +0xffffa0894e7f2e00 INTERRUPTIBLE 1239 100 z_rd_iss +0xffffa0894e7f4500 INTERRUPTIBLE 1238 100 z_null_int +0xffffa0894e7f5c00 INTERRUPTIBLE 1242 100 z_rd_int +0xffffa0894e7f8000 INTERRUPTIBLE 1246 100 z_rd_int +0xffffa0894e7f9700 INTERRUPTIBLE 1247 100 z_rd_int +0xffffa0894e7fae00 INTERRUPTIBLE 1245 100 z_rd_int +0xffffa0894e7fc500 INTERRUPTIBLE 1244 100 z_rd_int +0xffffa0894e7fdc00 INTERRUPTIBLE 1243 100 z_rd_int +0xffffa0894ea70000 INTERRUPTIBLE 1252 100 z_wr_int +0xffffa0894ea71700 INTERRUPTIBLE 1248 101 z_wr_iss +0xffffa0894ea72e00 INTERRUPTIBLE 1251 100 z_wr_int +0xffffa0894ea74500 INTERRUPTIBLE 1250 100 z_wr_int +0xffffa0894ea75c00 INTERRUPTIBLE 1249 100 z_wr_iss_h +0xffffa0894ea78000 INTERRUPTIBLE 1256 100 z_wr_int +0xffffa0894ea79700 INTERRUPTIBLE 1257 100 z_wr_int +0xffffa0894ea7ae00 INTERRUPTIBLE 1255 100 z_wr_int +0xffffa0894ea7c500 INTERRUPTIBLE 1254 100 z_wr_int +0xffffa0894ea7dc00 INTERRUPTIBLE 1253 100 z_wr_int +0xffffa0894eaa8000 INTERRUPTIBLE 1259 100 z_fr_iss +0xffffa0894eaa9700 INTERRUPTIBLE 1260 100 z_fr_iss +0xffffa0894eaaae00 INTERRUPTIBLE 1258 100 z_wr_int_h +0xffffa0894eaac500 INTERRUPTIBLE 1262 100 z_fr_iss +0xffffa0894eaadc00 INTERRUPTIBLE 1261 100 z_fr_iss +0xffffa0894eab8000 INTERRUPTIBLE 1264 100 z_fr_iss +0xffffa0894eab9700 INTERRUPTIBLE 1265 100 z_fr_iss +0xffffa0894eabae00 INTERRUPTIBLE 1263 100 z_fr_iss +0xffffa0894eabc500 INTERRUPTIBLE 1267 100 z_fr_int +0xffffa0894eabdc00 INTERRUPTIBLE 1266 100 z_fr_iss +0xffffa0894eb60000 INTERRUPTIBLE 1272 100 z_trim_iss +0xffffa0894eb61700 INTERRUPTIBLE 1268 100 z_cl_iss +0xffffa0894eb62e00 INTERRUPTIBLE 1271 100 z_ioctl_int +0xffffa0894eb64500 INTERRUPTIBLE 1270 100 z_ioctl_iss +0xffffa0894eb65c00 INTERRUPTIBLE 1269 100 z_cl_int +0xffffa0894eb68000 INTERRUPTIBLE 2057 120 nfsd +0xffffa0894eb69700 INTERRUPTIBLE 1273 100 z_trim_int +0xffffa0894eb6ae00 INTERRUPTIBLE 1276 120 z_upgrade +0xffffa0894eb6c500 INTERRUPTIBLE 1275 120 z_prefetch +0xffffa0894eb6dc00 INTERRUPTIBLE 1274 120 z_zvol +0xffffa0894ebb0000 INTERRUPTIBLE 1282 139 dp_zil_clean_ta +0xffffa0894ebb1700 INTERRUPTIBLE 1283 139 dp_zil_clean_ta +0xffffa0894ebb2e00 INTERRUPTIBLE 1281 139 dp_sync_taskq +0xffffa0894ebb4500 INTERRUPTIBLE 1284 120 z_iput +0xffffa0894ebb5c00 INTERRUPTIBLE 1285 120 z_unlinked_drai +0xffffa08950a89700 INTERRUPTIBLE 2121 120 rngd +0xffffa08951028000 INTERRUPTIBLE 5534 100 z_wr_int +0xffffa08951029700 INTERRUPTIBLE 5535 100 z_wr_int +0xffffa0895102ae00 INTERRUPTIBLE 5538 100 z_wr_int_h +0xffffa0895102c500 INTERRUPTIBLE 5537 100 z_wr_int +0xffffa0895102dc00 INTERRUPTIBLE 5536 100 z_wr_int +0xffffa08952e58000 INTERRUPTIBLE 555 139 zthr_procedure +0xffffa08952e59700 INTERRUPTIBLE 557 139 zthr_procedure +0xffffa08952e5ae00 INTERRUPTIBLE 553 120 mmp +0xffffa08952e5c500 INTERRUPTIBLE 556 139 zthr_procedure +0xffffa08952e5dc00 INTERRUPTIBLE 554 139 zthr_procedure +0xffffa08952e70000 INTERRUPTIBLE 494 100 metaslab_group_ +0xffffa08952e71700 INTERRUPTIBLE 491 120 z_unlinked_drai +0xffffa08952e72e00 IDLE 766 120 kworker/0:4 +0xffffa08952e74500 IDLE 767 100 rpciod +0xffffa08952e75c00 INTERRUPTIBLE 493 100 metaslab_group_ +0xffffa08952ec0000 INTERRUPTIBLE 1887 120 rpc.mountd +0xffffa08952ec1700 INTERRUPTIBLE 5533 100 z_wr_int +0xffffa08952ec2e00 INTERRUPTIBLE 1878 120 rpc.idmapd +0xffffa08952ec4500 INTERRUPTIBLE 1037 116 auditd +0xffffa08952ec5c00 INTERRUPTIBLE 1968 120 gmain +0xffffa089533f8000 INTERRUPTIBLE 489 139 dp_zil_clean_ta +0xffffa089533f9700 INTERRUPTIBLE 490 120 z_iput +0xffffa089533fae00 INTERRUPTIBLE 488 139 dp_zil_clean_ta +0xffffa089533fc500 INTERRUPTIBLE 487 139 dp_sync_taskq +0xffffa089533fdc00 INTERRUPTIBLE 485 120 z_upgrade +0xffffa08953468000 INTERRUPTIBLE 482 100 z_trim_int +0xffffa08953469700 INTERRUPTIBLE 483 120 z_zvol +0xffffa0895346ae00 INTERRUPTIBLE 481 100 z_trim_iss +0xffffa0895346c500 INTERRUPTIBLE 480 100 z_ioctl_int +0xffffa0895346dc00 INTERRUPTIBLE 484 120 z_prefetch +0xffffa08953470000 INTERRUPTIBLE 477 100 z_cl_iss +0xffffa08953471700 INTERRUPTIBLE 478 100 z_cl_int +0xffffa08953472e00 INTERRUPTIBLE 476 100 z_fr_int +0xffffa08953474500 INTERRUPTIBLE 475 100 z_fr_iss +0xffffa08953475c00 INTERRUPTIBLE 479 100 z_ioctl_iss +0xffffa089534a0000 INTERRUPTIBLE 471 100 z_fr_iss +0xffffa089534a1700 INTERRUPTIBLE 472 100 z_fr_iss +0xffffa089534a2e00 INTERRUPTIBLE 470 100 z_fr_iss +0xffffa089534a4500 INTERRUPTIBLE 474 100 z_fr_iss +0xffffa089534a5c00 INTERRUPTIBLE 473 100 z_fr_iss +0xffffa089534b0000 INTERRUPTIBLE 467 100 z_wr_int_h +0xffffa089534b1700 INTERRUPTIBLE 468 100 z_fr_iss +0xffffa089534b2e00 INTERRUPTIBLE 466 100 z_wr_int +0xffffa089534b4500 INTERRUPTIBLE 465 100 z_wr_int +0xffffa089534b5c00 INTERRUPTIBLE 469 100 z_fr_iss +0xffffa08953508000 INTERRUPTIBLE 461 100 z_wr_int +0xffffa08953509700 INTERRUPTIBLE 462 100 z_wr_int +0xffffa0895350ae00 INTERRUPTIBLE 460 100 z_wr_int +0xffffa0895350c500 INTERRUPTIBLE 464 100 z_wr_int +0xffffa0895350dc00 INTERRUPTIBLE 463 100 z_wr_int +0xffffa08953510000 INTERRUPTIBLE 458 100 z_wr_iss_h +0xffffa08953511700 INTERRUPTIBLE 459 100 z_wr_int +0xffffa08953512e00 INTERRUPTIBLE 457 101 z_wr_iss +0xffffa08953514500 INTERRUPTIBLE 456 100 z_rd_int +0xffffa08953515c00 INTERRUPTIBLE 455 100 z_rd_int +0xffffa08953ac5c00 INTERRUPTIBLE 5588 100 metaslab_group_ +0xffffa08953ac8000 INTERRUPTIBLE 5595 139 dp_zil_clean_ta +0xffffa08953ac9700 INTERRUPTIBLE 6186 139 z_vdev_file +0xffffa08953acae00 INTERRUPTIBLE 5592 139 dp_sync_taskq +0xffffa08953acdc00 INTERRUPTIBLE 6188 139 z_vdev_file +0xffffa089553a8000 INTERRUPTIBLE 1335 120 txg_quiesce +0xffffa089553a9700 INTERRUPTIBLE 1336 120 txg_sync +0xffffa089553aae00 INTERRUPTIBLE 2099 120 nfsd +0xffffa089553ac500 INTERRUPTIBLE 1338 139 zthr_procedure +0xffffa089553adc00 INTERRUPTIBLE 1337 120 mmp +0xffffa089553b8000 INTERRUPTIBLE 1340 139 zthr_procedure +0xffffa089553b9700 INTERRUPTIBLE 1341 139 zthr_procedure +0xffffa089553bae00 INTERRUPTIBLE 1339 139 zthr_procedure +0xffffa089553bc500 INTERRUPTIBLE 1792 120 snmpd +0xffffa089553bdc00 INTERRUPTIBLE 2002 120 nfsd +0xffffa0895541ae00 INTERRUPTIBLE 1798 120 zed +0xffffa0895541dc00 INTERRUPTIBLE 1797 120 zed +0xffffa08956018000 INTERRUPTIBLE 1785 120 nscd +0xffffa08956019700 INTERRUPTIBLE 1786 120 nscd +0xffffa0895601ae00 INTERRUPTIBLE 1788 120 nscd +0xffffa0895601c500 INTERRUPTIBLE 1787 120 nscd +0xffffa0895601dc00 INTERRUPTIBLE 1784 120 nscd +0xffffa089560c1700 INTERRUPTIBLE 1789 120 nscd +0xffffa089560c2e00 INTERRUPTIBLE 1791 120 nscd +0xffffa089560c4500 INTERRUPTIBLE 1790 120 nscd +0xffffa08956848000 INTERRUPTIBLE 367 120 arc_prune +0xffffa08956849700 INTERRUPTIBLE 372 139 zthr_procedure +0xffffa0895684ae00 INTERRUPTIBLE 373 120 dbu_evict +0xffffa0895684c500 INTERRUPTIBLE 371 139 zthr_procedure +0xffffa0895684dc00 INTERRUPTIBLE 375 139 dbuf_evict +0xffffa08957580000 IDLE 266 100 scsi_tmf_2 +0xffffa08957581700 IDLE 267 120 kworker/u4:4 +0xffffa08957582e00 INTERRUPTIBLE 265 120 scsi_eh_2 +0xffffa08957584500 IDLE 268 120 kworker/u4:5 +0xffffa08957585c00 IDLE 264 100 kworker/0:1H +0xffffa08957d18000 IDLE 170 100 scsi_tmf_0 +0xffffa08957d19700 INTERRUPTIBLE 171 120 scsi_eh_1 +0xffffa08957d1ae00 INTERRUPTIBLE 1845 120 rsync +0xffffa08957d1c500 IDLE 173 120 kworker/u4:2 +0xffffa08957d1dc00 IDLE 172 100 scsi_tmf_1 +0xffffa08957da8000 INTERRUPTIBLE 346 100 spl_system_task +0xffffa08957da9700 INTERRUPTIBLE 552 120 txg_sync +0xffffa08957daae00 INTERRUPTIBLE 349 100 spl_kmem_cache +0xffffa08957dac500 INTERRUPTIBLE 348 100 spl_dynamic_tas +0xffffa08957dadc00 INTERRUPTIBLE 347 100 spl_delay_taskq +0xffffa08957db0000 INTERRUPTIBLE 451 100 z_rd_int +0xffffa08957db1700 INTERRUPTIBLE 452 100 z_rd_int +0xffffa08957db2e00 INTERRUPTIBLE 453 100 z_rd_int +0xffffa08957db4500 INTERRUPTIBLE 454 100 z_rd_int +0xffffa08957db5c00 IDLE 251 100 mpt_poll_0 +0xffffa08957db8000 IDLE 199 100 charger_manager +0xffffa08957db9700 INTERRUPTIBLE 450 100 z_rd_int +0xffffa08957dbae00 INTERRUPTIBLE 449 100 z_rd_int +0xffffa08957dbc500 INTERRUPTIBLE 448 100 z_rd_iss +0xffffa08957dbdc00 IDLE 200 100 kworker/1:1H +0xffffa08957e38000 IDLE 837 100 ttm_swap +0xffffa08957e39700 IDLE 1926 100 kworker/u5:1 +0xffffa08957e3ae00 INTERRUPTIBLE 2019 120 nfsd +0xffffa08957e3c500 INTERRUPTIBLE 551 120 txg_quiesce +0xffffa08957e3dc00 INTERRUPTIBLE 2054 120 nfsd +0xffffa08958028000 INTERRUPTIBLE 143 49 irq/31-pciehp +0xffffa08958029700 INTERRUPTIBLE 142 49 irq/30-pciehp +0xffffa0895802ae00 INTERRUPTIBLE 144 49 irq/32-pciehp +0xffffa0895802c500 INTERRUPTIBLE 140 49 irq/28-pciehp +0xffffa0895802dc00 INTERRUPTIBLE 141 49 irq/29-pciehp +0xffffa08958030000 INTERRUPTIBLE 153 49 irq/41-pciehp +0xffffa08958031700 INTERRUPTIBLE 150 49 irq/38-pciehp +0xffffa08958032e00 INTERRUPTIBLE 154 49 irq/42-pciehp +0xffffa08958034500 INTERRUPTIBLE 151 49 irq/39-pciehp +0xffffa08958035c00 INTERRUPTIBLE 152 49 irq/40-pciehp +0xffffa08958038000 INTERRUPTIBLE 139 49 irq/27-pciehp +0xffffa08958039700 IDLE 135 100 kthrotld +0xffffa0895803ae00 INTERRUPTIBLE 138 49 irq/26-pciehp +0xffffa0895803c500 INTERRUPTIBLE 136 49 irq/24-pciehp +0xffffa0895803dc00 INTERRUPTIBLE 137 49 irq/25-pciehp +0xffffa08958080000 INTERRUPTIBLE 2058 120 nfsd +0xffffa08958081700 INTERRUPTIBLE 1031 120 VGAuthService +0xffffa08958082e00 IDLE 174 120 kworker/u4:3 +0xffffa08958084500 IDLE 175 100 kstrp +0xffffa08958085c00 INTERRUPTIBLE 1979 120 nfsd +0xffffa08958088000 INTERRUPTIBLE 163 49 irq/51-pciehp +0xffffa08958089700 INTERRUPTIBLE 160 49 irq/48-pciehp +0xffffa0895808ae00 INTERRUPTIBLE 161 49 irq/49-pciehp +0xffffa0895808c500 INTERRUPTIBLE 164 49 irq/52-pciehp +0xffffa0895808dc00 INTERRUPTIBLE 162 49 irq/50-pciehp +0xffffa08958098000 INTERRUPTIBLE 149 49 irq/37-pciehp +0xffffa08958099700 INTERRUPTIBLE 148 49 irq/36-pciehp +0xffffa0895809ae00 INTERRUPTIBLE 145 49 irq/33-pciehp +0xffffa0895809c500 INTERRUPTIBLE 146 49 irq/34-pciehp +0xffffa0895809dc00 INTERRUPTIBLE 147 49 irq/35-pciehp +0xffffa089580b0000 INTERRUPTIBLE 1992 120 nfsd +0xffffa089580b1700 INTERRUPTIBLE 379 120 l2arc_feed +0xffffa089580b2e00 INTERRUPTIBLE 378 139 z_vdev_file +0xffffa089580b4500 INTERRUPTIBLE 1996 120 nfsd +0xffffa089580b5c00 INTERRUPTIBLE 1994 120 nfsd +0xffffa089580e0000 INTERRUPTIBLE 158 49 irq/46-pciehp +0xffffa089580e1700 INTERRUPTIBLE 157 49 irq/45-pciehp +0xffffa089580e2e00 INTERRUPTIBLE 155 49 irq/43-pciehp +0xffffa089580e4500 INTERRUPTIBLE 159 49 irq/47-pciehp +0xffffa089580e5c00 INTERRUPTIBLE 156 49 irq/44-pciehp +0xffffa08958208000 INTERRUPTIBLE 167 49 irq/55-pciehp +0xffffa08958209700 IDLE 168 100 acpi_thermal_pm +0xffffa0895820ae00 INTERRUPTIBLE 166 49 irq/54-pciehp +0xffffa0895820c500 INTERRUPTIBLE 165 49 irq/53-pciehp +0xffffa0895820dc00 INTERRUPTIBLE 169 120 scsi_eh_0 +0xffffa089587b8000 INTERRUPTIBLE 447 100 z_null_int +0xffffa089587b9700 IDLE 253 100 mpt/0 +0xffffa089587bae00 INTERRUPTIBLE 446 100 z_null_iss +0xffffa089587bc500 INTERRUPTIBLE 46 120 ecryptfs-kthrea +0xffffa089587bdc00 IDLE 45 100 kworker/u5:0 +0xffffa08959894500 INTERRUPTIBLE 5891 139 z_vdev_file +0xffffa0895a318000 INTERRUPTIBLE 5599 120 txg_quiesce +0xffffa0895a319700 INTERRUPTIBLE 5597 120 z_iput +0xffffa0895a31ae00 INTERRUPTIBLE 5598 120 z_unlinked_drai +0xffffa0895a31c500 INTERRUPTIBLE 5596 139 dp_zil_clean_ta +0xffffa0895a31dc00 INTERRUPTIBLE 5601 120 txg_sync +0xffffa0895a328000 INTERRUPTIBLE 4143 120 postgres +0xffffa0895a329700 INTERRUPTIBLE 4141 120 postgres +0xffffa0895a32ae00 INTERRUPTIBLE 4144 120 postgres +0xffffa0895a32dc00 INTERRUPTIBLE 4142 120 postgres +0xffffa08960a20000 INTERRUPTIBLE 3853 120 java +0xffffa08960a21700 INTERRUPTIBLE 3858 120 java +0xffffa08960a22e00 INTERRUPTIBLE 3857 120 java +0xffffa08960a24500 INTERRUPTIBLE 2910 120 java +0xffffa08960a25c00 INTERRUPTIBLE 3856 120 java +0xffffa08960a38000 INTERRUPTIBLE 2853 120 java +0xffffa08960a39700 INTERRUPTIBLE 2880 120 java +0xffffa08960a3ae00 INTERRUPTIBLE 2857 120 java +0xffffa08960a3c500 INTERRUPTIBLE 2858 120 java +0xffffa08960a3dc00 INTERRUPTIBLE 2856 120 java +0xffffa08960f42e00 INTERRUPTIBLE 2156 120 automount +0xffffa08965109700 INTERRUPTIBLE 2012 120 sed +0xffffa0896510ae00 INTERRUPTIBLE 1990 120 delphix-stat-se +0xffffa0896510c500 INTERRUPTIBLE 5468 120 sleep +0xffffa0896510dc00 INTERRUPTIBLE 1982 120 sed +0xffffa089666d0000 IDLE 38 100 devfreq_wq +0xffffa089666d1700 INTERRUPTIBLE 39 0 watchdogd +0xffffa089666d2e00 IDLE 37 100 edac-poller +0xffffa089666d4500 IDLE 36 100 md +0xffffa089666d5c00 IDLE 35 100 ata_sff +0xffffa08966790000 IDLE 318 100 raid5wq +0xffffa08966791700 INTERRUPTIBLE 44 120 kswapd0 +0xffffa08966792e00 INTERRUPTIBLE 357 100 zvol +0xffffa08966794500 IDLE 41 120 kworker/u4:1 +0xffffa08966795c00 IDLE 40 120 kworker/1:1 +0xffffa089669e8000 IDLE 4 100 rcu_par_gp +0xffffa089669e9700 IDLE 5 120 kworker/0:0 +0xffffa089669eae00 IDLE 3 100 rcu_gp +0xffffa089669ec500 INTERRUPTIBLE 2 120 kthreadd +0xffffa089669edc00 INTERRUPTIBLE 1 120 systemd +0xffffa08966a00000 INTERRUPTIBLE 9 120 ksoftirqd/0 +0xffffa08966a01700 RUNNING 10 120 rcu_sched +0xffffa08966a02e00 IDLE 8 100 mm_percpu_wq +0xffffa08966a04500 IDLE 7 120 kworker/u4:0 +0xffffa08966a05c00 IDLE 6 100 kworker/0:0H +0xffffa08966a08000 INTERRUPTIBLE 12 49 idle_inject/0 +0xffffa08966a09700 IDLE 13 120 kworker/0:1 +0xffffa08966a0ae00 INTERRUPTIBLE 11 0 migration/0 +0xffffa08966a0c500 INTERRUPTIBLE 14 120 cpuhp/0 +0xffffa08966a50000 INTERRUPTIBLE 15 120 cpuhp/1 +0xffffa08966a51700 INTERRUPTIBLE 16 49 idle_inject/1 +0xffffa08966a52e00 IDLE 19 120 kworker/1:0 +0xffffa08966a54500 INTERRUPTIBLE 18 120 ksoftirqd/1 +0xffffa08966a55c00 INTERRUPTIBLE 17 0 migration/1 +0xffffa08966a68000 INTERRUPTIBLE 24 120 kauditd +0xffffa08966a69700 IDLE 20 100 kworker/1:0H +0xffffa08966a6ae00 INTERRUPTIBLE 23 120 rcu_tasks_kthre +0xffffa08966a6c500 IDLE 22 100 netns +0xffffa08966a6dc00 INTERRUPTIBLE 21 120 kdevtmpfs +0xffffa08966bc8000 INTERRUPTIBLE 26 120 oom_reaper +0xffffa08966bc9700 IDLE 27 100 writeback +0xffffa08966bcae00 INTERRUPTIBLE 25 120 khungtaskd +0xffffa08966bcc500 INTERRUPTIBLE 29 125 ksmd +0xffffa08966bcdc00 INTERRUPTIBLE 28 120 kcompactd0 +0xffffa08966bd0000 IDLE 31 100 crypto +0xffffa08966bd1700 IDLE 32 100 kintegrityd +0xffffa08966bd2e00 INTERRUPTIBLE 30 139 khugepaged +0xffffa08966bd4500 IDLE 34 100 tpm_dev_wq +0xffffa08966bd5c00 IDLE 33 100 kblockd diff --git "a/tests/integration/data/regression_output/linux/threads | filter 'obj.comm == \"java\"' | threads" "b/tests/integration/data/regression_output/linux/threads | filter 'obj.comm == \"java\"' | threads" index 65b7a2e0..d98675de 100644 --- "a/tests/integration/data/regression_output/linux/threads | filter 'obj.comm == \"java\"' | threads" +++ "b/tests/integration/data/regression_output/linux/threads | filter 'obj.comm == \"java\"' | threads" @@ -1,85 +1,85 @@ -task state pid prio comm ------------------- ------------- ---- ---- ---- -0xffffa08888c48000 INTERRUPTIBLE 4731 120 java -0xffffa08888c49700 INTERRUPTIBLE 4730 120 java -0xffffa08889c90000 INTERRUPTIBLE 4369 120 java -0xffffa08889c91700 INTERRUPTIBLE 4163 120 java -0xffffa08889c92e00 INTERRUPTIBLE 4104 120 java -0xffffa08889c94500 INTERRUPTIBLE 4374 120 java -0xffffa08889c95c00 INTERRUPTIBLE 4136 120 java -0xffffa0888e8a0000 INTERRUPTIBLE 4373 120 java -0xffffa0888e8a1700 INTERRUPTIBLE 4367 120 java -0xffffa0888e8a2e00 INTERRUPTIBLE 4375 120 java -0xffffa0888e8a5c00 INTERRUPTIBLE 4368 120 java -0xffffa08893668000 INTERRUPTIBLE 4726 120 java -0xffffa08893669700 INTERRUPTIBLE 4372 120 java -0xffffa0889366c500 INTERRUPTIBLE 4293 120 java -0xffffa08894458000 INTERRUPTIBLE 4483 120 java -0xffffa0889445ae00 INTERRUPTIBLE 4482 120 java -0xffffa0889445c500 INTERRUPTIBLE 4484 120 java -0xffffa08894560000 INTERRUPTIBLE 4478 120 java -0xffffa08894561700 INTERRUPTIBLE 4729 120 java -0xffffa08894562e00 INTERRUPTIBLE 4479 120 java -0xffffa08894565c00 INTERRUPTIBLE 4480 120 java -0xffffa08894a68000 INTERRUPTIBLE 4724 120 java -0xffffa08894a69700 INTERRUPTIBLE 4722 120 java -0xffffa08894a6ae00 INTERRUPTIBLE 4723 120 java -0xffffa08894a6dc00 INTERRUPTIBLE 4725 120 java -0xffffa08896518000 INTERRUPTIBLE 4312 120 java -0xffffa08896519700 INTERRUPTIBLE 4364 120 java -0xffffa0889651ae00 INTERRUPTIBLE 4365 120 java -0xffffa0889651c500 INTERRUPTIBLE 4366 120 java -0xffffa0889651dc00 INTERRUPTIBLE 4363 120 java -0xffffa0889cd48000 INTERRUPTIBLE 4003 120 java -0xffffa0889cd49700 INTERRUPTIBLE 4099 120 java -0xffffa0889cd4ae00 INTERRUPTIBLE 4007 120 java -0xffffa0889cd4c500 INTERRUPTIBLE 4098 120 java -0xffffa0889cd4dc00 INTERRUPTIBLE 3865 120 java -0xffffa0889fdd0000 INTERRUPTIBLE 4376 120 java -0xffffa0889fdd1700 INTERRUPTIBLE 4469 120 java -0xffffa0889fdd2e00 INTERRUPTIBLE 4379 120 java -0xffffa0889fdd4500 INTERRUPTIBLE 4728 120 java -0xffffa0889fdd5c00 INTERRUPTIBLE 4727 120 java -0xffffa088ca871700 INTERRUPTIBLE 4733 120 java -0xffffa088ca872e00 INTERRUPTIBLE 4735 120 java -0xffffa088ca874500 INTERRUPTIBLE 4732 120 java -0xffffa088ca875c00 INTERRUPTIBLE 4734 120 java -0xffffa088d33d0000 INTERRUPTIBLE 4074 120 java -0xffffa088d33d1700 INTERRUPTIBLE 4033 120 java -0xffffa088d33d2e00 INTERRUPTIBLE 4038 120 java -0xffffa088d33d4500 INTERRUPTIBLE 4291 120 java -0xffffa088d33d5c00 INTERRUPTIBLE 4070 120 java -0xffffa088ef2d0000 INTERRUPTIBLE 2862 120 java -0xffffa088ef2d1700 INTERRUPTIBLE 2866 120 java -0xffffa088ef2d2e00 INTERRUPTIBLE 2861 120 java -0xffffa088ef2d4500 INTERRUPTIBLE 2865 120 java -0xffffa088ef2d5c00 INTERRUPTIBLE 2859 120 java -0xffffa088f0978000 INTERRUPTIBLE 2869 120 java -0xffffa088f0979700 INTERRUPTIBLE 2877 120 java -0xffffa088f097ae00 INTERRUPTIBLE 2868 120 java -0xffffa088f097c500 INTERRUPTIBLE 3859 120 java -0xffffa088f097dc00 INTERRUPTIBLE 2867 120 java -0xffffa088f6778000 INTERRUPTIBLE 3863 120 java -0xffffa088f6779700 INTERRUPTIBLE 3861 120 java -0xffffa088f677ae00 INTERRUPTIBLE 3864 120 java -0xffffa088f677c500 INTERRUPTIBLE 3862 120 java -0xffffa088f677dc00 INTERRUPTIBLE 3860 120 java -0xffffa088f6e58000 INTERRUPTIBLE 4292 120 java -0xffffa088f6e59700 INTERRUPTIBLE 4006 120 java -0xffffa088f6e5ae00 INTERRUPTIBLE 4005 120 java -0xffffa088f6e5c500 INTERRUPTIBLE 2870 120 java -0xffffa088f6e5dc00 INTERRUPTIBLE 3921 120 java -0xffffa088f7408000 INTERRUPTIBLE 4381 120 java -0xffffa088f7409700 INTERRUPTIBLE 4476 120 java -0xffffa088f740ae00 INTERRUPTIBLE 4474 120 java -0xffffa088f740dc00 INTERRUPTIBLE 4475 120 java -0xffffa08960a20000 INTERRUPTIBLE 3853 120 java -0xffffa08960a21700 INTERRUPTIBLE 3858 120 java -0xffffa08960a22e00 INTERRUPTIBLE 3857 120 java -0xffffa08960a24500 INTERRUPTIBLE 2910 120 java -0xffffa08960a25c00 INTERRUPTIBLE 3856 120 java -0xffffa08960a38000 INTERRUPTIBLE 2853 120 java -0xffffa08960a39700 INTERRUPTIBLE 2880 120 java -0xffffa08960a3ae00 INTERRUPTIBLE 2857 120 java -0xffffa08960a3c500 INTERRUPTIBLE 2858 120 java -0xffffa08960a3dc00 INTERRUPTIBLE 2856 120 java +task state pid prio comm cmdline +------------------ ------------- ---- ---- ---- ------- +0xffffa08888c48000 INTERRUPTIBLE 4731 120 java +0xffffa08888c49700 INTERRUPTIBLE 4730 120 java +0xffffa08889c90000 INTERRUPTIBLE 4369 120 java +0xffffa08889c91700 INTERRUPTIBLE 4163 120 java +0xffffa08889c92e00 INTERRUPTIBLE 4104 120 java +0xffffa08889c94500 INTERRUPTIBLE 4374 120 java +0xffffa08889c95c00 INTERRUPTIBLE 4136 120 java +0xffffa0888e8a0000 INTERRUPTIBLE 4373 120 java +0xffffa0888e8a1700 INTERRUPTIBLE 4367 120 java +0xffffa0888e8a2e00 INTERRUPTIBLE 4375 120 java +0xffffa0888e8a5c00 INTERRUPTIBLE 4368 120 java +0xffffa08893668000 INTERRUPTIBLE 4726 120 java +0xffffa08893669700 INTERRUPTIBLE 4372 120 java +0xffffa0889366c500 INTERRUPTIBLE 4293 120 java +0xffffa08894458000 INTERRUPTIBLE 4483 120 java +0xffffa0889445ae00 INTERRUPTIBLE 4482 120 java +0xffffa0889445c500 INTERRUPTIBLE 4484 120 java +0xffffa08894560000 INTERRUPTIBLE 4478 120 java +0xffffa08894561700 INTERRUPTIBLE 4729 120 java +0xffffa08894562e00 INTERRUPTIBLE 4479 120 java +0xffffa08894565c00 INTERRUPTIBLE 4480 120 java +0xffffa08894a68000 INTERRUPTIBLE 4724 120 java +0xffffa08894a69700 INTERRUPTIBLE 4722 120 java +0xffffa08894a6ae00 INTERRUPTIBLE 4723 120 java +0xffffa08894a6dc00 INTERRUPTIBLE 4725 120 java +0xffffa08896518000 INTERRUPTIBLE 4312 120 java +0xffffa08896519700 INTERRUPTIBLE 4364 120 java +0xffffa0889651ae00 INTERRUPTIBLE 4365 120 java +0xffffa0889651c500 INTERRUPTIBLE 4366 120 java +0xffffa0889651dc00 INTERRUPTIBLE 4363 120 java +0xffffa0889cd48000 INTERRUPTIBLE 4003 120 java +0xffffa0889cd49700 INTERRUPTIBLE 4099 120 java +0xffffa0889cd4ae00 INTERRUPTIBLE 4007 120 java +0xffffa0889cd4c500 INTERRUPTIBLE 4098 120 java +0xffffa0889cd4dc00 INTERRUPTIBLE 3865 120 java +0xffffa0889fdd0000 INTERRUPTIBLE 4376 120 java +0xffffa0889fdd1700 INTERRUPTIBLE 4469 120 java +0xffffa0889fdd2e00 INTERRUPTIBLE 4379 120 java +0xffffa0889fdd4500 INTERRUPTIBLE 4728 120 java +0xffffa0889fdd5c00 INTERRUPTIBLE 4727 120 java +0xffffa088ca871700 INTERRUPTIBLE 4733 120 java +0xffffa088ca872e00 INTERRUPTIBLE 4735 120 java +0xffffa088ca874500 INTERRUPTIBLE 4732 120 java +0xffffa088ca875c00 INTERRUPTIBLE 4734 120 java +0xffffa088d33d0000 INTERRUPTIBLE 4074 120 java +0xffffa088d33d1700 INTERRUPTIBLE 4033 120 java +0xffffa088d33d2e00 INTERRUPTIBLE 4038 120 java +0xffffa088d33d4500 INTERRUPTIBLE 4291 120 java +0xffffa088d33d5c00 INTERRUPTIBLE 4070 120 java +0xffffa088ef2d0000 INTERRUPTIBLE 2862 120 java +0xffffa088ef2d1700 INTERRUPTIBLE 2866 120 java +0xffffa088ef2d2e00 INTERRUPTIBLE 2861 120 java +0xffffa088ef2d4500 INTERRUPTIBLE 2865 120 java +0xffffa088ef2d5c00 INTERRUPTIBLE 2859 120 java +0xffffa088f0978000 INTERRUPTIBLE 2869 120 java +0xffffa088f0979700 INTERRUPTIBLE 2877 120 java +0xffffa088f097ae00 INTERRUPTIBLE 2868 120 java +0xffffa088f097c500 INTERRUPTIBLE 3859 120 java +0xffffa088f097dc00 INTERRUPTIBLE 2867 120 java +0xffffa088f6778000 INTERRUPTIBLE 3863 120 java +0xffffa088f6779700 INTERRUPTIBLE 3861 120 java +0xffffa088f677ae00 INTERRUPTIBLE 3864 120 java +0xffffa088f677c500 INTERRUPTIBLE 3862 120 java +0xffffa088f677dc00 INTERRUPTIBLE 3860 120 java +0xffffa088f6e58000 INTERRUPTIBLE 4292 120 java +0xffffa088f6e59700 INTERRUPTIBLE 4006 120 java +0xffffa088f6e5ae00 INTERRUPTIBLE 4005 120 java +0xffffa088f6e5c500 INTERRUPTIBLE 2870 120 java +0xffffa088f6e5dc00 INTERRUPTIBLE 3921 120 java +0xffffa088f7408000 INTERRUPTIBLE 4381 120 java +0xffffa088f7409700 INTERRUPTIBLE 4476 120 java +0xffffa088f740ae00 INTERRUPTIBLE 4474 120 java +0xffffa088f740dc00 INTERRUPTIBLE 4475 120 java +0xffffa08960a20000 INTERRUPTIBLE 3853 120 java +0xffffa08960a21700 INTERRUPTIBLE 3858 120 java +0xffffa08960a22e00 INTERRUPTIBLE 3857 120 java +0xffffa08960a24500 INTERRUPTIBLE 2910 120 java +0xffffa08960a25c00 INTERRUPTIBLE 3856 120 java +0xffffa08960a38000 INTERRUPTIBLE 2853 120 java +0xffffa08960a39700 INTERRUPTIBLE 2880 120 java +0xffffa08960a3ae00 INTERRUPTIBLE 2857 120 java +0xffffa08960a3c500 INTERRUPTIBLE 2858 120 java +0xffffa08960a3dc00 INTERRUPTIBLE 2856 120 java