* [dts] [PATCH V2] tests/ kni: modify send_packet method
@ 2020-01-22 7:45 Zeng Xiaoxiao
2020-01-22 8:50 ` Zhou, JunX W
2020-02-10 8:57 ` Tu, Lijuan
0 siblings, 2 replies; 3+ messages in thread
From: Zeng Xiaoxiao @ 2020-01-22 7:45 UTC (permalink / raw)
To: dts; +Cc: Zeng Xiaoxiao
*.use scapy_append will cause drop packets.
Signed-off-by: Zeng Xiaoxiao <xiaoxiaox.zeng@intel.com>
---
tests/TestSuite_kni.py | 23 ++++++++++-------------
1 file changed, 10 insertions(+), 13 deletions(-)
diff --git a/tests/TestSuite_kni.py b/tests/TestSuite_kni.py
index f1f85df..f611383 100644
--- a/tests/TestSuite_kni.py
+++ b/tests/TestSuite_kni.py
@@ -43,6 +43,7 @@ import time
from random import randint
from pktgen import PacketGeneratorHelper
from test_case import TestCase
+import packet
dut_ports = []
port_virtual_interaces = []
@@ -259,6 +260,7 @@ class TestKni(TestCase):
"The linux tool brctl is needed to run this test suite")
self.dut.send_expect("sed -i -e 's/KNI_KMOD_ETHTOOL=n$/KNI_KMOD_ETHTOOL=y/' config/common_base", "# ", 30)
+ self.dut.send_expect("sed -i -e 's/CONFIG_RTE_KNI_KMOD=n$/CONFIG_RTE_KNI_KMOD=y/' config/common_base", "# ", 30)
self.dut.build_install_dpdk(self.target)
out = self.dut.build_dpdk_apps("./examples/kni/")
@@ -707,20 +709,15 @@ class TestKni(TestCase):
tx_mac = self.tester.get_mac(tx_port)
tx_interface = self.tester.get_interface(tx_port)
- self.tester.scapy_append('dstmac = "%s"' % rx_mac)
- self.tester.scapy_append('srcmac = "%s"' % tx_mac)
+ scapy_str = ['Ether(src = "%s",dst="%s")/IP()/UDP()/("X"*28)' % (tx_mac, rx_mac),
+ 'Ether(src = "%s",dst="%s")/IP()/TCP()/("X"*28)' % (tx_mac, rx_mac),
+ 'Ether(src = "%s",dst="%s")/IP()/ICMP()/("X"*28)' % (tx_mac, rx_mac),
+ 'Ether(src = "%s",dst="%s")/IP()/("X"*38)' % (tx_mac, rx_mac),
+ 'Ether(src = "%s",dst="%s")/("X"*46)' % (tx_mac, rx_mac), ]
- self.tester.scapy_append(
- 'sendp([Ether(src = srcmac,dst=dstmac)/IP()/UDP()/("X"*28)],iface="%s",count=200)' % tx_interface)
- self.tester.scapy_append(
- 'sendp([Ether(src = srcmac,dst=dstmac)/IP()/TCP()/("X"*28)],iface="%s",count=200)' % tx_interface)
- self.tester.scapy_append(
- 'sendp([Ether(src = srcmac,dst=dstmac)/IP()/ICMP()/("X"*28)],iface="%s",count=200)' % tx_interface)
- self.tester.scapy_append(
- 'sendp([Ether(src = srcmac,dst=dstmac)/IP()/("X"*38)],iface="%s",count=200)' % tx_interface)
- self.tester.scapy_append(
- 'sendp([Ether(src = srcmac,dst=dstmac)/("X"*46)],iface="%s",count=200)' % tx_interface)
- self.tester.scapy_execute()
+ pkt = packet.Packet()
+ pkt.update_pkt(scapy_str)
+ pkt.send_pkt(self.tester, tx_port=tx_interface, count=200)
out = self.dut.send_expect("ifconfig %s" % virtual_interface, "# ")
m = re.search(rx_match, out)
--
1.8.3.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dts] [PATCH V2] tests/ kni: modify send_packet method
2020-01-22 7:45 [dts] [PATCH V2] tests/ kni: modify send_packet method Zeng Xiaoxiao
@ 2020-01-22 8:50 ` Zhou, JunX W
2020-02-10 8:57 ` Tu, Lijuan
1 sibling, 0 replies; 3+ messages in thread
From: Zhou, JunX W @ 2020-01-22 8:50 UTC (permalink / raw)
To: Zeng, XiaoxiaoX, dts; +Cc: Zeng, XiaoxiaoX
[-- Attachment #1: Type: text/plain, Size: 3255 bytes --]
Tested_by: Zhou, JunX W<junx.w.zhou@intel.com>
-----Original Message-----
From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Zeng Xiaoxiao
Sent: Wednesday, January 22, 2020 3:45 PM
To: dts@dpdk.org
Cc: Zeng, XiaoxiaoX <xiaoxiaox.zeng@intel.com>
Subject: [dts] [PATCH V2] tests/ kni: modify send_packet method
*.use scapy_append will cause drop packets.
Signed-off-by: Zeng Xiaoxiao <xiaoxiaox.zeng@intel.com>
---
tests/TestSuite_kni.py | 23 ++++++++++-------------
1 file changed, 10 insertions(+), 13 deletions(-)
diff --git a/tests/TestSuite_kni.py b/tests/TestSuite_kni.py index f1f85df..f611383 100644
--- a/tests/TestSuite_kni.py
+++ b/tests/TestSuite_kni.py
@@ -43,6 +43,7 @@ import time
from random import randint
from pktgen import PacketGeneratorHelper from test_case import TestCase
+import packet
dut_ports = []
port_virtual_interaces = []
@@ -259,6 +260,7 @@ class TestKni(TestCase):
"The linux tool brctl is needed to run this test suite")
self.dut.send_expect("sed -i -e 's/KNI_KMOD_ETHTOOL=n$/KNI_KMOD_ETHTOOL=y/' config/common_base", "# ", 30)
+ self.dut.send_expect("sed -i -e
+ 's/CONFIG_RTE_KNI_KMOD=n$/CONFIG_RTE_KNI_KMOD=y/' config/common_base",
+ "# ", 30)
self.dut.build_install_dpdk(self.target)
out = self.dut.build_dpdk_apps("./examples/kni/")
@@ -707,20 +709,15 @@ class TestKni(TestCase):
tx_mac = self.tester.get_mac(tx_port)
tx_interface = self.tester.get_interface(tx_port)
- self.tester.scapy_append('dstmac = "%s"' % rx_mac)
- self.tester.scapy_append('srcmac = "%s"' % tx_mac)
+ scapy_str = ['Ether(src = "%s",dst="%s")/IP()/UDP()/("X"*28)' % (tx_mac, rx_mac),
+ 'Ether(src = "%s",dst="%s")/IP()/TCP()/("X"*28)' % (tx_mac, rx_mac),
+ 'Ether(src = "%s",dst="%s")/IP()/ICMP()/("X"*28)' % (tx_mac, rx_mac),
+ 'Ether(src = "%s",dst="%s")/IP()/("X"*38)' % (tx_mac, rx_mac),
+ 'Ether(src = "%s",dst="%s")/("X"*46)' %
+ (tx_mac, rx_mac), ]
- self.tester.scapy_append(
- 'sendp([Ether(src = srcmac,dst=dstmac)/IP()/UDP()/("X"*28)],iface="%s",count=200)' % tx_interface)
- self.tester.scapy_append(
- 'sendp([Ether(src = srcmac,dst=dstmac)/IP()/TCP()/("X"*28)],iface="%s",count=200)' % tx_interface)
- self.tester.scapy_append(
- 'sendp([Ether(src = srcmac,dst=dstmac)/IP()/ICMP()/("X"*28)],iface="%s",count=200)' % tx_interface)
- self.tester.scapy_append(
- 'sendp([Ether(src = srcmac,dst=dstmac)/IP()/("X"*38)],iface="%s",count=200)' % tx_interface)
- self.tester.scapy_append(
- 'sendp([Ether(src = srcmac,dst=dstmac)/("X"*46)],iface="%s",count=200)' % tx_interface)
- self.tester.scapy_execute()
+ pkt = packet.Packet()
+ pkt.update_pkt(scapy_str)
+ pkt.send_pkt(self.tester, tx_port=tx_interface, count=200)
out = self.dut.send_expect("ifconfig %s" % virtual_interface, "# ")
m = re.search(rx_match, out)
--
1.8.3.1
[-- Attachment #2: TestKni.log --]
[-- Type: application/octet-stream, Size: 2686976 bytes --]
22/01/2020 16:46:32 dts:
TEST SUITE : TestKni
22/01/2020 16:46:32 dts: NIC : twinpond
22/01/2020 16:46:32 dut.10.238.54.218:
22/01/2020 16:46:32 tester:
22/01/2020 16:46:32 dut.10.238.54.218: which brctl
22/01/2020 16:46:32 dut.10.238.54.218: /sbin/brctl
22/01/2020 16:46:32 dut.10.238.54.218: sed -i -e 's/KNI_KMOD_ETHTOOL=n$/KNI_KMOD_ETHTOOL=y/' config/common_base
22/01/2020 16:46:32 dut.10.238.54.218:
22/01/2020 16:46:32 dut.10.238.54.218: sed -i -e 's/CONFIG_RTE_KNI_KMOD=n$/CONFIG_RTE_KNI_KMOD=y/' config/common_base
22/01/2020 16:46:33 dut.10.238.54.218:
22/01/2020 16:46:33 dut.10.238.54.218: sed -i 's/CONFIG_RTE_EAL_IGB_UIO=n/CONFIG_RTE_EAL_IGB_UIO=y/g' config/common_base
22/01/2020 16:46:33 dut.10.238.54.218:
22/01/2020 16:46:33 dut.10.238.54.218: rm -rf x86_64-native-linuxapp-icc
22/01/2020 16:46:33 dut.10.238.54.218:
22/01/2020 16:46:33 dut.10.238.54.218: rm -rf ./app/test/test_resource_c.res.o
22/01/2020 16:46:33 dut.10.238.54.218:
22/01/2020 16:46:33 dut.10.238.54.218: rm -rf ./app/test/test_resource_tar.res.o
22/01/2020 16:46:33 dut.10.238.54.218:
22/01/2020 16:46:33 dut.10.238.54.218: rm -rf ./app/test/test_pci_sysfs.res.o
22/01/2020 16:46:33 dut.10.238.54.218:
22/01/2020 16:46:33 dut.10.238.54.218: make -j 70 install T=x86_64-native-linuxapp-icc
22/01/2020 16:49:33 dut.10.238.54.218: Configuration done using x86_64-native-linuxapp-icc
== Build lib
== Build lib/librte_kvargs
SYMLINK-FILE include/rte_kvargs.h
CC rte_kvargs.o
AR librte_kvargs.a
INSTALL-LIB librte_kvargs.a
== Build lib/librte_eal
== Build lib/librte_eal/common
SYMLINK-FILE include/rte_branch_prediction.h
SYMLINK-FILE include/rte_common.h
SYMLINK-FILE include/rte_compat.h
SYMLINK-FILE include/rte_function_versioning.h
SYMLINK-FILE include/rte_debug.h
SYMLINK-FILE include/rte_eal.h
SYMLINK-FILE include/rte_eal_interrupts.h
SYMLINK-FILE include/rte_errno.h
SYMLINK-FILE include/rte_launch.h
SYMLINK-FILE include/rte_lcore.h
SYMLINK-FILE include/rte_log.h
SYMLINK-FILE include/rte_memory.h
SYMLINK-FILE include/rte_memzone.h
SYMLINK-FILE include/rte_per_lcore.h
SYMLINK-FILE include/rte_random.h
SYMLINK-FILE include/rte_tailq.h
SYMLINK-FILE include/rte_interrupts.h
SYMLINK-FILE include/rte_alarm.h
SYMLINK-FILE include/rte_string_fns.h
SYMLINK-FILE include/rte_version.h
SYMLINK-FILE include/rte_eal_memconfig.h
SYMLINK-FILE include/rte_hexdump.h
SYMLINK-FILE include/rte_devargs.h
SYMLINK-FILE include/rte_bus.h
SYMLINK-FILE include/rte_dev.h
SYMLINK-FILE include/rte_class.h
SYMLINK-FILE include/rte_option.h
SYMLINK-FILE include/rte_pci_dev_feature_defs.h
SYMLINK-FILE include/rte_pci_dev_features.h
SYMLINK-FILE include/rte_malloc.h
SYMLINK-FILE include/rte_keepalive.h
SYMLINK-FILE include/rte_time.h
SYMLINK-FILE include/rte_service.h
SYMLINK-FILE include/rte_service_component.h
SYMLINK-FILE include/rte_bitmap.h
SYMLINK-FILE include/rte_vfio.h
SYMLINK-FILE include/rte_test.h
SYMLINK-FILE include/rte_hypervisor.h
SYMLINK-FILE include/rte_reciprocal.h
SYMLINK-FILE include/rte_fbarray.h
SYMLINK-FILE include/rte_uuid.h
SYMLINK-FILE include/rte_atomic_32.h
SYMLINK-FILE include/rte_atomic.h
SYMLINK-FILE include/rte_atomic_64.h
SYMLINK-FILE include/rte_byteorder.h
SYMLINK-FILE include/rte_byteorder_32.h
SYMLINK-FILE include/rte_byteorder_64.h
SYMLINK-FILE include/rte_cpuflags.h
SYMLINK-FILE include/rte_cycles.h
SYMLINK-FILE include/rte_io.h
SYMLINK-FILE include/rte_mcslock.h
SYMLINK-FILE include/rte_memcpy.h
SYMLINK-FILE include/rte_pause.h
SYMLINK-FILE include/rte_prefetch.h
SYMLINK-FILE include/rte_rtm.h
SYMLINK-FILE include/rte_rwlock.h
SYMLINK-FILE include/rte_spinlock.h
SYMLINK-FILE include/rte_ticketlock.h
SYMLINK-FILE include/rte_vect.h
SYMLINK-FILE include/generic/rte_atomic.h
SYMLINK-FILE include/generic/rte_byteorder.h
SYMLINK-FILE include/generic/rte_cycles.h
SYMLINK-FILE include/generic/rte_prefetch.h
SYMLINK-FILE include/generic/rte_memcpy.h
SYMLINK-FILE include/generic/rte_cpuflags.h
SYMLINK-FILE include/generic/rte_mcslock.h
SYMLINK-FILE include/generic/rte_spinlock.h
SYMLINK-FILE include/generic/rte_rwlock.h
SYMLINK-FILE include/generic/rte_ticketlock.h
SYMLINK-FILE include/generic/rte_vect.h
SYMLINK-FILE include/generic/rte_pause.h
SYMLINK-FILE include/generic/rte_io.h
== Build lib/librte_eal/linux
== Build lib/librte_eal/linux/eal
SYMLINK-FILE include/rte_kni_common.h
SYMLINK-FILE include/rte_os.h
CC eal.o
CC eal_cpuflags.o
CC eal_hugepage_info.o
CC eal_memory.o
CC eal_thread.o
CC eal_log.o
CC eal_vfio.o
CC eal_vfio_mp_sync.o
CC eal_memalloc.o
CC eal_debug.o
CC eal_lcore.o
CC eal_timer.o
CC eal_interrupts.o
CC eal_alarm.o
CC eal_common_lcore.o
CC eal_dev.o
CC eal_common_timer.o
CC eal_common_memzone.o
CC eal_common_log.o
CC eal_common_launch.o
CC eal_common_mcfg.o
CC eal_common_memalloc.o
CC eal_common_memory.o
CC eal_common_tailqs.o
CC eal_common_errno.o
CC eal_common_cpuflags.o
CC eal_common_hypervisor.o
CC eal_common_string_fns.o
CC eal_common_hexdump.o
CC eal_common_devargs.o
CC eal_common_class.o
CC eal_common_dev.o
CC eal_common_bus.o
CC eal_common_options.o
CC eal_common_thread.o
CC eal_common_fbarray.o
CC eal_common_proc.o
CC eal_common_uuid.o
CC rte_malloc.o
CC hotplug_mp.o
CC malloc_elem.o
CC malloc_heap.o
CC malloc_mp.o
CC rte_option.o
CC rte_keepalive.o
CC rte_random.o
CC rte_service.o
CC rte_reciprocal.o
CC rte_cpuflags.o
CC rte_hypervisor.o
CC rte_spinlock.o
CC rte_cycles.o
AR librte_eal.a
INSTALL-LIB librte_eal.a
== Build lib/librte_pci
== Build lib/librte_ring
== Build lib/librte_stack
== Build lib/librte_timer
== Build lib/librte_cfgfile
== Build lib/librte_meter
== Build lib/librte_acl
== Build lib/librte_jobstats
== Build lib/librte_metrics
== Build lib/librte_rcu
SYMLINK-FILE include/rte_pci.h
CC rte_pci.o
SYMLINK-FILE include/rte_timer.h
SYMLINK-FILE include/rte_acl.h
SYMLINK-FILE include/rte_jobstats.h
SYMLINK-FILE include/rte_acl_osdep.h
SYMLINK-FILE include/rte_meter.h
CC rte_jobstats.o
CC tb_mem.o
CC rte_timer.o
CC rte_acl.o
CC acl_bld.o
CC rte_meter.o
CC acl_gen.o
CC acl_run_scalar.o
CC acl_run_sse.o
SYMLINK-FILE include/rte_ring.h
SYMLINK-FILE include/rte_ring_generic.h
SYMLINK-FILE include/rte_ring_elem.h
CC acl_run_avx2.o
SYMLINK-FILE include/rte_ring_c11_mem.h
CC rte_ring.o
SYMLINK-FILE include/rte_cfgfile.h
SYMLINK-FILE include/rte_rcu_qsbr.h
CC rte_cfgfile.o
CC rte_rcu_qsbr.o
SYMLINK-FILE include/rte_metrics.h
SYMLINK-FILE include/rte_stack_std.h
SYMLINK-FILE include/rte_stack.h
SYMLINK-FILE include/rte_stack_lf.h
SYMLINK-FILE include/rte_stack_lf_generic.h
SYMLINK-FILE include/rte_stack_lf_c11.h
CC rte_metrics.o
SYMLINK-FILE include/rte_stack_lf_stubs.h
CC rte_stack.o
CC rte_stack_std.o
CC rte_stack_lf.o
AR librte_pci.a
INSTALL-LIB librte_pci.a
AR librte_meter.a
INSTALL-LIB librte_meter.a
AR librte_jobstats.a
INSTALL-LIB librte_jobstats.a
AR librte_stack.a
INSTALL-LIB librte_stack.a
AR librte_metrics.a
INSTALL-LIB librte_metrics.a
AR librte_rcu.a
AR librte_ring.a
INSTALL-LIB librte_rcu.a
INSTALL-LIB librte_ring.a
== Build lib/librte_mempool
== Build lib/librte_hash
AR librte_timer.a
INSTALL-LIB librte_timer.a
AR librte_cfgfile.a
INSTALL-LIB librte_cfgfile.a
== Build lib/librte_power
AR librte_acl.a
INSTALL-LIB librte_acl.a
SYMLINK-FILE include/rte_mempool.h
CC rte_mempool.o
CC rte_mempool_ops.o
CC rte_mempool_ops_default.o
SYMLINK-FILE include/rte_hash.h
SYMLINK-FILE include/rte_hash_crc.h
SYMLINK-FILE include/rte_jhash.h
SYMLINK-FILE include/rte_thash.h
SYMLINK-FILE include/rte_fbk_hash.h
CC rte_cuckoo_hash.o
CC rte_fbk_hash.o
SYMLINK-FILE include/rte_power.h
SYMLINK-FILE include/rte_power_empty_poll.h
CC rte_power.o
CC power_acpi_cpufreq.o
CC power_kvm_vm.o
CC guest_channel.o
CC rte_power_empty_poll.o
CC power_pstate_cpufreq.o
AR librte_mempool.a
INSTALL-LIB librte_mempool.a
== Build lib/librte_mbuf
== Build lib/librte_rib
AR librte_power.a
INSTALL-LIB librte_power.a
SYMLINK-FILE include/rte_mbuf.h
SYMLINK-FILE include/rte_mbuf_core.h
SYMLINK-FILE include/rte_mbuf_ptype.h
SYMLINK-FILE include/rte_mbuf_pool_ops.h
SYMLINK-FILE include/rte_mbuf_dyn.h
CC rte_mbuf.o
CC rte_mbuf_ptype.o
CC rte_mbuf_pool_ops.o
CC rte_mbuf_dyn.o
SYMLINK-FILE include/rte_rib.h
SYMLINK-FILE include/rte_rib6.h
CC rte_rib6.o
CC rte_rib.o
AR librte_hash.a
INSTALL-LIB librte_hash.a
== Build lib/librte_efd
== Build lib/librte_lpm
== Build lib/librte_member
AR librte_rib.a
INSTALL-LIB librte_rib.a
== Build lib/librte_fib
AR librte_mbuf.a
INSTALL-LIB librte_mbuf.a
== Build lib/librte_net
== Build lib/librte_bbdev
== Build lib/librte_cryptodev
== Build lib/librte_compressdev
== Build lib/librte_reorder
SYMLINK-FILE include/rte_efd.h
SYMLINK-FILE include/rte_member.h
CC rte_efd.o
CC rte_member.o
CC rte_member_ht.o
CC rte_member_vbf.o
SYMLINK-FILE include/rte_lpm6.h
SYMLINK-FILE include/rte_lpm.h
SYMLINK-FILE include/rte_lpm_sse.h
CC rte_lpm.o
CC rte_lpm6.o
SYMLINK-FILE include/rte_fib.h
SYMLINK-FILE include/rte_fib6.h
CC rte_fib.o
CC dir24_8.o
CC rte_fib6.o
CC trie.o
SYMLINK-FILE include/rte_crypto.h
SYMLINK-FILE include/rte_crypto_sym.h
SYMLINK-FILE include/rte_cryptodev.h
SYMLINK-FILE include/rte_crypto_asym.h
SYMLINK-FILE include/rte_cryptodev_pmd.h
CC rte_cryptodev.o
CC rte_cryptodev_pmd.o
SYMLINK-FILE include/rte_ip.h
SYMLINK-FILE include/rte_tcp.h
SYMLINK-FILE include/rte_esp.h
SYMLINK-FILE include/rte_udp.h
SYMLINK-FILE include/rte_sctp.h
SYMLINK-FILE include/rte_arp.h
SYMLINK-FILE include/rte_icmp.h
SYMLINK-FILE include/rte_ether.h
SYMLINK-FILE include/rte_gre.h
SYMLINK-FILE include/rte_net.h
SYMLINK-FILE include/rte_net_crc.h
SYMLINK-FILE include/rte_mpls.h
SYMLINK-FILE include/rte_higig.h
SYMLINK-FILE include/rte_vxlan.h
SYMLINK-FILE include/rte_comp.h
SYMLINK-FILE include/rte_gtp.h
SYMLINK-FILE include/rte_compressdev.h
SYMLINK-FILE include/rte_compressdev_pmd.h
CC rte_net.o
SYMLINK-FILE include/rte_compressdev_internal.h
CC rte_net_crc.o
CC rte_ether.o
CC rte_arp.o
CC rte_compressdev.o
CC rte_compressdev_pmd.o
CC rte_comp.o
SYMLINK-FILE include/rte_bbdev_op.h
SYMLINK-FILE include/rte_bbdev_pmd.h
SYMLINK-FILE include/rte_bbdev.h
CC rte_bbdev.o
SYMLINK-FILE include/rte_reorder.h
CC rte_reorder.o
AR librte_net.a
INSTALL-LIB librte_net.a
== Build lib/librte_cmdline
== Build lib/librte_ethdev
== Build lib/librte_sched
AR librte_member.a
INSTALL-LIB librte_member.a
AR librte_lpm.a
INSTALL-LIB librte_lpm.a
AR librte_fib.a
INSTALL-LIB librte_fib.a
AR librte_reorder.a
AR librte_compressdev.a
INSTALL-LIB librte_reorder.a
INSTALL-LIB librte_compressdev.a
AR librte_efd.a
INSTALL-LIB librte_efd.a
AR librte_cryptodev.a
INSTALL-LIB librte_cryptodev.a
AR librte_bbdev.a
INSTALL-LIB librte_bbdev.a
SYMLINK-FILE include/rte_sched.h
SYMLINK-FILE include/rte_sched_common.h
SYMLINK-FILE include/rte_red.h
SYMLINK-FILE include/rte_approx.h
CC rte_sched.o
CC rte_red.o
CC rte_approx.o
SYMLINK-FILE include/cmdline_parse.h
SYMLINK-FILE include/cmdline.h
SYMLINK-FILE include/cmdline_parse_ipaddr.h
SYMLINK-FILE include/cmdline_parse_num.h
SYMLINK-FILE include/cmdline_parse_etheraddr.h
SYMLINK-FILE include/cmdline_parse_string.h
SYMLINK-FILE include/cmdline_rdline.h
SYMLINK-FILE include/cmdline_vt100.h
SYMLINK-FILE include/cmdline_cirbuf.h
SYMLINK-FILE include/cmdline_socket.h
SYMLINK-FILE include/cmdline_parse_portlist.h
SYMLINK-FILE include/rte_ethdev_driver.h
SYMLINK-FILE include/rte_ethdev.h
SYMLINK-FILE include/rte_ethdev_vdev.h
SYMLINK-FILE include/rte_ethdev_core.h
SYMLINK-FILE include/rte_ethdev_pci.h
SYMLINK-FILE include/rte_dev_info.h
SYMLINK-FILE include/rte_eth_ctrl.h
SYMLINK-FILE include/rte_flow.h
CC cmdline.o
SYMLINK-FILE include/rte_flow_driver.h
SYMLINK-FILE include/rte_tm.h
SYMLINK-FILE include/rte_tm_driver.h
CC cmdline_cirbuf.o
SYMLINK-FILE include/rte_mtr.h
CC cmdline_parse.o
CC cmdline_parse_etheraddr.o
CC cmdline_parse_ipaddr.o
SYMLINK-FILE include/rte_mtr_driver.h
CC cmdline_parse_num.o
CC cmdline_rdline.o
CC cmdline_parse_string.o
CC rte_ethdev.o
CC ethdev_private.o
CC cmdline_vt100.o
CC rte_class_eth.o
CC rte_flow.o
CC cmdline_socket.o
CC cmdline_parse_portlist.o
CC rte_tm.o
CC rte_mtr.o
CC ethdev_profile.o
AR librte_cmdline.a
INSTALL-LIB librte_cmdline.a
AR librte_sched.a
INSTALL-LIB librte_sched.a
AR librte_ethdev.a
INSTALL-LIB librte_ethdev.a
== Build lib/librte_security
== Build lib/librte_eventdev
== Build lib/librte_rawdev
== Build lib/librte_vhost
== Build lib/librte_ip_frag
== Build lib/librte_gro
== Build lib/librte_bitratestats
== Build lib/librte_latencystats
== Build lib/librte_kni
== Build lib/librte_distributor
== Build lib/librte_pdump
== Build lib/librte_gso
== Build lib/librte_bpf
SYMLINK-FILE include/rte_pdump.h
CC rte_pdump.o
SYMLINK-FILE include/rte_latencystats.h
SYMLINK-FILE include/rte_kni.h
CC rte_latencystats.o
SYMLINK-FILE include/rte_gso.h
CC rte_kni.o
SYMLINK-FILE include/rte_gro.h
CC rte_gso.o
CC gso_common.o
CC gso_tcp4.o
CC gso_tunnel_tcp4.o
CC rte_gro.o
CC gso_udp4.o
CC gro_tcp4.o
CC gro_vxlan_tcp4.o
SYMLINK-FILE include/rte_eventdev.h
SYMLINK-FILE include/rte_eventdev_pmd.h
SYMLINK-FILE include/rte_security.h
SYMLINK-FILE include/rte_event_ring.h
SYMLINK-FILE include/rte_eventdev_pmd_pci.h
SYMLINK-FILE include/rte_event_timer_adapter.h
SYMLINK-FILE include/rte_security_driver.h
SYMLINK-FILE include/rte_event_timer_adapter_pmd.h
SYMLINK-FILE include/rte_event_eth_rx_adapter.h
SYMLINK-FILE include/rte_eventdev_pmd_vdev.h
SYMLINK-FILE include/rte_ip_frag.h
SYMLINK-FILE include/rte_event_crypto_adapter.h
SYMLINK-FILE include/rte_bitrate.h
CC rte_security.o
SYMLINK-FILE include/rte_event_eth_tx_adapter.h
SYMLINK-FILE include/rte_rawdev.h
CC rte_bitrate.o
CC rte_ipv4_fragmentation.o
SYMLINK-FILE include/rte_rawdev_pmd.h
CC rte_ipv6_fragmentation.o
CC rte_ipv4_reassembly.o
CC rte_ipv6_reassembly.o
CC rte_rawdev.o
SYMLINK-FILE include/rte_distributor.h
CC rte_ip_frag_common.o
CC rte_eventdev.o
CC rte_event_ring.o
SYMLINK-FILE include/bpf_def.h
CC ip_frag_internal.o
SYMLINK-FILE include/rte_bpf.h
CC rte_event_eth_rx_adapter.o
CC rte_event_timer_adapter.o
SYMLINK-FILE include/rte_bpf_ethdev.h
CC rte_distributor_single.o
CC rte_distributor.o
CC rte_event_crypto_adapter.o
CC rte_event_eth_tx_adapter.o
CC rte_distributor_match_sse.o
CC bpf.o
CC bpf_exec.o
CC bpf_load.o
CC bpf_pkt.o
CC bpf_validate.o
CC bpf_jit_x86.o
SYMLINK-FILE include/rte_vdpa.h
SYMLINK-FILE include/rte_vhost.h
SYMLINK-FILE include/rte_vhost_crypto.h
CC fd_man.o
CC iotlb.o
CC socket.o
CC vhost.o
CC vhost_user.o
CC virtio_net.o
CC vdpa.o
CC vhost_crypto.o
AR librte_bitratestats.a
INSTALL-LIB librte_bitratestats.a
AR librte_latencystats.a
INSTALL-LIB librte_latencystats.a
AR librte_rawdev.a
INSTALL-LIB librte_rawdev.a
AR librte_security.a
INSTALL-LIB librte_security.a
== Build lib/librte_ipsec
AR librte_gro.a
INSTALL-LIB librte_gro.a
AR librte_gso.a
AR librte_distributor.a
INSTALL-LIB librte_gso.a
INSTALL-LIB librte_distributor.a
AR librte_ip_frag.a
INSTALL-LIB librte_ip_frag.a
AR librte_kni.a
INSTALL-LIB librte_kni.a
AR librte_pdump.a
INSTALL-LIB librte_pdump.a
AR librte_bpf.a
INSTALL-LIB librte_bpf.a
SYMLINK-FILE include/rte_ipsec.h
SYMLINK-FILE include/rte_ipsec_group.h
SYMLINK-FILE include/rte_ipsec_sad.h
SYMLINK-FILE include/rte_ipsec_sa.h
CC esp_inb.o
CC esp_outb.o
CC sa.o
CC ses.o
CC ipsec_sad.o
AR librte_eventdev.a
INSTALL-LIB librte_eventdev.a
== Build lib/librte_port
SYMLINK-FILE include/rte_port.h
SYMLINK-FILE include/rte_port_ethdev.h
SYMLINK-FILE include/rte_port_ring.h
SYMLINK-FILE include/rte_port_frag.h
SYMLINK-FILE include/rte_port_ras.h
SYMLINK-FILE include/rte_port_fd.h
SYMLINK-FILE include/rte_port_sched.h
SYMLINK-FILE include/rte_port_kni.h
SYMLINK-FILE include/rte_port_source_sink.h
SYMLINK-FILE include/rte_port_eventdev.h
SYMLINK-FILE include/rte_port_sym_crypto.h
CC rte_port_ethdev.o
CC rte_port_ring.o
CC rte_port_frag.o
CC rte_port_sched.o
CC rte_port_fd.o
CC rte_port_ras.o
CC rte_port_kni.o
CC rte_port_source_sink.o
CC rte_port_sym_crypto.o
CC rte_port_eventdev.o
AR librte_ipsec.a
INSTALL-LIB librte_ipsec.a
AR librte_vhost.a
INSTALL-LIB librte_vhost.a
AR librte_port.a
INSTALL-LIB librte_port.a
== Build lib/librte_table
SYMLINK-FILE include/rte_table.h
SYMLINK-FILE include/rte_table_lpm.h
SYMLINK-FILE include/rte_table_lpm_ipv6.h
SYMLINK-FILE include/rte_table_acl.h
SYMLINK-FILE include/rte_table_hash.h
SYMLINK-FILE include/rte_table_hash_cuckoo.h
SYMLINK-FILE include/rte_table_hash_func.h
SYMLINK-FILE include/rte_table_hash_func_arm64.h
SYMLINK-FILE include/rte_lru.h
SYMLINK-FILE include/rte_lru_x86.h
SYMLINK-FILE include/rte_table_array.h
SYMLINK-FILE include/rte_table_stub.h
CC rte_table_lpm.o
CC rte_table_lpm_ipv6.o
CC rte_table_acl.o
CC rte_table_hash_cuckoo.o
CC rte_table_hash_key8.o
CC rte_table_hash_key16.o
CC rte_table_hash_key32.o
CC rte_table_hash_ext.o
CC rte_table_array.o
CC rte_table_hash_lru.o
CC rte_table_stub.o
AR librte_table.a
INSTALL-LIB librte_table.a
== Build lib/librte_flow_classify
== Build lib/librte_pipeline
SYMLINK-FILE include/rte_pipeline.h
SYMLINK-FILE include/rte_port_in_action.h
SYMLINK-FILE include/rte_table_action.h
CC rte_pipeline.o
CC rte_port_in_action.o
CC rte_table_action.o
SYMLINK-FILE include/rte_flow_classify.h
CC rte_flow_classify_parse.o
CC rte_flow_classify.o
AR librte_flow_classify.a
INSTALL-LIB librte_flow_classify.a
AR librte_pipeline.a
INSTALL-LIB librte_pipeline.a
== Build buildtools
== Build kernel
== Build kernel/linux
== Build buildtools/pmdinfogen
HOSTCC pmdinfogen.o
== Build kernel/linux/igb_uio
== Build kernel/linux/kni
HOSTLD dpdk-pmdinfogen
INSTALL-HOSTAPP dpdk-pmdinfogen
== Build drivers
== Build drivers/common
== Build drivers/common/cpt
== Build drivers/common/octeontx
== Build drivers/common/octeontx2
== Build drivers/common/dpaax
== Build drivers/common/iavf
CC dpaax_iova_table.o
CC dpaa_of.o
CC otx2_dev.o
CC otx2_irq.o
CC cpt_pmd_ops_helper.o
CC cpt_fpm_tables.o
CC otx2_mbox.o
CC otx2_common.o
CC iavf_adminq.o
CC iavf_common.o
CC iavf_impl.o
CC octeontx_mbox.o
AR librte_common_octeontx.a
INSTALL-LIB librte_common_octeontx.a
AR librte_common_cpt.a
INSTALL-LIB librte_common_cpt.a
AR librte_common_dpaax.a
INSTALL-LIB librte_common_dpaax.a
AR librte_common_octeontx2.a
INSTALL-LIB librte_common_octeontx2.a
CC [M] /root/dpdk/x86_64-native-linuxapp-icc/build/kernel/linux/igb_uio/igb_uio.o
CC [M] /root/dpdk/x86_64-native-linuxapp-icc/build/kernel/linux/kni/kni_misc.o
CC [M] /root/dpdk/x86_64-native-linuxapp-icc/build/kernel/linux/kni/kni_net.o
AR librte_common_iavf.a
INSTALL-LIB librte_common_iavf.a
== Build drivers/bus
Building modules, stage 2.
LD [M] /root/dpdk/x86_64-native-linuxapp-icc/build/kernel/linux/kni/rte_kni.o
Building modules, stage 2.
== Build drivers/bus/dpaa
== Build drivers/bus/pci
== Build drivers/bus/fslmc
== Build drivers/bus/vmbus
== Build drivers/bus/ifpga
== Build drivers/bus/vdev
MODPOST 1 modules
CC /root/dpdk/x86_64-native-linuxapp-icc/build/kernel/linux/igb_uio/igb_uio.mod.o
MODPOST 1 modules
LD [M] /root/dpdk/x86_64-native-linuxapp-icc/build/kernel/linux/igb_uio/igb_uio.ko
INSTALL-MODULE igb_uio.ko
CC /root/dpdk/x86_64-native-linuxapp-icc/build/kernel/linux/kni/rte_kni.mod.o
LD [M] /root/dpdk/x86_64-native-linuxapp-icc/build/kernel/linux/kni/rte_kni.ko
INSTALL-MODULE rte_kni.ko
SYMLINK-FILE include/rte_bus_ifpga.h
CC ifpga_bus.o
CC ifpga_common.o
SYMLINK-FILE include/rte_bus_vdev.h
SYMLINK-FILE include/rte_bus_pci.h
CC vdev.o
CC vdev_params.o
SYMLINK-FILE include/rte_bus_vmbus.h
SYMLINK-FILE include/rte_vmbus_reg.h
CC pci_params.o
CC dpaa_bus.o
CC linux/pci.o
CC linux/pci_uio.o
CC pci_common_uio.o
CC pci_common.o
CC linux/pci_vfio.o
CC base/fman/fman.o
CC vmbus_channel.o
CC vmbus_common.o
CC vmbus_bufring.o
CC base/fman/fman_hw.o
CC linux/vmbus_bus.o
CC vmbus_common_uio.o
CC linux/vmbus_uio.o
CC qbman/qbman_portal.o
CC base/fman/netcfg_layer.o
CC base/qbman/process.o
CC qbman/qbman_debug.o
CC mc/dpio.o
CC mc/dpci.o
CC base/qbman/qman.o
CC base/qbman/qman_driver.o
CC mc/dpdmai.o
CC base/qbman/bman.o
CC mc/mc_sys.o
CC mc/dpbp.o
CC mc/dpmng.o
CC base/qbman/dpaa_sys.o
CC base/qbman/bman_driver.o
CC base/qbman/dpaa_alloc.o
CC mc/dpcon.o
CC portal/dpaa2_hw_dpio.o
CC portal/dpaa2_hw_dpci.o
CC portal/dpaa2_hw_dpbp.o
CC fslmc_vfio.o
CC fslmc_bus.o
PMDINFO portal/dpaa2_hw_dpbp.o.pmd.c
CC portal/dpaa2_hw_dpbp.o.pmd.o
AR librte_bus_ifpga.a
INSTALL-LIB librte_bus_ifpga.a
PMDINFO portal/dpaa2_hw_dpci.o.pmd.c
CC portal/dpaa2_hw_dpci.o.pmd.o
AR librte_bus_vmbus.a
INSTALL-LIB librte_bus_vmbus.a
LD portal/dpaa2_hw_dpbp.o
PMDINFO portal/dpaa2_hw_dpio.o.pmd.c
CC portal/dpaa2_hw_dpio.o.pmd.o
LD portal/dpaa2_hw_dpci.o
AR librte_bus_vdev.a
INSTALL-LIB librte_bus_vdev.a
AR librte_bus_pci.a
INSTALL-LIB librte_bus_pci.a
LD portal/dpaa2_hw_dpio.o
AR librte_bus_fslmc.a
INSTALL-LIB librte_bus_fslmc.a
AR librte_bus_dpaa.a
INSTALL-LIB librte_bus_dpaa.a
== Build drivers/mempool
== Build drivers/mempool/bucket
== Build drivers/mempool/dpaa
== Build drivers/mempool/dpaa2
== Build drivers/mempool/ring
== Build drivers/mempool/stack
== Build drivers/mempool/octeontx
== Build drivers/mempool/octeontx2
CC rte_mempool_bucket.o
SYMLINK-FILE include/rte_dpaa2_mempool.h
CC rte_mempool_stack.o
CC dpaa2_hw_mempool.o
CC octeontx_fpavf.o
CC rte_mempool_octeontx.o
CC otx2_mempool_ops.o
CC otx2_mempool.o
CC otx2_mempool_irq.o
CC otx2_mempool_debug.o
CC rte_mempool_ring.o
CC dpaa_mempool.o
AR librte_mempool_stack.a
INSTALL-LIB librte_mempool_stack.a
PMDINFO octeontx_fpavf.o.pmd.c
CC octeontx_fpavf.o.pmd.o
AR librte_mempool_ring.a
PMDINFO otx2_mempool.o.pmd.c
CC otx2_mempool.o.pmd.o
AR librte_mempool_dpaa2.a
INSTALL-LIB librte_mempool_ring.a
INSTALL-LIB librte_mempool_dpaa2.a
AR librte_mempool_dpaa.a
INSTALL-LIB librte_mempool_dpaa.a
LD octeontx_fpavf.o
LD otx2_mempool.o
AR librte_mempool_octeontx.a
INSTALL-LIB librte_mempool_octeontx.a
AR librte_mempool_octeontx2.a
INSTALL-LIB librte_mempool_octeontx2.a
AR librte_mempool_bucket.a
INSTALL-LIB librte_mempool_bucket.a
== Build drivers/net
== Build drivers/baseband
== Build drivers/crypto
== Build drivers/common/qat
== Build drivers/compress
== Build drivers/vdpa
== Build drivers/compress/octeontx
== Build drivers/vdpa/ifc
== Build drivers/baseband/turbo_sw
== Build drivers/net/ark
== Build drivers/net/atlantic
== Build drivers/net/af_packet
== Build drivers/crypto/octeontx
== Build drivers/net/avp
== Build drivers/net/dpaa2
== Build drivers/baseband/null
== Build drivers/crypto/virtio
== Build drivers/net/cxgbe
== Build drivers/crypto/scheduler
== Build drivers/crypto/dpaa2_sec
== Build drivers/crypto/null
== Build drivers/net/dpaa
== Build drivers/net/e1000
== Build drivers/baseband/fpga_lte_fec
== Build drivers/net/axgbe
== Build drivers/crypto/dpaa_sec
== Build drivers/crypto/nitrox
== Build drivers/crypto/octeontx2
== Build drivers/net/bonding
== Build drivers/net/enetc
== Build drivers/crypto/caam_jr
== Build drivers/net/ena
== Build drivers/net/fm10k
== Build drivers/net/enic
== Build drivers/net/failsafe
== Build drivers/net/i40e
== Build drivers/net/iavf
== Build drivers/net/ice
== Build drivers/net/liquidio
== Build drivers/net/ionic
== Build drivers/net/ixgbe
== Build drivers/net/memif
CC qat_comp_pmd.o
CC qat_comp.o
== Build drivers/net/nfp
== Build drivers/net/null
== Build drivers/net/bnxt
CC qat_common.o
== Build drivers/net/netvsc
CC qat_device.o
== Build drivers/net/octeontx2
== Build drivers/net/qede
== Build drivers/net/thunderx
CC qat_qp.o
== Build drivers/net/ring
CC qat_logs.o
== Build drivers/net/tap
== Build drivers/net/octeontx
== Build drivers/net/virtio
== Build drivers/net/vmxnet3
== Build drivers/net/softnic
== Build drivers/net/vdev_netvsc
== Build drivers/net/kni
== Build drivers/net/vhost
PMDINFO qat_device.o.pmd.c
CC qat_device.o.pmd.o
LD qat_device.o
AR librte_pmd_qat.a
INSTALL-LIB librte_pmd_qat.a
CC otx_zip_pmd.o
CC otx_zip.o
SYMLINK-FILE include/rte_pmd_dpaa.h
CC dpaa_ethdev.o
CC dpaa_rxtx.o
CC bbdev_null.o
CC ifcvf_vdpa.o
CC ifcvf.o
SYMLINK-FILE include/rte_cryptodev_scheduler_operations.h
SYMLINK-FILE include/rte_cryptodev_scheduler.h
CC rte_eth_af_packet.o
CC scheduler_pmd.o
CC rte_cryptodev_scheduler.o
CC axgbe_ethdev.o
CC bbdev_turbo_software.o
CC rte_eth_null.o
CC scheduler_pmd_ops.o
CC axgbe_mdio.o
CC axgbe_dev.o
CC scheduler_roundrobin.o
CC nitrox_device.o
CC axgbe_phy_impl.o
CC scheduler_pkt_size_distr.o
CC failsafe.o
CC rte_eth_kni.o
CC scheduler_multicore.o
CC nitrox_hal.o
CC ionic_mac_api.o
CC axgbe_i2c.o
SYMLINK-FILE include/rte_eth_ring.h
CC nitrox_logs.o
CC failsafe_args.o
CC scheduler_failover.o
SYMLINK-FILE include/rte_eth_bond.h
CC ena_ethdev.o
SYMLINK-FILE include/rte_avp_common.h
SYMLINK-FILE include/fpga_lte_fec.h
CC nicvf_rxtx.o
CC dpaa2_sec_dpseci.o
SYMLINK-FILE include/rte_eth_vhost.h
CC octeontx_rxtx.o
CC enetc_ethdev.o
CC fm10k_ethdev.o
CC vdev_netvsc.o
CC enetc_rxtx.o
CC iavf_ethdev.o
SYMLINK-FILE include/rte_pmd_ixgbe.h
CC dpaa_sec.o
CC nfp_cppcore.o
CC enic_ethdev.o
SYMLINK-FILE include/rte_pmd_ice.h
CC otx2_cryptodev.o
CC lio_ethdev.o
CC vmxnet3_rxtx.o
CC atl_rxtx.o
SYMLINK-FILE include/rte_eth_bond_8023ad.h
CC caam_jr.o
CC null_crypto_pmd.o
SYMLINK-FILE include/rte_eth_softnic.h
CC hn_ethdev.o
CC otx_cryptodev.o
CC fpga_lte_fec.o
SYMLINK-FILE include/rte_pmd_dpaa2.h
CC cxgbe_ethdev.o
SYMLINK-FILE include/rte_avp_fifo.h
CC virtqueue.o
SYMLINK-FILE include/rte_pmd_i40e.h
CC otx2_rx.o
CC virtqueue.o
CC e1000_80003es2lan.o
CC ark_ddm.o
CC rte_eth_ring.o
SYMLINK-FILE include/rte_pmd_bnxt.h
CC rte_eth_vhost.o
CC lio_rxtx.o
CC rte_eth_memif.o
CC ecore_dev.o
CC ice_controlq.o
CC avp_ethdev.o
CC rte_eth_bond_api.o
CC rte_eth_softnic.o
CC ixgbe_common.o
CC i40e_adminq.o
CC base/dpaa2_hw_dpni.o
CC bnxt_cpr.o
CC bnxt_ethdev.o
CC bnxt_filter.o
PMDINFO nitrox_device.o.pmd.c
CC nitrox_device.o.pmd.o
CC ionic_rx_filter.o
CC ark_ethdev.o
PMDINFO otx_cryptodev.o.pmd.c
CC otx_cryptodev.o.pmd.o
CC octeontx_pkovf.o
CC ark_ethdev_rx.o
PMDINFO otx2_cryptodev.o.pmd.c
CC otx2_cryptodev.o.pmd.o
CC ark_ethdev_tx.o
PMDINFO rte_eth_kni.o.pmd.c
CC rte_eth_kni.o.pmd.o
PMDINFO bbdev_null.o.pmd.c
CC bbdev_null.o.pmd.o
LD otx_cryptodev.o
PMDINFO failsafe.o.pmd.c
LD nitrox_device.o
CC failsafe.o.pmd.o
CC ark_mpu.o
PMDINFO otx_zip_pmd.o.pmd.c
CC otx_zip_pmd.o.pmd.o
CC ice_common.o
CC vmxnet3_ethdev.o
CC ark_pktchkr.o
LD otx2_cryptodev.o
CC ark_pktdir.o
CC ark_pktgen.o
PMDINFO null_crypto_pmd.o.pmd.c
CC otx_cryptodev_capabilities.o
CC null_crypto_pmd.o.pmd.o
CC nitrox_sym.o
CC otx2_cryptodev_capabilities.o
LD rte_eth_kni.o
LD bbdev_null.o
PMDINFO rte_eth_softnic.o.pmd.c
CC otx2_cryptodev_hw_access.o
PMDINFO vdev_netvsc.o.pmd.c
CC vdev_netvsc.o.pmd.o
CC rte_eth_softnic.o.pmd.o
CC dpaa2_rxtx.o
LD otx_zip_pmd.o
LD failsafe.o
PMDINFO enic_ethdev.o.pmd.c
PMDINFO bbdev_turbo_software.o.pmd.c
CC enic_ethdev.o.pmd.o
CC bbdev_turbo_software.o.pmd.o
PMDINFO cxgbe_ethdev.o.pmd.c
CC cxgbe_ethdev.o.pmd.o
LD null_crypto_pmd.o
AR librte_pmd_kni.a
CC dpaa2_ethdev.o
PMDINFO octeontx_pkovf.o.pmd.c
CC octeontx_pkovf.o.pmd.o
CC dpaa2_flow.o
AR librte_pmd_bbdev_null.a
PMDINFO ifcvf_vdpa.o.pmd.c
PMDINFO dpaa_ethdev.o.pmd.c
INSTALL-LIB librte_pmd_kni.a
CC dpaa_ethdev.o.pmd.o
CC ifcvf_vdpa.o.pmd.o
CC virtio_pci.o
INSTALL-LIB librte_pmd_bbdev_null.a
CC failsafe_eal.o
AR librte_pmd_octeontx_zip.a
CC ixgbe_82598.o
PMDINFO hn_ethdev.o.pmd.c
INSTALL-LIB librte_pmd_octeontx_zip.a
CC ionic_rxtx.o
CC virtio_rxtx.o
CC hn_ethdev.o.pmd.o
LD vdev_netvsc.o
LD rte_eth_softnic.o
CC null_crypto_pmd_ops.o
CC e1000_82540.o
CC ixgbe_82599.o
LD enic_ethdev.o
CC ionic_dev.o
CC ionic_ethdev.o
LD bbdev_turbo_software.o
PMDINFO axgbe_ethdev.o.pmd.c
CC ionic_lif.o
CC ionic_main.o
AR librte_pmd_vdev_netvsc.a
CC axgbe_ethdev.o.pmd.o
PMDINFO rte_eth_ring.o.pmd.c
CC rte_eth_ring.o.pmd.o
CC rte_eth_bond_pmd.o
INSTALL-LIB librte_pmd_vdev_netvsc.a
CC rte_eth_softnic_mempool.o
PMDINFO fpga_lte_fec.o.pmd.c
CC otx_cryptodev_hw_access.o
CC fpga_lte_fec.o.pmd.o
CC otx_cryptodev_mbox.o
CC otx_cryptodev_ops.o
LD cxgbe_ethdev.o
CC i40e_common.o
CC i40e_diag.o
LD dpaa_ethdev.o
LD octeontx_pkovf.o
LD ifcvf_vdpa.o
LD hn_ethdev.o
PMDINFO rte_eth_af_packet.o.pmd.c
CC rte_eth_af_packet.o.pmd.o
LD rte_eth_af_packet.o
AR librte_pmd_ifc.a
CC cxgbevf_ethdev.o
AR librte_pmd_bbdev_turbo_sw.a
CC cxgbe_main.o
AR librte_pmd_crypto_scheduler.a
CC lio_23xx_vf.o
INSTALL-LIB librte_pmd_ifc.a
INSTALL-LIB librte_pmd_crypto_scheduler.a
INSTALL-LIB librte_pmd_bbdev_turbo_sw.a
CC enic_main.o
CC hn_rxtx.o
CC hn_rndis.o
CC hn_nvs.o
CC bnxt_flow.o
AR librte_pmd_af_packet.a
CC octeontx_pkivf.o
INSTALL-LIB librte_pmd_af_packet.a
CC octeontx_bgx.o
PMDINFO enetc_ethdev.o.pmd.c
CC enetc_ethdev.o.pmd.o
PMDINFO rte_eth_null.o.pmd.c
CC rte_eth_null.o.pmd.o
PMDINFO rte_eth_vhost.o.pmd.c
CC rte_eth_vhost.o.pmd.o
PMDINFO lio_ethdev.o.pmd.c
CC lio_ethdev.o.pmd.o
LD enetc_ethdev.o
CC virtio_pci.o
LD rte_eth_null.o
LD rte_eth_vhost.o
LD lio_ethdev.o
PMDINFO iavf_ethdev.o.pmd.c
CC iavf_ethdev.o.pmd.o
PMDINFO ark_ethdev.o.pmd.c
CC ark_ethdev.o.pmd.o
CC octeontx_ethdev.o
PMDINFO octeontx_pkivf.o.pmd.c
PMDINFO rte_eth_memif.o.pmd.c
CC octeontx_pkivf.o.pmd.o
CC rte_eth_memif.o.pmd.o
CC bnxt_hwrm.o
CC nicvf_hw.o
CC nicvf_mbox.o
CC bnxt_ring.o
LD fpga_lte_fec.o
LD rte_eth_ring.o
LD axgbe_ethdev.o
PMDINFO ionic_ethdev.o.pmd.c
PMDINFO vmxnet3_ethdev.o.pmd.c
CC ionic_ethdev.o.pmd.o
CC vmxnet3_ethdev.o.pmd.o
LD iavf_ethdev.o
LD ark_ethdev.o
PMDINFO cxgbevf_ethdev.o.pmd.c
CC cxgbevf_ethdev.o.pmd.o
CC bnxt_rxq.o
CC e1000_82541.o
CC bnxt_rxr.o
CC otx2_cryptodev_mbox.o
AR librte_pmd_null_crypto.a
CC bnxt_stats.o
CC rte_eth_softnic_swq.o
CC bnxt_txr.o
CC rte_eth_softnic_link.o
CC bnxt_vnic.o
CC bnxt_txq.o
AR librte_pmd_enetc.a
CC bnxt_irq.o
CC failsafe_ops.o
INSTALL-LIB librte_pmd_null_crypto.a
AR librte_pmd_null.a
AR librte_pmd_vhost.a
CC axgbe_rxtx.o
AR librte_pmd_ring.a
LD rte_eth_memif.o
CC iavf_vchnl.o
CC axgbe_rxtx_vec_sse.o
INSTALL-LIB librte_pmd_enetc.a
INSTALL-LIB librte_pmd_vhost.a
CC failsafe_rxtx.o
CC caam_jr_capabilities.o
INSTALL-LIB librte_pmd_ring.a
LD octeontx_pkivf.o
CC nitrox_sym_capabilities.o
CC ark_rqp.o
INSTALL-LIB librte_pmd_null.a
AR librte_pmd_bbdev_fpga_lte_fec.a
CC cxgbevf_main.o
CC iavf_rxtx.o
LD vmxnet3_ethdev.o
CC nitrox_sym_reqmgr.o
CC sge.o
CC nitrox_qp.o
CC e1000_82542.o
INSTALL-LIB librte_pmd_bbdev_fpga_lte_fec.a
PMDINFO dpaa2_ethdev.o.pmd.c
CC dpaa2_ethdev.o.pmd.o
LD ionic_ethdev.o
LD cxgbevf_ethdev.o
CC tap_flow.o
CC tap_netlink.o
CC memif_socket.o
CC rte_eth_tap.o
CC nfp_cpp_pcie_ops.o
CC tap_tcmsgs.o
CC tap_bpf_api.o
CC tap_intr.o
CC ena_com.o
CC ena_eth_com.o
CC cxgbe_filter.o
CC cxgbe_flow.o
AR librte_pmd_dpaa.a
CC t4_hw.o
CC ixgbe_x540.o
LD dpaa2_ethdev.o
INSTALL-LIB librte_pmd_dpaa.a
CC virtio_cryptodev.o
CC virtio_rxtx.o
CC virtio_ethdev.o
CC otx2_cryptodev_ops.o
PMDINFO octeontx_ethdev.o.pmd.c
CC virtio_rxtx_simple.o
CC octeontx_ethdev.o.pmd.o
CC ark_udm.o
CC virtio_rxtx_simple_sse.o
CC virtio_user/vhost_user.o
CC rte_eth_softnic_tap.o
CC rte_eth_softnic_action.o
CC rte_eth_softnic_tm.o
PMDINFO bnxt_ethdev.o.pmd.c
CC rte_eth_softnic_thread.o
CC bnxt_ethdev.o.pmd.o
CC rte_eth_softnic_pipeline.o
CC rte_eth_softnic_cli.o
CC rte_eth_softnic_cryptodev.o
CC rte_eth_softnic_meter.o
CC rte_eth_softnic_flow.o
CC ice_sched.o
CC parser.o
AR librte_pmd_vmxnet3_uio.a
LD octeontx_ethdev.o
INSTALL-LIB librte_pmd_vmxnet3_uio.a
CC e1000_82543.o
CC ixgbe_x550.o
CC ixgbe_phy.o
CC ixgbe_api.o
CC e1000_82571.o
CC e1000_82575.o
CC e1000_i210.o
CC e1000_api.o
AR librte_pmd_octeontx.a
AR librte_pmd_nitrox.a
INSTALL-LIB librte_pmd_octeontx.a
INSTALL-LIB librte_pmd_nitrox.a
CC clip_tbl.o
LD bnxt_ethdev.o
CC mps_tcam.o
CC ixgbe_vf.o
CC ixgbe_hv_vf.o
AR librte_pmd_ionic.a
INSTALL-LIB librte_pmd_ionic.a
CC atl_ethdev.o
CC ixgbe_dcb.o
CC nicvf_ethdev.o
PMDINFO avp_ethdev.o.pmd.c
CC avp_ethdev.o.pmd.o
AR librte_pmd_ark.a
INSTALL-LIB librte_pmd_ark.a
CC nicvf_bsvf.o
CC lio_mbox.o
CC nicvf_svf.o
CC e1000_ich8lan.o
CC e1000_logs.o
CC e1000_mac.o
CC e1000_manage.o
CC nfp_mutex.o
CC nfp_resource.o
CC nfp_crc.o
CC ixgbe_dcb_82599.o
CC nfp_mip.o
CC hn_vf.o
LD avp_ethdev.o
CC l2t.o
CC t4vf_hw.o
PMDINFO virtio_cryptodev.o.pmd.c
CC virtio_cryptodev.o.pmd.o
CC virtio_user/vhost_kernel.o
CC enic_rxtx.o
CC nfp_nffw.o
AR librte_pmd_avp.a
INSTALL-LIB librte_pmd_avp.a
CC nfp_hwinfo.o
CC otx2_tx.o
CC nfp_nsp.o
LD virtio_cryptodev.o
CC e1000_mbx.o
CC otx2_tm.o
CC e1000_nvm.o
CC nfp_rtsym.o
CC fm10k_rxtx.o
CC e1000_osdep.o
CC e1000_phy.o
CC otx2_rss.o
CC otx2_mac.o
AR librte_pmd_virtio_crypto.a
INSTALL-LIB librte_pmd_virtio_crypto.a
CC otx2_ptp.o
CC caam_jr_hw.o
CC e1000_vf.o
CC otx2_link.o
CC otx2_vlan.o
CC i40e_hmc.o
CC otx2_flow.o
AR librte_pmd_lio.a
CC otx2_stats.o
INSTALL-LIB librte_pmd_lio.a
CC igb_ethdev.o
CC otx2_mcast.o
CC otx2_lookup.o
CC ice_switch.o
CC igb_rxtx.o
CC ice_nvm.o
CC ice_flex_pipe.o
CC dpaa2_mux.o
CC dpaa2_sparser.o
AR librte_pmd_memif.a
PMDINFO atl_ethdev.o.pmd.c
CC atl_ethdev.o.pmd.o
INSTALL-LIB librte_pmd_memif.a
CC mc/dpni.o
CC mc/dpkg.o
PMDINFO ena_ethdev.o.pmd.c
CC mc/dpdmux.o
CC ena_ethdev.o.pmd.o
CC nfp_nsp_cmds.o
CC nfp_nsp_eth.o
CC nfp_net.o
CC caam_jr_uio.o
CC failsafe_flow.o
CC failsafe_ether.o
CC failsafe_intr.o
CC iavf_rxtx_vec_sse.o
CC iavf_rxtx_vec_avx2.o
PMDINFO caam_jr.o.pmd.c
PMDINFO fm10k_ethdev.o.pmd.c
CC caam_jr.o.pmd.o
CC i40e_lan_hmc.o
CC fm10k_ethdev.o.pmd.o
LD atl_ethdev.o
AR librte_pmd_axgbe.a
CC i40e_nvm.o
INSTALL-LIB librte_pmd_axgbe.a
LD ena_ethdev.o
CC i40e_dcb.o
CC i40e_ethdev.o
CC i40e_rxtx.o
CC atl_hw_regs.o
CC hw_atl_utils.o
AR librte_pmd_netvsc.a
CC hw_atl_llh.o
INSTALL-LIB librte_pmd_netvsc.a
LD caam_jr.o
CC bnxt_util.o
CC hw_atl_utils_fw2x.o
CC rte_pmd_bnxt.o
CC hw_atl_b0.o
CC bnxt_rxtx_vec_sse.o
PMDINFO dpaa2_mux.o.pmd.c
CC dpaa2_mux.o.pmd.o
CC ixgbe_dcb_82598.o
LD fm10k_ethdev.o
CC ecore_cxt.o
CC ecore_l2.o
CC ecore_sp_commands.o
CC ecore_init_fw_funcs.o
CC ecore_hw.o
CC ecore_spq.o
CC ecore_mcp.o
CC ecore_init_ops.o
CC ecore_int.o
CC conn.o
CC ecore_dcbx.o
LD dpaa2_mux.o
PMDINFO virtio_ethdev.o.pmd.c
CC virtio_ethdev.o.pmd.o
CC bcm_osal.o
CC mc/dpseci.o
CC otx2_ethdev.o
CC rte_eth_bond_args.o
CC ecore_sriov.o
CC ecore_vf.o
CC qede_ethdev.o
CC qede_main.o
CC rte_eth_bond_8023ad.o
CC rte_eth_bond_alb.o
CC rte_eth_bond_flow.o
PMDINFO rte_eth_bond_pmd.o.pmd.c
LD virtio_ethdev.o
CC rte_eth_bond_pmd.o.pmd.o
CC fm10k_pf.o
CC enic_clsf.o
CC igb_pf.o
CC ixgbe_mbx.o
AR librte_pmd_dpaa2.a
INSTALL-LIB librte_pmd_dpaa2.a
CC ixgbe_rxtx.o
CC ixgbe_ethdev.o
CC enic_res.o
CC enic_flow.o
LD rte_eth_bond_pmd.o
CC enic_fm_flow.o
CC base/vnic_cq.o
CC base/vnic_wq.o
CC base/vnic_dev.o
AR librte_pmd_caam_jr.a
CC base/vnic_intr.o
CC ixgbe_fdir.o
CC ice_flow.o
AR librte_pmd_failsafe.a
CC base/vnic_rq.o
INSTALL-LIB librte_pmd_caam_jr.a
INSTALL-LIB librte_pmd_failsafe.a
CC enic_rxtx_vec_avx2.o
CC qede_rxtx.o
CC i40e_rxtx_vec_sse.o
CC i40e_ethdev_vf.o
CC i40e_pf.o
CC otx2_flow_ctrl.o
CC otx2_flow_parse.o
CC rte_pmd_atlantic.o
CC i40e_fdir.o
CC i40e_flow.o
CC rte_pmd_i40e.o
AR librte_pmd_ena.a
INSTALL-LIB librte_pmd_ena.a
CC i40e_tm.o
CC ice_dcb.o
CC i40e_rxtx_vec_avx2.o
CC i40e_vf_representor.o
CC virtio_user/virtio_user_dev.o
CC virtio_user/vhost_kernel_tap.o
CC virtio_user_ethdev.o
CC ixgbe_pf.o
CC fm10k_tlv.o
CC ice_fdir.o
CC ice_ethdev.o
CC ice_rxtx.o
CC ixgbe_flow.o
CC ixgbe_rxtx_vec_sse.o
CC ixgbe_ipsec.o
CC rte_pmd_ixgbe.o
CC ixgbe_tm.o
AR librte_pmd_softnic.a
PMDINFO nicvf_ethdev.o.pmd.c
CC nicvf_ethdev.o.pmd.o
INSTALL-LIB librte_pmd_softnic.a
CC ixgbe_vf_representor.o
AR librte_pmd_atlantic.a
INSTALL-LIB librte_pmd_atlantic.a
CC qede_filter.o
CC otx2_flow_utils.o
CC otx2_ethdev_irq.o
PMDINFO rte_eth_tap.o.pmd.c
CC rte_eth_tap.o.pmd.o
CC otx2_ethdev_ops.o
CC ice_rxtx_vec_sse.o
CC ice_switch_filter.o
LD nicvf_ethdev.o
CC ice_fdir_filter.o
CC ice_hash.o
CC igb_flow.o
PMDINFO virtio_user_ethdev.o.pmd.c
CC virtio_user_ethdev.o.pmd.o
LD rte_eth_tap.o
AR librte_pmd_thunderx_nicvf.a
CC ice_rxtx_vec_avx2.o
INSTALL-LIB librte_pmd_thunderx_nicvf.a
CC ice_generic_flow.o
CC otx2_ethdev_debug.o
CC otx2_ethdev_devargs.o
CC fm10k_common.o
CC fm10k_mbx.o
CC em_ethdev.o
CC em_rxtx.o
AR librte_pmd_tap.a
INSTALL-LIB librte_pmd_tap.a
CC fm10k_vf.o
CC fm10k_api.o
LD virtio_user_ethdev.o
CC fm10k_rxtx_vec.o
PMDINFO otx2_ethdev.o.pmd.c
CC otx2_ethdev.o.pmd.o
LD otx2_ethdev.o
PMDINFO igb_ethdev.o.pmd.c
CC igb_ethdev.o.pmd.o
PMDINFO qede_ethdev.o.pmd.c
CC qede_ethdev.o.pmd.o
AR librte_pmd_iavf.a
INSTALL-LIB librte_pmd_iavf.a
LD igb_ethdev.o
PMDINFO em_ethdev.o.pmd.c
CC em_ethdev.o.pmd.o
LD qede_ethdev.o
LD em_ethdev.o
AR librte_pmd_bond.a
INSTALL-LIB librte_pmd_bond.a
PMDINFO nfp_net.o.pmd.c
CC nfp_net.o.pmd.o
LD nfp_net.o
AR librte_pmd_nfp.a
INSTALL-LIB librte_pmd_nfp.a
PMDINFO i40e_ethdev_vf.o.pmd.c
CC i40e_ethdev_vf.o.pmd.o
AR librte_pmd_enic.a
INSTALL-LIB librte_pmd_enic.a
LD i40e_ethdev_vf.o
AR librte_pmd_virtio.a
INSTALL-LIB librte_pmd_virtio.a
AR librte_pmd_fm10k.a
AR librte_pmd_bnxt.a
INSTALL-LIB librte_pmd_fm10k.a
INSTALL-LIB librte_pmd_bnxt.a
PMDINFO ice_ethdev.o.pmd.c
CC ice_ethdev.o.pmd.o
AR librte_pmd_cxgbe.a
INSTALL-LIB librte_pmd_cxgbe.a
LD ice_ethdev.o
PMDINFO dpaa_sec.o.pmd.c
CC dpaa_sec.o.pmd.o
LD dpaa_sec.o
AR librte_pmd_e1000.a
INSTALL-LIB librte_pmd_e1000.a
AR librte_pmd_dpaa_sec.a
INSTALL-LIB librte_pmd_dpaa_sec.a
PMDINFO ixgbe_ethdev.o.pmd.c
CC ixgbe_ethdev.o.pmd.o
AR librte_pmd_ice.a
INSTALL-LIB librte_pmd_ice.a
LD ixgbe_ethdev.o
AR librte_pmd_qede.a
INSTALL-LIB librte_pmd_qede.a
AR librte_pmd_ixgbe.a
INSTALL-LIB librte_pmd_ixgbe.a
PMDINFO dpaa2_sec_dpseci.o.pmd.c
CC dpaa2_sec_dpseci.o.pmd.o
LD dpaa2_sec_dpseci.o
AR librte_pmd_dpaa2_sec.a
INSTALL-LIB librte_pmd_dpaa2_sec.a
PMDINFO i40e_ethdev.o.pmd.c
CC i40e_ethdev.o.pmd.o
LD i40e_ethdev.o
AR librte_pmd_i40e.a
INSTALL-LIB librte_pmd_i40e.a
AR librte_pmd_octeontx2_crypto.a
INSTALL-LIB librte_pmd_octeontx2_crypto.a
AR librte_pmd_octeontx_crypto.a
INSTALL-LIB librte_pmd_octeontx_crypto.a
AR librte_pmd_octeontx2.a
INSTALL-LIB librte_pmd_octeontx2.a
== Build drivers/event
== Build drivers/event/skeleton
== Build drivers/event/sw
== Build drivers/event/dsw
== Build drivers/event/octeontx
== Build drivers/event/octeontx2
== Build drivers/event/dpaa
== Build drivers/event/dpaa2
== Build drivers/event/opdl
CC dsw_evdev.o
CC dsw_event.o
CC dsw_xstats.o
CC dpaa2_hw_dpcon.o
CC dpaa2_eventdev_selftest.o
CC dpaa2_eventdev.o
CC sw_evdev.o
CC sw_evdev_worker.o
CC sw_evdev_xstats.o
CC sw_evdev_scheduler.o
CC opdl_ring.o
CC opdl_evdev.o
CC sw_evdev_selftest.o
CC opdl_evdev_init.o
CC skeleton_eventdev.o
CC opdl_evdev_xstats.o
CC opdl_test.o
CC otx2_worker_dual.o
CC otx2_worker.o
CC otx2_tim_worker.o
CC otx2_evdev.o
CC otx2_evdev_adptr.o
CC otx2_tim_evdev.o
CC otx2_evdev_selftest.o
CC dpaa_eventdev.o
CC otx2_evdev_irq.o
CC ssovf_evdev.o
CC ssovf_worker.o
CC ssovf_evdev_selftest.o
CC ssovf_probe.o
CC timvf_worker.o
CC timvf_probe.o
CC timvf_evdev.o
PMDINFO dpaa2_hw_dpcon.o.pmd.c
CC dpaa2_hw_dpcon.o.pmd.o
PMDINFO timvf_probe.o.pmd.c
CC timvf_probe.o.pmd.o
PMDINFO ssovf_probe.o.pmd.c
CC ssovf_probe.o.pmd.o
PMDINFO skeleton_eventdev.o.pmd.c
CC skeleton_eventdev.o.pmd.o
PMDINFO opdl_evdev.o.pmd.c
CC opdl_evdev.o.pmd.o
LD dpaa2_hw_dpcon.o
LD timvf_probe.o
LD ssovf_probe.o
LD skeleton_eventdev.o
LD opdl_evdev.o
PMDINFO ssovf_evdev.o.pmd.c
CC ssovf_evdev.o.pmd.o
AR librte_pmd_skeleton_event.a
INSTALL-LIB librte_pmd_skeleton_event.a
PMDINFO dsw_evdev.o.pmd.c
CC dsw_evdev.o.pmd.o
LD ssovf_evdev.o
PMDINFO dpaa2_eventdev.o.pmd.c
CC dpaa2_eventdev.o.pmd.o
LD dsw_evdev.o
PMDINFO sw_evdev.o.pmd.c
CC sw_evdev.o.pmd.o
LD dpaa2_eventdev.o
LD sw_evdev.o
PMDINFO dpaa_eventdev.o.pmd.c
CC dpaa_eventdev.o.pmd.o
AR librte_pmd_dpaa2_event.a
INSTALL-LIB librte_pmd_dpaa2_event.a
LD dpaa_eventdev.o
PMDINFO otx2_evdev.o.pmd.c
CC otx2_evdev.o.pmd.o
AR librte_pmd_dpaa_event.a
INSTALL-LIB librte_pmd_dpaa_event.a
LD otx2_evdev.o
AR librte_pmd_dsw_event.a
INSTALL-LIB librte_pmd_dsw_event.a
AR librte_pmd_opdl_event.a
INSTALL-LIB librte_pmd_opdl_event.a
AR librte_pmd_sw_event.a
INSTALL-LIB librte_pmd_sw_event.a
AR librte_pmd_octeontx_ssovf.a
INSTALL-LIB librte_pmd_octeontx_ssovf.a
AR librte_pmd_octeontx2_event.a
INSTALL-LIB librte_pmd_octeontx2_event.a
== Build drivers/raw
== Build drivers/raw/skeleton
== Build drivers/raw/dpaa2_cmdif
== Build drivers/raw/dpaa2_qdma
== Build drivers/raw/ioat
== Build drivers/raw/ntb
== Build drivers/raw/octeontx2_dma
== Build drivers/raw/octeontx2_ep
SYMLINK-FILE include/rte_pmd_dpaa2_qdma.h
SYMLINK-FILE include/rte_pmd_dpaa2_cmdif.h
SYMLINK-FILE include/rte_ioat_spec.h
SYMLINK-FILE include/rte_ioat_rawdev.h
SYMLINK-FILE include/rte_pmd_ntb.h
CC dpaa2_qdma.o
CC dpaa2_cmdif.o
CC ioat_rawdev.o
CC ntb.o
CC otx2_ep_rawdev.o
CC ioat_rawdev_test.o
CC otx2_ep_enqdeq.o
CC ntb_hw_intel.o
CC skeleton_rawdev.o
CC otx2_ep_test.o
CC skeleton_rawdev_test.o
CC otx2_ep_vf.o
CC otx2_dpi_test.o
CC otx2_dpi_rawdev.o
CC otx2_dpi_msg.o
PMDINFO dpaa2_cmdif.o.pmd.c
CC dpaa2_cmdif.o.pmd.o
PMDINFO ioat_rawdev.o.pmd.c
CC ioat_rawdev.o.pmd.o
PMDINFO otx2_ep_rawdev.o.pmd.c
CC otx2_ep_rawdev.o.pmd.o
PMDINFO skeleton_rawdev.o.pmd.c
CC skeleton_rawdev.o.pmd.o
LD dpaa2_cmdif.o
LD ioat_rawdev.o
LD otx2_ep_rawdev.o
AR librte_rawdev_dpaa2_cmdif.a
INSTALL-LIB librte_rawdev_dpaa2_cmdif.a
LD skeleton_rawdev.o
AR librte_rawdev_skeleton.a
INSTALL-LIB librte_rawdev_skeleton.a
PMDINFO otx2_dpi_rawdev.o.pmd.c
CC otx2_dpi_rawdev.o.pmd.o
AR librte_rawdev_ioat.a
AR librte_rawdev_octeontx2_ep.a
INSTALL-LIB librte_rawdev_ioat.a
INSTALL-LIB librte_rawdev_octeontx2_ep.a
LD otx2_dpi_rawdev.o
PMDINFO dpaa2_qdma.o.pmd.c
CC dpaa2_qdma.o.pmd.o
AR librte_rawdev_octeontx2_dma.a
INSTALL-LIB librte_rawdev_octeontx2_dma.a
LD dpaa2_qdma.o
AR librte_rawdev_dpaa2_qdma.a
INSTALL-LIB librte_rawdev_dpaa2_qdma.a
PMDINFO ntb.o.pmd.c
CC ntb.o.pmd.o
LD ntb.o
AR librte_rawdev_ntb.a
INSTALL-LIB librte_rawdev_ntb.a
== Build app
== Build app/test-pmd
== Build app/proc-info
== Build app/test
== Build app/pdump
== Build app/test-acl
== Build app/test-cmdline
== Build app/test-pipeline
== Build app/test-sad
== Build app/test-bbdev
== Build app/test-compress-perf
== Build app/test-crypto-perf
== Build app/test-eventdev
CC main.o
CC main.o
CC cmdline_test.o
CC commands.o
CC main.o
CC main.o
CC main.o
CC main.o
CC comp_perf_options_parse.o
CC test_bbdev.o
CC testpmd.o
CC main.o
CC config.o
CC test_bbdev_perf.o
CC comp_perf_test_benchmark.o
CC init.o
CC comp_perf_test_verify.o
CC pipeline_stub.o
CC runtime.o
CC comp_perf_test_common.o
CC test_bbdev_vector.o
CC parameters.o
CC pipeline_hash.o
CC cmdline.o
CC cmdline_mtr.o
CC pipeline_lpm.o
CC cmdline_flow.o
CC pipeline_lpm_ipv6.o
CC cmdline_tm.o
CC evt_test.o
CC config.o
CC test_order_common.o
CC parser.o
CC pipeline_acl.o
CC evt_main.o
CC evt_options.o
CC iofwd.o
CC macfwd.o
CC macswap.o
CC cperf_ops.o
CC main.o
CC test_order_atq.o
CC test_perf_common.o
CC cperf_options_parsing.o
CC flowgen.o
CC test_order_queue.o
CC test_perf_queue.o
CC cperf_test_vectors.o
CC cperf_test_throughput.o
CC test_perf_atq.o
CC txonly.o
CC rxonly.o
CC csumonly.o
CC test_pipeline_common.o
CC cperf_test_pmd_cyclecount.o
CC noisy_vnf.o
CC test_pipeline_queue.o
CC icmpecho.o
CC cperf_test_vector_parsing.o
CC cperf_test_verify.o
CC bpf_cmd.o
CC cperf_test_common.o
CC cperf_test_latency.o
CC util.o
CC test_pipeline_atq.o
CC softnicfwd.o
CC commands.o
CC test.o
CC resource.o
CC test_resource.o
CC test_prefetch.o
LD cmdline_test
CC test_byteorder.o
CC test_per_lcore.o
CC test_atomic.o
CC test_malloc.o
CC test_barrier.o
CC test_cycles.o
CC test_mcslock.o
CC test_spinlock.o
CC test_ticketlock.o
CC test_memzone.o
CC test_memory.o
CC test_bitmap.o
CC test_reciprocal_division.o
CC test_external_mem.o
CC test_fbarray.o
CC test_reciprocal_division_perf.o
CC test_rand_perf.o
CC test_ring.o
CC test_ring_perf.o
CC test_pmd_perf.o
CC test_table.o
CC test_table_ports.o
CC test_table_tables.o
CC test_table_pipeline.o
CC test_table_combined.o
LD testsad
CC test_table_acl.o
CC test_flow_classify.o
CC test_rwlock.o
CC test_stack.o
CC test_timer_perf.o
CC test_stack_perf.o
CC test_timer_racecond.o
CC test_timer.o
CC test_timer_secondary.o
CC test_logs.o
CC test_mempool_perf.o
CC test_memcpy.o
CC test_mempool.o
CC test_mbuf.o
CC test_memcpy_perf.o
CC test_member_perf.o
CC test_efd.o
CC test_member.o
CC test_efd_perf.o
CC test_hash.o
LD testpipeline
CC test_thash.o
CC test_hash_perf.o
CC test_hash_multiwriter.o
CC test_hash_functions.o
CC test_hash_readwrite.o
CC test_hash_readwrite_lf.o
LD testacl
CC test_rib.o
CC test_rib6.o
CC test_fib.o
CC test_fib6.o
CC test_fib6_perf.o
CC test_fib_perf.o
LD dpdk-procinfo
CC test_lpm.o
CC test_lpm_perf.o
CC test_lpm6.o
CC test_lpm6_perf.o
CC test_debug.o
LD dpdk-test-crypto-perf
CC test_tailq.o
CC test_errno.o
CC test_string_fns.o
CC test_cpuflags.o
CC test_eal_flags.o
CC test_mp_secondary.o
LD dpdk-test-eventdev
CC test_eal_fs.o
CC test_interrupts.o
CC test_version.o
CC test_alarm.o
CC test_func_reentrancy.o
CC test_service_cores.o
CC test_bitratestats.o
CC test_latencystats.o
CC test_cmdline.o
CC test_cmdline_num.o
CC test_cmdline_etheraddr.o
CC test_cmdline_portlist.o
CC test_cmdline_ipaddr.o
CC test_cmdline_cirbuf.o
CC test_cmdline_string.o
INSTALL-APP cmdline_test
CC test_crc.o
INSTALL-MAP cmdline_test.map
CC test_sched.o
CC test_cmdline_lib.o
CC test_meter.o
CC test_red.o
CC test_kni.o
CC test_power.o
CC test_power_cpufreq.o
CC test_distributor.o
CC test_power_kvm_vm.o
CC test_common.o
CC test_distributor_perf.o
CC test_pdump.o
CC test_reorder.o
CC sample_packet_forward.o
CC virtual_pmd.o
CC packet_burst_generator.o
CC test_acl.o
CC test_link_bonding.o
CC test_link_bonding_mode4.o
CC test_pmd_ring.o
CC test_link_bonding_rssconf.o
CC test_cryptodev_blockcipher.o
CC test_pmd_ring_perf.o
CC test_cryptodev_asym.o
CC test_cryptodev.o
CC test_metrics.o
CC test_eventdev.o
CC test_cryptodev_security_pdcp.o
CC test_event_ring.o
CC test_event_eth_rx_adapter.o
CC test_rawdev.o
CC test_event_eth_tx_adapter.o
CC test_kvargs.o
CC test_event_crypto_adapter.o
CC test_event_timer_adapter.o
CC test_bpf.o
CC test_rcu_qsbr.o
INSTALL-APP testsad
CC test_rcu_qsbr_perf.o
INSTALL-MAP testsad.map
CC test_ipsec.o
CC test_ipsec_sad.o
MKRES test_resource_c.res.o
LD dpdk-pdump
INSTALL-APP testacl
INSTALL-MAP testacl.map
INSTALL-APP testpipeline
INSTALL-MAP testpipeline.map
INSTALL-APP dpdk-procinfo
INSTALL-MAP dpdk-procinfo.map
INSTALL-MAP dpdk-test-crypto-perf.map
INSTALL-APP dpdk-test-crypto-perf
INSTALL-APP dpdk-test-eventdev
INSTALL-MAP dpdk-test-eventdev.map
LD dpdk-test-compress-perf
INSTALL-APP dpdk-pdump
INSTALL-MAP dpdk-pdump.map
INSTALL-APP dpdk-test-compress-perf
INSTALL-MAP dpdk-test-compress-perf.map
LD testpmd
INSTALL-APP testpmd
INSTALL-MAP testpmd.map
LD testbbdev
INSTALL-APP testbbdev
INSTALL-MAP testbbdev.map
LD test
INSTALL-APP test
INSTALL-MAP test.map
Build complete [x86_64-native-linuxapp-icc]
Installation cannot run with T defined and DESTDIR undefined
22/01/2020 16:49:33 dut.10.238.54.218: rm -rf ./app/test/test_resource_c.res.o
22/01/2020 16:49:33 dut.10.238.54.218:
22/01/2020 16:49:33 dut.10.238.54.218: rm -rf ./app/test/test_resource_tar.res.o
22/01/2020 16:49:33 dut.10.238.54.218:
22/01/2020 16:49:33 dut.10.238.54.218: rm -rf ./app/test/test_pci_sysfs.res.o
22/01/2020 16:49:33 dut.10.238.54.218:
22/01/2020 16:49:33 dut.10.238.54.218: make -j 70 -C ./examples/kni/
22/01/2020 16:49:36 dut.10.238.54.218: make: Entering directory '/root/dpdk/examples/kni'
CC main.o
LD kni
INSTALL-APP kni
INSTALL-MAP kni.map
make: Leaving directory '/root/dpdk/examples/kni'
22/01/2020 16:49:36 dut.10.238.54.218: cat /sys/bus/pci/devices/0000:86:00.0/numa_node
22/01/2020 16:49:36 dut.10.238.54.218: 1
22/01/2020 16:49:36 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:49:37 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:49:37 dut.10.238.54.218: rmmod: ERROR: Module rte_kni is not currently loaded
22/01/2020 16:49:37 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:49:37 dut.10.238.54.218:
22/01/2020 16:49:37 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:49:37 dut.10.238.54.218:
22/01/2020 16:49:37 dut.10.238.54.218: ls
22/01/2020 16:49:37 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:49:37 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:49:38 dut.10.238.54.218:
22/01/2020 16:49:38 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko
22/01/2020 16:49:38 dut.10.238.54.218:
22/01/2020 16:49:38 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0x1c0000 -n 4 -- -P -p 0x1 --config="(0,18,19,20)" -m &
22/01/2020 16:49:43 dut.10.238.54.218: [1] 48409
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
Checking link status
.............................................done
22/01/2020 16:49:48 dut.10.238.54.218: cat /etc/os-release
22/01/2020 16:49:48 dut.10.238.54.218: NAME="Ubuntu"
VERSION="18.04 LTS (Bionic Beaver)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 18.04 LTS"
VERSION_ID="18.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=bionic
UBUNTU_CODENAME=bionic
22/01/2020 16:49:48 dut.10.238.54.218: ufw disable
22/01/2020 16:49:49 dut.10.238.54.218: Firewall stopped and disabled on system startup
22/01/2020 16:49:49 TestKni: Test Case test_ifconfig Begin
22/01/2020 16:49:49 dut.10.238.54.218:
22/01/2020 16:49:49 tester:
22/01/2020 16:49:49 dut.10.238.54.218: ifconfig -a
22/01/2020 16:49:49 dut.10.238.54.218: eno1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 10.238.54.218 netmask 255.255.255.128 broadcast 10.238.54.255
inet6 fe80::a6bf:1ff:fe57:31c2 prefixlen 64 scopeid 0x20<link>
ether a4:bf:01:57:31:c2 txqueuelen 1000 (Ethernet)
RX packets 3544103 bytes 5065847855 (5.0 GB)
RX errors 0 dropped 22029 overruns 0 frame 0
TX packets 786084 bytes 71808343 (71.8 MB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
eno2: flags=4098<BROADCAST,MULTICAST> mtu 1500
ether a4:bf:01:57:31:c3 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
enp24s0f0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet6 fe80::6a05:caff:fe0d:bc00 prefixlen 64 scopeid 0x20<link>
ether 68:05:ca:0d:bc:00 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 15 bytes 1146 (1.1 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
enp24s0f1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet6 fe80::6a05:caff:fe0d:bc01 prefixlen 64 scopeid 0x20<link>
ether 68:05:ca:0d:bc:01 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 15 bytes 1166 (1.1 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 496 bytes 40236 (40.2 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 496 bytes 40236 (40.2 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
vEth0_0: flags=4098<BROADCAST,MULTICAST> mtu 1500
ether a0:36:9f:68:fd:b4 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
22/01/2020 16:49:49 dut.10.238.54.218: ifconfig vEth0_0 down
22/01/2020 16:49:49 dut.10.238.54.218:
22/01/2020 16:49:49 dut.10.238.54.218: ifconfig vEth0_0 up
22/01/2020 16:49:50 dut.10.238.54.218: APP: Configure network interface of 0 up
22/01/2020 16:49:50 dut.10.238.54.218: ifconfig vEth0_0 add fe80::1
22/01/2020 16:49:50 dut.10.238.54.218:
22/01/2020 16:49:50 dut.10.238.54.218: ip -family inet6 address show dev vEth0_0
22/01/2020 16:49:50 dut.10.238.54.218: 278: vEth0_0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 state DOWN qlen 1000
inet6 fe80::1/128 scope link tentative
valid_lft forever preferred_lft forever
22/01/2020 16:49:50 dut.10.238.54.218: ifconfig vEth0_0 del fe80::1
22/01/2020 16:49:50 dut.10.238.54.218:
22/01/2020 16:49:50 dut.10.238.54.218: ip -family inet6 address show dev vEth0_0
22/01/2020 16:49:50 dut.10.238.54.218:
22/01/2020 16:49:50 dut.10.238.54.218: ifconfig vEth0_0 192.168.0.1 netmask 255.255.255.192
22/01/2020 16:49:50 dut.10.238.54.218:
22/01/2020 16:49:50 dut.10.238.54.218: ip -family inet address show dev vEth0_0
22/01/2020 16:49:50 dut.10.238.54.218: 278: vEth0_0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc fq_codel state DOWN group default qlen 1000
inet 192.168.0.1/26 brd 192.168.0.63 scope global vEth0_0
valid_lft forever preferred_lft forever
22/01/2020 16:49:50 dut.10.238.54.218: ifconfig vEth0_0 mtu 1300
22/01/2020 16:49:51 dut.10.238.54.218: APP: Change MTU of port 0 to 1300
22/01/2020 16:49:51 dut.10.238.54.218: ip link show vEth0_0
22/01/2020 16:49:51 dut.10.238.54.218: 278: vEth0_0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1300 qdisc fq_codel state DOWN mode DEFAULT group default qlen 1000
link/ether a0:36:9f:68:fd:b4 brd ff:ff:ff:ff:ff:ff
22/01/2020 16:49:51 dut.10.238.54.218: ifconfig vEth0_0 down
22/01/2020 16:49:51 dut.10.238.54.218: APP: Configure network interface of 0 down
22/01/2020 16:49:51 dut.10.238.54.218: ip -family inet6 address show dev vEth0_0
22/01/2020 16:49:51 dut.10.238.54.218:
22/01/2020 16:49:51 TestKni: Test Case test_ifconfig Result PASSED:
22/01/2020 16:49:51 TestKni: Test Case test_ping Begin
22/01/2020 16:49:51 dut.10.238.54.218:
22/01/2020 16:49:51 tester:
22/01/2020 16:49:51 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:49:54 dut.10.238.54.218:
22/01/2020 16:49:54 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:49:55 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:49:55 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0x1c0000 -n 4 -- -P -p 0x1 --config="(0,18,19,20)" -m
22/01/2020 16:49:55 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:49:55 dut.10.238.54.218:
22/01/2020 16:49:55 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:49:55 dut.10.238.54.218:
22/01/2020 16:49:55 dut.10.238.54.218: ls
22/01/2020 16:49:55 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:49:55 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:49:56 dut.10.238.54.218:
22/01/2020 16:49:56 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko
22/01/2020 16:49:56 dut.10.238.54.218:
22/01/2020 16:49:56 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0x1c0000 -n 4 -- -P -p 0x1 --config="(0,18,19,20)" -m &
22/01/2020 16:50:01 dut.10.238.54.218: [1] 48642
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
Checking link status
.............................................done
22/01/2020 16:50:06 dut.10.238.54.218: ifconfig vEth0_0 up
22/01/2020 16:50:07 dut.10.238.54.218: APP: Configure network interface of 0 up
22/01/2020 16:50:12 dut.10.238.54.218: ifconfig vEth0_0 192.168.0.1 netmask 255.255.255.192
22/01/2020 16:50:12 dut.10.238.54.218:
22/01/2020 16:50:12 tester: ifconfig ens11 192.168.0.2 netmask 255.255.255.192
22/01/2020 16:50:12 tester:
22/01/2020 16:50:17 dut.10.238.54.218: ping -w 2 -I vEth0_0 192.168.0.2
22/01/2020 16:50:19 dut.10.238.54.218: PING 192.168.0.2 (192.168.0.2) from 192.168.0.1 vEth0_0: 56(84) bytes of data.
64 bytes from 192.168.0.2: icmp_seq=1 ttl=64 time=12.2 ms
64 bytes from 192.168.0.2: icmp_seq=2 ttl=64 time=2.80 ms
--- 192.168.0.2 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1001ms
rtt min/avg/max/mdev = 2.808/7.514/12.221/4.707 ms
22/01/2020 16:50:19 tester: ping -w 1 -I ens11 192.168.0.1
22/01/2020 16:50:20 tester: PING 192.168.0.1 (192.168.0.1) from 192.168.0.2 ens11: 56(84) bytes of data.
64 bytes from 192.168.0.1: icmp_seq=1 ttl=64 time=7.07 ms
--- 192.168.0.1 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 7.074/7.074/7.074/0.000 ms
22/01/2020 16:50:20 dut.10.238.54.218: ping -w 1 -I vEth0_0 192.168.0.123
22/01/2020 16:50:21 dut.10.238.54.218: PING 192.168.0.123 (192.168.0.123) from 192.168.0.1 vEth0_0: 56(84) bytes of data.
--- 192.168.0.123 ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms
22/01/2020 16:50:21 dut.10.238.54.218: ip -family inet6 address show dev vEth0_0 | awk '/inet6/ { print $2 }'| cut -d'/' -f1
22/01/2020 16:50:21 dut.10.238.54.218: fe80::a236:9fff:fe68:fdb4
22/01/2020 16:50:21 dut.10.238.54.218: ping6 -w 1 -I vEth0_0 fe80::a236:9fff:fe68:fdb4
22/01/2020 16:50:22 dut.10.238.54.218: PING fe80::a236:9fff:fe68:fdb4(fe80::a236:9fff:fe68:fdb4) from fe80::a236:9fff:fe68:fdb4%vEth0_0 vEth0_0: 56 data bytes
64 bytes from fe80::a236:9fff:fe68:fdb4%vEth0_0: icmp_seq=1 ttl=64 time=0.032 ms
--- fe80::a236:9fff:fe68:fdb4 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 0.032/0.032/0.032/0.000 ms
22/01/2020 16:50:22 tester: ping6 -w 1 -I ens11 fe80::a236:9fff:fe68:fdb4
22/01/2020 16:50:23 tester: PING fe80::a236:9fff:fe68:fdb4(fe80::a236:9fff:fe68:fdb4) from fe80::b696:91ff:fe46:e05c%ens11 ens11: 56 data bytes
64 bytes from fe80::a236:9fff:fe68:fdb4%ens11: icmp_seq=1 ttl=64 time=12.7 ms
--- fe80::a236:9fff:fe68:fdb4 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 12.700/12.700/12.700/0.000 ms
22/01/2020 16:50:23 dut.10.238.54.218: ping6 -w 1 -I vEth0_0 fe80::a236:9fff:fe68:fdb0
22/01/2020 16:50:25 dut.10.238.54.218: PING fe80::a236:9fff:fe68:fdb0(fe80::a236:9fff:fe68:fdb0) from fe80::a236:9fff:fe68:fdb4%vEth0_0 vEth0_0: 56 data bytes
--- fe80::a236:9fff:fe68:fdb0 ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms
22/01/2020 16:50:25 tester: ip addr del 192.168.0.2 dev ens11
22/01/2020 16:50:25 tester: Warning: Executing wildcard deletion to stay compatible with old scripts.
Explicitly specify the prefix length (192.168.0.2/32) to avoid this warning.
This special behaviour is likely to disappear in further releases,
fix your scripts!
22/01/2020 16:50:26 TestKni: Test Case test_ping Result PASSED:
22/01/2020 16:50:26 TestKni: Test Case test_statistics Begin
22/01/2020 16:50:26 dut.10.238.54.218:
22/01/2020 16:50:26 tester:
22/01/2020 16:50:26 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:50:29 dut.10.238.54.218:
22/01/2020 16:50:29 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:50:30 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:50:30 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0x1c0000 -n 4 -- -P -p 0x1 --config="(0,18,19,20)" -m
22/01/2020 16:50:30 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:50:30 dut.10.238.54.218:
22/01/2020 16:50:30 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:50:30 dut.10.238.54.218:
22/01/2020 16:50:30 dut.10.238.54.218: ls
22/01/2020 16:50:30 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:50:30 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:50:31 dut.10.238.54.218:
22/01/2020 16:50:31 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_ring_skb
22/01/2020 16:50:31 dut.10.238.54.218:
22/01/2020 16:50:31 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0x1c0000 -n 4 -- -P -p 0x1 --config="(0,18,19,20)" -m &
22/01/2020 16:50:36 dut.10.238.54.218: [1] 48707
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
Checking link status
..............................................done
22/01/2020 16:50:41 dut.10.238.54.218: ifconfig vEth0_0 up
22/01/2020 16:50:42 dut.10.238.54.218: APP: Configure network interface of 0 up
22/01/2020 16:50:47 dut.10.238.54.218: ifconfig vEth0_0
22/01/2020 16:50:47 dut.10.238.54.218: vEth0_0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet6 fe80::a236:9fff:fe68:fdb4 prefixlen 64 scopeid 0x20<link>
ether a0:36:9f:68:fd:b4 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 3 bytes 266 (266.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
22/01/2020 16:50:47 tester: scp -v /home/autoregression/zxx/output/tmp/pcap/scapy_ens11.pcap1579711847.189759 root@10.238.54.191:/tmp/tester/
22/01/2020 16:50:49 tester: scp -v /home/autoregression/zxx/output/tmp/pcap/scapy_ens11.cmd1579711847.189759 root@10.238.54.191:/tmp/tester/
22/01/2020 16:50:51 tester: python3 /tmp/tester/scapy_ens11.cmd1579711847.189759
22/01/2020 16:50:52 tester: packet ready for sending...
Ether(dst='a0:36:9f:68:fd:b4', src='b4:96:91:46:e0:5c', type=2048)/IP(version=4, ihl=5, tos=0, len=56, id=1, flags=0, frag=0, ttl=64, proto=17, chksum=31922, src='127.0.0.1', dst='127.0.0.1')/UDP(sport=53, dport=53, len=36, chksum=11365)/DNS(length=None, id=22616, qr=0, opcode=11, aa=0, tc=0, rd=0, ra=0, z=1, ad=0, cd=1, rcode=8, qdcount=22616, ancount=22616, nscount=22616, arcount=22616, qd=b'', an=b'', ns=b'', ar=b'')/Raw(load=b'XXXXXXXXXXXXXXXX')
Ether(dst='a0:36:9f:68:fd:b4', src='b4:96:91:46:e0:5c', type=2048)/IP(version=4, ihl=5, tos=0, len=68, id=1, flags=0, frag=0, ttl=64, proto=6, chksum=31921, src='127.0.0.1', dst='127.0.0.1')/TCP(sport=20, dport=80, seq=0, ack=0, dataofs=5, reserved=0, flags=2, window=8192, chksum=48267, urgptr=0)/Raw(load=b'XXXXXXXXXXXXXXXXXXXXXXXXXXXX')
Ether(dst='a0:36:9f:68:fd:b4', src='b4:96:91:46:e0:5c', type=2048)/IP(version=4, ihl=5, tos=0, len=56, id=1, flags=0, frag=0, ttl=64, proto=1, chksum=31938, src='127.0.0.1', dst='127.0.0.1')/ICMP(type=8, code=0, chksum=9003, id=0, seq=0, ts_ori=None, ts_rx=None, ts_tx=None, gw=None, ptr=None, reserved=None, length=None, addr_mask=None, nexthopmtu=None, unused=None)/Raw(load=b'XXXXXXXXXXXXXXXXXXXXXXXXXXXX')
Ether(dst='a0:36:9f:68:fd:b4', src='b4:96:91:46:e0:5c', type=2048)/IP(version=4, ihl=5, tos=0, len=58, id=1, flags=0, frag=0, ttl=64, proto=0, chksum=31937, src='127.0.0.1', dst='127.0.0.1')/Raw(load=b'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
Ether(dst='a0:36:9f:68:fd:b4', src='b4:96:91:46:e0:5c', type=36864)/Raw(load=b'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
Sent 1000 packets.
22/01/2020 16:50:52 dut.10.238.54.218: ifconfig vEth0_0
22/01/2020 16:50:52 dut.10.238.54.218: vEth0_0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet6 fe80::a236:9fff:fe68:fdb4 prefixlen 64 scopeid 0x20<link>
ether a0:36:9f:68:fd:b4 txqueuelen 1000 (Ethernet)
RX packets 1000 bytes 70800 (70.8 KB)
RX errors 0 dropped 200 overruns 0 frame 0
TX packets 7 bytes 586 (586.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
22/01/2020 16:50:52 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:50:55 dut.10.238.54.218:
22/01/2020 16:50:55 TestKni: Test Case test_statistics Result PASSED:
22/01/2020 16:50:55 TestKni: Test Case test_stress Begin
22/01/2020 16:50:55 dut.10.238.54.218:
22/01/2020 16:50:55 tester:
22/01/2020 16:50:55 dut.10.238.54.218: dmesg -c
22/01/2020 16:50:55 dut.10.238.54.218: [29777.261825] igb_uio: Use MSIX interrupt by default
[29777.949750] igb_uio 0000:86:00.0: mapping 1K dma=0xe21b5b000 host=0000000083569eee
[29777.949756] igb_uio 0000:86:00.0: unmapping 1K dma=0xe21b5b000 host=0000000083569eee
[29777.950615] igb_uio 0000:86:00.1: mapping 1K dma=0xe21b5b000 host=0000000083569eee
[29777.950620] igb_uio 0000:86:00.1: unmapping 1K dma=0xe21b5b000 host=0000000083569eee
[29778.511500] igb_uio 0000:86:00.0: uio device registered with irq 134
[29778.710090] igb_uio 0000:86:00.1: uio device registered with irq 135
[29779.098240] rte_kni: Creating kni...
[29779.262759] rte_kni: Creating kni...
[29792.918449] igb_uio: Use MSIX interrupt by default
[29793.604753] igb_uio 0000:86:00.0: mapping 1K dma=0xded4ba000 host=00000000b9fe8dd6
[29793.604759] igb_uio 0000:86:00.0: unmapping 1K dma=0xded4ba000 host=00000000b9fe8dd6
[29793.605570] igb_uio 0000:86:00.1: mapping 1K dma=0xded4ba000 host=00000000b9fe8dd6
[29793.605574] igb_uio 0000:86:00.1: unmapping 1K dma=0xded4ba000 host=00000000b9fe8dd6
[29794.161282] igb_uio 0000:86:00.0: uio device registered with irq 134
[29794.360582] igb_uio 0000:86:00.1: uio device registered with irq 135
[29794.749566] rte_kni: Creating kni...
[29794.914236] rte_kni: Creating kni...
[29808.410667] igb_uio: Use MSIX interrupt by default
[29809.096100] igb_uio 0000:86:00.0: mapping 1K dma=0xdfaf6e000 host=00000000de530cbd
[29809.096107] igb_uio 0000:86:00.0: unmapping 1K dma=0xdfaf6e000 host=00000000de530cbd
[29809.096849] igb_uio 0000:86:00.1: mapping 1K dma=0xdfaf6e000 host=00000000de530cbd
[29809.096853] igb_uio 0000:86:00.1: unmapping 1K dma=0xdfaf6e000 host=00000000de530cbd
[29809.661008] igb_uio 0000:86:00.0: uio device registered with irq 134
[29809.859965] igb_uio 0000:86:00.1: uio device registered with irq 135
[29810.248186] rte_kni: Creating kni...
[29810.412891] rte_kni: Creating kni...
[29824.026531] igb_uio: Use MSIX interrupt by default
[29824.716560] igb_uio 0000:86:00.0: mapping 1K dma=0x104de6a000 host=00000000f70ad907
[29824.716566] igb_uio 0000:86:00.0: unmapping 1K dma=0x104de6a000 host=00000000f70ad907
[29824.717197] igb_uio 0000:86:00.1: mapping 1K dma=0x104de6a000 host=00000000f70ad907
[29824.717201] igb_uio 0000:86:00.1: unmapping 1K dma=0x104de6a000 host=00000000f70ad907
[29825.285705] igb_uio 0000:86:00.0: uio device registered with irq 134
[29825.484813] igb_uio 0000:86:00.1: uio device registered with irq 135
[29825.873834] rte_kni: Creating kni...
[29826.038693] rte_kni: Creating kni...
[29839.574240] igb_uio: Use MSIX interrupt by default
[29840.258343] igb_uio 0000:86:00.0: mapping 1K dma=0x1051028000 host=000000004c73ba7c
[29840.258348] igb_uio 0000:86:00.0: unmapping 1K dma=0x1051028000 host=000000004c73ba7c
[29840.258995] igb_uio 0000:86:00.1: mapping 1K dma=0x1051028000 host=000000004c73ba7c
[29840.258999] igb_uio 0000:86:00.1: unmapping 1K dma=0x1051028000 host=000000004c73ba7c
[29840.812935] igb_uio 0000:86:00.0: uio device registered with irq 134
[29841.012216] igb_uio 0000:86:00.1: uio device registered with irq 135
[29841.400992] rte_kni: Creating kni...
[29841.565591] rte_kni: Creating kni...
[29855.086130] igb_uio: Use MSIX interrupt by default
[29855.778368] igb_uio 0000:86:00.0: mapping 1K dma=0xe21379000 host=000000008e87ede9
[29855.778374] igb_uio 0000:86:00.0: unmapping 1K dma=0xe21379000 host=000000008e87ede9
[29855.778995] igb_uio 0000:86:00.1: mapping 1K dma=0xe21379000 host=000000008e87ede9
[29855.778999] igb_uio 0000:86:00.1: unmapping 1K dma=0xe21379000 host=000000008e87ede9
[29856.339809] igb_uio 0000:86:00.0: uio device registered with irq 134
[29856.538970] igb_uio 0000:86:00.1: uio device registered with irq 135
[29856.927323] rte_kni: Creating kni...
[29857.092015] rte_kni: Creating kni...
[29870.714303] igb_uio: Use MSIX interrupt by default
[29871.401703] igb_uio 0000:86:00.0: mapping 1K dma=0x1052238000 host=00000000ee4a8db3
[29871.401709] igb_uio 0000:86:00.0: unmapping 1K dma=0x1052238000 host=00000000ee4a8db3
[29871.402485] igb_uio 0000:86:00.1: mapping 1K dma=0x1052238000 host=00000000ee4a8db3
[29871.402489] igb_uio 0000:86:00.1: unmapping 1K dma=0x1052238000 host=00000000ee4a8db3
[29871.957275] igb_uio 0000:86:00.0: uio device registered with irq 134
[29872.156437] igb_uio 0000:86:00.1: uio device registered with irq 135
[29872.545440] rte_kni: Creating kni...
[29872.710126] rte_kni: Creating kni...
[29886.214542] igb_uio: Use MSIX interrupt by default
[29886.905535] igb_uio 0000:86:00.0: mapping 1K dma=0xdf2abd000 host=0000000025e685cc
[29886.905541] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf2abd000 host=0000000025e685cc
[29886.905961] igb_uio 0000:86:00.1: mapping 1K dma=0xdf2abd000 host=0000000025e685cc
[29886.905964] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf2abd000 host=0000000025e685cc
[29886.978433] rte_kni: Invalid parameter for kthread_mode
[29887.543197] igb_uio 0000:86:00.0: uio device registered with irq 134
[29887.739255] igb_uio 0000:86:00.1: uio device registered with irq 135
[29908.914851] igb_uio: Use MSIX interrupt by default
[29909.600750] igb_uio 0000:86:00.0: mapping 1K dma=0xdf4c61000 host=000000001151ae6a
[29909.600756] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf4c61000 host=000000001151ae6a
[29909.601447] igb_uio 0000:86:00.1: mapping 1K dma=0xdf4c61000 host=000000001151ae6a
[29909.601451] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf4c61000 host=000000001151ae6a
[29910.157515] igb_uio 0000:86:00.0: uio device registered with irq 134
[29910.356240] igb_uio 0000:86:00.1: uio device registered with irq 135
[29910.744470] rte_kni: Creating kni...
[29910.909150] rte_kni: Creating kni...
[29925.670488] igb_uio: Use MSIX interrupt by default
[29926.358189] igb_uio 0000:86:00.0: mapping 1K dma=0xded473000 host=00000000cb42283a
[29926.358195] igb_uio 0000:86:00.0: unmapping 1K dma=0xded473000 host=00000000cb42283a
[29926.358924] igb_uio 0000:86:00.1: mapping 1K dma=0xded473000 host=00000000cb42283a
[29926.358928] igb_uio 0000:86:00.1: unmapping 1K dma=0xded473000 host=00000000cb42283a
[29926.923678] igb_uio 0000:86:00.0: uio device registered with irq 134
[29927.122167] igb_uio 0000:86:00.1: uio device registered with irq 135
[29927.510613] rte_kni: Creating kni...
[29927.675384] rte_kni: Creating kni...
[29941.286336] igb_uio: Use MSIX interrupt by default
[29941.981127] igb_uio 0000:86:00.0: mapping 1K dma=0xe335f0000 host=0000000099ad15cf
[29941.981133] igb_uio 0000:86:00.0: unmapping 1K dma=0xe335f0000 host=0000000099ad15cf
[29941.981633] igb_uio 0000:86:00.1: mapping 1K dma=0xe335f0000 host=0000000099ad15cf
[29941.981638] igb_uio 0000:86:00.1: unmapping 1K dma=0xe335f0000 host=0000000099ad15cf
[29942.055047] rte_kni: Invalid parameter for kthread_mode
[29942.604540] igb_uio 0000:86:00.0: uio device registered with irq 134
[29942.802611] igb_uio 0000:86:00.1: uio device registered with irq 135
[29963.946840] igb_uio: Use MSIX interrupt by default
[29964.629692] igb_uio 0000:86:00.0: mapping 1K dma=0xdf52e5000 host=00000000b54fd48d
[29964.629695] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf52e5000 host=00000000b54fd48d
[29964.630300] igb_uio 0000:86:00.1: mapping 1K dma=0xdf52e5000 host=00000000b54fd48d
[29964.630301] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf52e5000 host=00000000b54fd48d
[29965.206786] igb_uio 0000:86:00.0: uio device registered with irq 134
[29965.405524] igb_uio 0000:86:00.1: uio device registered with irq 135
[29965.794188] rte_kni: Creating kni...
[29965.958827] rte_kni: Creating kni...
[29980.706708] igb_uio: Use MSIX interrupt by default
[29981.393648] igb_uio 0000:86:00.0: mapping 1K dma=0xdf1c23000 host=00000000fdd7a405
[29981.393654] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf1c23000 host=00000000fdd7a405
[29981.394258] igb_uio 0000:86:00.1: mapping 1K dma=0xdf1c23000 host=00000000fdd7a405
[29981.394262] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf1c23000 host=00000000fdd7a405
[29981.949885] igb_uio 0000:86:00.0: uio device registered with irq 134
[29982.148591] igb_uio 0000:86:00.1: uio device registered with irq 135
[29982.536932] rte_kni: Creating kni...
[29982.701600] rte_kni: Creating kni...
[29996.198416] igb_uio: Use MSIX interrupt by default
[29996.888152] igb_uio 0000:86:00.0: mapping 1K dma=0xdf52dc000 host=000000005a028587
[29996.888158] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf52dc000 host=000000005a028587
[29996.888774] igb_uio 0000:86:00.1: mapping 1K dma=0xdf52dc000 host=000000005a028587
[29996.888778] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf52dc000 host=000000005a028587
[29997.452372] igb_uio 0000:86:00.0: uio device registered with irq 134
[29997.651145] igb_uio 0000:86:00.1: uio device registered with irq 135
[29998.039578] rte_kni: Creating kni...
[29998.204289] rte_kni: Creating kni...
[30011.718218] igb_uio: Use MSIX interrupt by default
[30012.410348] igb_uio 0000:86:00.0: mapping 1K dma=0x1049a70000 host=00000000c93bc393
[30012.410351] igb_uio 0000:86:00.0: unmapping 1K dma=0x1049a70000 host=00000000c93bc393
[30012.411060] igb_uio 0000:86:00.1: mapping 1K dma=0x1049a70000 host=00000000c93bc393
[30012.411064] igb_uio 0000:86:00.1: unmapping 1K dma=0x1049a70000 host=00000000c93bc393
[30012.970707] igb_uio 0000:86:00.0: uio device registered with irq 134
[30013.169438] igb_uio 0000:86:00.1: uio device registered with irq 135
[30013.557755] rte_kni: Creating kni...
[30013.722782] rte_kni: Creating kni...
[30027.234064] igb_uio: Use MSIX interrupt by default
[30027.916349] igb_uio 0000:86:00.0: mapping 1K dma=0xdf52e5000 host=00000000b54fd48d
[30027.916355] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf52e5000 host=00000000b54fd48d
[30027.917112] igb_uio 0000:86:00.1: mapping 1K dma=0xdf52e5000 host=00000000b54fd48d
[30027.917116] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf52e5000 host=00000000b54fd48d
[30028.483635] igb_uio 0000:86:00.0: uio device registered with irq 134
[30028.682185] igb_uio 0000:86:00.1: uio device registered with irq 135
[30029.071395] rte_kni: Creating kni...
[30029.236089] rte_kni: Creating kni...
[30042.722503] igb_uio: Use MSIX interrupt by default
[30043.409433] igb_uio 0000:86:00.0: mapping 1K dma=0xe33c2e000 host=0000000088163a5a
[30043.409438] igb_uio 0000:86:00.0: unmapping 1K dma=0xe33c2e000 host=0000000088163a5a
[30043.409867] igb_uio 0000:86:00.1: mapping 1K dma=0xe33c2e000 host=0000000088163a5a
[30043.409871] igb_uio 0000:86:00.1: unmapping 1K dma=0xe33c2e000 host=0000000088163a5a
[30043.974853] igb_uio 0000:86:00.0: uio device registered with irq 134
[30044.173857] igb_uio 0000:86:00.1: uio device registered with irq 135
[30044.562181] rte_kni: Creating kni...
[30044.726832] rte_kni: Creating kni...
[30058.234562] igb_uio: Use MSIX interrupt by default
[30058.919958] igb_uio 0000:86:00.0: mapping 1K dma=0xe33942000 host=00000000d19cf0df
[30058.919963] igb_uio 0000:86:00.0: unmapping 1K dma=0xe33942000 host=00000000d19cf0df
[30058.920579] igb_uio 0000:86:00.1: mapping 1K dma=0xe33942000 host=00000000d19cf0df
[30058.920583] igb_uio 0000:86:00.1: unmapping 1K dma=0xe33942000 host=00000000d19cf0df
[30059.500504] igb_uio 0000:86:00.0: uio device registered with irq 134
[30059.700124] igb_uio 0000:86:00.1: uio device registered with irq 135
[30060.089298] rte_kni: Creating kni...
[30060.253930] rte_kni: Creating kni...
[30073.850748] igb_uio: Use MSIX interrupt by default
[30074.538809] igb_uio 0000:86:00.0: mapping 1K dma=0xe33e7d000 host=0000000003d88eb0
[30074.538815] igb_uio 0000:86:00.0: unmapping 1K dma=0xe33e7d000 host=0000000003d88eb0
[30074.539481] igb_uio 0000:86:00.1: mapping 1K dma=0xe33e7d000 host=0000000003d88eb0
[30074.539485] igb_uio 0000:86:00.1: unmapping 1K dma=0xe33e7d000 host=0000000003d88eb0
[30075.104015] igb_uio 0000:86:00.0: uio device registered with irq 134
[30075.302736] igb_uio 0000:86:00.1: uio device registered with irq 135
[30075.691207] rte_kni: Creating kni...
[30075.855874] rte_kni: Creating kni...
[30089.454568] igb_uio: Use MSIX interrupt by default
[30090.150508] igb_uio 0000:86:00.0: mapping 1K dma=0xded639000 host=000000008276a667
[30090.150517] igb_uio 0000:86:00.0: unmapping 1K dma=0xded639000 host=000000008276a667
[30090.151128] igb_uio 0000:86:00.1: mapping 1K dma=0xded639000 host=000000008276a667
[30090.151132] igb_uio 0000:86:00.1: unmapping 1K dma=0xded639000 host=000000008276a667
[30090.224115] rte_kni: Invalid parameter for kthread_mode
[30090.800452] igb_uio 0000:86:00.0: uio device registered with irq 134
[30090.999034] igb_uio 0000:86:00.1: uio device registered with irq 135
[30112.142918] igb_uio: Use MSIX interrupt by default
[30112.835576] igb_uio 0000:86:00.0: mapping 1K dma=0xdf45f7000 host=00000000f5aa54d9
[30112.835582] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf45f7000 host=00000000f5aa54d9
[30112.836473] igb_uio 0000:86:00.1: mapping 1K dma=0xdf45f7000 host=00000000f5aa54d9
[30112.836478] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf45f7000 host=00000000f5aa54d9
[30113.409772] igb_uio 0000:86:00.0: uio device registered with irq 134
[30113.608547] igb_uio 0000:86:00.1: uio device registered with irq 135
[30113.997238] rte_kni: Creating kni...
[30114.161948] rte_kni: Creating kni...
[30128.878318] igb_uio: Use MSIX interrupt by default
[30129.562782] igb_uio 0000:86:00.0: mapping 1K dma=0x10534a5000 host=000000007da26b3b
[30129.562788] igb_uio 0000:86:00.0: unmapping 1K dma=0x10534a5000 host=000000007da26b3b
[30129.563514] igb_uio 0000:86:00.1: mapping 1K dma=0x10534a5000 host=000000007da26b3b
[30129.563518] igb_uio 0000:86:00.1: unmapping 1K dma=0x10534a5000 host=000000007da26b3b
[30130.117316] igb_uio 0000:86:00.0: uio device registered with irq 134
[30130.316477] igb_uio 0000:86:00.1: uio device registered with irq 135
[30130.705684] rte_kni: Creating kni...
[30130.870342] rte_kni: Creating kni...
[30144.366457] igb_uio: Use MSIX interrupt by default
[30145.050255] igb_uio 0000:86:00.0: mapping 1K dma=0xe334cd000 host=0000000066cf8443
[30145.050261] igb_uio 0000:86:00.0: unmapping 1K dma=0xe334cd000 host=0000000066cf8443
[30145.051012] igb_uio 0000:86:00.1: mapping 1K dma=0xe334cd000 host=0000000066cf8443
[30145.051016] igb_uio 0000:86:00.1: unmapping 1K dma=0xe334cd000 host=0000000066cf8443
[30145.124409] rte_kni: Invalid parameter for kthread_mode
[30145.661960] igb_uio 0000:86:00.0: uio device registered with irq 134
[30145.860662] igb_uio 0000:86:00.1: uio device registered with irq 135
[30167.026978] igb_uio: Use MSIX interrupt by default
[30167.715807] igb_uio 0000:86:00.0: mapping 1K dma=0xe21408000 host=00000000355c053c
[30167.715813] igb_uio 0000:86:00.0: unmapping 1K dma=0xe21408000 host=00000000355c053c
[30167.716463] igb_uio 0000:86:00.1: mapping 1K dma=0xe21408000 host=00000000355c053c
[30167.716467] igb_uio 0000:86:00.1: unmapping 1K dma=0xe21408000 host=00000000355c053c
[30168.273469] igb_uio 0000:86:00.0: uio device registered with irq 134
[30168.471925] igb_uio 0000:86:00.1: uio device registered with irq 135
[30168.860112] rte_kni: Creating kni...
[30169.024709] rte_kni: Creating kni...
[30183.729982] igb_uio: Use MSIX interrupt by default
[30184.409704] igb_uio 0000:86:00.0: mapping 1K dma=0xe33456000 host=000000009216bdc1
[30184.409710] igb_uio 0000:86:00.0: unmapping 1K dma=0xe33456000 host=000000009216bdc1
[30184.410175] igb_uio 0000:86:00.1: mapping 1K dma=0xe33456000 host=000000009216bdc1
[30184.410179] igb_uio 0000:86:00.1: unmapping 1K dma=0xe33456000 host=000000009216bdc1
[30184.967746] igb_uio 0000:86:00.0: uio device registered with irq 134
[30185.166164] igb_uio 0000:86:00.1: uio device registered with irq 135
[30185.554007] rte_kni: Creating kni...
[30185.718762] rte_kni: Creating kni...
[30199.326428] igb_uio: Use MSIX interrupt by default
[30200.009979] igb_uio 0000:86:00.0: mapping 1K dma=0xdf215c000 host=0000000069e0aa69
[30200.009985] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf215c000 host=0000000069e0aa69
[30200.010637] igb_uio 0000:86:00.1: mapping 1K dma=0xdf215c000 host=0000000069e0aa69
[30200.010641] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf215c000 host=0000000069e0aa69
[30200.569425] igb_uio 0000:86:00.0: uio device registered with irq 134
[30200.768562] igb_uio 0000:86:00.1: uio device registered with irq 135
[30201.157966] rte_kni: Creating kni...
[30201.322615] rte_kni: Creating kni...
[30214.830370] igb_uio: Use MSIX interrupt by default
[30215.511817] igb_uio 0000:86:00.0: mapping 1K dma=0xded4ba000 host=00000000b9fe8dd6
[30215.511823] igb_uio 0000:86:00.0: unmapping 1K dma=0xded4ba000 host=00000000b9fe8dd6
[30215.512404] igb_uio 0000:86:00.1: mapping 1K dma=0xded4ba000 host=00000000b9fe8dd6
[30215.512408] igb_uio 0000:86:00.1: unmapping 1K dma=0xded4ba000 host=00000000b9fe8dd6
[30216.066596] igb_uio 0000:86:00.0: uio device registered with irq 134
[30216.266012] igb_uio 0000:86:00.1: uio device registered with irq 135
[30216.654697] rte_kni: Creating kni...
[30216.819387] rte_kni: Creating kni...
[30230.397149] igb_uio: Use MSIX interrupt by default
[30231.088474] igb_uio 0000:86:00.0: mapping 1K dma=0xe339d6000 host=000000001d86ae2c
[30231.088480] igb_uio 0000:86:00.0: unmapping 1K dma=0xe339d6000 host=000000001d86ae2c
[30231.089036] igb_uio 0000:86:00.1: mapping 1K dma=0xe339d6000 host=000000001d86ae2c
[30231.089040] igb_uio 0000:86:00.1: unmapping 1K dma=0xe339d6000 host=000000001d86ae2c
[30231.659297] igb_uio 0000:86:00.0: uio device registered with irq 134
[30231.857574] igb_uio 0000:86:00.1: uio device registered with irq 135
[30232.246080] rte_kni: Creating kni...
[30232.410650] rte_kni: Creating kni...
[30245.918386] igb_uio: Use MSIX interrupt by default
[30246.609844] igb_uio 0000:86:00.0: mapping 1K dma=0xdea859000 host=000000009c47b241
[30246.609850] igb_uio 0000:86:00.0: unmapping 1K dma=0xdea859000 host=000000009c47b241
[30246.610582] igb_uio 0000:86:00.1: mapping 1K dma=0xdea859000 host=000000009c47b241
[30246.610586] igb_uio 0000:86:00.1: unmapping 1K dma=0xdea859000 host=000000009c47b241
[30247.171813] igb_uio 0000:86:00.0: uio device registered with irq 134
[30247.370237] igb_uio 0000:86:00.1: uio device registered with irq 135
[30247.758630] rte_kni: Creating kni...
[30247.923238] rte_kni: Creating kni...
[30261.442769] igb_uio: Use MSIX interrupt by default
[30262.129387] igb_uio 0000:86:00.0: mapping 1K dma=0xe1f236000 host=00000000a39974f2
[30262.129393] igb_uio 0000:86:00.0: unmapping 1K dma=0xe1f236000 host=00000000a39974f2
[30262.129875] igb_uio 0000:86:00.1: mapping 1K dma=0xe1f236000 host=00000000a39974f2
[30262.129879] igb_uio 0000:86:00.1: unmapping 1K dma=0xe1f236000 host=00000000a39974f2
[30262.688858] igb_uio 0000:86:00.0: uio device registered with irq 134
[30262.887828] igb_uio 0000:86:00.1: uio device registered with irq 135
[30263.275923] rte_kni: Creating kni...
[30263.440658] rte_kni: Creating kni...
[30277.034298] igb_uio: Use MSIX interrupt by default
[30277.720001] igb_uio 0000:86:00.0: mapping 1K dma=0xde9ed6000 host=000000003ea60037
[30277.720007] igb_uio 0000:86:00.0: unmapping 1K dma=0xde9ed6000 host=000000003ea60037
[30277.720595] igb_uio 0000:86:00.1: mapping 1K dma=0xde9ed6000 host=000000003ea60037
[30277.720599] igb_uio 0000:86:00.1: unmapping 1K dma=0xde9ed6000 host=000000003ea60037
[30278.289088] igb_uio 0000:86:00.0: uio device registered with irq 134
[30278.488080] igb_uio 0000:86:00.1: uio device registered with irq 135
[30278.876827] rte_kni: Creating kni...
[30279.041496] rte_kni: Creating kni...
[30292.622742] igb_uio: Use MSIX interrupt by default
[30293.312243] igb_uio 0000:86:00.0: mapping 1K dma=0x1053ab2000 host=00000000370f4b6f
[30293.312249] igb_uio 0000:86:00.0: unmapping 1K dma=0x1053ab2000 host=00000000370f4b6f
[30293.313132] igb_uio 0000:86:00.1: mapping 1K dma=0x1053ab2000 host=00000000370f4b6f
[30293.313137] igb_uio 0000:86:00.1: unmapping 1K dma=0x1053ab2000 host=00000000370f4b6f
[30293.386009] rte_kni: Invalid parameter for kthread_mode
[30293.928661] igb_uio 0000:86:00.0: uio device registered with irq 134
[30294.127717] igb_uio 0000:86:00.1: uio device registered with irq 135
[30315.246853] igb_uio: Use MSIX interrupt by default
[30315.931334] igb_uio 0000:86:00.0: mapping 1K dma=0xe33e58000 host=000000009d4efbc6
[30315.931340] igb_uio 0000:86:00.0: unmapping 1K dma=0xe33e58000 host=000000009d4efbc6
[30315.931961] igb_uio 0000:86:00.1: mapping 1K dma=0xe33e58000 host=000000009d4efbc6
[30315.931965] igb_uio 0000:86:00.1: unmapping 1K dma=0xe33e58000 host=000000009d4efbc6
[30316.490568] igb_uio 0000:86:00.0: uio device registered with irq 134
[30316.689308] igb_uio 0000:86:00.1: uio device registered with irq 135
[30317.078044] rte_kni: Creating kni...
[30317.242652] rte_kni: Creating kni...
[30331.966362] igb_uio: Use MSIX interrupt by default
[30332.655563] igb_uio 0000:86:00.0: mapping 1K dma=0xe2b819000 host=00000000ce374fa3
[30332.655566] igb_uio 0000:86:00.0: unmapping 1K dma=0xe2b819000 host=00000000ce374fa3
[30332.655819] igb_uio 0000:86:00.1: mapping 1K dma=0xe2b819000 host=00000000ce374fa3
[30332.655821] igb_uio 0000:86:00.1: unmapping 1K dma=0xe2b819000 host=00000000ce374fa3
[30333.213806] igb_uio 0000:86:00.0: uio device registered with irq 134
[30333.413128] igb_uio 0000:86:00.1: uio device registered with irq 135
[30333.802286] rte_kni: Creating kni...
[30333.967010] rte_kni: Creating kni...
[30347.473977] igb_uio: Use MSIX interrupt by default
[30348.165479] igb_uio 0000:86:00.0: mapping 1K dma=0xdf4e9e000 host=00000000bb627833
[30348.165485] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf4e9e000 host=00000000bb627833
[30348.165947] igb_uio 0000:86:00.1: mapping 1K dma=0xdf4e9e000 host=00000000bb627833
[30348.165951] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf4e9e000 host=00000000bb627833
[30348.238566] rte_kni: Invalid parameter for kthread_mode
[30348.792134] igb_uio 0000:86:00.0: uio device registered with irq 134
[30348.990167] igb_uio 0000:86:00.1: uio device registered with irq 135
[30370.135031] igb_uio: Use MSIX interrupt by default
[30370.828423] igb_uio 0000:86:00.0: mapping 1K dma=0xe21b5b000 host=0000000083569eee
[30370.828426] igb_uio 0000:86:00.0: unmapping 1K dma=0xe21b5b000 host=0000000083569eee
[30370.829009] igb_uio 0000:86:00.1: mapping 1K dma=0xe21b5b000 host=0000000083569eee
[30370.829011] igb_uio 0000:86:00.1: unmapping 1K dma=0xe21b5b000 host=0000000083569eee
[30371.407906] igb_uio 0000:86:00.0: uio device registered with irq 134
[30371.606688] igb_uio 0000:86:00.1: uio device registered with irq 135
[30371.995208] rte_kni: Creating kni...
[30372.159801] rte_kni: Creating kni...
[30386.866388] igb_uio: Use MSIX interrupt by default
[30387.554896] igb_uio 0000:86:00.0: mapping 1K dma=0xde99bf000 host=0000000066d8b214
[30387.554902] igb_uio 0000:86:00.0: unmapping 1K dma=0xde99bf000 host=0000000066d8b214
[30387.555629] igb_uio 0000:86:00.1: mapping 1K dma=0xde99bf000 host=0000000066d8b214
[30387.555633] igb_uio 0000:86:00.1: unmapping 1K dma=0xde99bf000 host=0000000066d8b214
[30388.118662] igb_uio 0000:86:00.0: uio device registered with irq 134
[30388.318094] igb_uio 0000:86:00.1: uio device registered with irq 135
[30388.706289] rte_kni: Creating kni...
[30388.870763] rte_kni: Creating kni...
[30402.486380] igb_uio: Use MSIX interrupt by default
[30403.175811] igb_uio 0000:86:00.0: mapping 1K dma=0xe34229000 host=0000000056dba948
[30403.175817] igb_uio 0000:86:00.0: unmapping 1K dma=0xe34229000 host=0000000056dba948
[30403.176563] igb_uio 0000:86:00.1: mapping 1K dma=0xe34229000 host=0000000056dba948
[30403.176567] igb_uio 0000:86:00.1: unmapping 1K dma=0xe34229000 host=0000000056dba948
[30403.733092] igb_uio 0000:86:00.0: uio device registered with irq 134
[30403.931863] igb_uio 0000:86:00.1: uio device registered with irq 135
[30404.320736] rte_kni: Creating kni...
[30404.485355] rte_kni: Creating kni...
[30418.010581] igb_uio: Use MSIX interrupt by default
[30418.692789] igb_uio 0000:86:00.0: mapping 1K dma=0x1052889000 host=00000000716d29b4
[30418.692794] igb_uio 0000:86:00.0: unmapping 1K dma=0x1052889000 host=00000000716d29b4
[30418.693578] igb_uio 0000:86:00.1: mapping 1K dma=0x1052889000 host=00000000716d29b4
[30418.693582] igb_uio 0000:86:00.1: unmapping 1K dma=0x1052889000 host=00000000716d29b4
[30419.268246] igb_uio 0000:86:00.0: uio device registered with irq 134
[30419.466796] igb_uio 0000:86:00.1: uio device registered with irq 135
[30419.855952] rte_kni: Creating kni...
[30420.020541] rte_kni: Creating kni...
[30433.538634] igb_uio: Use MSIX interrupt by default
[30434.220201] igb_uio 0000:86:00.0: mapping 1K dma=0x10544d1000 host=0000000005844cd4
[30434.220207] igb_uio 0000:86:00.0: unmapping 1K dma=0x10544d1000 host=0000000005844cd4
[30434.221061] igb_uio 0000:86:00.1: mapping 1K dma=0x10544d1000 host=0000000005844cd4
[30434.221066] igb_uio 0000:86:00.1: unmapping 1K dma=0x10544d1000 host=0000000005844cd4
[30434.774330] igb_uio 0000:86:00.0: uio device registered with irq 134
[30434.973013] igb_uio 0000:86:00.1: uio device registered with irq 135
[30435.362099] rte_kni: Creating kni...
[30435.526823] rte_kni: Creating kni...
[30449.054243] igb_uio: Use MSIX interrupt by default
[30449.737371] igb_uio 0000:86:00.0: mapping 1K dma=0xdea06d000 host=00000000618e51db
[30449.737377] igb_uio 0000:86:00.0: unmapping 1K dma=0xdea06d000 host=00000000618e51db
[30449.737867] igb_uio 0000:86:00.1: mapping 1K dma=0xdea06d000 host=00000000618e51db
[30449.737870] igb_uio 0000:86:00.1: unmapping 1K dma=0xdea06d000 host=00000000618e51db
[30450.298899] igb_uio 0000:86:00.0: uio device registered with irq 134
[30450.496939] igb_uio 0000:86:00.1: uio device registered with irq 135
[30450.884905] rte_kni: Creating kni...
[30451.049541] rte_kni: Creating kni...
[30464.570585] igb_uio: Use MSIX interrupt by default
[30465.249686] igb_uio 0000:86:00.0: mapping 1K dma=0x1055a8e000 host=000000000da3d5ab
[30465.249692] igb_uio 0000:86:00.0: unmapping 1K dma=0x1055a8e000 host=000000000da3d5ab
[30465.250092] igb_uio 0000:86:00.1: mapping 1K dma=0x1055a8e000 host=000000000da3d5ab
[30465.250095] igb_uio 0000:86:00.1: unmapping 1K dma=0x1055a8e000 host=000000000da3d5ab
[30465.828081] igb_uio 0000:86:00.0: uio device registered with irq 134
[30466.026818] igb_uio 0000:86:00.1: uio device registered with irq 135
[30466.414921] rte_kni: Creating kni...
[30466.579296] rte_kni: Creating kni...
[30480.181986] igb_uio: Use MSIX interrupt by default
[30480.865270] igb_uio 0000:86:00.0: mapping 1K dma=0xdf51ea000 host=000000001bbb417e
[30480.865276] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf51ea000 host=000000001bbb417e
[30480.865744] igb_uio 0000:86:00.1: mapping 1K dma=0xdf51ea000 host=000000001bbb417e
[30480.865748] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf51ea000 host=000000001bbb417e
[30481.433494] igb_uio 0000:86:00.0: uio device registered with irq 134
[30481.632111] igb_uio 0000:86:00.1: uio device registered with irq 135
[30482.020681] rte_kni: Creating kni...
[30482.185439] rte_kni: Creating kni...
[30495.806421] igb_uio: Use MSIX interrupt by default
[30496.490093] igb_uio 0000:86:00.0: mapping 1K dma=0xdf1a5d000 host=00000000cb918114
[30496.490099] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf1a5d000 host=00000000cb918114
[30496.490774] igb_uio 0000:86:00.1: mapping 1K dma=0xdf1a5d000 host=00000000cb918114
[30496.490778] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf1a5d000 host=00000000cb918114
[30496.563004] rte_kni: Invalid parameter for kthread_mode
[30497.142930] igb_uio 0000:86:00.0: uio device registered with irq 134
[30497.340802] igb_uio 0000:86:00.1: uio device registered with irq 135
[30518.487125] igb_uio: Use MSIX interrupt by default
[30519.172945] igb_uio 0000:86:00.0: mapping 1K dma=0xdc70f6000 host=0000000048e9536d
[30519.172951] igb_uio 0000:86:00.0: unmapping 1K dma=0xdc70f6000 host=0000000048e9536d
[30519.173589] igb_uio 0000:86:00.1: mapping 1K dma=0xdc70f6000 host=0000000048e9536d
[30519.173593] igb_uio 0000:86:00.1: unmapping 1K dma=0xdc70f6000 host=0000000048e9536d
[30519.734699] igb_uio 0000:86:00.0: uio device registered with irq 134
[30519.934235] igb_uio 0000:86:00.1: uio device registered with irq 135
[30520.323505] rte_kni: Creating kni...
[30520.488188] rte_kni: Creating kni...
[30535.206529] igb_uio: Use MSIX interrupt by default
[30535.899372] igb_uio 0000:86:00.0: mapping 1K dma=0xe2eeb7000 host=00000000e4ecce1d
[30535.899378] igb_uio 0000:86:00.0: unmapping 1K dma=0xe2eeb7000 host=00000000e4ecce1d
[30535.900020] igb_uio 0000:86:00.1: mapping 1K dma=0xe2eeb7000 host=00000000e4ecce1d
[30535.900023] igb_uio 0000:86:00.1: unmapping 1K dma=0xe2eeb7000 host=00000000e4ecce1d
[30536.449376] igb_uio 0000:86:00.0: uio device registered with irq 134
[30536.648696] igb_uio 0000:86:00.1: uio device registered with irq 135
[30537.038010] rte_kni: Creating kni...
[30537.202629] rte_kni: Creating kni...
[30550.677900] igb_uio: Use MSIX interrupt by default
[30551.366217] igb_uio 0000:86:00.0: mapping 1K dma=0xdf2683000 host=000000009f11c505
[30551.366223] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf2683000 host=000000009f11c505
[30551.366922] igb_uio 0000:86:00.1: mapping 1K dma=0xdf2683000 host=000000009f11c505
[30551.366926] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf2683000 host=000000009f11c505
[30551.440251] rte_kni: Invalid parameter for kthread_mode
[30551.985465] igb_uio 0000:86:00.0: uio device registered with irq 134
[30552.182781] igb_uio 0000:86:00.1: uio device registered with irq 135
[30573.318904] igb_uio: Use MSIX interrupt by default
[30574.012868] igb_uio 0000:86:00.0: mapping 1K dma=0x1051d24000 host=0000000023ca475f
[30574.012875] igb_uio 0000:86:00.0: unmapping 1K dma=0x1051d24000 host=0000000023ca475f
[30574.013929] igb_uio 0000:86:00.1: mapping 1K dma=0x1051d24000 host=0000000023ca475f
[30574.013935] igb_uio 0000:86:00.1: unmapping 1K dma=0x1051d24000 host=0000000023ca475f
[30574.580197] igb_uio 0000:86:00.0: uio device registered with irq 134
[30574.779552] igb_uio 0000:86:00.1: uio device registered with irq 135
[30575.168661] rte_kni: Creating kni...
[30575.333382] rte_kni: Creating kni...
[30589.902489] igb_uio: Use MSIX interrupt by default
[30590.599340] igb_uio 0000:86:00.0: mapping 1K dma=0xe335c3000 host=00000000d07fefb0
[30590.599346] igb_uio 0000:86:00.0: unmapping 1K dma=0xe335c3000 host=00000000d07fefb0
[30590.599934] igb_uio 0000:86:00.1: mapping 1K dma=0xe335c3000 host=00000000d07fefb0
[30590.599938] igb_uio 0000:86:00.1: unmapping 1K dma=0xe335c3000 host=00000000d07fefb0
[30591.158634] igb_uio 0000:86:00.0: uio device registered with irq 134
[30591.357374] igb_uio 0000:86:00.1: uio device registered with irq 135
[30591.746228] rte_kni: Creating kni...
[30591.910748] rte_kni: Creating kni...
[30605.550307] igb_uio: Use MSIX interrupt by default
[30606.242169] igb_uio 0000:86:00.0: mapping 1K dma=0x1053863000 host=00000000b5ab383d
[30606.242175] igb_uio 0000:86:00.0: unmapping 1K dma=0x1053863000 host=00000000b5ab383d
[30606.242933] igb_uio 0000:86:00.1: mapping 1K dma=0x1053863000 host=00000000b5ab383d
[30606.242936] igb_uio 0000:86:00.1: unmapping 1K dma=0x1053863000 host=00000000b5ab383d
[30606.812149] igb_uio 0000:86:00.0: uio device registered with irq 134
[30607.011316] igb_uio 0000:86:00.1: uio device registered with irq 135
[30607.400109] rte_kni: Creating kni...
[30607.564620] rte_kni: Creating kni...
[30621.074664] igb_uio: Use MSIX interrupt by default
[30621.765674] igb_uio 0000:86:00.0: mapping 1K dma=0xe33456000 host=000000009216bdc1
[30621.765680] igb_uio 0000:86:00.0: unmapping 1K dma=0xe33456000 host=000000009216bdc1
[30621.766098] igb_uio 0000:86:00.1: mapping 1K dma=0xe33456000 host=000000009216bdc1
[30621.766102] igb_uio 0000:86:00.1: unmapping 1K dma=0xe33456000 host=000000009216bdc1
[30622.331496] igb_uio 0000:86:00.0: uio device registered with irq 134
[30622.530036] igb_uio 0000:86:00.1: uio device registered with irq 135
[30622.918445] rte_kni: Creating kni...
[30623.083019] rte_kni: Creating kni...
[30636.638514] igb_uio: Use MSIX interrupt by default
[30637.325985] igb_uio 0000:86:00.0: mapping 1K dma=0xdf5286000 host=00000000e03ba4c2
[30637.325991] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf5286000 host=00000000e03ba4c2
[30637.326636] igb_uio 0000:86:00.1: mapping 1K dma=0xdf5286000 host=00000000e03ba4c2
[30637.326640] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf5286000 host=00000000e03ba4c2
[30637.900189] igb_uio 0000:86:00.0: uio device registered with irq 134
[30638.098795] igb_uio 0000:86:00.1: uio device registered with irq 135
[30638.486796] rte_kni: Creating kni...
[30638.651263] rte_kni: Creating kni...
[30652.186600] igb_uio: Use MSIX interrupt by default
[30652.869180] igb_uio 0000:86:00.0: mapping 1K dma=0xe2c026000 host=000000004c1557ee
[30652.869186] igb_uio 0000:86:00.0: unmapping 1K dma=0xe2c026000 host=000000004c1557ee
[30652.869860] igb_uio 0000:86:00.1: mapping 1K dma=0xe2c026000 host=000000004c1557ee
[30652.869864] igb_uio 0000:86:00.1: unmapping 1K dma=0xe2c026000 host=000000004c1557ee
[30652.942042] rte_kni: Invalid parameter for kthread_mode
[30653.492228] igb_uio 0000:86:00.0: uio device registered with irq 134
[30653.691167] igb_uio 0000:86:00.1: uio device registered with irq 135
[30674.843088] igb_uio: Use MSIX interrupt by default
[30675.537450] igb_uio 0000:86:00.0: mapping 1K dma=0xdf272a000 host=000000006c0d7376
[30675.537454] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf272a000 host=000000006c0d7376
[30675.537784] igb_uio 0000:86:00.1: mapping 1K dma=0xdf272a000 host=000000006c0d7376
[30675.537785] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf272a000 host=000000006c0d7376
[30676.118138] igb_uio 0000:86:00.0: uio device registered with irq 134
[30676.316807] igb_uio 0000:86:00.1: uio device registered with irq 135
[30676.705924] rte_kni: Creating kni...
[30676.870704] rte_kni: Creating kni...
[30691.606470] igb_uio: Use MSIX interrupt by default
[30692.302026] igb_uio 0000:86:00.0: mapping 1K dma=0xe215e4000 host=000000008be4d5e2
[30692.302033] igb_uio 0000:86:00.0: unmapping 1K dma=0xe215e4000 host=000000008be4d5e2
[30692.302637] igb_uio 0000:86:00.1: mapping 1K dma=0xe215e4000 host=000000008be4d5e2
[30692.302641] igb_uio 0000:86:00.1: unmapping 1K dma=0xe215e4000 host=000000008be4d5e2
[30692.863729] igb_uio 0000:86:00.0: uio device registered with irq 134
[30693.062439] igb_uio 0000:86:00.1: uio device registered with irq 135
[30693.450999] rte_kni: Creating kni...
[30693.615627] rte_kni: Creating kni...
[30707.198521] igb_uio: Use MSIX interrupt by default
[30707.864538] igb_uio 0000:86:00.0: mapping 1K dma=0xe1f0d1000 host=00000000c005cbd7
[30707.864544] igb_uio 0000:86:00.0: unmapping 1K dma=0xe1f0d1000 host=00000000c005cbd7
[30707.865235] igb_uio 0000:86:00.1: mapping 1K dma=0xe1f0d1000 host=00000000c005cbd7
[30707.865239] igb_uio 0000:86:00.1: unmapping 1K dma=0xe1f0d1000 host=00000000c005cbd7
[30708.435845] igb_uio 0000:86:00.0: uio device registered with irq 134
[30708.634324] igb_uio 0000:86:00.1: uio device registered with irq 135
[30709.023290] rte_kni: Creating kni...
[30709.187991] rte_kni: Creating kni...
[30722.698263] igb_uio: Use MSIX interrupt by default
[30723.385275] igb_uio 0000:86:00.0: mapping 1K dma=0xdec376000 host=0000000014b33145
[30723.385281] igb_uio 0000:86:00.0: unmapping 1K dma=0xdec376000 host=0000000014b33145
[30723.385722] igb_uio 0000:86:00.1: mapping 1K dma=0xdec376000 host=0000000014b33145
[30723.385725] igb_uio 0000:86:00.1: unmapping 1K dma=0xdec376000 host=0000000014b33145
[30723.941588] igb_uio 0000:86:00.0: uio device registered with irq 134
[30724.141012] igb_uio 0000:86:00.1: uio device registered with irq 135
[30724.530071] rte_kni: Creating kni...
[30724.694817] rte_kni: Creating kni...
[30738.185939] igb_uio: Use MSIX interrupt by default
[30738.867697] igb_uio 0000:86:00.0: mapping 1K dma=0xe1ef87000 host=00000000e46a700f
[30738.867702] igb_uio 0000:86:00.0: unmapping 1K dma=0xe1ef87000 host=00000000e46a700f
[30738.868550] igb_uio 0000:86:00.1: mapping 1K dma=0xe1ef87000 host=00000000e46a700f
[30738.868555] igb_uio 0000:86:00.1: unmapping 1K dma=0xe1ef87000 host=00000000e46a700f
[30739.434619] igb_uio 0000:86:00.0: uio device registered with irq 134
[30739.633777] igb_uio 0000:86:00.1: uio device registered with irq 135
[30740.022636] rte_kni: Creating kni...
[30740.187234] rte_kni: Creating kni...
[30753.801956] igb_uio: Use MSIX interrupt by default
[30754.485654] igb_uio 0000:86:00.0: mapping 1K dma=0xdf4407000 host=000000005fbdbf3f
[30754.485659] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf4407000 host=000000005fbdbf3f
[30754.486112] igb_uio 0000:86:00.1: mapping 1K dma=0xdf4407000 host=000000005fbdbf3f
[30754.486115] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf4407000 host=000000005fbdbf3f
[30754.559680] rte_kni: Invalid parameter for kthread_mode
[30755.068790] igb_uio 0000:86:00.0: uio device registered with irq 134
[30755.267609] igb_uio 0000:86:00.1: uio device registered with irq 135
[30776.466885] igb_uio: Use MSIX interrupt by default
[30777.153789] igb_uio 0000:86:00.0: mapping 1K dma=0xdf18c0000 host=0000000046d1bc06
[30777.153792] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf18c0000 host=0000000046d1bc06
[30777.154136] igb_uio 0000:86:00.1: mapping 1K dma=0xdf18c0000 host=0000000046d1bc06
[30777.154138] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf18c0000 host=0000000046d1bc06
[30777.709517] igb_uio 0000:86:00.0: uio device registered with irq 134
[30777.908722] igb_uio 0000:86:00.1: uio device registered with irq 135
[30778.298093] rte_kni: Creating kni...
[30778.462953] rte_kni: Creating kni...
[30793.066344] igb_uio: Use MSIX interrupt by default
[30793.756796] igb_uio 0000:86:00.0: mapping 1K dma=0x105483e000 host=000000006a8f88bd
[30793.756802] igb_uio 0000:86:00.0: unmapping 1K dma=0x105483e000 host=000000006a8f88bd
[30793.757476] igb_uio 0000:86:00.1: mapping 1K dma=0x105483e000 host=000000006a8f88bd
[30793.757481] igb_uio 0000:86:00.1: unmapping 1K dma=0x105483e000 host=000000006a8f88bd
[30794.313253] igb_uio 0000:86:00.0: uio device registered with irq 134
[30794.511731] igb_uio 0000:86:00.1: uio device registered with irq 135
[30794.900101] rte_kni: Creating kni...
[30795.064838] rte_kni: Creating kni...
[30808.706437] igb_uio: Use MSIX interrupt by default
[30809.393443] igb_uio 0000:86:00.0: mapping 1K dma=0x10449d9000 host=000000000831e03f
[30809.393449] igb_uio 0000:86:00.0: unmapping 1K dma=0x10449d9000 host=000000000831e03f
[30809.394196] igb_uio 0000:86:00.1: mapping 1K dma=0x10449d9000 host=000000000831e03f
[30809.394201] igb_uio 0000:86:00.1: unmapping 1K dma=0x10449d9000 host=000000000831e03f
[30809.958941] igb_uio 0000:86:00.0: uio device registered with irq 134
[30810.157599] igb_uio 0000:86:00.1: uio device registered with irq 135
[30810.546235] rte_kni: Creating kni...
[30810.710947] rte_kni: Creating kni...
[30824.214703] igb_uio: Use MSIX interrupt by default
[30824.900277] igb_uio 0000:86:00.0: mapping 1K dma=0x1053616000 host=00000000e9e8e47b
[30824.900280] igb_uio 0000:86:00.0: unmapping 1K dma=0x1053616000 host=00000000e9e8e47b
[30824.900636] igb_uio 0000:86:00.1: mapping 1K dma=0x1053616000 host=00000000e9e8e47b
[30824.900638] igb_uio 0000:86:00.1: unmapping 1K dma=0x1053616000 host=00000000e9e8e47b
[30825.473053] igb_uio 0000:86:00.0: uio device registered with irq 134
[30825.671686] igb_uio 0000:86:00.1: uio device registered with irq 135
[30826.059962] rte_kni: Creating kni...
[30826.224558] rte_kni: Creating kni...
[30839.829602] igb_uio: Use MSIX interrupt by default
[30840.498150] igb_uio 0000:86:00.0: mapping 1K dma=0x1051dcd000 host=00000000ffc583c0
[30840.498156] igb_uio 0000:86:00.0: unmapping 1K dma=0x1051dcd000 host=00000000ffc583c0
[30840.498862] igb_uio 0000:86:00.1: mapping 1K dma=0x1051dcd000 host=00000000ffc583c0
[30840.498866] igb_uio 0000:86:00.1: unmapping 1K dma=0x1051dcd000 host=00000000ffc583c0
[30841.062457] igb_uio 0000:86:00.0: uio device registered with irq 134
[30841.261246] igb_uio 0000:86:00.1: uio device registered with irq 135
[30841.649958] rte_kni: Creating kni...
[30841.814692] rte_kni: Creating kni...
[30855.346272] igb_uio: Use MSIX interrupt by default
[30856.033325] igb_uio 0000:86:00.0: mapping 1K dma=0x1050eec000 host=0000000016f9dbb5
[30856.033331] igb_uio 0000:86:00.0: unmapping 1K dma=0x1050eec000 host=0000000016f9dbb5
[30856.033953] igb_uio 0000:86:00.1: mapping 1K dma=0x1050eec000 host=0000000016f9dbb5
[30856.033957] igb_uio 0000:86:00.1: unmapping 1K dma=0x1050eec000 host=0000000016f9dbb5
[30856.106084] rte_kni: Invalid parameter for kthread_mode
[30856.682799] igb_uio 0000:86:00.0: uio device registered with irq 134
[30856.881986] igb_uio 0000:86:00.1: uio device registered with irq 135
[30878.010695] igb_uio: Use MSIX interrupt by default
[30878.700004] igb_uio 0000:86:00.0: mapping 1K dma=0xdf395e000 host=00000000e9f60fd4
[30878.700010] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf395e000 host=00000000e9f60fd4
[30878.700724] igb_uio 0000:86:00.1: mapping 1K dma=0xdf395e000 host=00000000e9f60fd4
[30878.700727] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf395e000 host=00000000e9f60fd4
[30879.257345] igb_uio 0000:86:00.0: uio device registered with irq 134
[30879.456121] igb_uio 0000:86:00.1: uio device registered with irq 135
[30879.844753] rte_kni: Creating kni...
[30880.009587] rte_kni: Creating kni...
[30894.722378] igb_uio: Use MSIX interrupt by default
[30895.408940] igb_uio 0000:86:00.0: mapping 1K dma=0x104d435000 host=00000000db342b13
[30895.408946] igb_uio 0000:86:00.0: unmapping 1K dma=0x104d435000 host=00000000db342b13
[30895.409769] igb_uio 0000:86:00.1: mapping 1K dma=0x104d435000 host=00000000db342b13
[30895.409774] igb_uio 0000:86:00.1: unmapping 1K dma=0x104d435000 host=00000000db342b13
[30895.975923] igb_uio 0000:86:00.0: uio device registered with irq 134
[30896.174686] igb_uio 0000:86:00.1: uio device registered with irq 135
[30896.562760] rte_kni: Creating kni...
[30896.727419] rte_kni: Creating kni...
[30910.462302] igb_uio: Use MSIX interrupt by default
[30911.146909] igb_uio 0000:86:00.0: mapping 1K dma=0xe1f18f000 host=000000000fb5ffd5
[30911.146915] igb_uio 0000:86:00.0: unmapping 1K dma=0xe1f18f000 host=000000000fb5ffd5
[30911.147814] igb_uio 0000:86:00.1: mapping 1K dma=0xe1f18f000 host=000000000fb5ffd5
[30911.147820] igb_uio 0000:86:00.1: unmapping 1K dma=0xe1f18f000 host=000000000fb5ffd5
[30911.718274] igb_uio 0000:86:00.0: uio device registered with irq 134
[30911.917051] igb_uio 0000:86:00.1: uio device registered with irq 135
[30912.306003] rte_kni: Creating kni...
[30912.470809] rte_kni: Creating kni...
[30926.070147] igb_uio: Use MSIX interrupt by default
[30926.761876] igb_uio 0000:86:00.0: mapping 1K dma=0x1051719000 host=00000000ead52c60
[30926.761882] igb_uio 0000:86:00.0: unmapping 1K dma=0x1051719000 host=00000000ead52c60
[30926.762606] igb_uio 0000:86:00.1: mapping 1K dma=0x1051719000 host=00000000ead52c60
[30926.762609] igb_uio 0000:86:00.1: unmapping 1K dma=0x1051719000 host=00000000ead52c60
[30927.328211] igb_uio 0000:86:00.0: uio device registered with irq 134
[30927.526906] igb_uio 0000:86:00.1: uio device registered with irq 135
[30927.915349] rte_kni: Creating kni...
[30928.079849] rte_kni: Creating kni...
[30941.618477] igb_uio: Use MSIX interrupt by default
[30942.312206] igb_uio 0000:86:00.0: mapping 1K dma=0xdf29f7000 host=00000000352d83df
[30942.312212] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf29f7000 host=00000000352d83df
[30942.312916] igb_uio 0000:86:00.1: mapping 1K dma=0xdf29f7000 host=00000000352d83df
[30942.312920] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf29f7000 host=00000000352d83df
[30942.899040] igb_uio 0000:86:00.0: uio device registered with irq 134
[30943.098449] igb_uio 0000:86:00.1: uio device registered with irq 135
[30943.487457] rte_kni: Creating kni...
[30943.652168] rte_kni: Creating kni...
[30957.150402] igb_uio: Use MSIX interrupt by default
[30957.837435] igb_uio 0000:86:00.0: mapping 1K dma=0xdec609000 host=00000000ba20d657
[30957.837441] igb_uio 0000:86:00.0: unmapping 1K dma=0xdec609000 host=00000000ba20d657
[30957.837886] igb_uio 0000:86:00.1: mapping 1K dma=0xdec609000 host=00000000ba20d657
[30957.837890] igb_uio 0000:86:00.1: unmapping 1K dma=0xdec609000 host=00000000ba20d657
[30958.395632] igb_uio 0000:86:00.0: uio device registered with irq 134
[30958.594222] igb_uio 0000:86:00.1: uio device registered with irq 135
[30958.983139] rte_kni: Creating kni...
[30959.147716] rte_kni: Creating kni...
[30972.658498] igb_uio: Use MSIX interrupt by default
[30973.347831] igb_uio 0000:86:00.0: mapping 1K dma=0x1051e5f000 host=00000000eb8dd175
[30973.347838] igb_uio 0000:86:00.0: unmapping 1K dma=0x1051e5f000 host=00000000eb8dd175
[30973.348482] igb_uio 0000:86:00.1: mapping 1K dma=0x1051e5f000 host=00000000eb8dd175
[30973.348486] igb_uio 0000:86:00.1: unmapping 1K dma=0x1051e5f000 host=00000000eb8dd175
[30973.421280] rte_kni: Invalid parameter for kthread_mode
[30973.968688] igb_uio 0000:86:00.0: uio device registered with irq 134
[30974.167828] igb_uio 0000:86:00.1: uio device registered with irq 135
[30995.319086] igb_uio: Use MSIX interrupt by default
[30996.013741] igb_uio 0000:86:00.0: mapping 1K dma=0xe1dd24000 host=00000000e1f94ab1
[30996.013747] igb_uio 0000:86:00.0: unmapping 1K dma=0xe1dd24000 host=00000000e1f94ab1
[30996.014316] igb_uio 0000:86:00.1: mapping 1K dma=0xe1dd24000 host=00000000e1f94ab1
[30996.014319] igb_uio 0000:86:00.1: unmapping 1K dma=0xe1dd24000 host=00000000e1f94ab1
[30996.087474] rte_kni: Invalid parameter for kthread_mode
[30996.658508] igb_uio 0000:86:00.0: uio device registered with irq 134
[30996.857436] igb_uio 0000:86:00.1: uio device registered with irq 135
[31017.990635] igb_uio: Use MSIX interrupt by default
[31018.681566] igb_uio 0000:86:00.0: mapping 1K dma=0x1044ff3000 host=000000009d18ad8d
[31018.681572] igb_uio 0000:86:00.0: unmapping 1K dma=0x1044ff3000 host=000000009d18ad8d
[31018.682042] igb_uio 0000:86:00.1: mapping 1K dma=0x1044ff3000 host=000000009d18ad8d
[31018.682046] igb_uio 0000:86:00.1: unmapping 1K dma=0x1044ff3000 host=000000009d18ad8d
[31019.237114] igb_uio 0000:86:00.0: uio device registered with irq 134
[31019.436341] igb_uio 0000:86:00.1: uio device registered with irq 135
[31019.825171] rte_kni: Creating kni...
[31019.990003] rte_kni: Creating kni...
[31033.634172] igb_uio: Use MSIX interrupt by default
[31034.319655] igb_uio 0000:86:00.0: mapping 1K dma=0xdf215b000 host=000000007f5c23ef
[31034.319661] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf215b000 host=000000007f5c23ef
[31034.320246] igb_uio 0000:86:00.1: mapping 1K dma=0xdf215b000 host=000000007f5c23ef
[31034.320250] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf215b000 host=000000007f5c23ef
[31034.893921] igb_uio 0000:86:00.0: uio device registered with irq 134
[31035.092644] igb_uio 0000:86:00.1: uio device registered with irq 135
[31035.481259] rte_kni: Creating kni...
[31035.645967] rte_kni: Creating kni...
[31049.142465] igb_uio: Use MSIX interrupt by default
[31049.829908] igb_uio 0000:86:00.0: mapping 1K dma=0xe334b8000 host=000000009747a8b3
[31049.829914] igb_uio 0000:86:00.0: unmapping 1K dma=0xe334b8000 host=000000009747a8b3
[31049.830580] igb_uio 0000:86:00.1: mapping 1K dma=0xe334b8000 host=000000009747a8b3
[31049.830584] igb_uio 0000:86:00.1: unmapping 1K dma=0xe334b8000 host=000000009747a8b3
[31050.391175] igb_uio 0000:86:00.0: uio device registered with irq 134
[31050.590782] igb_uio 0000:86:00.1: uio device registered with irq 135
[31050.979923] rte_kni: Creating kni...
[31051.144647] rte_kni: Creating kni...
[31064.650723] igb_uio: Use MSIX interrupt by default
[31065.333077] igb_uio 0000:86:00.0: mapping 1K dma=0xdea8c4000 host=0000000050edc00e
[31065.333083] igb_uio 0000:86:00.0: unmapping 1K dma=0xdea8c4000 host=0000000050edc00e
[31065.333760] igb_uio 0000:86:00.1: mapping 1K dma=0xdea8c4000 host=0000000050edc00e
[31065.333764] igb_uio 0000:86:00.1: unmapping 1K dma=0xdea8c4000 host=0000000050edc00e
[31065.889166] igb_uio 0000:86:00.0: uio device registered with irq 134
[31066.088757] igb_uio 0000:86:00.1: uio device registered with irq 135
[31066.478009] rte_kni: Creating kni...
[31066.642716] rte_kni: Creating kni...
[31080.181869] igb_uio: Use MSIX interrupt by default
[31080.872206] igb_uio 0000:86:00.0: mapping 1K dma=0xdec2bd000 host=0000000090fdd63a
[31080.872211] igb_uio 0000:86:00.0: unmapping 1K dma=0xdec2bd000 host=0000000090fdd63a
[31080.872963] igb_uio 0000:86:00.1: mapping 1K dma=0xdec2bd000 host=0000000090fdd63a
[31080.872967] igb_uio 0000:86:00.1: unmapping 1K dma=0xdec2bd000 host=0000000090fdd63a
[31081.440245] igb_uio 0000:86:00.0: uio device registered with irq 134
[31081.638973] igb_uio 0000:86:00.1: uio device registered with irq 135
[31082.027378] rte_kni: Creating kni...
[31082.192038] rte_kni: Creating kni...
[31095.802550] igb_uio: Use MSIX interrupt by default
[31096.486437] igb_uio 0000:86:00.0: mapping 1K dma=0xe1ec34000 host=000000004f7d7ab7
[31096.486443] igb_uio 0000:86:00.0: unmapping 1K dma=0xe1ec34000 host=000000004f7d7ab7
[31096.486881] igb_uio 0000:86:00.1: mapping 1K dma=0xe1ec34000 host=000000004f7d7ab7
[31096.486884] igb_uio 0000:86:00.1: unmapping 1K dma=0xe1ec34000 host=000000004f7d7ab7
[31097.040879] igb_uio 0000:86:00.0: uio device registered with irq 134
[31097.240281] igb_uio 0000:86:00.1: uio device registered with irq 135
[31097.629688] rte_kni: Creating kni...
[31097.794493] rte_kni: Creating kni...
[31111.314306] igb_uio: Use MSIX interrupt by default
[31112.000317] igb_uio 0000:86:00.0: mapping 1K dma=0xdc732e000 host=0000000050783de8
[31112.000322] igb_uio 0000:86:00.0: unmapping 1K dma=0xdc732e000 host=0000000050783de8
[31112.001081] igb_uio 0000:86:00.1: mapping 1K dma=0xdc732e000 host=0000000050783de8
[31112.001085] igb_uio 0000:86:00.1: unmapping 1K dma=0xdc732e000 host=0000000050783de8
[31112.557994] igb_uio 0000:86:00.0: uio device registered with irq 134
[31112.756824] igb_uio 0000:86:00.1: uio device registered with irq 135
[31113.145048] rte_kni: Creating kni...
[31113.309694] rte_kni: Creating kni...
[31126.814312] igb_uio: Use MSIX interrupt by default
[31127.502107] igb_uio 0000:86:00.0: mapping 1K dma=0xe1f236000 host=00000000a39974f2
[31127.502113] igb_uio 0000:86:00.0: unmapping 1K dma=0xe1f236000 host=00000000a39974f2
[31127.502803] igb_uio 0000:86:00.1: mapping 1K dma=0xe1f236000 host=00000000a39974f2
[31127.502807] igb_uio 0000:86:00.1: unmapping 1K dma=0xe1f236000 host=00000000a39974f2
[31128.064795] igb_uio 0000:86:00.0: uio device registered with irq 134
[31128.263642] igb_uio 0000:86:00.1: uio device registered with irq 135
[31128.652053] rte_kni: Creating kni...
[31128.816750] rte_kni: Creating kni...
[31142.534306] igb_uio: Use MSIX interrupt by default
[31143.224978] igb_uio 0000:86:00.0: mapping 1K dma=0xdf53fd000 host=0000000076f1adc5
[31143.224983] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf53fd000 host=0000000076f1adc5
[31143.225782] igb_uio 0000:86:00.1: mapping 1K dma=0xdf53fd000 host=0000000076f1adc5
[31143.225787] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf53fd000 host=0000000076f1adc5
[31143.793030] igb_uio 0000:86:00.0: uio device registered with irq 134
[31143.991813] igb_uio 0000:86:00.1: uio device registered with irq 135
[31144.380943] rte_kni: Creating kni...
[31144.545757] rte_kni: Creating kni...
[31158.262428] igb_uio: Use MSIX interrupt by default
[31158.953224] igb_uio 0000:86:00.0: mapping 1K dma=0x1051e4e000 host=00000000a1d5fe32
[31158.953230] igb_uio 0000:86:00.0: unmapping 1K dma=0x1051e4e000 host=00000000a1d5fe32
[31158.953706] igb_uio 0000:86:00.1: mapping 1K dma=0x1051e4e000 host=00000000a1d5fe32
[31158.953710] igb_uio 0000:86:00.1: unmapping 1K dma=0x1051e4e000 host=00000000a1d5fe32
[31159.026980] rte_kni: Invalid parameter for kthread_mode
[31159.570245] igb_uio 0000:86:00.0: uio device registered with irq 134
[31159.769438] igb_uio 0000:86:00.1: uio device registered with irq 135
[31180.914864] igb_uio: Use MSIX interrupt by default
[31181.606412] igb_uio 0000:86:00.0: mapping 1K dma=0x10553c4000 host=000000003067207b
[31181.606418] igb_uio 0000:86:00.0: unmapping 1K dma=0x10553c4000 host=000000003067207b
[31181.607077] igb_uio 0000:86:00.1: mapping 1K dma=0x10553c4000 host=000000003067207b
[31181.607081] igb_uio 0000:86:00.1: unmapping 1K dma=0x10553c4000 host=000000003067207b
[31181.680337] rte_kni: Invalid parameter for kthread_mode
[31182.232531] igb_uio 0000:86:00.0: uio device registered with irq 134
[31182.431276] igb_uio 0000:86:00.1: uio device registered with irq 135
[31203.583136] igb_uio: Use MSIX interrupt by default
[31204.265583] igb_uio 0000:86:00.0: mapping 1K dma=0xdf4bab000 host=0000000056f1a3f0
[31204.265588] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf4bab000 host=0000000056f1a3f0
[31204.266194] igb_uio 0000:86:00.1: mapping 1K dma=0xdf4bab000 host=0000000056f1a3f0
[31204.266198] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf4bab000 host=0000000056f1a3f0
[31204.824452] igb_uio 0000:86:00.0: uio device registered with irq 134
[31205.023329] igb_uio 0000:86:00.1: uio device registered with irq 135
[31205.412312] rte_kni: Creating kni...
[31205.577786] rte_kni: Creating kni...
[31219.186291] igb_uio: Use MSIX interrupt by default
[31219.873855] igb_uio 0000:86:00.0: mapping 1K dma=0xe1f1fe000 host=000000002daf0964
[31219.873861] igb_uio 0000:86:00.0: unmapping 1K dma=0xe1f1fe000 host=000000002daf0964
[31219.874451] igb_uio 0000:86:00.1: mapping 1K dma=0xe1f1fe000 host=000000002daf0964
[31219.874455] igb_uio 0000:86:00.1: unmapping 1K dma=0xe1f1fe000 host=000000002daf0964
[31220.429911] igb_uio 0000:86:00.0: uio device registered with irq 134
[31220.628638] igb_uio 0000:86:00.1: uio device registered with irq 135
[31221.017095] rte_kni: Creating kni...
[31221.181930] rte_kni: Creating kni...
[31234.690551] igb_uio: Use MSIX interrupt by default
[31235.377654] igb_uio 0000:86:00.0: mapping 1K dma=0xdf2bdc000 host=00000000144e5967
[31235.377659] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf2bdc000 host=00000000144e5967
[31235.378097] igb_uio 0000:86:00.1: mapping 1K dma=0xdf2bdc000 host=00000000144e5967
[31235.378100] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf2bdc000 host=00000000144e5967
[31235.932871] igb_uio 0000:86:00.0: uio device registered with irq 134
[31236.131766] igb_uio 0000:86:00.1: uio device registered with irq 135
[31236.520319] rte_kni: Creating kni...
[31236.684944] rte_kni: Creating kni...
[31250.266162] igb_uio: Use MSIX interrupt by default
[31250.954127] igb_uio 0000:86:00.0: mapping 1K dma=0x1044a71000 host=00000000f26bc1ad
[31250.954133] igb_uio 0000:86:00.0: unmapping 1K dma=0x1044a71000 host=00000000f26bc1ad
[31250.954721] igb_uio 0000:86:00.1: mapping 1K dma=0x1044a71000 host=00000000f26bc1ad
[31250.954725] igb_uio 0000:86:00.1: unmapping 1K dma=0x1044a71000 host=00000000f26bc1ad
[31251.517819] igb_uio 0000:86:00.0: uio device registered with irq 134
[31251.716428] igb_uio 0000:86:00.1: uio device registered with irq 135
[31252.104671] rte_kni: Creating kni...
[31252.269174] rte_kni: Creating kni...
[31265.782004] igb_uio: Use MSIX interrupt by default
[31266.468064] igb_uio 0000:86:00.0: mapping 1K dma=0x10516a2000 host=0000000083035418
[31266.468069] igb_uio 0000:86:00.0: unmapping 1K dma=0x10516a2000 host=0000000083035418
[31266.468978] igb_uio 0000:86:00.1: mapping 1K dma=0x10516a2000 host=0000000083035418
[31266.468984] igb_uio 0000:86:00.1: unmapping 1K dma=0x10516a2000 host=0000000083035418
[31266.542461] rte_kni: Invalid parameter for kthread_mode
[31267.097694] igb_uio 0000:86:00.0: uio device registered with irq 134
[31267.296641] igb_uio 0000:86:00.1: uio device registered with irq 135
[31288.466864] igb_uio: Use MSIX interrupt by default
[31289.154636] igb_uio 0000:86:00.0: mapping 1K dma=0x10452c2000 host=00000000dfa88fc3
[31289.154642] igb_uio 0000:86:00.0: unmapping 1K dma=0x10452c2000 host=00000000dfa88fc3
[31289.155402] igb_uio 0000:86:00.1: mapping 1K dma=0x10452c2000 host=00000000dfa88fc3
[31289.155406] igb_uio 0000:86:00.1: unmapping 1K dma=0x10452c2000 host=00000000dfa88fc3
[31289.721904] igb_uio 0000:86:00.0: uio device registered with irq 134
[31289.919753] igb_uio 0000:86:00.1: uio device registered with irq 135
[31290.308829] rte_kni: Creating kni...
[31290.472542] rte_kni: Creating kni...
[31305.162220] igb_uio: Use MSIX interrupt by default
[31305.856640] igb_uio 0000:86:00.0: mapping 1K dma=0xdf28d6000 host=00000000871ce1ad
[31305.856646] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf28d6000 host=00000000871ce1ad
[31305.857420] igb_uio 0000:86:00.1: mapping 1K dma=0xdf28d6000 host=00000000871ce1ad
[31305.857424] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf28d6000 host=00000000871ce1ad
[31306.412749] igb_uio 0000:86:00.0: uio device registered with irq 134
[31306.611607] igb_uio 0000:86:00.1: uio device registered with irq 135
[31307.000033] rte_kni: Creating kni...
[31307.164834] rte_kni: Creating kni...
[31320.802251] igb_uio: Use MSIX interrupt by default
[31321.486075] igb_uio 0000:86:00.0: mapping 1K dma=0x10449d3000 host=000000004b229a7b
[31321.486081] igb_uio 0000:86:00.0: unmapping 1K dma=0x10449d3000 host=000000004b229a7b
[31321.486829] igb_uio 0000:86:00.1: mapping 1K dma=0x10449d3000 host=000000004b229a7b
[31321.486833] igb_uio 0000:86:00.1: unmapping 1K dma=0x10449d3000 host=000000004b229a7b
[31322.052197] igb_uio 0000:86:00.0: uio device registered with irq 134
[31322.250911] igb_uio 0000:86:00.1: uio device registered with irq 135
[31322.639362] rte_kni: Creating kni...
[31322.804043] rte_kni: Creating kni...
[31336.422075] igb_uio: Use MSIX interrupt by default
[31337.092702] igb_uio 0000:86:00.0: mapping 1K dma=0x10515f8000 host=000000000e8b65d6
[31337.092708] igb_uio 0000:86:00.0: unmapping 1K dma=0x10515f8000 host=000000000e8b65d6
[31337.093496] igb_uio 0000:86:00.1: mapping 1K dma=0x10515f8000 host=000000000e8b65d6
[31337.093500] igb_uio 0000:86:00.1: unmapping 1K dma=0x10515f8000 host=000000000e8b65d6
[31337.656613] igb_uio 0000:86:00.0: uio device registered with irq 134
[31337.855504] igb_uio 0000:86:00.1: uio device registered with irq 135
[31338.243958] rte_kni: Creating kni...
[31338.408784] rte_kni: Creating kni...
[31352.054145] igb_uio: Use MSIX interrupt by default
[31352.741710] igb_uio 0000:86:00.0: mapping 1K dma=0x1052210000 host=00000000b95cdece
[31352.741716] igb_uio 0000:86:00.0: unmapping 1K dma=0x1052210000 host=00000000b95cdece
[31352.742265] igb_uio 0000:86:00.1: mapping 1K dma=0x1052210000 host=00000000b95cdece
[31352.742269] igb_uio 0000:86:00.1: unmapping 1K dma=0x1052210000 host=00000000b95cdece
[31353.304052] igb_uio 0000:86:00.0: uio device registered with irq 134
[31353.503360] igb_uio 0000:86:00.1: uio device registered with irq 135
[31353.892259] rte_kni: Creating kni...
[31354.056972] rte_kni: Creating kni...
[31367.650561] igb_uio: Use MSIX interrupt by default
[31368.338109] igb_uio 0000:86:00.0: mapping 1K dma=0xe2c1a7000 host=00000000a3491dff
[31368.338115] igb_uio 0000:86:00.0: unmapping 1K dma=0xe2c1a7000 host=00000000a3491dff
[31368.338717] igb_uio 0000:86:00.1: mapping 1K dma=0xe2c1a7000 host=00000000a3491dff
[31368.338721] igb_uio 0000:86:00.1: unmapping 1K dma=0xe2c1a7000 host=00000000a3491dff
[31368.895809] igb_uio 0000:86:00.0: uio device registered with irq 134
[31369.095169] igb_uio 0000:86:00.1: uio device registered with irq 135
[31369.483832] rte_kni: Creating kni...
[31369.648466] rte_kni: Creating kni...
[31372.011915] perf: interrupt took too long (2504 > 2500), lowering kernel.perf_event_max_sample_rate to 79750
[31383.266589] igb_uio: Use MSIX interrupt by default
[31383.956617] igb_uio 0000:86:00.0: mapping 1K dma=0xe33ec0000 host=000000009a75aa72
[31383.956623] igb_uio 0000:86:00.0: unmapping 1K dma=0xe33ec0000 host=000000009a75aa72
[31383.957420] igb_uio 0000:86:00.1: mapping 1K dma=0xe33ec0000 host=000000009a75aa72
[31383.957424] igb_uio 0000:86:00.1: unmapping 1K dma=0xe33ec0000 host=000000009a75aa72
[31384.531562] igb_uio 0000:86:00.0: uio device registered with irq 134
[31384.730998] igb_uio 0000:86:00.1: uio device registered with irq 135
[31385.119870] rte_kni: Creating kni...
[31385.284666] rte_kni: Creating kni...
[31398.770502] igb_uio: Use MSIX interrupt by default
[31399.440270] igb_uio 0000:86:00.0: mapping 1K dma=0x104d460000 host=0000000053292369
[31399.440276] igb_uio 0000:86:00.0: unmapping 1K dma=0x104d460000 host=0000000053292369
[31399.440867] igb_uio 0000:86:00.1: mapping 1K dma=0x104d460000 host=0000000053292369
[31399.440871] igb_uio 0000:86:00.1: unmapping 1K dma=0x104d460000 host=0000000053292369
[31400.015559] igb_uio 0000:86:00.0: uio device registered with irq 134
[31400.214323] igb_uio 0000:86:00.1: uio device registered with irq 135
[31400.602686] rte_kni: Creating kni...
[31400.767383] rte_kni: Creating kni...
[31414.306597] igb_uio: Use MSIX interrupt by default
[31414.989125] igb_uio 0000:86:00.0: mapping 1K dma=0xdea380000 host=00000000049d4978
[31414.989132] igb_uio 0000:86:00.0: unmapping 1K dma=0xdea380000 host=00000000049d4978
[31414.989830] igb_uio 0000:86:00.1: mapping 1K dma=0xdea380000 host=00000000049d4978
[31414.989834] igb_uio 0000:86:00.1: unmapping 1K dma=0xdea380000 host=00000000049d4978
[31415.558460] igb_uio 0000:86:00.0: uio device registered with irq 134
[31415.757877] igb_uio 0000:86:00.1: uio device registered with irq 135
[31416.146795] rte_kni: Creating kni...
[31416.311425] rte_kni: Creating kni...
[31429.818667] igb_uio: Use MSIX interrupt by default
[31430.508491] igb_uio 0000:86:00.0: mapping 1K dma=0xe33516000 host=00000000165aea58
[31430.508496] igb_uio 0000:86:00.0: unmapping 1K dma=0xe33516000 host=00000000165aea58
[31430.509105] igb_uio 0000:86:00.1: mapping 1K dma=0xe33516000 host=00000000165aea58
[31430.509109] igb_uio 0000:86:00.1: unmapping 1K dma=0xe33516000 host=00000000165aea58
[31431.078023] igb_uio 0000:86:00.0: uio device registered with irq 134
[31431.277461] igb_uio 0000:86:00.1: uio device registered with irq 135
[31431.666409] rte_kni: Creating kni...
[31431.831005] rte_kni: Creating kni...
[31445.442216] igb_uio: Use MSIX interrupt by default
[31446.113334] igb_uio 0000:86:00.0: mapping 1K dma=0xdeb558000 host=000000001075844a
[31446.113339] igb_uio 0000:86:00.0: unmapping 1K dma=0xdeb558000 host=000000001075844a
[31446.113792] igb_uio 0000:86:00.1: mapping 1K dma=0xdeb558000 host=000000001075844a
[31446.113796] igb_uio 0000:86:00.1: unmapping 1K dma=0xdeb558000 host=000000001075844a
[31446.669001] igb_uio 0000:86:00.0: uio device registered with irq 134
[31446.868485] igb_uio 0000:86:00.1: uio device registered with irq 135
[31447.257748] rte_kni: Creating kni...
[31447.422536] rte_kni: Creating kni...
[31461.342320] igb_uio: Use MSIX interrupt by default
[31462.032922] igb_uio 0000:86:00.0: mapping 1K dma=0xdf1dd7000 host=000000000c2f4579
[31462.032928] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf1dd7000 host=000000000c2f4579
[31462.033692] igb_uio 0000:86:00.1: mapping 1K dma=0xdf1dd7000 host=000000000c2f4579
[31462.033696] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf1dd7000 host=000000000c2f4579
[31462.589759] igb_uio 0000:86:00.0: uio device registered with irq 134
[31462.789284] igb_uio 0000:86:00.1: uio device registered with irq 135
[31463.178395] rte_kni: Creating kni...
[31463.343139] rte_kni: Creating kni...
[31473.201567] IPv6: ADDRCONF(NETDEV_UP): vEth0_0: link is not ready
[31477.815421] IPv6: ADDRCONF(NETDEV_CHANGE): vEth0_0: link becomes ready
[31478.381397] device vEth0_0 entered promiscuous mode
[31484.192086] device vEth0_0 left promiscuous mode
[31484.617592] IPv6: ADDRCONF(NETDEV_UP): vEth1_0: link is not ready
[31489.292824] IPv6: ADDRCONF(NETDEV_CHANGE): vEth1_0: link becomes ready
[31489.777348] device vEth1_0 entered promiscuous mode
[31495.659660] device vEth1_0 left promiscuous mode
[31502.564937] __request_module: 1774 callbacks suppressed
[31502.564940] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[31502.564960] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic4, throttling...
[31502.565009] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[31502.565070] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[31502.565171] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic5, throttling...
[31502.565239] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[31502.565510] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic5, throttling...
[31502.565557] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[31502.565627] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[31502.565893] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic4, throttling...
[31550.310861] __request_module: 258 callbacks suppressed
[31550.310863] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[31550.311085] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[31550.311109] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[31550.311144] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic8, throttling...
[31550.311321] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[31550.311419] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[31550.311438] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic9, throttling...
[31550.311456] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic7, throttling...
[31550.311532] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[31550.311581] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[31598.870654] __request_module: 49 callbacks suppressed
[31598.870656] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[31598.870686] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond4, throttling...
[31598.870723] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond8, throttling...
[31598.870756] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond5, throttling...
[31598.870822] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond1, throttling...
[31598.870856] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[31598.870913] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[31598.871190] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic3, throttling...
[31598.871205] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[31598.871246] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[31688.686882] __request_module: 1425 callbacks suppressed
[31688.686884] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[31688.686950] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[31688.687215] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic3, throttling...
[31688.687427] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic6, throttling...
[31688.687498] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[31688.687665] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[31688.687724] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic3, throttling...
[31688.687750] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[31688.688100] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[31688.688157] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[31738.052823] __request_module: 171 callbacks suppressed
[31738.052826] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[31738.053048] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[31738.053146] request_module: kmod_concurrent_max (1) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[31738.053148] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[31738.053275] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond0, throttling...
[31738.053326] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[31738.053492] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[31738.053495] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond3, throttling...
[31738.053524] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[31738.053539] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond3, throttling...
[31786.048824] __request_module: 4439 callbacks suppressed
[31786.048825] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[31786.048944] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[31786.049160] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[31786.049383] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[31786.049556] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[31786.049713] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[31786.049802] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[31786.049861] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[31786.049880] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[31786.050266] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[31863.335074] igb_uio 0000:86:00.0: uio device registered with irq 134
[31863.913421] igb_uio 0000:86:00.1: uio device registered with irq 135
[31864.321843] rte_kni: Creating kni...
[31870.881435] IPv6: ADDRCONF(NETDEV_UP): test_kni_port: link is not ready
[31870.881597] IPv6: ADDRCONF(NETDEV_CHANGE): test_kni_port: link becomes ready
[31878.921437] IPv6: ADDRCONF(NETDEV_UP): test_kni_port: link is not ready
[31883.981408] rte_kni: Successfully release kni named test_kni_port
[31883.981528] rte_kni: Creating kni...
[31884.021474] rte_kni: Successfully release kni named test_kni_port
[31889.830240] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[31889.866698] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[31889.866703] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[31889.963848] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[31889.963851] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[31890.103146] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[31890.134440] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[31890.604556] pps pps0: new PPS source ptp4
[31890.604561] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[31890.742356] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[31891.214404] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[31891.250833] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[31891.250838] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[31891.348020] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[31891.348024] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[31891.486195] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[31891.518124] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[31891.989063] pps pps1: new PPS source ptp5
[31891.989067] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[31892.126760] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[31896.774057] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[31896.774094] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[31897.748259] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[31897.748290] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[33818.959993] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[33819.342790] ixgbe 0000:86:00.0: complete
[33819.750466] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[33819.786907] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[33819.786912] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[33819.884055] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[33819.884060] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[33820.022415] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[33820.062189] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[33820.530396] pps pps0: new PPS source ptp4
[33820.530401] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[33820.667949] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[33820.735698] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[33821.122840] ixgbe 0000:86:00.1: complete
[33821.530485] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[33821.566930] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[33821.566935] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[33821.664107] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[33821.664111] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[33821.802431] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[33821.838035] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[33822.311839] pps pps1: new PPS source ptp5
[33822.311843] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[33822.449628] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[33825.133738] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[33825.133766] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[33826.912743] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[33826.912766] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[33831.430460] igb_uio: Use MSIX interrupt by default
[33832.199075] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[33832.610742] ixgbe 0000:86:00.0: complete
[33832.612120] igb_uio 0000:86:00.0: mapping 1K dma=0x104d62f000 host=00000000abca1612
[33832.612128] igb_uio 0000:86:00.0: unmapping 1K dma=0x104d62f000 host=00000000abca1612
[33832.614965] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[33833.006769] ixgbe 0000:86:00.1: complete
[33833.008045] igb_uio 0000:86:00.1: mapping 1K dma=0xdc6dea000 host=00000000264acc52
[33833.008050] igb_uio 0000:86:00.1: unmapping 1K dma=0xdc6dea000 host=00000000264acc52
[33834.763986] igb_uio 0000:86:00.0: uio device registered with irq 134
[33835.332068] igb_uio 0000:86:00.1: uio device registered with irq 135
[33835.741458] rte_kni: Creating kni...
[33842.309539] IPv6: ADDRCONF(NETDEV_UP): test_kni_port: link is not ready
[33842.309711] IPv6: ADDRCONF(NETDEV_CHANGE): test_kni_port: link becomes ready
[33850.357595] IPv6: ADDRCONF(NETDEV_UP): test_kni_port: link is not ready
[33855.421523] rte_kni: Successfully release kni named test_kni_port
[33855.421643] rte_kni: Creating kni...
[33855.445570] rte_kni: Successfully release kni named test_kni_port
[33857.062411] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[33857.098860] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[33857.098865] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[33857.196025] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[33857.196030] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[33857.334390] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[33857.366177] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[33857.836938] pps pps0: new PPS source ptp4
[33857.836942] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[33857.974700] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[33858.446503] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[33858.482941] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[33858.482945] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[33858.580109] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[33858.580113] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[33858.718461] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[33858.749997] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[33859.221139] pps pps1: new PPS source ptp5
[33859.221144] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[33859.358891] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[33862.444785] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[33862.444817] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[33863.889012] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[33863.889043] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[34192.676269] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[34193.062738] ixgbe 0000:86:00.0: complete
[34193.470515] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[34193.506952] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[34193.506957] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[34193.604132] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[34193.604136] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[34193.743637] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[34193.774221] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[34194.245655] pps pps0: new PPS source ptp4
[34194.245659] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[34194.383395] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[34194.450727] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[34194.846729] ixgbe 0000:86:00.1: complete
[34195.254583] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[34195.291024] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[34195.291029] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[34195.388209] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[34195.388212] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[34195.527228] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[34195.557995] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[34196.028656] pps pps1: new PPS source ptp5
[34196.028662] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[34196.166227] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[34198.908139] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[34198.908165] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[34200.693519] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[34200.693539] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[34205.162958] igb_uio: Use MSIX interrupt by default
[34205.923848] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[34206.314905] ixgbe 0000:86:00.0: complete
[34206.316173] igb_uio 0000:86:00.0: mapping 1K dma=0xdefa9e000 host=000000004c303a04
[34206.316178] igb_uio 0000:86:00.0: unmapping 1K dma=0xdefa9e000 host=000000004c303a04
[34206.319256] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[34206.726908] ixgbe 0000:86:00.1: complete
[34206.728186] igb_uio 0000:86:00.1: mapping 1K dma=0xdefa9e000 host=000000004c303a04
[34206.728191] igb_uio 0000:86:00.1: unmapping 1K dma=0xdefa9e000 host=000000004c303a04
[34214.862340] __request_module: 1465 callbacks suppressed
[34214.862342] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic5, throttling...
[34214.862545] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[34214.862563] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic5, throttling...
[34214.862669] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[34214.862778] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[34214.862820] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[34214.862882] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[34214.863059] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[34214.863075] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic3, throttling...
[34214.863080] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond1, throttling...
[34263.763455] __request_module: 256 callbacks suppressed
[34263.763457] request_module: kmod_concurrent_max (1) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[34263.763490] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[34263.763570] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[34263.763664] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[34263.763672] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[34263.763719] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[34263.763773] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[34263.763804] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[34263.763812] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond5, throttling...
[34263.763843] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[34310.500426] __request_module: 4479 callbacks suppressed
[34310.500429] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[34310.500498] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[34310.500521] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[34310.500524] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[34310.500629] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[34310.500720] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[34310.500745] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[34310.500812] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond4, throttling...
[34310.500818] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[34310.500886] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond3, throttling...
[34390.029676] igb_uio: Use MSIX interrupt by default
[34390.717067] igb_uio 0000:86:00.0: mapping 1K dma=0x104cb6d000 host=00000000b09c4e0d
[34390.717073] igb_uio 0000:86:00.0: unmapping 1K dma=0x104cb6d000 host=00000000b09c4e0d
[34390.717820] igb_uio 0000:86:00.1: mapping 1K dma=0x104f95b000 host=000000004285ead2
[34390.717824] igb_uio 0000:86:00.1: unmapping 1K dma=0x104f95b000 host=000000004285ead2
[34391.275627] igb_uio 0000:86:00.0: uio device registered with irq 134
[34391.474699] igb_uio 0000:86:00.1: uio device registered with irq 135
[34391.863473] rte_kni: Creating kni...
[34406.698624] igb_uio: Use MSIX interrupt by default
[34407.386358] igb_uio 0000:86:00.0: mapping 1K dma=0xe33e20000 host=00000000e1e7974e
[34407.386364] igb_uio 0000:86:00.0: unmapping 1K dma=0xe33e20000 host=00000000e1e7974e
[34407.387121] igb_uio 0000:86:00.1: mapping 1K dma=0xe33e20000 host=00000000e1e7974e
[34407.387125] igb_uio 0000:86:00.1: unmapping 1K dma=0xe33e20000 host=00000000e1e7974e
[34407.947810] igb_uio 0000:86:00.0: uio device registered with irq 134
[34408.146727] igb_uio 0000:86:00.1: uio device registered with irq 135
[34408.535613] rte_kni: Creating kni...
[34422.685741] IPv6: ADDRCONF(NETDEV_UP): vEth0_0: link is not ready
[34427.299514] IPv6: ADDRCONF(NETDEV_CHANGE): vEth0_0: link becomes ready
[34440.646176] __request_module: 1659 callbacks suppressed
[34440.646178] request_module: kmod_concurrent_max (1) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[34440.646363] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[34440.646418] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[34440.646491] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[34440.646595] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[34440.646692] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[34440.646898] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[34440.646963] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[34440.646979] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[34440.647001] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[34488.874858] __request_module: 253 callbacks suppressed
[34488.874860] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[34488.874910] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[34488.875004] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[34488.875059] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[34488.875078] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[34488.875122] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[34488.875125] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[34488.875244] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[34488.875258] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[34488.875296] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[34537.547448] __request_module: 2098 callbacks suppressed
[34537.547450] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[34537.547473] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[34537.547555] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[34537.547643] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[34537.547842] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[34537.547901] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[34537.548191] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[34537.548400] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[34537.548501] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[34537.548612] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[34619.238518] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[34619.274961] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[34619.274965] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[34619.372124] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[34619.372127] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[34619.510353] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[34619.542025] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[34620.010879] pps pps0: new PPS source ptp4
[34620.010884] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[34620.148591] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[34620.622067] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[34620.658505] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[34620.658510] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[34620.755688] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[34620.755692] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[34620.893929] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[34620.926289] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[34621.399152] pps pps1: new PPS source ptp5
[34621.399156] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[34621.536634] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[34624.797296] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[34624.797327] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[34626.051387] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[34626.051410] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[34997.891728] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[34998.282793] ixgbe 0000:86:00.0: complete
[34998.690442] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[34998.726884] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[34998.726889] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[34998.824041] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[34998.824045] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[34998.962524] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[34998.998323] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[34999.466682] pps pps0: new PPS source ptp4
[34999.466687] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[34999.604262] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[34999.672169] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[35000.090855] ixgbe 0000:86:00.1: complete
[35000.498450] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[35000.534882] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[35000.534887] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[35000.632035] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[35000.632039] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[35000.770396] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[35000.802229] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[35001.270520] pps pps1: new PPS source ptp5
[35001.270525] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[35001.408007] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[35004.127892] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[35004.127920] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[35005.881021] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[35005.881042] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[35010.399006] igb_uio: Use MSIX interrupt by default
[35011.148118] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[35011.550832] ixgbe 0000:86:00.0: complete
[35011.552124] igb_uio 0000:86:00.0: mapping 1K dma=0xded2e3000 host=000000003cb12112
[35011.552134] igb_uio 0000:86:00.0: unmapping 1K dma=0xded2e3000 host=000000003cb12112
[35011.555158] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[35011.942988] ixgbe 0000:86:00.1: complete
[35011.944333] igb_uio 0000:86:00.1: mapping 1K dma=0xded2e3000 host=000000003cb12112
[35011.944338] igb_uio 0000:86:00.1: unmapping 1K dma=0xded2e3000 host=000000003cb12112
[35020.089954] __request_module: 1601 callbacks suppressed
[35020.089956] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[35020.090039] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[35020.090079] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[35020.090199] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[35020.090541] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[35020.090578] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[35020.090782] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic6, throttling...
[35020.090990] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35020.091098] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[35020.091140] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[35069.631354] __request_module: 179 callbacks suppressed
[35069.631357] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35069.631486] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[35069.631520] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35069.631545] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[35069.631547] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[35069.631599] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35069.631758] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[35069.631774] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[35069.631780] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[35069.631844] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35116.354876] __request_module: 4566 callbacks suppressed
[35116.354878] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond8, throttling...
[35116.355130] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35116.355183] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[35116.355455] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[35116.355567] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond8, throttling...
[35116.355603] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[35116.355732] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[35116.355773] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35116.355861] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35116.355863] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[35195.481900] igb_uio: Use MSIX interrupt by default
[35196.174909] igb_uio 0000:86:00.0: mapping 1K dma=0xdebb8d000 host=000000003e3b2250
[35196.174915] igb_uio 0000:86:00.0: unmapping 1K dma=0xdebb8d000 host=000000003e3b2250
[35196.175564] igb_uio 0000:86:00.1: mapping 1K dma=0xdee820000 host=00000000e3b7c769
[35196.175568] igb_uio 0000:86:00.1: unmapping 1K dma=0xdee820000 host=00000000e3b7c769
[35196.737091] igb_uio 0000:86:00.0: uio device registered with irq 134
[35196.935839] igb_uio 0000:86:00.1: uio device registered with irq 135
[35197.324103] rte_kni: Creating kni...
[35212.054784] igb_uio: Use MSIX interrupt by default
[35212.737264] igb_uio 0000:86:00.0: mapping 1K dma=0xdea7b2000 host=00000000f55ef14f
[35212.737270] igb_uio 0000:86:00.0: unmapping 1K dma=0xdea7b2000 host=00000000f55ef14f
[35212.738089] igb_uio 0000:86:00.1: mapping 1K dma=0xdea7b2000 host=00000000f55ef14f
[35212.738093] igb_uio 0000:86:00.1: unmapping 1K dma=0xdea7b2000 host=00000000f55ef14f
[35213.314167] igb_uio 0000:86:00.0: uio device registered with irq 134
[35213.513102] igb_uio 0000:86:00.1: uio device registered with irq 135
[35213.902170] rte_kni: Creating kni...
[35223.861818] IPv6: ADDRCONF(NETDEV_UP): vEth0_0: link is not ready
[35228.474347] IPv6: ADDRCONF(NETDEV_CHANGE): vEth0_0: link becomes ready
[35246.838094] __request_module: 1261 callbacks suppressed
[35246.838096] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35246.838127] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic4, throttling...
[35246.838174] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[35246.838179] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module vmnic6, throttling...
[35246.838183] request_module: kmod_concurrent_max (1) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[35246.838273] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic4, throttling...
[35246.838493] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[35246.838624] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[35246.838689] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[35246.838853] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[35295.372620] __request_module: 251 callbacks suppressed
[35295.372622] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35295.372739] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[35295.372771] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[35295.372833] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[35295.372853] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[35295.373079] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[35295.373090] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond5, throttling...
[35295.373095] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[35295.373151] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35295.373182] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond1, throttling...
[35343.015714] __request_module: 1814 callbacks suppressed
[35343.015716] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond4, throttling...
[35343.015847] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[35343.015870] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[35343.015903] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[35343.015937] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[35343.016029] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35343.016077] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[35343.016125] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[35343.016185] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[35343.016228] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[35381.238672] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[35381.274740] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[35381.274742] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[35381.370904] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[35381.370905] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[35381.507636] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[35381.562084] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[35382.035413] pps pps0: new PPS source ptp4
[35382.035418] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[35382.172495] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[35382.638924] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[35382.674992] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[35382.674993] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[35382.771154] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[35382.771156] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[35382.907738] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[35382.962089] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[35383.426890] pps pps1: new PPS source ptp5
[35383.426894] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[35383.563956] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[35386.763754] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[35386.763782] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[35388.471706] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[35388.471736] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[35390.365769] ixgbe 0000:86:00.0 enp134s0f0: Detected Tx Unit Hang
Tx Queue <0>
TDH, TDT <0>, <d>
next_to_use <0>
next_to_clean <0>
tx_buffer_info[next_to_clean]
time_stamp <0>
jiffies <10085dbf0>
[35390.399351] ixgbe 0000:86:00.0 enp134s0f0: tx hang 1 detected on queue 0, resetting adapter
[35390.399352] ixgbe 0000:86:00.0 enp134s0f0: initiating reset due to tx timeout
[35390.399413] ixgbe 0000:86:00.0 enp134s0f0: Reset adapter
[35395.062584] igb_uio: Use MSIX interrupt by default
[35395.798845] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[35396.178711] ixgbe 0000:86:00.0: complete
[35396.179803] igb_uio 0000:86:00.0: mapping 1K dma=0xdeade8000 host=00000000487ddef0
[35396.179808] igb_uio 0000:86:00.0: unmapping 1K dma=0xdeade8000 host=00000000487ddef0
[35396.182575] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[35396.570624] ixgbe 0000:86:00.1: complete
[35396.571596] igb_uio 0000:86:00.1: mapping 1K dma=0xdeade8000 host=00000000487ddef0
[35396.571601] igb_uio 0000:86:00.1: unmapping 1K dma=0xdeade8000 host=00000000487ddef0
[35404.533617] __request_module: 1411 callbacks suppressed
[35404.533619] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35404.533639] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[35404.533650] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[35404.533707] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[35404.533762] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[35404.533930] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[35404.534153] request_module: kmod_concurrent_max (1) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[35404.534160] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[35404.534235] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic5, throttling...
[35404.534275] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic3, throttling...
[35428.826159] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[35428.862570] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[35428.862574] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[35428.959689] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[35428.959693] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[35429.097621] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[35429.130243] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[35429.598754] pps pps0: new PPS source ptp4
[35429.598758] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[35429.735441] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[35430.206157] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[35430.242589] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[35430.242593] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[35430.339647] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[35430.339651] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[35430.477673] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[35430.510174] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[35430.978607] pps pps1: new PPS source ptp5
[35430.978611] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[35431.115605] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[35434.150718] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[35434.150747] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[35437.122631] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[35437.122664] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[35445.354972] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[35445.762936] ixgbe 0000:86:00.0: complete
[35446.169965] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[35446.205589] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[35446.205593] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[35446.301579] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[35446.301583] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[35446.439657] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[35446.470325] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[35446.936314] pps pps0: new PPS source ptp4
[35446.936320] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[35447.072704] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[35447.140926] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[35447.546907] ixgbe 0000:86:00.1: complete
[35447.954640] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[35447.991062] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[35447.991067] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[35448.088235] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[35448.088239] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[35448.224834] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[35448.266144] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[35448.733759] pps pps1: new PPS source ptp5
[35448.733765] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[35448.869276] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[35451.599807] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[35451.600150] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[35453.369390] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[35453.369628] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[35454.107019] __request_module: 274 callbacks suppressed
[35454.107021] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35454.107158] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[35454.107184] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35454.107214] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[35454.107275] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond6, throttling...
[35454.107338] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[35454.107353] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond5, throttling...
[35454.107373] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[35454.107449] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35454.107487] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[35501.886602] __request_module: 3339 callbacks suppressed
[35501.886605] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35501.886720] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[35501.886731] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[35501.886735] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[35501.886837] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35501.886859] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35501.886944] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[35501.886987] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[35501.887004] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond5, throttling...
[35501.887139] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond0, throttling...
[35581.530676] igb_uio: Use MSIX interrupt by default
[35582.218845] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[35582.614886] ixgbe 0000:86:00.0: complete
[35582.616220] igb_uio 0000:86:00.0: mapping 1K dma=0x1049e46000 host=000000004c75b585
[35582.616226] igb_uio 0000:86:00.0: unmapping 1K dma=0x1049e46000 host=000000004c75b585
[35582.618956] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[35583.014989] ixgbe 0000:86:00.1: complete
[35583.016131] igb_uio 0000:86:00.1: mapping 1K dma=0xe0df2c000 host=00000000d17c9563
[35583.016137] igb_uio 0000:86:00.1: unmapping 1K dma=0xe0df2c000 host=00000000d17c9563
[35583.598713] igb_uio 0000:86:00.0: uio device registered with irq 134
[35583.797723] igb_uio 0000:86:00.1: uio device registered with irq 135
[35584.186213] rte_kni: Creating kni...
[35598.650867] igb_uio: Use MSIX interrupt by default
[35599.337815] igb_uio 0000:86:00.0: mapping 1K dma=0xdc7559000 host=00000000df1589b9
[35599.337821] igb_uio 0000:86:00.0: unmapping 1K dma=0xdc7559000 host=00000000df1589b9
[35599.338383] igb_uio 0000:86:00.1: mapping 1K dma=0xdc7559000 host=00000000df1589b9
[35599.338387] igb_uio 0000:86:00.1: unmapping 1K dma=0xdc7559000 host=00000000df1589b9
[35599.901857] igb_uio 0000:86:00.0: uio device registered with irq 134
[35600.100311] igb_uio 0000:86:00.1: uio device registered with irq 135
[35600.489218] rte_kni: Creating kni...
[35610.345862] IPv6: ADDRCONF(NETDEV_UP): vEth0_0: link is not ready
[35614.961749] IPv6: ADDRCONF(NETDEV_CHANGE): vEth0_0: link becomes ready
[35671.386546] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[35671.422972] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[35671.422977] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[35671.520121] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[35671.520125] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[35671.658667] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[35671.690297] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[35672.161293] pps pps0: new PPS source ptp4
[35672.161298] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[35672.298983] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[35672.770698] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[35672.807148] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[35672.807152] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[35672.904334] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[35672.904338] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[35673.042754] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[35673.090170] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[35673.558043] pps pps1: new PPS source ptp5
[35673.558048] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[35673.694542] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[35676.892021] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[35676.892050] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[35678.164556] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[35678.164577] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[35687.646865] __request_module: 1577 callbacks suppressed
[35687.646867] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35687.646926] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[35687.646968] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[35687.647059] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic8, throttling...
[35687.647074] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[35687.647167] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[35687.647250] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond4, throttling...
[35687.647268] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[35687.647323] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[35687.647385] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic3, throttling...
[35737.746858] __request_module: 110 callbacks suppressed
[35737.746859] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35737.746962] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[35737.746968] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[35737.747145] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35737.747204] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[35737.747217] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[35737.747340] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[35737.747346] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[35737.747349] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35737.747377] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35785.050961] __request_module: 2566 callbacks suppressed
[35785.050964] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35785.051053] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35785.051099] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[35785.051132] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[35785.051171] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[35785.051183] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[35785.051348] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35785.051367] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[35785.051385] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35785.051437] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[35840.581029] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[35840.978824] ixgbe 0000:86:00.0: complete
[35841.386099] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[35841.422516] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[35841.422520] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[35841.519626] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[35841.519630] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[35841.657518] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[35841.690233] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[35842.158071] pps pps0: new PPS source ptp4
[35842.158076] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[35842.294072] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[35842.361248] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[35842.750825] ixgbe 0000:86:00.1: complete
[35843.158039] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[35843.194466] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[35843.194470] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[35843.291531] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[35843.291535] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[35843.429397] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[35843.446175] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[35843.914156] pps pps1: new PPS source ptp5
[35843.914160] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[35844.049790] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[35846.827549] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[35846.827578] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[35848.512355] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[35848.512383] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[35863.303290] igb_uio: Use MSIX interrupt by default
[35864.067920] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[35864.471058] ixgbe 0000:86:00.0: complete
[35864.472452] igb_uio 0000:86:00.0: mapping 1K dma=0xe0ba02000 host=0000000028a59af2
[35864.472461] igb_uio 0000:86:00.0: unmapping 1K dma=0xe0ba02000 host=0000000028a59af2
[35864.475328] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[35864.862872] ixgbe 0000:86:00.1: complete
[35864.864099] igb_uio 0000:86:00.1: mapping 1K dma=0xdef20d000 host=00000000337e1e5d
[35864.864104] igb_uio 0000:86:00.1: unmapping 1K dma=0xdef20d000 host=00000000337e1e5d
[35872.975379] __request_module: 1504 callbacks suppressed
[35872.975381] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35872.975435] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[35872.975439] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond1, throttling...
[35872.975671] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[35872.975715] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[35872.975802] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[35872.975877] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[35872.975882] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond1, throttling...
[35872.976016] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic4, throttling...
[35872.976178] request_module: kmod_concurrent_max (1) close to 0 (max_modprobes: 50), for module netdev-vmnic6, throttling...
[35922.531517] __request_module: 247 callbacks suppressed
[35922.531518] request_module: kmod_concurrent_max (1) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35922.531525] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35922.531582] request_module: kmod_concurrent_max (1) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[35922.531591] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[35922.531617] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35922.531631] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[35922.531639] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[35922.531701] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[35922.531726] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[35922.531764] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond3, throttling...
[35969.875915] __request_module: 3812 callbacks suppressed
[35969.875917] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35969.876243] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[35969.876328] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[35969.876360] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[35969.876674] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond7, throttling...
[35969.876995] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond4, throttling...
[35969.877068] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[35969.877097] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[35969.877120] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[35969.877167] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[36002.024654] perf: interrupt took too long (3133 > 3130), lowering kernel.perf_event_max_sample_rate to 63750
[36048.053139] igb_uio: Use MSIX interrupt by default
[36048.741732] igb_uio 0000:86:00.0: mapping 1K dma=0xdec552000 host=00000000ebbf0de3
[36048.741738] igb_uio 0000:86:00.0: unmapping 1K dma=0xdec552000 host=00000000ebbf0de3
[36048.742276] igb_uio 0000:86:00.1: mapping 1K dma=0xde9f7a000 host=0000000022dd350a
[36048.742280] igb_uio 0000:86:00.1: unmapping 1K dma=0xde9f7a000 host=0000000022dd350a
[36049.294010] igb_uio 0000:86:00.0: uio device registered with irq 134
[36049.493452] igb_uio 0000:86:00.1: uio device registered with irq 135
[36076.036725] __request_module: 1329 callbacks suppressed
[36076.036728] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[36076.036950] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[36076.037000] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module vmnic0, throttling...
[36076.037012] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module vmnic4, throttling...
[36076.037100] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[36076.037235] request_module: kmod_concurrent_max (1) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[36076.037243] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[36076.037302] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic4, throttling...
[36076.037422] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[36076.037495] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[36125.749861] __request_module: 281 callbacks suppressed
[36125.749863] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[36125.749901] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[36125.749923] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[36125.749966] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[36125.750146] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[36125.750185] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[36125.750189] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[36125.750235] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[36125.750318] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[36125.750363] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[36173.414705] __request_module: 4478 callbacks suppressed
[36173.414708] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[36173.414972] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[36173.415059] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[36173.415093] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[36173.415166] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[36173.415235] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[36173.415476] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[36173.415763] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[36173.415902] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond9, throttling...
[36173.415927] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[36256.442553] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[36256.478994] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[36256.478999] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[36256.576146] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[36256.576150] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[36256.714449] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[36256.746141] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[36257.219869] pps pps0: new PPS source ptp4
[36257.219873] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[36257.357636] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[36257.830651] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[36257.867092] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[36257.867097] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[36257.964240] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[36257.964244] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[36258.103272] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[36258.142142] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[36258.611044] pps pps1: new PPS source ptp5
[36258.611050] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[36258.748610] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[36262.012262] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[36262.012293] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[36267.572048] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[36267.572071] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[37031.658551] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[37032.046962] ixgbe 0000:86:00.0: complete
[37032.454694] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[37032.491123] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[37032.491128] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[37032.588276] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[37032.588280] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[37032.726820] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[37032.758216] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[37033.228644] pps pps0: new PPS source ptp4
[37033.228649] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[37033.366201] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[37033.434623] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[37033.827015] ixgbe 0000:86:00.1: complete
[37034.234919] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[37034.271359] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[37034.271364] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[37034.368527] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[37034.368531] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[37034.507050] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[37034.538186] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[37035.009798] pps pps1: new PPS source ptp5
[37035.009803] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[37035.147302] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[37037.844888] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[37037.844914] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[37039.624064] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[37039.624085] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[37049.091099] __request_module: 1087 callbacks suppressed
[37049.091101] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37049.091110] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[37049.091213] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[37049.091236] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic4, throttling...
[37049.091282] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[37049.091682] request_module: kmod_concurrent_max (1) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[37049.091688] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[37049.091787] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[37049.092093] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[37049.092253] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[37099.615184] __request_module: 259 callbacks suppressed
[37099.615187] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37099.615244] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond7, throttling...
[37099.615302] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[37099.615337] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[37099.615360] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[37099.615389] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[37099.615428] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37099.615455] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond3, throttling...
[37099.615489] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[37099.615687] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[37146.602158] __request_module: 5597 callbacks suppressed
[37146.602161] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[37146.602522] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[37146.602803] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[37146.603536] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[37146.603658] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[37146.603819] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[37146.603912] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[37146.603914] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37146.603921] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[37146.603957] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[37223.169333] igb_uio: Use MSIX interrupt by default
[37223.927752] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[37224.310889] ixgbe 0000:86:00.0: complete
[37224.312203] igb_uio 0000:86:00.0: mapping 1K dma=0xdfa0dd000 host=000000001f65c2b6
[37224.312209] igb_uio 0000:86:00.0: unmapping 1K dma=0xdfa0dd000 host=000000001f65c2b6
[37224.315068] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[37224.707022] ixgbe 0000:86:00.1: complete
[37224.708228] igb_uio 0000:86:00.1: mapping 1K dma=0x1044cde000 host=000000000b13d7e0
[37224.708233] igb_uio 0000:86:00.1: unmapping 1K dma=0x1044cde000 host=000000000b13d7e0
[37232.817499] __request_module: 1486 callbacks suppressed
[37232.817501] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37232.817533] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[37232.817546] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic3, throttling...
[37232.817563] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[37232.817748] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[37232.817770] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[37232.817806] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond6, throttling...
[37232.817930] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[37232.817974] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic3, throttling...
[37232.818196] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[37282.016783] __request_module: 262 callbacks suppressed
[37282.016785] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37282.016830] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[37282.016961] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37282.017047] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic7, throttling...
[37282.017103] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module vmnic7, throttling...
[37282.017257] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[37282.017411] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module vmnic8, throttling...
[37282.017438] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[37282.017558] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[37282.017601] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[37330.730346] __request_module: 71 callbacks suppressed
[37330.730348] request_module: kmod_concurrent_max (1) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37330.730354] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[37330.730360] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond1, throttling...
[37330.730423] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[37330.730442] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[37330.730533] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37330.730536] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37330.730594] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[37330.730640] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37330.730670] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37408.765092] igb_uio: Use MSIX interrupt by default
[37409.439810] igb_uio 0000:86:00.0: mapping 1K dma=0xdf1a13000 host=0000000042e2c83d
[37409.439816] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf1a13000 host=0000000042e2c83d
[37409.440507] igb_uio 0000:86:00.1: mapping 1K dma=0x1056832000 host=00000000b2f98953
[37409.440511] igb_uio 0000:86:00.1: unmapping 1K dma=0x1056832000 host=00000000b2f98953
[37410.006804] igb_uio 0000:86:00.0: uio device registered with irq 134
[37410.205733] igb_uio 0000:86:00.1: uio device registered with irq 135
[37436.772958] __request_module: 1708 callbacks suppressed
[37436.772961] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[37436.773241] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[37436.773250] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[37436.773290] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic6, throttling...
[37436.773419] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[37436.773553] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic4, throttling...
[37436.773682] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[37436.773706] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[37436.773790] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[37436.773858] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[37486.217767] __request_module: 192 callbacks suppressed
[37486.217768] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37486.217834] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[37486.217857] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[37486.217923] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37486.218053] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37486.218083] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[37486.218147] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[37486.218180] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[37486.218190] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[37486.218209] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[37534.314125] __request_module: 3397 callbacks suppressed
[37534.314127] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37534.314168] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[37534.314299] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[37534.314457] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[37534.314603] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37534.314720] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[37534.314818] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37534.314834] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37534.314836] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[37534.314851] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37665.274685] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[37665.311138] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[37665.311143] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[37665.408293] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[37665.408297] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[37665.546957] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[37665.578510] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[37666.050269] pps pps0: new PPS source ptp4
[37666.050274] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[37666.188032] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[37666.658682] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[37666.695127] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[37666.695132] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[37666.792290] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[37666.792294] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[37666.930572] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[37666.958441] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[37667.428131] pps pps1: new PPS source ptp5
[37667.428136] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[37667.565772] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[37670.779354] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[37670.779390] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[37673.313517] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[37673.313549] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[37682.014164] igb_uio: Use MSIX interrupt by default
[37682.776775] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[37683.179128] ixgbe 0000:86:00.0: complete
[37683.180486] igb_uio 0000:86:00.0: mapping 1K dma=0x1050c94000 host=00000000d1320b3d
[37683.180491] igb_uio 0000:86:00.0: unmapping 1K dma=0x1050c94000 host=00000000d1320b3d
[37683.183725] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[37683.566979] ixgbe 0000:86:00.1: complete
[37683.568071] igb_uio 0000:86:00.1: mapping 1K dma=0x1050c94000 host=00000000d1320b3d
[37683.568077] igb_uio 0000:86:00.1: unmapping 1K dma=0x1050c94000 host=00000000d1320b3d
[37691.822289] __request_module: 1674 callbacks suppressed
[37691.822292] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37691.822604] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[37691.822694] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[37691.822764] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic4, throttling...
[37691.823127] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[37691.823144] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[37691.823400] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[37691.823710] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic7, throttling...
[37691.823872] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic8, throttling...
[37691.823899] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[37740.300271] __request_module: 118 callbacks suppressed
[37740.300274] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[37740.300383] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37740.300401] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[37740.300481] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[37740.300673] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond1, throttling...
[37740.300767] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[37740.300789] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37740.300852] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37740.300937] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[37740.300940] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[37788.197670] __request_module: 4973 callbacks suppressed
[37788.197672] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37788.197788] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[37788.197841] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[37788.197880] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[37788.197960] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[37788.198051] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[37788.198211] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[37788.198256] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[37788.198347] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[37788.198406] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[37839.647539] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[37839.683892] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[37839.683896] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[37839.781009] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[37839.781014] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[37839.919041] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[37839.946334] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[37840.415430] pps pps0: new PPS source ptp4
[37840.415434] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[37840.552414] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[37841.022151] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[37841.058569] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[37841.058574] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[37841.155654] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[37841.155658] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[37841.293567] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[37841.310361] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[37841.776095] pps pps1: new PPS source ptp5
[37841.776099] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[37841.913051] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[37845.039154] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[37845.039183] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[37846.442424] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[37846.442456] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[37850.902360] igb_uio: Use MSIX interrupt by default
[37851.635087] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[37852.026874] ixgbe 0000:86:00.0: complete
[37852.028067] igb_uio 0000:86:00.0: mapping 1K dma=0x104f7ab000 host=000000009ebdf024
[37852.028074] igb_uio 0000:86:00.0: unmapping 1K dma=0x104f7ab000 host=000000009ebdf024
[37852.030964] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[37852.422904] ixgbe 0000:86:00.1: complete
[37852.424021] igb_uio 0000:86:00.1: mapping 1K dma=0xe02cdb000 host=00000000f9b023c9
[37852.424027] igb_uio 0000:86:00.1: unmapping 1K dma=0xe02cdb000 host=00000000f9b023c9
[37860.365451] __request_module: 1542 callbacks suppressed
[37860.365454] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37860.365518] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic5, throttling...
[37860.365560] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond5, throttling...
[37860.365777] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic6, throttling...
[37860.365785] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[37860.365821] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic3, throttling...
[37860.365894] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[37860.365942] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic3, throttling...
[37860.366093] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[37860.366425] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[37908.758648] __request_module: 204 callbacks suppressed
[37908.758650] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37908.758746] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[37908.759252] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[37908.759313] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[37908.759391] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[37908.759504] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[37908.759551] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[37908.759639] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37908.759675] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37908.759772] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond3, throttling...
[37956.436402] __request_module: 2623 callbacks suppressed
[37956.436404] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[37956.436448] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[37956.436519] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[37956.436741] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[37956.436877] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond4, throttling...
[37956.437174] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[37956.437492] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[37956.437607] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[37956.437624] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[37956.438225] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[38034.914076] igb_uio: Use MSIX interrupt by default
[38035.564924] igb_uio 0000:86:00.0: mapping 1K dma=0x1051f8d000 host=00000000582f7ccc
[38035.564930] igb_uio 0000:86:00.0: unmapping 1K dma=0x1051f8d000 host=00000000582f7ccc
[38035.565884] igb_uio 0000:86:00.1: mapping 1K dma=0x1051f8d000 host=00000000582f7ccc
[38035.565889] igb_uio 0000:86:00.1: unmapping 1K dma=0x1051f8d000 host=00000000582f7ccc
[38036.132655] igb_uio 0000:86:00.0: uio device registered with irq 134
[38036.331459] igb_uio 0000:86:00.1: uio device registered with irq 135
[38036.719860] rte_kni: Creating kni...
[38052.362878] igb_uio: Use MSIX interrupt by default
[38053.045869] igb_uio 0000:86:00.0: mapping 1K dma=0xe211ae000 host=00000000c61c4815
[38053.045875] igb_uio 0000:86:00.0: unmapping 1K dma=0xe211ae000 host=00000000c61c4815
[38053.046334] igb_uio 0000:86:00.1: mapping 1K dma=0xe211ae000 host=00000000c61c4815
[38053.046338] igb_uio 0000:86:00.1: unmapping 1K dma=0xe211ae000 host=00000000c61c4815
[38053.611260] igb_uio 0000:86:00.0: uio device registered with irq 134
[38053.812247] igb_uio 0000:86:00.1: uio device registered with irq 135
[38054.200952] rte_kni: Creating kni...
[38064.062146] IPv6: ADDRCONF(NETDEV_UP): vEth0_0: link is not ready
[38068.673327] IPv6: ADDRCONF(NETDEV_CHANGE): vEth0_0: link becomes ready
[38087.182193] __request_module: 1679 callbacks suppressed
[38087.182195] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[38087.182239] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic6, throttling...
[38087.182287] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[38087.182560] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[38087.182642] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module vmnic1, throttling...
[38087.182697] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[38087.182838] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic6, throttling...
[38087.182864] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic9, throttling...
[38087.182908] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic5, throttling...
[38087.182983] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[38135.618873] __request_module: 34 callbacks suppressed
[38135.618876] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[38135.618901] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond6, throttling...
[38135.618983] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[38135.619043] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[38135.619198] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[38135.619253] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[38135.619285] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[38135.619299] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[38135.619413] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[38135.619429] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic4, throttling...
[38184.283924] __request_module: 1478 callbacks suppressed
[38184.283926] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[38184.284006] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[38184.284208] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond0, throttling...
[38184.284234] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[38184.284250] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[38184.284306] request_module: kmod_concurrent_max (1) close to 0 (max_modprobes: 50), for module bond5, throttling...
[38184.284313] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[38184.284392] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[38184.284399] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[38184.284474] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[38266.046723] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[38266.083163] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[38266.083168] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[38266.180339] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[38266.180342] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[38266.318641] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[38266.354495] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[38266.825402] pps pps0: new PPS source ptp4
[38266.825407] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[38266.963171] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[38267.434692] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[38267.471127] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[38267.471131] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[38267.568292] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[38267.568296] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[38267.706457] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[38267.738478] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[38268.208717] pps pps1: new PPS source ptp5
[38268.208722] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[38268.346407] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[38271.557441] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[38271.557475] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[38272.842757] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[38272.842792] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[38367.321907] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[38367.719077] ixgbe 0000:86:00.0: complete
[38367.720384] igb_uio 0000:86:00.0: mapping 1K dma=0x10450f5000 host=00000000ed3f5223
[38367.720390] igb_uio 0000:86:00.0: unmapping 1K dma=0x10450f5000 host=00000000ed3f5223
[38367.723285] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[38368.107053] ixgbe 0000:86:00.1: complete
[38368.108140] igb_uio 0000:86:00.1: mapping 1K dma=0xdf38c8000 host=000000009826281d
[38368.108144] igb_uio 0000:86:00.1: unmapping 1K dma=0xdf38c8000 host=000000009826281d
[38390.071813] igb_uio 0000:86:00.0: uio device registered with irq 134
[38390.270584] igb_uio 0000:86:00.1: uio device registered with irq 135
[38390.659308] rte_kni: Creating kni...
[38444.834049] IPv6: ADDRCONF(NETDEV_UP): vEth0_0: link is not ready
[38449.325099] IPv6: ADDRCONF(NETDEV_CHANGE): vEth0_0: link becomes ready
[39361.183129] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[39361.219194] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[39361.219195] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[39361.315349] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[39361.315350] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[39361.451679] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[39361.482305] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[39361.947454] pps pps0: new PPS source ptp4
[39361.947459] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[39362.084414] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[39362.550831] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[39362.586897] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[39362.586898] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[39362.683061] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[39362.683062] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[39362.819619] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[39362.858266] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[39363.326562] pps pps1: new PPS source ptp5
[39363.326566] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[39363.463532] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[39366.678321] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[39366.678348] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[39368.735239] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[39368.735259] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[39370.269996] ixgbe 0000:86:00.0 enp134s0f0: Detected Tx Unit Hang
Tx Queue <0>
TDH, TDT <0>, <f>
next_to_use <0>
next_to_clean <0>
tx_buffer_info[next_to_clean]
time_stamp <0>
jiffies <100950a90>
[39370.303591] ixgbe 0000:86:00.0 enp134s0f0: tx hang 1 detected on queue 0, resetting adapter
[39370.303593] ixgbe 0000:86:00.0 enp134s0f0: initiating reset due to tx timeout
[39370.303664] ixgbe 0000:86:00.0 enp134s0f0: Reset adapter
[39374.987340] igb_uio: Use MSIX interrupt by default
[39375.642360] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[39375.743673] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[39376.127121] ixgbe 0000:86:00.0: complete
[39376.128480] igb_uio 0000:86:00.0: mapping 1K dma=0xdf442b000 host=0000000011528579
[39376.128485] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf442b000 host=0000000011528579
[39376.131241] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[39376.527151] ixgbe 0000:86:00.1: complete
[39376.528274] igb_uio 0000:86:00.1: mapping 1K dma=0xe1dec2000 host=00000000dfb48cdd
[39376.528279] igb_uio 0000:86:00.1: unmapping 1K dma=0xe1dec2000 host=00000000dfb48cdd
[39384.776593] __request_module: 1368 callbacks suppressed
[39384.776597] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[39384.776704] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[39384.777014] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[39384.777110] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[39384.777127] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[39384.777132] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond6, throttling...
[39384.777157] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic5, throttling...
[39384.777230] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[39384.777481] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[39384.777586] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[39434.313463] __request_module: 90 callbacks suppressed
[39434.313466] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[39434.313532] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[39434.313571] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[39434.313725] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[39434.313920] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[39434.314057] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[39434.314064] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[39434.314079] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[39434.314106] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[39434.314178] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[39481.475959] __request_module: 4140 callbacks suppressed
[39481.475961] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[39481.476081] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[39481.476143] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[39481.476149] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[39481.476168] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond4, throttling...
[39481.476178] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[39481.476206] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[39481.476208] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[39481.476356] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[39481.476384] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[39560.206516] igb_uio: Use MSIX interrupt by default
[39560.889871] igb_uio 0000:86:00.0: mapping 1K dma=0xde98f3000 host=000000007bc04221
[39560.889877] igb_uio 0000:86:00.0: unmapping 1K dma=0xde98f3000 host=000000007bc04221
[39560.890506] igb_uio 0000:86:00.1: mapping 1K dma=0xde98f3000 host=000000007bc04221
[39560.890510] igb_uio 0000:86:00.1: unmapping 1K dma=0xde98f3000 host=000000007bc04221
[39561.445133] igb_uio 0000:86:00.0: uio device registered with irq 134
[39561.644102] igb_uio 0000:86:00.1: uio device registered with irq 135
[39562.032658] rte_kni: Creating kni...
[39576.687457] igb_uio: Use MSIX interrupt by default
[39577.362526] igb_uio 0000:86:00.0: mapping 1K dma=0x104dfb9000 host=0000000080c44647
[39577.362529] igb_uio 0000:86:00.0: unmapping 1K dma=0x104dfb9000 host=0000000080c44647
[39577.363072] igb_uio 0000:86:00.1: mapping 1K dma=0x104dfb9000 host=0000000080c44647
[39577.363073] igb_uio 0000:86:00.1: unmapping 1K dma=0x104dfb9000 host=0000000080c44647
[39577.936872] igb_uio 0000:86:00.0: uio device registered with irq 134
[39578.135846] igb_uio 0000:86:00.1: uio device registered with irq 135
[39578.524826] rte_kni: Creating kni...
[39588.486077] IPv6: ADDRCONF(NETDEV_UP): vEth0_0: link is not ready
[39593.097283] IPv6: ADDRCONF(NETDEV_CHANGE): vEth0_0: link becomes ready
[39605.247165] __request_module: 1682 callbacks suppressed
[39605.247167] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[39605.247187] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[39605.247279] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[39605.247292] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[39605.247306] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[39605.247339] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic7, throttling...
[39605.247395] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[39605.247398] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[39605.247486] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[39605.247511] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[39653.568687] __request_module: 171 callbacks suppressed
[39653.568689] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[39653.569045] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[39653.569060] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[39653.569077] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[39653.569168] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[39653.569171] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[39653.569271] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond0, throttling...
[39653.569277] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond4, throttling...
[39653.569409] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[39653.569430] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[39702.543774] __request_module: 2534 callbacks suppressed
[39702.543776] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[39702.543847] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[39702.543869] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[39702.543914] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[39702.543986] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[39702.544158] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[39702.544246] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[39702.544259] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[39702.544262] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond0, throttling...
[39702.544265] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[39783.698885] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[39783.735317] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[39783.735322] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[39783.832463] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[39783.832467] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[39783.970569] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[39784.006680] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[39784.478316] pps pps0: new PPS source ptp4
[39784.478321] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[39784.615896] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[39785.086877] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[39785.123318] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[39785.123322] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[39785.220478] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[39785.220482] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[39785.358500] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[39785.402314] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[39785.875483] pps pps1: new PPS source ptp5
[39785.875488] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[39786.013036] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[39789.205056] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[39789.205086] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[39790.481198] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[39790.481222] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[40087.499168] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[40087.887253] ixgbe 0000:86:00.0: complete
[40088.294838] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[40088.331291] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[40088.331296] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[40088.428432] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[40088.428436] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[40088.566966] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[40088.606550] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[40089.080630] pps pps0: new PPS source ptp4
[40089.080634] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[40089.218383] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[40089.286636] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[40089.675166] ixgbe 0000:86:00.1: complete
[40090.083158] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[40090.119600] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[40090.119605] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[40090.216819] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[40090.216824] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[40090.355214] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[40090.386386] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[40090.858694] pps pps1: new PPS source ptp5
[40090.858699] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[40090.996239] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[40093.756454] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[40093.756482] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[40095.554636] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[40095.554658] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[40099.995187] igb_uio: Use MSIX interrupt by default
[40100.752288] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[40101.155137] ixgbe 0000:86:00.0: complete
[40101.156509] igb_uio 0000:86:00.0: mapping 1K dma=0xe01c0d000 host=00000000770fc7b5
[40101.156516] igb_uio 0000:86:00.0: unmapping 1K dma=0xe01c0d000 host=00000000770fc7b5
[40101.159390] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[40101.543107] ixgbe 0000:86:00.1: complete
[40101.544297] igb_uio 0000:86:00.1: mapping 1K dma=0xe01c0d000 host=00000000770fc7b5
[40101.544302] igb_uio 0000:86:00.1: unmapping 1K dma=0xe01c0d000 host=00000000770fc7b5
[40109.788940] __request_module: 1784 callbacks suppressed
[40109.788943] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[40109.789121] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[40109.789130] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[40109.789223] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[40109.789232] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic4, throttling...
[40109.789388] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[40109.789412] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[40109.789749] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[40109.790048] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[40109.790182] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module vmnic3, throttling...
[40159.489175] __request_module: 215 callbacks suppressed
[40159.489177] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[40159.489186] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[40159.489379] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[40159.489409] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[40159.489515] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[40159.489591] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[40159.489714] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond1, throttling...
[40159.489723] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[40159.489734] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[40159.490007] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[40206.937017] __request_module: 4943 callbacks suppressed
[40206.937019] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[40206.937304] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[40206.937385] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[40206.937727] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[40206.937854] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[40206.937862] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[40206.937865] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[40206.937917] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[40206.938043] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[40206.938093] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[40286.798243] igb_uio: Use MSIX interrupt by default
[40287.473651] igb_uio 0000:86:00.0: mapping 1K dma=0xde9c6e000 host=00000000541158b0
[40287.473654] igb_uio 0000:86:00.0: unmapping 1K dma=0xde9c6e000 host=00000000541158b0
[40287.474234] igb_uio 0000:86:00.1: mapping 1K dma=0xde9c6e000 host=00000000541158b0
[40287.474235] igb_uio 0000:86:00.1: unmapping 1K dma=0xde9c6e000 host=00000000541158b0
[40288.040224] igb_uio 0000:86:00.0: uio device registered with irq 134
[40288.239581] igb_uio 0000:86:00.1: uio device registered with irq 135
[40288.628197] rte_kni: Creating kni...
[40303.166810] igb_uio: Use MSIX interrupt by default
[40303.852755] igb_uio 0000:86:00.0: mapping 1K dma=0xdfa29e000 host=000000007c3702c0
[40303.852761] igb_uio 0000:86:00.0: unmapping 1K dma=0xdfa29e000 host=000000007c3702c0
[40303.853420] igb_uio 0000:86:00.1: mapping 1K dma=0xdfa29e000 host=000000007c3702c0
[40303.853424] igb_uio 0000:86:00.1: unmapping 1K dma=0xdfa29e000 host=000000007c3702c0
[40304.415084] igb_uio 0000:86:00.0: uio device registered with irq 134
[40304.613127] igb_uio 0000:86:00.1: uio device registered with irq 135
[40305.002115] rte_kni: Creating kni...
[40314.962116] IPv6: ADDRCONF(NETDEV_UP): vEth0_0: link is not ready
[40319.574331] IPv6: ADDRCONF(NETDEV_CHANGE): vEth0_0: link becomes ready
[40335.379060] __request_module: 1599 callbacks suppressed
[40335.379062] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[40335.379316] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[40335.379345] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[40335.379401] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[40335.379479] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[40335.379568] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[40335.379638] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[40335.379649] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[40335.379746] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[40335.379749] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module vmnic3, throttling...
[40385.636940] __request_module: 287 callbacks suppressed
[40385.636942] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[40385.637112] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[40385.637672] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[40385.637676] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[40385.637698] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[40385.637706] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[40385.637794] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[40385.637979] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[40385.638063] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond4, throttling...
[40385.638090] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[40434.019033] __request_module: 3967 callbacks suppressed
[40434.019035] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[40434.019124] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[40434.019210] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[40434.019251] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[40434.019305] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[40434.019435] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[40434.020073] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[40434.020088] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[40434.020122] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[40434.020230] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[40511.150914] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[40511.187364] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[40511.187369] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[40511.284517] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[40511.284521] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[40511.422820] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[40511.446462] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[40511.915135] pps pps0: new PPS source ptp4
[40511.915140] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[40512.052712] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[40512.527142] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[40512.563573] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[40512.563578] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[40512.660746] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[40512.660751] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[40512.799074] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[40512.830356] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[40513.301376] pps pps1: new PPS source ptp5
[40513.301381] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[40513.439037] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[40516.828006] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[40516.828035] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[40523.676939] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[40523.676962] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[41368.618877] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[41369.031219] ixgbe 0000:86:00.0: complete
[41369.438936] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[41369.475370] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[41369.475375] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[41369.572532] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[41369.572536] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[41369.711919] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[41369.742654] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[41370.216739] pps pps0: new PPS source ptp4
[41370.216743] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[41370.354474] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[41370.422310] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[41370.811225] ixgbe 0000:86:00.1: complete
[41371.219273] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[41371.255714] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[41371.255719] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[41371.352869] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[41371.352873] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[41371.491408] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[41371.526539] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[41371.999613] pps pps1: new PPS source ptp5
[41371.999618] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[41372.137184] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[41374.768948] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[41374.768976] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[41376.635520] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[41376.635541] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[41386.363918] __request_module: 1464 callbacks suppressed
[41386.363920] request_module: kmod_concurrent_max (1) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41386.364010] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond5, throttling...
[41386.364097] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic4, throttling...
[41386.364142] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic4, throttling...
[41386.364264] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41386.364444] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[41386.364798] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[41386.364820] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[41386.364929] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic3, throttling...
[41386.364954] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module vmnic1, throttling...
[41419.115800] i40e 0000:18:00.0: removed PHC from enp24s0f0
[41420.971141] i40e 0000:18:00.0: fw 7.0.50775 api 1.8 nvm 7.00 0x80004cc9 1.2154.0
[41421.154417] i40e 0000:18:00.0: Stopping firmware LLDP agent.
[41421.154578] i40e 0000:18:00.0: MAC address: 68:05:ca:0d:bc:00
[41421.154832] i40e 0000:18:00.0: FW LLDP is disabled
[41421.154888] i40e 0000:18:00.0: DCB is not supported or FW LLDP is disabled
[41421.154891] i40e 0000:18:00.0: DCB init failed -64, disabled
[41421.164614] i40e 0000:18:00.0 enp24s0f0: renamed from eth0
[41421.172228] i40e 0000:18:00.0 enp24s0f0: NIC Link is Up, 40 Gbps Full Duplex, Flow Control: None
[41421.187092] i40e 0000:18:00.0: PCI-Express: Speed 8.0GT/s Width x8
[41421.198752] i40e 0000:18:00.0: Features: PF-id[0] VFs: 64 VSIs: 66 QP: 72 RSS FD_ATR FD_SB NTUPLE CloudF VxLAN Geneve NVGRE PTP VEPA
[41421.419596] IPv6: ADDRCONF(NETDEV_UP): enp24s0f0: link is not ready
[41421.484358] i40e 0000:18:00.1: removed PHC from enp24s0f1
[41422.237946] IPv6: ADDRCONF(NETDEV_CHANGE): enp24s0f0: link becomes ready
[41423.211170] i40e 0000:18:00.1: fw 7.0.50775 api 1.8 nvm 7.00 0x80004cc9 1.2154.0
[41423.350522] i40e 0000:18:00.1: Stopping firmware LLDP agent.
[41423.350682] i40e 0000:18:00.1: MAC address: 68:05:ca:0d:bc:01
[41423.350935] i40e 0000:18:00.1: FW LLDP is disabled
[41423.350992] i40e 0000:18:00.1: DCB is not supported or FW LLDP is disabled
[41423.350995] i40e 0000:18:00.1: DCB init failed -64, disabled
[41423.360192] i40e 0000:18:00.1 enp24s0f1: renamed from eth0
[41423.366941] i40e 0000:18:00.1 enp24s0f1: NIC Link is Up, 40 Gbps Full Duplex, Flow Control: None
[41423.381459] i40e 0000:18:00.1: PCI-Express: Speed 8.0GT/s Width x8
[41423.393169] i40e 0000:18:00.1: Features: PF-id[1] VFs: 64 VSIs: 66 QP: 72 RSS FD_ATR FD_SB NTUPLE CloudF VxLAN Geneve NVGRE PTP VEPA
[41423.614179] IPv6: ADDRCONF(NETDEV_UP): enp24s0f1: link is not ready
[41424.413944] IPv6: ADDRCONF(NETDEV_CHANGE): enp24s0f1: link becomes ready
[41427.870034] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[41428.275258] ixgbe 0000:86:00.0: complete
[41428.682863] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[41428.719293] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[41428.719297] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[41428.816434] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[41428.816438] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[41428.955844] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[41428.986482] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[41429.458689] pps pps0: new PPS source ptp4
[41429.458693] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[41429.596399] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[41429.663798] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[41430.051256] ixgbe 0000:86:00.1: complete
[41430.459167] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[41430.495602] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[41430.495607] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[41430.592766] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[41430.592770] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[41430.731173] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[41430.778733] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[41431.246339] pps pps1: new PPS source ptp5
[41431.246343] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[41431.384039] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[41434.057794] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[41434.057833] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[41435.801145] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[41435.801324] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[41437.962777] __request_module: 225 callbacks suppressed
[41437.962779] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41437.962862] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic4, throttling...
[41437.962893] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic5, throttling...
[41437.962926] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[41437.962966] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic6, throttling...
[41437.963025] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic5, throttling...
[41437.963226] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[41437.963715] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[41437.963730] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[41437.963861] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module vmnic5, throttling...
[41487.926493] __request_module: 181 callbacks suppressed
[41487.926495] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41487.926581] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[41487.926791] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[41487.926904] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41487.927048] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[41487.927132] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[41487.927238] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[41487.927249] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond0, throttling...
[41487.927319] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond1, throttling...
[41487.927382] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[41536.112851] __request_module: 989 callbacks suppressed
[41536.112854] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41536.112952] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[41536.113076] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41536.113137] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[41536.113161] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond0, throttling...
[41536.113191] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[41536.113226] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[41536.113328] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[41536.113440] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[41536.113446] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41548.021448] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[41548.419229] ixgbe 0000:86:00.0: complete
[41548.823877] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[41548.860235] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[41548.860240] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[41548.957350] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[41548.957354] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[41549.095624] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[41549.126648] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[41549.593835] pps pps0: new PPS source ptp4
[41549.593840] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[41549.730928] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[41549.798003] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[41550.191196] ixgbe 0000:86:00.1: complete
[41550.598777] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[41550.635207] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[41550.635212] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[41550.732337] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[41550.732342] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[41550.870424] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[41550.902636] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[41551.373904] pps pps1: new PPS source ptp5
[41551.373908] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[41551.510917] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[41554.197110] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[41554.197141] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[41555.985394] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[41555.985425] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[41565.522456] __request_module: 1723 callbacks suppressed
[41565.522458] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[41565.522619] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[41565.522635] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[41565.522845] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[41565.523044] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[41565.523097] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic8, throttling...
[41565.523126] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic5, throttling...
[41565.523176] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic7, throttling...
[41565.523472] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[41565.523681] request_module: kmod_concurrent_max (1) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[41614.063893] __request_module: 106 callbacks suppressed
[41614.063896] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module vmnic1, throttling...
[41614.063906] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[41614.063931] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[41614.063951] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond8, throttling...
[41614.064117] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[41614.064140] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[41614.064376] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[41614.064421] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[41614.064578] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[41614.064627] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[41617.533504] i40e 0000:18:00.0: removed PHC from enp24s0f0
[41621.507550] i40e 0000:18:00.0: fw 7.0.50775 api 1.8 nvm 7.00 0x80004cc9 1.2154.0
[41621.734245] i40e 0000:18:00.0: Stopping firmware LLDP agent.
[41621.734406] i40e 0000:18:00.0: MAC address: 68:05:ca:0d:bc:00
[41621.734656] i40e 0000:18:00.0: FW LLDP is disabled
[41621.734711] i40e 0000:18:00.0: DCB is not supported or FW LLDP is disabled
[41621.734714] i40e 0000:18:00.0: DCB init failed -64, disabled
[41621.742894] i40e 0000:18:00.0 enp24s0f0: renamed from eth0
[41621.749782] i40e 0000:18:00.0 enp24s0f0: NIC Link is Up, 40 Gbps Full Duplex, Flow Control: None
[41621.764304] i40e 0000:18:00.0: PCI-Express: Speed 8.0GT/s Width x8
[41621.775997] i40e 0000:18:00.0: Features: PF-id[0] VFs: 64 VSIs: 66 QP: 72 RSS FD_ATR FD_SB NTUPLE CloudF VxLAN Geneve NVGRE PTP VEPA
[41622.002952] IPv6: ADDRCONF(NETDEV_UP): enp24s0f0: link is not ready
[41622.067520] i40e 0000:18:00.1: removed PHC from enp24s0f1
[41622.813977] IPv6: ADDRCONF(NETDEV_CHANGE): enp24s0f0: link becomes ready
[41624.868311] i40e 0000:18:00.1: fw 7.0.50775 api 1.8 nvm 7.00 0x80004cc9 1.2154.0
[41625.101680] i40e 0000:18:00.1: Stopping firmware LLDP agent.
[41625.101840] i40e 0000:18:00.1: MAC address: 68:05:ca:0d:bc:01
[41625.102091] i40e 0000:18:00.1: FW LLDP is disabled
[41625.102146] i40e 0000:18:00.1: DCB is not supported or FW LLDP is disabled
[41625.102149] i40e 0000:18:00.1: DCB init failed -64, disabled
[41625.110868] i40e 0000:18:00.1 enp24s0f1: renamed from eth0
[41625.117291] i40e 0000:18:00.1 enp24s0f1: NIC Link is Up, 40 Gbps Full Duplex, Flow Control: None
[41625.132164] i40e 0000:18:00.1: PCI-Express: Speed 8.0GT/s Width x8
[41625.143938] i40e 0000:18:00.1: Features: PF-id[1] VFs: 64 VSIs: 66 QP: 72 RSS FD_ATR FD_SB NTUPLE CloudF VxLAN Geneve NVGRE PTP VEPA
[41625.364554] IPv6: ADDRCONF(NETDEV_UP): enp24s0f1: link is not ready
[41626.173970] IPv6: ADDRCONF(NETDEV_CHANGE): enp24s0f1: link becomes ready
[41661.828795] __request_module: 78 callbacks suppressed
[41661.828796] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41661.828836] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[41661.829086] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[41661.829401] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[41661.829652] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[41661.829688] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[41661.829712] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[41661.829941] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[41661.830162] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41661.830251] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond1, throttling...
[41738.805588] igb_uio: Use MSIX interrupt by default
[41739.562720] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[41739.951192] ixgbe 0000:86:00.0: complete
[41739.952464] igb_uio 0000:86:00.0: mapping 1K dma=0xdeaccf000 host=00000000f1f42e65
[41739.952468] igb_uio 0000:86:00.0: unmapping 1K dma=0xdeaccf000 host=00000000f1f42e65
[41739.955379] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[41740.339311] ixgbe 0000:86:00.1: complete
[41740.340555] igb_uio 0000:86:00.1: mapping 1K dma=0xd882b7000 host=00000000c4c94c7b
[41740.340560] igb_uio 0000:86:00.1: unmapping 1K dma=0xd882b7000 host=00000000c4c94c7b
[41748.590868] __request_module: 1727 callbacks suppressed
[41748.590870] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41748.590975] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic3, throttling...
[41748.591108] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[41748.591159] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[41748.591278] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[41748.591564] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[41748.591661] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic6, throttling...
[41748.591700] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[41748.591766] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic7, throttling...
[41748.592000] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic5, throttling...
[41798.548992] __request_module: 124 callbacks suppressed
[41798.548994] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41798.549003] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[41798.549451] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[41798.549745] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[41798.549991] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41798.550056] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[41798.550211] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[41798.550295] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[41798.550390] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41798.550470] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond1, throttling...
[41845.140751] __request_module: 5153 callbacks suppressed
[41845.140754] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41845.140759] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41845.140775] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[41845.140835] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[41845.140938] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[41845.141022] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[41845.141071] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[41845.141176] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond4, throttling...
[41845.141225] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[41845.141228] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[41875.793799] i40e 0000:18:00.0: removed PHC from enp24s0f0
[41877.680417] i40e 0000:18:00.0: fw 7.0.50775 api 1.8 nvm 7.00 0x80004cc9 1.2154.0
[41877.916871] i40e 0000:18:00.0: Stopping firmware LLDP agent.
[41877.917029] i40e 0000:18:00.0: MAC address: 68:05:ca:0d:bc:00
[41877.917265] i40e 0000:18:00.0: FW LLDP is disabled
[41877.917319] i40e 0000:18:00.0: DCB is not supported or FW LLDP is disabled
[41877.917321] i40e 0000:18:00.0: DCB init failed -64, disabled
[41877.924789] i40e 0000:18:00.0 enp24s0f0: renamed from eth0
[41877.930175] i40e 0000:18:00.0 enp24s0f0: NIC Link is Up, 40 Gbps Full Duplex, Flow Control: None
[41877.944620] i40e 0000:18:00.0: PCI-Express: Speed 8.0GT/s Width x8
[41877.956375] i40e 0000:18:00.0: Features: PF-id[0] VFs: 64 VSIs: 66 QP: 72 RSS FD_ATR FD_SB NTUPLE CloudF VxLAN Geneve NVGRE PTP VEPA
[41878.178648] IPv6: ADDRCONF(NETDEV_UP): enp24s0f0: link is not ready
[41878.243425] i40e 0000:18:00.1: removed PHC from enp24s0f1
[41878.973980] IPv6: ADDRCONF(NETDEV_CHANGE): enp24s0f0: link becomes ready
[41880.115684] i40e 0000:18:00.1: fw 7.0.50775 api 1.8 nvm 7.00 0x80004cc9 1.2154.0
[41880.296683] i40e 0000:18:00.1: Stopping firmware LLDP agent.
[41880.296844] i40e 0000:18:00.1: MAC address: 68:05:ca:0d:bc:01
[41880.297099] i40e 0000:18:00.1: FW LLDP is disabled
[41880.297155] i40e 0000:18:00.1: DCB is not supported or FW LLDP is disabled
[41880.297159] i40e 0000:18:00.1: DCB init failed -64, disabled
[41880.306703] i40e 0000:18:00.1 enp24s0f1: renamed from eth0
[41880.313248] i40e 0000:18:00.1 enp24s0f1: NIC Link is Up, 40 Gbps Full Duplex, Flow Control: None
[41880.327816] i40e 0000:18:00.1: PCI-Express: Speed 8.0GT/s Width x8
[41880.339531] i40e 0000:18:00.1: Features: PF-id[1] VFs: 64 VSIs: 66 QP: 72 RSS FD_ATR FD_SB NTUPLE CloudF VxLAN Geneve NVGRE PTP VEPA
[41880.560248] IPv6: ADDRCONF(NETDEV_UP): enp24s0f1: link is not ready
[41881.373983] IPv6: ADDRCONF(NETDEV_CHANGE): enp24s0f1: link becomes ready
[41894.284804] __request_module: 1770 callbacks suppressed
[41894.284805] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41894.284868] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[41894.285201] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[41894.285298] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[41894.285310] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41894.285367] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[41894.285414] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[41894.285460] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic6, throttling...
[41894.285542] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[41894.285572] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[41930.592049] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[41930.628488] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[41930.628493] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[41930.725580] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[41930.725585] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[41930.863424] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[41930.894607] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[41931.363051] pps pps0: new PPS source ptp4
[41931.363055] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[41931.500054] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[41931.970497] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[41932.006904] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[41932.006909] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[41932.103988] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[41932.103992] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[41932.242326] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[41932.274513] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[41932.741629] pps pps1: new PPS source ptp5
[41932.741634] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[41932.877505] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[41937.494006] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[41937.494197] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[41938.699304] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[41938.699493] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[41943.881187] __request_module: 249 callbacks suppressed
[41943.881190] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41943.881443] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic4, throttling...
[41943.881473] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[41943.881525] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic7, throttling...
[41943.881793] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[41943.881884] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[41943.882022] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic8, throttling...
[41943.882042] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond0, throttling...
[41943.882277] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module vmnic3, throttling...
[41943.882313] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41992.467862] __request_module: 212 callbacks suppressed
[41992.467865] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41992.468240] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[41992.468291] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[41992.468588] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41992.468603] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[41992.468643] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[41992.468655] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[41992.468711] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[41992.468714] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[41992.468729] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond0, throttling...
[42070.013679] igb_uio: Use MSIX interrupt by default
[42070.785801] i40e 0000:18:00.0: removed PHC from enp24s0f0
[42072.428968] igb_uio 0000:18:00.0: mapping 1K dma=0x618285000 host=000000006c70b4b7
[42072.428973] igb_uio 0000:18:00.0: unmapping 1K dma=0x618285000 host=000000006c70b4b7
[42072.429410] i40e 0000:18:00.1: removed PHC from enp24s0f1
[42074.621091] igb_uio 0000:18:00.1: mapping 1K dma=0x616e8a000 host=00000000d4fe8f79
[42074.621095] igb_uio 0000:18:00.1: unmapping 1K dma=0x616e8a000 host=00000000d4fe8f79
[42076.026063] igb_uio 0000:18:00.0: uio device registered with irq 43
[42076.080276] igb_uio 0000:18:00.1: uio device registered with irq 44
[42210.288922] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[42210.671324] ixgbe 0000:86:00.0: complete
[42211.079004] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[42211.115436] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[42211.115440] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[42211.212594] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[42211.212598] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[42211.350224] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[42211.382669] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[42211.855407] pps pps0: new PPS source ptp0
[42211.855412] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[42211.992509] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[42212.060104] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[42212.451191] ixgbe 0000:86:00.1: complete
[42212.858934] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[42212.895375] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[42212.895379] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[42212.992551] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[42212.992555] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[42213.131027] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[42213.162501] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[42213.634285] pps pps1: new PPS source ptp1
[42213.634290] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[42213.771902] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[42216.563671] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[42216.563700] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[42218.247648] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[42218.247671] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[42227.927445] __request_module: 1492 callbacks suppressed
[42227.927447] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42227.927471] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic5, throttling...
[42227.928053] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42227.928055] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[42227.928097] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[42227.928100] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic4, throttling...
[42227.928110] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[42227.928138] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic4, throttling...
[42227.928268] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[42227.928271] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[42245.774288] i40e 0000:18:00.0: fw 7.0.50775 api 1.8 nvm 7.00 0x80004cc9 1.2154.0
[42246.011416] i40e 0000:18:00.0: Stopping firmware LLDP agent.
[42246.011576] i40e 0000:18:00.0: MAC address: 68:05:ca:0d:bc:00
[42246.011828] i40e 0000:18:00.0: FW LLDP is disabled
[42246.011884] i40e 0000:18:00.0: DCB is not supported or FW LLDP is disabled
[42246.011887] i40e 0000:18:00.0: DCB init failed -64, disabled
[42246.020621] i40e 0000:18:00.0 enp24s0f0: renamed from eth0
[42246.027119] i40e 0000:18:00.0 enp24s0f0: NIC Link is Up, 40 Gbps Full Duplex, Flow Control: None
[42246.044633] i40e 0000:18:00.0: PCI-Express: Speed 8.0GT/s Width x8
[42246.056352] i40e 0000:18:00.0: Features: PF-id[0] VFs: 64 VSIs: 66 QP: 72 RSS FD_ATR FD_SB NTUPLE CloudF VxLAN Geneve NVGRE PTP VEPA
[42246.277813] IPv6: ADDRCONF(NETDEV_UP): enp24s0f0: link is not ready
[42246.486863] i40e 0000:18:00.1: fw 7.0.50775 api 1.8 nvm 7.00 0x80004cc9 1.2154.0
[42246.639659] i40e 0000:18:00.1: Stopping firmware LLDP agent.
[42246.639820] i40e 0000:18:00.1: MAC address: 68:05:ca:0d:bc:01
[42246.640071] i40e 0000:18:00.1: FW LLDP is disabled
[42246.640127] i40e 0000:18:00.1: DCB is not supported or FW LLDP is disabled
[42246.640131] i40e 0000:18:00.1: DCB init failed -64, disabled
[42246.649134] i40e 0000:18:00.1 enp24s0f1: renamed from eth0
[42246.655924] i40e 0000:18:00.1 enp24s0f1: NIC Link is Up, 40 Gbps Full Duplex, Flow Control: None
[42246.673471] i40e 0000:18:00.1: PCI-Express: Speed 8.0GT/s Width x8
[42246.685238] i40e 0000:18:00.1: Features: PF-id[1] VFs: 64 VSIs: 66 QP: 72 RSS FD_ATR FD_SB NTUPLE CloudF VxLAN Geneve NVGRE PTP VEPA
[42247.070012] IPv6: ADDRCONF(NETDEV_CHANGE): enp24s0f0: link becomes ready
[42277.608843] __request_module: 277 callbacks suppressed
[42277.608845] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[42277.608921] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[42277.608983] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42277.609106] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[42277.609111] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond6, throttling...
[42277.609132] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[42277.609148] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42277.609169] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond7, throttling...
[42277.609174] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[42277.609176] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond1, throttling...
[42325.822494] __request_module: 3263 callbacks suppressed
[42325.822496] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42325.822624] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[42325.822729] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[42325.822759] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[42325.822862] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[42325.822977] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[42325.823152] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[42325.823269] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[42325.823354] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42325.823400] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[42402.494310] igb_uio: Use MSIX interrupt by default
[42403.260383] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[42403.655349] ixgbe 0000:86:00.0: complete
[42403.656685] igb_uio 0000:86:00.0: mapping 1K dma=0x1054398000 host=0000000053246be4
[42403.656688] igb_uio 0000:86:00.0: unmapping 1K dma=0x1054398000 host=0000000053246be4
[42403.659548] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[42404.055283] ixgbe 0000:86:00.1: complete
[42404.056500] igb_uio 0000:86:00.1: mapping 1K dma=0x10519c2000 host=0000000085454c0f
[42404.056505] igb_uio 0000:86:00.1: unmapping 1K dma=0x10519c2000 host=0000000085454c0f
[42412.301505] __request_module: 1460 callbacks suppressed
[42412.301507] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[42412.301520] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[42412.301846] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[42412.302152] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic5, throttling...
[42412.302197] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[42412.302338] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[42412.302383] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic5, throttling...
[42412.302474] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic6, throttling...
[42412.302577] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond6, throttling...
[42412.302749] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[42461.630646] __request_module: 226 callbacks suppressed
[42461.630647] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42461.630672] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[42461.630717] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42461.630823] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[42461.630891] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[42461.630894] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[42461.630955] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond1, throttling...
[42461.630963] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond0, throttling...
[42461.631036] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[42461.631057] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[42509.272632] __request_module: 3972 callbacks suppressed
[42509.272635] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[42509.272653] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[42509.272714] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[42509.272821] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[42509.272841] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[42509.273294] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[42509.273340] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[42509.273572] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[42509.273608] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[42509.273698] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[42588.129524] igb_uio: Use MSIX interrupt by default
[42588.818283] igb_uio 0000:86:00.0: mapping 1K dma=0xe2d591000 host=000000000264fcdb
[42588.818289] igb_uio 0000:86:00.0: unmapping 1K dma=0xe2d591000 host=000000000264fcdb
[42588.818748] igb_uio 0000:86:00.1: mapping 1K dma=0xe2d591000 host=000000000264fcdb
[42588.818752] igb_uio 0000:86:00.1: unmapping 1K dma=0xe2d591000 host=000000000264fcdb
[42589.384747] igb_uio 0000:86:00.0: uio device registered with irq 44
[42589.584160] igb_uio 0000:86:00.1: uio device registered with irq 45
[42589.972900] rte_kni: Creating kni...
[42604.311222] igb_uio: Use MSIX interrupt by default
[42604.994199] igb_uio 0000:86:00.0: mapping 1K dma=0xe168b8000 host=0000000093ff5c5a
[42604.994206] igb_uio 0000:86:00.0: unmapping 1K dma=0xe168b8000 host=0000000093ff5c5a
[42604.994714] igb_uio 0000:86:00.1: mapping 1K dma=0xe168b8000 host=0000000093ff5c5a
[42604.994718] igb_uio 0000:86:00.1: unmapping 1K dma=0xe168b8000 host=0000000093ff5c5a
[42605.556327] igb_uio 0000:86:00.0: uio device registered with irq 44
[42605.755950] igb_uio 0000:86:00.1: uio device registered with irq 45
[42606.144740] rte_kni: Creating kni...
[42620.198248] IPv6: ADDRCONF(NETDEV_UP): vEth0_0: link is not ready
[42624.808778] IPv6: ADDRCONF(NETDEV_CHANGE): vEth0_0: link becomes ready
[42641.490805] __request_module: 1332 callbacks suppressed
[42641.490807] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[42641.490818] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic6, throttling...
[42641.490944] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic3, throttling...
[42641.490994] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[42641.491020] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[42641.491042] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[42641.491156] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic7, throttling...
[42641.491497] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[42641.491760] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[42641.492011] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[42691.099361] __request_module: 80 callbacks suppressed
[42691.099363] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42691.099369] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond3, throttling...
[42691.099402] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[42691.099451] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[42691.099534] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42691.099592] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[42691.099625] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42691.099653] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[42691.099694] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[42691.099716] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42738.299067] __request_module: 2660 callbacks suppressed
[42738.299069] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[42738.299078] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[42738.299146] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[42738.299285] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42738.299314] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[42738.299478] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[42738.299506] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[42738.299573] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[42738.299645] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42738.299651] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42819.698121] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[42819.734574] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[42819.734579] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[42819.831707] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[42819.831711] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[42819.970137] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[42820.014599] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[42820.362120] __request_module: 1481 callbacks suppressed
[42820.362123] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42820.362183] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[42820.362340] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[42820.362428] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic0, throttling...
[42820.362454] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic6, throttling...
[42820.362461] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[42820.362513] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[42820.362616] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic5, throttling...
[42820.362648] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[42820.362694] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[42820.471800] pps pps0: new PPS source ptp0
[42820.471808] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[42820.606431] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[42821.073047] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[42821.109317] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[42821.109321] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[42821.205866] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[42821.205870] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[42821.342569] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[42821.406617] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[42821.866057] pps pps1: new PPS source ptp1
[42821.866062] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[42822.001548] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[42825.196471] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[42825.196644] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[42827.681227] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[42827.681410] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[42869.888153] __request_module: 177 callbacks suppressed
[42869.888155] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42869.888339] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond4, throttling...
[42869.888413] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond0, throttling...
[42869.888452] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[42869.888531] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42869.888546] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42869.888574] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond8, throttling...
[42869.888599] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[42869.888621] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond3, throttling...
[42869.888691] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[42917.188216] __request_module: 2825 callbacks suppressed
[42917.188219] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[42917.188247] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[42917.188574] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[42917.188719] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[42917.188785] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[42917.188869] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[42917.188883] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[42917.189017] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[42917.189238] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[42917.189310] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[42993.461195] igb_uio: Use MSIX interrupt by default
[43324.669626] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[43325.059353] ixgbe 0000:86:00.0: complete
[43325.467070] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[43325.503502] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[43325.503507] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[43325.600662] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[43325.600666] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[43325.739373] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[43325.770769] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[43326.242309] pps pps0: new PPS source ptp0
[43326.242314] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[43326.379436] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[43326.446951] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[43326.831098] ixgbe 0000:86:00.1: complete
[43327.239048] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[43327.275495] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[43327.275500] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[43327.372677] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[43327.372682] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[43327.512097] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[43327.542760] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[43328.013779] pps pps1: new PPS source ptp1
[43328.013783] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[43328.151459] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[43330.937836] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[43330.937862] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[43332.565717] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[43332.565738] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[43337.147521] igb_uio: Use MSIX interrupt by default
[43337.912513] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[43338.315514] ixgbe 0000:86:00.0: complete
[43338.316946] igb_uio 0000:86:00.0: mapping 1K dma=0xdf482b000 host=0000000085245e2b
[43338.316952] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf482b000 host=0000000085245e2b
[43338.320011] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[43338.715392] ixgbe 0000:86:00.1: complete
[43338.716614] igb_uio 0000:86:00.1: mapping 1K dma=0xdd1e2b000 host=0000000016f31e98
[43338.716619] igb_uio 0000:86:00.1: unmapping 1K dma=0xdd1e2b000 host=0000000016f31e98
[43346.968915] __request_module: 1407 callbacks suppressed
[43346.968917] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[43346.969173] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[43346.969229] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[43346.969244] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[43346.969330] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[43346.969394] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[43346.969481] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[43346.969857] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[43346.970051] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic6, throttling...
[43346.970055] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond1, throttling...
[43396.407812] __request_module: 203 callbacks suppressed
[43396.407814] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[43396.407943] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[43396.407955] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[43396.408004] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[43396.408052] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module xp0, throttling...
[43396.408093] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[43396.408105] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[43396.408160] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[43396.408200] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[43396.408399] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[43411.511020] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[43411.547467] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[43411.547472] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[43411.644652] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[43411.644656] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[43411.782879] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[43411.814797] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[43412.285466] pps pps0: new PPS source ptp0
[43412.285471] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[43412.423029] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[43412.895035] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[43412.931485] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[43412.931490] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[43413.028638] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[43413.028642] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[43413.167583] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[43413.198600] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[43413.668494] pps pps1: new PPS source ptp1
[43413.668499] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[43413.805036] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[43416.886682] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[43416.886718] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[43418.388804] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[43418.388840] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[43436.201781] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[43436.591423] ixgbe 0000:86:00.0: complete
[43436.999115] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[43437.035549] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[43437.035554] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[43437.132714] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[43437.132718] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[43437.271062] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[43437.307145] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[43437.778016] pps pps0: new PPS source ptp0
[43437.778022] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[43437.913965] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[43437.981664] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[43438.383446] ixgbe 0000:86:00.1: complete
[43438.791029] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[43438.827460] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[43438.827465] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[43438.924619] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[43438.924623] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[43439.063008] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[43439.094619] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[43439.566110] pps pps1: new PPS source ptp1
[43439.566114] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[43439.703331] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[43442.395295] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[43442.395324] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[43444.170081] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[43444.170106] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[43453.699812] __request_module: 2272 callbacks suppressed
[43453.699815] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[43453.700034] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[43453.700278] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic6, throttling...
[43453.700425] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module vmnic3, throttling...
[43453.700621] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[43453.700639] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[43453.700691] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[43453.700883] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[43453.700940] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond8, throttling...
[43453.700942] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[43503.644261] __request_module: 233 callbacks suppressed
[43503.644263] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[43503.644319] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[43503.644338] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[43503.644410] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[43503.644597] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[43503.644755] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[43503.644806] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond0, throttling...
[43503.644816] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[43503.644861] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[43503.644890] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[43524.202613] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[43524.615233] ixgbe 0000:86:00.0: complete
[43525.019105] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[43525.055548] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[43525.055553] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[43525.152687] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[43525.152692] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[43525.291494] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[43525.318737] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[43525.790286] pps pps0: new PPS source ptp0
[43525.790290] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[43525.927349] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[43525.994328] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[43526.399467] ixgbe 0000:86:00.1: complete
[43526.806239] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[43526.842684] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[43526.842689] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[43526.939877] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[43526.939881] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[43527.079349] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[43527.110745] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[43527.582070] pps pps1: new PPS source ptp1
[43527.582075] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[43527.718610] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[43530.343429] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[43530.343465] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[43532.301408] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[43532.301590] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[43534.099591] __request_module: 3964 callbacks suppressed
[43534.099594] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[43534.099694] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[43534.099786] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic5, throttling...
[43534.099845] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[43534.099850] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module vmnic2, throttling...
[43534.099897] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[43534.099921] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module vmnic7, throttling...
[43534.099943] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[43534.099945] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic4, throttling...
[43534.099967] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[43584.629804] __request_module: 90 callbacks suppressed
[43584.629806] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[43584.629853] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[43584.629903] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[43584.629921] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[43584.629975] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[43584.630166] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[43584.630206] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[43584.630220] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[43584.630264] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[43584.630309] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[43632.316010] __request_module: 5542 callbacks suppressed
[43632.316012] request_module: kmod_concurrent_max (1) close to 0 (max_modprobes: 50), for module xp0, throttling...
[43632.316209] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[43632.316426] request_module: kmod_concurrent_max (1) close to 0 (max_modprobes: 50), for module xp0, throttling...
[43632.316437] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[43632.316523] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond4, throttling...
[43632.316621] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[43632.316690] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[43632.316714] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[43632.316731] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[43632.316820] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[43710.335908] igb_uio: Use MSIX interrupt by default
[43800.481465] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[43800.871398] ixgbe 0000:86:00.0: complete
[43801.279160] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[43801.315602] ixgbe 0000:86:00.0: PCI Express bandwidth of 32GT/s available
[43801.315607] ixgbe 0000:86:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[43801.412769] ixgbe 0000:86:00.0: MAC: 3, PHY: 0, PBA No: G45270-003
[43801.412774] ixgbe 0000:86:00.0: a0:36:9f:68:fd:b4
[43801.552139] ixgbe 0000:86:00.0 enp134s0f0: renamed from eth0
[43801.582595] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[43802.051561] pps pps0: new PPS source ptp0
[43802.051566] ixgbe 0000:86:00.0: registered PHC device on enp134s0f0
[43802.189296] IPv6: ADDRCONF(NETDEV_UP): enp134s0f0: link is not ready
[43802.256907] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[43802.647430] ixgbe 0000:86:00.1: complete
[43803.055218] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[43803.091673] ixgbe 0000:86:00.1: PCI Express bandwidth of 32GT/s available
[43803.091678] ixgbe 0000:86:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[43803.188828] ixgbe 0000:86:00.1: MAC: 3, PHY: 0, PBA No: G45270-003
[43803.188832] ixgbe 0000:86:00.1: a0:36:9f:68:fd:b6
[43803.328308] ixgbe 0000:86:00.1 enp134s0f1: renamed from eth0
[43803.358627] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[43803.831215] pps pps1: new PPS source ptp1
[43803.831220] ixgbe 0000:86:00.1: registered PHC device on enp134s0f1
[43803.968841] IPv6: ADDRCONF(NETDEV_UP): enp134s0f1: link is not ready
[43806.743115] ixgbe 0000:86:00.0 enp134s0f0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[43806.743144] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f0: link becomes ready
[43808.450876] ixgbe 0000:86:00.1 enp134s0f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[43808.450897] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0f1: link becomes ready
[43817.946277] __request_module: 1650 callbacks suppressed
[43817.946279] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[43817.946322] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[43817.946342] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module vmnic1, throttling...
[43817.946402] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond6, throttling...
[43817.946878] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[43817.946933] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[43817.946975] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[43817.947037] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[43817.947242] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[43817.947515] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic1, throttling...
[43867.007662] __request_module: 265 callbacks suppressed
[43867.007663] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[43867.007732] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[43867.007781] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[43867.007902] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[43867.007906] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond0, throttling...
[43867.007964] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[43867.008022] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[43867.008052] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[43867.008079] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[43867.008097] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond7, throttling...
[43914.235929] __request_module: 4647 callbacks suppressed
[43914.235932] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[43914.236017] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[43914.236059] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[43914.236230] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[43914.236286] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[43914.236320] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[43914.236328] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[43914.236336] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond8, throttling...
[43914.236384] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond8, throttling...
[43914.236388] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[43991.621694] igb_uio: Use MSIX interrupt by default
[43992.380903] ixgbe 0000:86:00.0: removed PHC on enp134s0f0
[43992.775353] ixgbe 0000:86:00.0: complete
[43992.776741] igb_uio 0000:86:00.0: mapping 1K dma=0xdf0a6c000 host=00000000e7d9b363
[43992.776746] igb_uio 0000:86:00.0: unmapping 1K dma=0xdf0a6c000 host=00000000e7d9b363
[43992.780009] ixgbe 0000:86:00.1: removed PHC on enp134s0f1
[43993.159402] ixgbe 0000:86:00.1: complete
[43993.160612] igb_uio 0000:86:00.1: mapping 1K dma=0xdef5ce000 host=000000009cb960c7
[43993.160617] igb_uio 0000:86:00.1: unmapping 1K dma=0xdef5ce000 host=000000009cb960c7
[44001.397246] __request_module: 1405 callbacks suppressed
[44001.397248] request_module: kmod_concurrent_max (1) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[44001.397257] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond7, throttling...
[44001.397262] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond5, throttling...
[44001.397680] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[44001.397923] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[44001.397965] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond9, throttling...
[44001.398088] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[44001.398168] request_module: kmod_concurrent_max (1) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[44001.398196] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic2, throttling...
[44001.398224] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-vmnic3, throttling...
[44051.191451] __request_module: 159 callbacks suppressed
[44051.191454] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[44051.191464] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[44051.191484] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond4, throttling...
[44051.191648] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[44051.191753] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[44051.191990] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond3, throttling...
[44051.192128] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[44051.192173] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond2, throttling...
[44051.192221] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[44051.192308] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module bond1, throttling...
[44098.996586] __request_module: 3652 callbacks suppressed
[44098.996588] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[44098.996833] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[44098.997205] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[44098.997286] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[44098.997341] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[44098.997471] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[44098.997564] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-xp0, throttling...
[44098.997603] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond2, throttling...
[44098.997686] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond1, throttling...
[44098.997799] request_module: kmod_concurrent_max (0) close to 0 (max_modprobes: 50), for module netdev-bond0, throttling...
[44178.802561] igb_uio: Use MSIX interrupt by default
[44179.490373] igb_uio 0000:86:00.0: mapping 1K dma=0xd66c73000 host=0000000000b69369
[44179.490379] igb_uio 0000:86:00.0: unmapping 1K dma=0xd66c73000 host=0000000000b69369
[44179.490871] igb_uio 0000:86:00.1: mapping 1K dma=0xe16bab000 host=000000004fb2bba2
[44179.490875] igb_uio 0000:86:00.1: unmapping 1K dma=0xe16bab000 host=000000004fb2bba2
[44180.057332] igb_uio 0000:86:00.0: uio device registered with irq 44
[44180.255481] igb_uio 0000:86:00.1: uio device registered with irq 45
[44180.644707] rte_kni: Creating kni...
[44191.566411] IPv6: ADDRCONF(NETDEV_UP): vEth0_0: link is not ready
[44196.807409] igb_uio: Use MSIX interrupt by default
[44197.482128] igb_uio 0000:86:00.0: mapping 1K dma=0xdfa46a000 host=00000000436539a2
[44197.482134] igb_uio 0000:86:00.0: unmapping 1K dma=0xdfa46a000 host=00000000436539a2
[44197.482593] igb_uio 0000:86:00.1: mapping 1K dma=0xdfa46a000 host=00000000436539a2
[44197.482597] igb_uio 0000:86:00.1: unmapping 1K dma=0xdfa46a000 host=00000000436539a2
[44198.061254] igb_uio 0000:86:00.0: uio device registered with irq 44
[44198.259409] igb_uio 0000:86:00.1: uio device registered with irq 45
[44198.648611] rte_kni: Creating kni...
[44208.510384] IPv6: ADDRCONF(NETDEV_UP): vEth0_0: link is not ready
[44213.120973] IPv6: ADDRCONF(NETDEV_CHANGE): vEth0_0: link becomes ready
[44231.527344] igb_uio: Use MSIX interrupt by default
[44232.211425] igb_uio 0000:86:00.0: mapping 1K dma=0x104c957000 host=00000000df140a63
[44232.211431] igb_uio 0000:86:00.0: unmapping 1K dma=0x104c957000 host=00000000df140a63
[44232.212008] igb_uio 0000:86:00.1: mapping 1K dma=0x104c957000 host=00000000df140a63
[44232.212012] igb_uio 0000:86:00.1: unmapping 1K dma=0x104c957000 host=00000000df140a63
[44232.775440] igb_uio 0000:86:00.0: uio device registered with irq 44
[44232.973420] igb_uio 0000:86:00.1: uio device registered with irq 45
[44233.363079] rte_kni: Creating kni...
[44243.322367] IPv6: ADDRCONF(NETDEV_UP): vEth0_0: link is not ready
[44247.935277] IPv6: ADDRCONF(NETDEV_CHANGE): vEth0_0: link becomes ready
[1]+ Killed ./examples/kni/build/app/kni -c 0x1c0000 -n 4 -- -P -p 0x1 --config="(0,18,19,20)" -m
22/01/2020 16:50:55 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:50:56 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:50:57 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:50:57 dut.10.238.54.218:
22/01/2020 16:50:57 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:50:57 dut.10.238.54.218:
22/01/2020 16:50:57 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:50:57 dut.10.238.54.218:
22/01/2020 16:50:57 dut.10.238.54.218: ls
22/01/2020 16:50:57 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:50:57 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:50:58 dut.10.238.54.218:
22/01/2020 16:50:58 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko
22/01/2020 16:50:58 dut.10.238.54.218:
22/01/2020 16:50:58 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:51:03 dut.10.238.54.218: [1] 48766
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
..............................................done
22/01/2020 16:51:08 dut.10.238.54.218: ps -aux
22/01/2020 16:51:09 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:08 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 82520 ? S<s 03:30 0:04 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:09 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5644 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2136 0.0 0.0 0 0 ? I 14:59 0:01 [kworker/u594:11]
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 18560 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 32118 0.0 0.0 0 0 ? I 15:37 0:00 [kworker/u594:30]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46528 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:29]
root 46535 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:30]
root 46650 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:31]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 48766 277 0.0 268951672 26280 pts/2 Rl 15:47 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 48774 2.2 0.0 0 0 ? S 15:47 0:00 [kni_single]
root 48790 0.0 0.0 38376 3632 pts/2 R+ 15:47 0:00 ps -aux
root 49136 0.0 0.0 0 0 ? I 15:00 0:01 [kworker/u594:31]
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 57546 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u594:27]
root 60299 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u594:28]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.0 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9424 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5304 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 88197 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/9:1]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 129032 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/u594:35]
root 135561 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u593:0]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 151670 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u593:22]
root 151719 0.1 0.0 0 0 ? I 15:40 0:00 [kworker/u593:24]
root 152323 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u594:32]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 154614 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:33]
root 154618 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:34]
root 155424 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:36]
root 155491 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:38]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280681 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/u594:0]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 280847 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/u594:1]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285141 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:1]
root 285150 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:2]
root 285173 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:3]
root 285175 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:4]
root 285178 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:5]
root 285180 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:6]
root 285222 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:2]
root 285251 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:7]
root 285263 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:8]
root 285267 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:9]
root 285274 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:10]
root 285306 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:11]
root 285312 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:3]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285344 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:5]
root 285366 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:12]
root 285370 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:13]
root 285426 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:14]
root 285443 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:15]
root 285453 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:6]
root 285468 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:7]
root 285473 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:8]
root 285492 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:16]
root 285518 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:9]
root 285520 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:10]
root 285560 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:12]
root 285593 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:13]
root 285655 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:14]
root 285668 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:18]
root 285719 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:15]
root 285720 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:19]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285754 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:20]
root 285820 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:17]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285943 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:19]
root 285953 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:20]
root 285982 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:21]
root 285996 0.1 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 286024 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:21]
root 286083 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:23]
root 286160 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:25]
root 286187 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:26]
root 286203 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:23]
root 286220 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:24]
root 286382 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:25]
root 289515 0.0 0.0 0 0 ? I 15:36 0:00 [kworker/u594:29]
root 297138 0.0 0.0 0 0 ? I 15:19 0:00 [kworker/18:1]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:51:09 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:51:11 dut.10.238.54.218:
22/01/2020 16:51:12 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:51:12 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:51:12 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:51:12 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:51:12 dut.10.238.54.218:
22/01/2020 16:51:12 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:51:12 dut.10.238.54.218:
22/01/2020 16:51:12 dut.10.238.54.218: ls
22/01/2020 16:51:12 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:51:12 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:51:13 dut.10.238.54.218:
22/01/2020 16:51:13 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_none
22/01/2020 16:51:13 dut.10.238.54.218:
22/01/2020 16:51:13 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:51:19 dut.10.238.54.218: [1] 48833
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 16:51:24 dut.10.238.54.218: ps -aux
22/01/2020 16:51:24 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:08 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 82580 ? S<s 03:30 0:04 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:09 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5644 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2136 0.0 0.0 0 0 ? I 14:59 0:01 [kworker/u594:11]
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 18560 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 32118 0.0 0.0 0 0 ? I 15:37 0:00 [kworker/u594:30]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46528 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:29]
root 46535 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:30]
root 46650 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:31]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 48833 276 0.0 269082744 26280 pts/2 Rl 15:47 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 48841 2.2 0.0 0 0 ? S 15:47 0:00 [kni_single]
root 48857 0.0 0.0 38376 3632 pts/2 R+ 15:47 0:00 ps -aux
root 49136 0.0 0.0 0 0 ? I 15:00 0:01 [kworker/u594:31]
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 57546 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u594:27]
root 60299 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u594:28]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.0 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9424 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5304 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 88197 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/9:1]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 129032 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/u594:35]
root 135561 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u593:0]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 151670 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u593:22]
root 151719 0.1 0.0 0 0 ? I 15:40 0:00 [kworker/u593:24]
root 152323 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u594:32]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 154614 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:33]
root 154618 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:34]
root 155424 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:36]
root 155491 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:38]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280681 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/u594:0]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 280847 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/u594:1]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285141 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:1]
root 285150 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:2]
root 285173 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:3]
root 285175 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:4]
root 285178 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:5]
root 285180 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:6]
root 285222 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:2]
root 285251 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:7]
root 285263 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:8]
root 285267 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:9]
root 285274 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:10]
root 285306 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:11]
root 285312 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:3]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285344 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:5]
root 285366 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:12]
root 285370 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:13]
root 285426 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:14]
root 285443 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:15]
root 285453 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:6]
root 285468 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:7]
root 285473 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:8]
root 285492 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:16]
root 285518 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:9]
root 285520 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:10]
root 285560 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:12]
root 285593 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:13]
root 285655 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:14]
root 285668 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:18]
root 285719 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:15]
root 285720 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:19]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285754 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:20]
root 285820 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:17]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285943 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:19]
root 285953 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:20]
root 285982 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:21]
root 285996 0.1 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 286024 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:21]
root 286083 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:23]
root 286160 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:25]
root 286187 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:26]
root 286203 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:23]
root 286220 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:24]
root 286382 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:25]
root 289515 0.0 0.0 0 0 ? I 15:36 0:00 [kworker/u594:29]
root 297138 0.0 0.0 0 0 ? I 15:19 0:00 [kworker/18:1]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:51:24 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:51:27 dut.10.238.54.218:
22/01/2020 16:51:27 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:51:28 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:51:28 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:51:28 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:51:28 dut.10.238.54.218:
22/01/2020 16:51:28 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:51:28 dut.10.238.54.218:
22/01/2020 16:51:28 dut.10.238.54.218: ls
22/01/2020 16:51:28 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:51:28 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:51:29 dut.10.238.54.218:
22/01/2020 16:51:29 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_fifo
22/01/2020 16:51:29 dut.10.238.54.218:
22/01/2020 16:51:29 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:51:34 dut.10.238.54.218: [1] 48900
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 16:51:39 dut.10.238.54.218: ps -aux
22/01/2020 16:51:40 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:08 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? D 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 82644 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:09 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5644 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2136 0.0 0.0 0 0 ? I 14:59 0:01 [kworker/u594:11]
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 18560 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 32118 0.0 0.0 0 0 ? I 15:37 0:00 [kworker/u594:30]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46528 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:29]
root 46535 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:30]
root 46650 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:31]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 48900 276 0.0 269082744 26280 pts/2 Rl 15:48 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 48911 1.9 0.0 0 0 ? S 15:48 0:00 [kni_single]
root 48927 0.0 0.0 38376 3632 pts/2 R+ 15:48 0:00 ps -aux
root 49136 0.0 0.0 0 0 ? I 15:00 0:01 [kworker/u594:31]
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 57546 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u594:27]
root 60299 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u594:28]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.0 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9424 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5308 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 88197 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/9:1]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 129032 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/u594:35]
root 135561 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u593:0]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 151670 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u593:22]
root 151719 0.1 0.0 0 0 ? I 15:40 0:00 [kworker/u593:24]
root 152323 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u594:32]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 154614 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:33]
root 154618 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:34]
root 155424 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:36]
root 155491 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:38]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280681 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/u594:0]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 280847 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/u594:1]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285141 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:1]
root 285150 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:2]
root 285173 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:3]
root 285175 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:4]
root 285178 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:5]
root 285180 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:6]
root 285222 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:2]
root 285251 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:7]
root 285263 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:8]
root 285267 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:9]
root 285274 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:10]
root 285306 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:11]
root 285312 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:3]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285344 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:5]
root 285366 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:12]
root 285370 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:13]
root 285426 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:14]
root 285443 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:15]
root 285453 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:6]
root 285468 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:7]
root 285473 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:8]
root 285492 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:16]
root 285518 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:9]
root 285520 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:10]
root 285560 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:12]
root 285593 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:13]
root 285655 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:14]
root 285668 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:18]
root 285719 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:15]
root 285720 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:19]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285754 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:20]
root 285820 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:17]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285943 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:19]
root 285953 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:20]
root 285982 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:21]
root 285996 0.1 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 286024 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:21]
root 286083 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:23]
root 286160 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:25]
root 286187 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:26]
root 286203 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:23]
root 286220 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:24]
root 286382 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:25]
root 289515 0.0 0.0 0 0 ? I 15:36 0:00 [kworker/u594:29]
root 297138 0.0 0.0 0 0 ? I 15:19 0:00 [kworker/18:1]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:51:40 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:51:42 dut.10.238.54.218:
22/01/2020 16:51:43 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:51:43 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:51:43 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:51:43 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:51:43 dut.10.238.54.218:
22/01/2020 16:51:43 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:51:44 dut.10.238.54.218:
22/01/2020 16:51:44 dut.10.238.54.218: ls
22/01/2020 16:51:44 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:51:44 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:51:44 dut.10.238.54.218:
22/01/2020 16:51:44 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_fifo_skb
22/01/2020 16:51:44 dut.10.238.54.218:
22/01/2020 16:51:44 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:51:50 dut.10.238.54.218: [1] 48970
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 16:51:55 dut.10.238.54.218: ps -aux
22/01/2020 16:51:55 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:08 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 82744 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:09 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5644 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2136 0.0 0.0 0 0 ? I 14:59 0:01 [kworker/u594:11]
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 18560 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 32118 0.0 0.0 0 0 ? I 15:37 0:00 [kworker/u594:30]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46528 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:29]
root 46535 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:30]
root 46650 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:31]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 48970 303 0.0 269082744 26280 pts/2 Rl 15:48 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 48978 2.2 0.0 0 0 ? S 15:48 0:00 [kni_single]
root 48994 0.0 0.0 38376 3632 pts/2 R+ 15:48 0:00 ps -aux
root 49136 0.0 0.0 0 0 ? I 15:00 0:01 [kworker/u594:31]
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 57546 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u594:27]
root 60299 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u594:28]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.0 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9424 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5308 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 129032 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/u594:35]
root 135561 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u593:0]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 151670 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u593:22]
root 151719 0.1 0.0 0 0 ? I 15:40 0:00 [kworker/u593:24]
root 152323 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u594:32]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 154614 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:33]
root 154618 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:34]
root 155424 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:36]
root 155491 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:38]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280681 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/u594:0]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 280847 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/u594:1]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285141 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:1]
root 285150 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:2]
root 285173 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:3]
root 285175 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:4]
root 285178 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:5]
root 285180 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:6]
root 285222 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:2]
root 285251 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:7]
root 285263 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:8]
root 285267 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:9]
root 285274 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:10]
root 285306 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:11]
root 285312 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:3]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285344 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:5]
root 285366 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:12]
root 285370 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:13]
root 285426 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:14]
root 285443 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:15]
root 285453 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:6]
root 285468 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:7]
root 285473 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:8]
root 285492 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:16]
root 285518 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:9]
root 285520 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:10]
root 285560 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:12]
root 285593 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:13]
root 285655 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:14]
root 285668 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:18]
root 285719 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:15]
root 285720 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:19]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285754 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:20]
root 285820 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:17]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285943 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:19]
root 285953 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:20]
root 285982 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:21]
root 285996 0.1 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 286024 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:21]
root 286083 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:23]
root 286160 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:25]
root 286187 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:26]
root 286203 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:23]
root 286220 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:24]
root 286382 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:25]
root 289515 0.0 0.0 0 0 ? I 15:36 0:00 [kworker/u594:29]
root 297138 0.0 0.0 0 0 ? I 15:19 0:00 [kworker/18:1]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:51:55 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:51:58 dut.10.238.54.218:
22/01/2020 16:51:58 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:51:59 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:51:59 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:51:59 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:51:59 dut.10.238.54.218:
22/01/2020 16:51:59 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:51:59 dut.10.238.54.218:
22/01/2020 16:51:59 dut.10.238.54.218: ls
22/01/2020 16:51:59 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:51:59 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:52:00 dut.10.238.54.218:
22/01/2020 16:52:00 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_random
22/01/2020 16:52:00 dut.10.238.54.218:
22/01/2020 16:52:00 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:52:06 dut.10.238.54.218: [1] 49037
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 16:52:11 dut.10.238.54.218: ps -aux
22/01/2020 16:52:11 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:08 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 82796 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:09 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5644 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2136 0.0 0.0 0 0 ? I 14:59 0:01 [kworker/u594:11]
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 18560 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 32118 0.0 0.0 0 0 ? I 15:37 0:00 [kworker/u594:30]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46528 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:29]
root 46535 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:30]
root 46650 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:31]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49037 276 0.0 269082744 26280 pts/2 Rl 15:48 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 49045 2.1 0.0 0 0 ? S 15:48 0:00 [kni_single]
root 49061 0.0 0.0 38376 3632 pts/2 R+ 15:48 0:00 ps -aux
root 49136 0.0 0.0 0 0 ? I 15:00 0:01 [kworker/u594:31]
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 57546 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u594:27]
root 60299 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u594:28]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.0 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9424 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5308 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 129032 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/u594:35]
root 135561 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u593:0]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 151670 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u593:22]
root 151719 0.1 0.0 0 0 ? I 15:40 0:00 [kworker/u593:24]
root 152323 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u594:32]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 154614 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:33]
root 154618 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:34]
root 155424 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:36]
root 155491 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:38]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280681 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/u594:0]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 280847 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/u594:1]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285141 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:1]
root 285150 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:2]
root 285173 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:3]
root 285175 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:4]
root 285178 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:5]
root 285180 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:6]
root 285222 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:2]
root 285251 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:7]
root 285263 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:8]
root 285267 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:9]
root 285274 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:10]
root 285306 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:11]
root 285312 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:3]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285344 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:5]
root 285366 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:12]
root 285370 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:13]
root 285426 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:14]
root 285443 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:15]
root 285453 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:6]
root 285468 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:7]
root 285473 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:8]
root 285492 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:16]
root 285518 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:9]
root 285520 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:10]
root 285560 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:12]
root 285593 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:13]
root 285655 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:14]
root 285668 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:18]
root 285719 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:15]
root 285720 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:19]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285754 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:20]
root 285820 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:17]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285943 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:19]
root 285953 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:20]
root 285982 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:21]
root 285996 0.1 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 286024 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:21]
root 286083 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:23]
root 286160 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:25]
root 286187 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:26]
root 286203 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:23]
root 286220 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:24]
root 286382 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:25]
root 289515 0.0 0.0 0 0 ? I 15:36 0:00 [kworker/u594:29]
root 297138 0.0 0.0 0 0 ? I 15:19 0:00 [kworker/18:1]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:52:11 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:52:13 dut.10.238.54.218:
22/01/2020 16:52:14 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:52:14 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:52:14 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:52:14 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:52:15 dut.10.238.54.218:
22/01/2020 16:52:15 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:52:15 dut.10.238.54.218:
22/01/2020 16:52:15 dut.10.238.54.218: ls
22/01/2020 16:52:15 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:52:15 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:52:15 dut.10.238.54.218:
22/01/2020 16:52:15 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko kthread_mode=single
22/01/2020 16:52:15 dut.10.238.54.218:
22/01/2020 16:52:15 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:52:21 dut.10.238.54.218: [1] 49104
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 16:52:26 dut.10.238.54.218: taskset -p `pgrep -fl kni_single | awk '{print $1}'`
22/01/2020 16:52:26 dut.10.238.54.218: pid 49112's current affinity mask: 100000
22/01/2020 16:52:26 dut.10.238.54.218: ps -aux
22/01/2020 16:52:26 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:08 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 82852 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:09 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5644 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2136 0.0 0.0 0 0 ? I 14:59 0:01 [kworker/u594:11]
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 18560 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 32118 0.0 0.0 0 0 ? I 15:37 0:00 [kworker/u594:30]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46528 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:29]
root 46535 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:30]
root 46650 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:31]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49104 280 0.0 269082744 26280 pts/2 Rl 15:48 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 49112 1.7 0.0 0 0 ? S 15:48 0:00 [kni_single]
root 49132 3.0 0.0 38376 3632 pts/2 R+ 15:48 0:00 ps -aux
root 49136 0.0 0.0 0 0 ? I 15:00 0:01 [kworker/u594:31]
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 57546 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u594:27]
root 60299 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u594:28]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.0 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9424 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5308 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 129032 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/u594:35]
root 135561 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u593:0]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 151670 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u593:22]
root 151719 0.1 0.0 0 0 ? I 15:40 0:00 [kworker/u593:24]
root 152323 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u594:32]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 154614 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:33]
root 154618 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:34]
root 155424 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:36]
root 155491 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:38]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280681 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/u594:0]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 280847 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/u594:1]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285141 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:1]
root 285150 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:2]
root 285173 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:3]
root 285175 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:4]
root 285178 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:5]
root 285180 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:6]
root 285222 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:2]
root 285251 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:7]
root 285263 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:8]
root 285267 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:9]
root 285274 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:10]
root 285306 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:11]
root 285312 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:3]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285344 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:5]
root 285366 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:12]
root 285370 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:13]
root 285426 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:14]
root 285443 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:15]
root 285453 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:6]
root 285468 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:7]
root 285473 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:8]
root 285492 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:16]
root 285518 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:9]
root 285520 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:10]
root 285560 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:12]
root 285593 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:13]
root 285655 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:14]
root 285668 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:18]
root 285719 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:15]
root 285720 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:19]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285754 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:20]
root 285820 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:17]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285943 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:19]
root 285953 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:20]
root 285982 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:21]
root 285996 0.1 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 286024 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:21]
root 286083 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:23]
root 286160 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:25]
root 286187 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:26]
root 286203 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:23]
root 286220 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:24]
root 286382 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:25]
root 289515 0.0 0.0 0 0 ? I 15:36 0:00 [kworker/u594:29]
root 297138 0.0 0.0 0 0 ? I 15:19 0:00 [kworker/18:1]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:52:26 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:52:29 dut.10.238.54.218:
22/01/2020 16:52:29 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:52:30 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:52:30 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:52:30 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:52:30 dut.10.238.54.218:
22/01/2020 16:52:30 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:52:30 dut.10.238.54.218:
22/01/2020 16:52:30 dut.10.238.54.218: ls
22/01/2020 16:52:30 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:52:30 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:52:31 dut.10.238.54.218:
22/01/2020 16:52:31 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko kthread_mode=multiple
22/01/2020 16:52:31 dut.10.238.54.218:
22/01/2020 16:52:31 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:52:37 dut.10.238.54.218: [1] 49180
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
...............................................done
22/01/2020 16:52:42 dut.10.238.54.218: ps -aux
22/01/2020 16:52:42 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:08 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 82912 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:09 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5644 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 18560 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 32118 0.0 0.0 0 0 ? I 15:37 0:00 [kworker/u594:30]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46528 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:29]
root 46535 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:30]
root 46650 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:31]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49136 0.0 0.0 0 0 ? I 15:00 0:01 [kworker/u594:31]
root 49180 277 0.0 269082744 26280 pts/2 Rl 15:49 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 49188 1.3 0.0 0 0 ? S 15:49 0:00 [kni_vEth0_0]
root 49196 1.4 0.0 0 0 ? S 15:49 0:00 [kni_vEth1_0]
root 49205 0.0 0.0 38376 3632 pts/2 R+ 15:49 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 60299 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u594:28]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.0 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9424 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5308 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 129032 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/u594:35]
root 135561 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u593:0]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 151670 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u593:22]
root 151719 0.1 0.0 0 0 ? I 15:40 0:00 [kworker/u593:24]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 154614 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:33]
root 154618 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:34]
root 155424 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:36]
root 155491 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:38]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280681 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/u594:0]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 280847 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/u594:1]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285141 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:1]
root 285150 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:2]
root 285173 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:3]
root 285175 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:4]
root 285178 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:5]
root 285180 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:6]
root 285222 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:2]
root 285251 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:7]
root 285263 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:8]
root 285267 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:9]
root 285274 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:10]
root 285306 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:11]
root 285312 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:3]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285344 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:5]
root 285366 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:12]
root 285370 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:13]
root 285426 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:14]
root 285443 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:15]
root 285453 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:6]
root 285468 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:7]
root 285473 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:8]
root 285492 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:16]
root 285518 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:9]
root 285520 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:10]
root 285560 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:12]
root 285593 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:13]
root 285655 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:14]
root 285668 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:18]
root 285719 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:15]
root 285720 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:19]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285754 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:20]
root 285820 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:17]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285943 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:19]
root 285953 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:20]
root 285982 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:21]
root 285996 0.1 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 286024 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:21]
root 286083 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:23]
root 286160 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:25]
root 286187 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:26]
root 286203 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:23]
root 286220 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:24]
root 286382 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:25]
root 289515 0.0 0.0 0 0 ? I 15:36 0:00 [kworker/u594:29]
root 297138 0.0 0.0 0 0 ? I 15:19 0:00 [kworker/18:1]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:52:42 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:52:45 dut.10.238.54.218:
22/01/2020 16:52:45 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:52:46 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:52:46 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:52:46 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:52:46 dut.10.238.54.218:
22/01/2020 16:52:46 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:52:46 dut.10.238.54.218:
22/01/2020 16:52:46 dut.10.238.54.218: ls
22/01/2020 16:52:46 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:52:46 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:52:47 dut.10.238.54.218:
22/01/2020 16:52:47 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko kthread_mode=singlemulti
22/01/2020 16:52:47 dut.10.238.54.218: insmod: ERROR: could not insert module ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko: Invalid parameters
22/01/2020 16:52:47 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:53:07 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:53:08 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:53:08 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:53:09 dut.10.238.54.218: rmmod: ERROR: Module rte_kni is not currently loaded
[1]+ Exit 1 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:53:09 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:53:09 dut.10.238.54.218:
22/01/2020 16:53:09 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:53:09 dut.10.238.54.218:
22/01/2020 16:53:09 dut.10.238.54.218: ls
22/01/2020 16:53:09 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:53:09 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:53:09 dut.10.238.54.218:
22/01/2020 16:53:09 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_fifo kthread_mode=multiple
22/01/2020 16:53:09 dut.10.238.54.218:
22/01/2020 16:53:09 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:53:16 dut.10.238.54.218: [1] 49290
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.........................................................done
22/01/2020 16:53:21 dut.10.238.54.218: ps -aux
22/01/2020 16:53:21 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:08 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 82996 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:09 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5644 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16192 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46528 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:29]
root 46535 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:30]
root 46650 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:31]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49290 263 0.0 269082744 26280 pts/2 Rl 15:49 0:31 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 49298 1.3 0.0 0 0 ? S 15:49 0:00 [kni_vEth0_0]
root 49306 1.3 0.0 0 0 ? S 15:49 0:00 [kni_vEth1_0]
root 49315 0.0 0.0 38376 3632 pts/2 R+ 15:49 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.0 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9424 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5308 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135561 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u593:0]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 151670 0.0 0.0 0 0 ? I 15:40 0:00 [kworker/u593:22]
root 151719 0.1 0.0 0 0 ? I 15:40 0:00 [kworker/u593:24]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 154614 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:33]
root 154618 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:34]
root 155424 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:36]
root 155491 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/u593:38]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285141 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:1]
root 285150 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:2]
root 285173 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:3]
root 285175 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:4]
root 285178 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:5]
root 285180 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:6]
root 285251 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:7]
root 285263 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:8]
root 285267 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:9]
root 285274 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:10]
root 285306 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:11]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285366 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:12]
root 285370 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:13]
root 285426 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:14]
root 285443 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:15]
root 285492 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:16]
root 285668 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:18]
root 285720 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:19]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285754 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:20]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285996 0.1 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 286024 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:21]
root 286083 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:23]
root 286160 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:25]
root 286187 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u593:26]
root 297138 0.0 0.0 0 0 ? I 15:19 0:00 [kworker/18:1]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:53:21 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:53:24 dut.10.238.54.218:
22/01/2020 16:53:25 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:53:25 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:53:25 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:53:25 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:53:25 dut.10.238.54.218:
22/01/2020 16:53:25 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:53:25 dut.10.238.54.218:
22/01/2020 16:53:25 dut.10.238.54.218: ls
22/01/2020 16:53:25 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:53:25 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:53:26 dut.10.238.54.218:
22/01/2020 16:53:26 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_fifo_skb kthread_mode=multiple
22/01/2020 16:53:26 dut.10.238.54.218:
22/01/2020 16:53:26 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:53:32 dut.10.238.54.218: [1] 49358
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 16:53:37 dut.10.238.54.218: ps -aux
22/01/2020 16:53:37 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:08 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 83064 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:09 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16192 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49358 276 0.0 269082744 26280 pts/2 Rl 15:49 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 49366 1.3 0.0 0 0 ? S 15:49 0:00 [kni_vEth0_0]
root 49374 1.4 0.0 0 0 ? S 15:49 0:00 [kni_vEth1_0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49387 0.0 0.0 38376 3632 pts/2 R+ 15:50 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.0 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9428 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5308 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285996 0.1 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 297138 0.0 0.0 0 0 ? I 15:19 0:00 [kworker/18:1]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:53:37 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:53:40 dut.10.238.54.218:
22/01/2020 16:53:40 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:53:41 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:53:41 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:53:41 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:53:41 dut.10.238.54.218:
22/01/2020 16:53:41 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:53:41 dut.10.238.54.218:
22/01/2020 16:53:41 dut.10.238.54.218: ls
22/01/2020 16:53:41 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:53:41 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:53:42 dut.10.238.54.218:
22/01/2020 16:53:42 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_fifo_skb kthread_mode=singlemulti
22/01/2020 16:53:42 dut.10.238.54.218: insmod: ERROR: could not insert module ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko: Invalid parameters
22/01/2020 16:53:42 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:54:02 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:54:03 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:54:03 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:54:03 dut.10.238.54.218: rmmod: ERROR: Module rte_kni is not currently loaded
[1]+ Exit 1 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:54:03 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:54:04 dut.10.238.54.218:
22/01/2020 16:54:04 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:54:04 dut.10.238.54.218:
22/01/2020 16:54:04 dut.10.238.54.218: ls
22/01/2020 16:54:04 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:54:04 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:54:04 dut.10.238.54.218:
22/01/2020 16:54:04 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_random kthread_mode=multiple
22/01/2020 16:54:04 dut.10.238.54.218:
22/01/2020 16:54:04 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:54:11 dut.10.238.54.218: [1] 49472
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.........................................................done
22/01/2020 16:54:16 dut.10.238.54.218: ps -aux
22/01/2020 16:54:16 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:08 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 83176 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:09 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16192 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49472 263 0.0 269082744 26280 pts/2 Rl 15:50 0:31 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 49480 1.2 0.0 0 0 ? S 15:50 0:00 [kni_vEth0_0]
root 49488 1.2 0.0 0 0 ? S 15:50 0:00 [kni_vEth1_0]
root 49497 0.0 0.0 38376 3632 pts/2 R+ 15:50 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.0 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9428 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5308 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285996 0.1 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 297138 0.0 0.0 0 0 ? I 15:19 0:00 [kworker/18:1]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:54:16 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:54:19 dut.10.238.54.218:
22/01/2020 16:54:19 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:54:20 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:54:20 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:54:20 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:54:20 dut.10.238.54.218:
22/01/2020 16:54:20 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:54:20 dut.10.238.54.218:
22/01/2020 16:54:20 dut.10.238.54.218: ls
22/01/2020 16:54:20 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:54:20 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:54:21 dut.10.238.54.218:
22/01/2020 16:54:21 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko
22/01/2020 16:54:21 dut.10.238.54.218:
22/01/2020 16:54:21 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:54:27 dut.10.238.54.218: [1] 49540
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 16:54:32 dut.10.238.54.218: ps -aux
22/01/2020 16:54:32 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:08 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 83240 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:09 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16452 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49540 276 0.0 269082744 26280 pts/2 Rl 15:50 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 49548 2.2 0.0 0 0 ? S 15:50 0:00 [kni_single]
root 49567 0.0 0.0 38376 3632 pts/2 R+ 15:51 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.0 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9428 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5308 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285996 0.1 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 297138 0.0 0.0 0 0 ? I 15:19 0:00 [kworker/18:1]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:54:32 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:54:35 dut.10.238.54.218:
22/01/2020 16:54:35 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:54:36 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:54:36 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:54:36 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:54:36 dut.10.238.54.218:
22/01/2020 16:54:36 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:54:36 dut.10.238.54.218:
22/01/2020 16:54:36 dut.10.238.54.218: ls
22/01/2020 16:54:36 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:54:36 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:54:37 dut.10.238.54.218:
22/01/2020 16:54:37 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_none
22/01/2020 16:54:37 dut.10.238.54.218:
22/01/2020 16:54:37 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:54:42 dut.10.238.54.218: [1] 49610
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 16:54:47 dut.10.238.54.218: ps -aux
22/01/2020 16:54:48 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:08 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 83292 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:09 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16452 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49610 276 0.0 269082744 26280 pts/2 Rl 15:51 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 49618 2.2 0.0 0 0 ? S 15:51 0:00 [kni_single]
root 49634 0.0 0.0 38376 3632 pts/2 R+ 15:51 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9428 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5308 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285996 0.1 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:54:48 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:54:50 dut.10.238.54.218:
22/01/2020 16:54:51 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:54:51 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:54:51 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:54:51 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:54:51 dut.10.238.54.218:
22/01/2020 16:54:51 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:54:51 dut.10.238.54.218:
22/01/2020 16:54:51 dut.10.238.54.218: ls
22/01/2020 16:54:52 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:54:52 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:54:52 dut.10.238.54.218:
22/01/2020 16:54:52 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_fifo
22/01/2020 16:54:52 dut.10.238.54.218:
22/01/2020 16:54:52 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:54:58 dut.10.238.54.218: [1] 49677
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 16:55:03 dut.10.238.54.218: ps -aux
22/01/2020 16:55:03 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:08 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 83360 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:09 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16452 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49677 303 0.0 269082744 26280 pts/2 Rl 15:51 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 49685 2.2 0.0 0 0 ? S 15:51 0:00 [kni_single]
root 49701 0.0 0.0 38376 3632 pts/2 R+ 15:51 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9428 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5312 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285996 0.1 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:55:03 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:55:06 dut.10.238.54.218:
22/01/2020 16:55:06 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:55:07 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:55:07 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:55:07 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:55:07 dut.10.238.54.218:
22/01/2020 16:55:07 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:55:07 dut.10.238.54.218:
22/01/2020 16:55:07 dut.10.238.54.218: ls
22/01/2020 16:55:07 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:55:07 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:55:08 dut.10.238.54.218:
22/01/2020 16:55:08 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_fifo_skb
22/01/2020 16:55:08 dut.10.238.54.218:
22/01/2020 16:55:08 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:55:14 dut.10.238.54.218: [1] 49745
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 16:55:19 dut.10.238.54.218: ps -aux
22/01/2020 16:55:19 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 83448 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:09 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16452 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 49745 276 0.0 269082744 26280 pts/2 Rl 15:51 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 49753 2.0 0.0 0 0 ? S 15:51 0:00 [kni_single]
root 49769 0.0 0.0 38376 3632 pts/2 R+ 15:51 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9428 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5312 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285996 0.1 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:55:19 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:55:21 dut.10.238.54.218:
22/01/2020 16:55:22 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:55:22 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:55:22 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:55:22 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:55:22 dut.10.238.54.218:
22/01/2020 16:55:22 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:55:23 dut.10.238.54.218:
22/01/2020 16:55:23 dut.10.238.54.218: ls
22/01/2020 16:55:23 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:55:23 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:55:23 dut.10.238.54.218:
22/01/2020 16:55:23 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_random
22/01/2020 16:55:23 dut.10.238.54.218:
22/01/2020 16:55:23 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:55:29 dut.10.238.54.218: [1] 49812
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
...............................................done
22/01/2020 16:55:34 dut.10.238.54.218: ps -aux
22/01/2020 16:55:34 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 83508 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:09 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16452 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 49812 278 0.0 269082744 26280 pts/2 Rl 15:51 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 49820 2.2 0.0 0 0 ? S 15:51 0:00 [kni_single]
root 49839 0.0 0.0 38376 3632 pts/2 R+ 15:52 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9428 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5312 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:55:34 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:55:37 dut.10.238.54.218:
22/01/2020 16:55:37 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:55:38 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:55:38 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:55:38 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:55:38 dut.10.238.54.218:
22/01/2020 16:55:38 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:55:38 dut.10.238.54.218:
22/01/2020 16:55:38 dut.10.238.54.218: ls
22/01/2020 16:55:38 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:55:38 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:55:39 dut.10.238.54.218:
22/01/2020 16:55:39 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko kthread_mode=single
22/01/2020 16:55:39 dut.10.238.54.218:
22/01/2020 16:55:39 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:55:45 dut.10.238.54.218: [1] 49882
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
..............................................done
22/01/2020 16:55:50 dut.10.238.54.218: taskset -p `pgrep -fl kni_single | awk '{print $1}'`
22/01/2020 16:55:50 dut.10.238.54.218: pid 49890's current affinity mask: 100000
22/01/2020 16:55:50 dut.10.238.54.218: ps -aux
22/01/2020 16:55:50 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 83580 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:09 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16452 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 49882 281 0.0 269082744 26280 pts/2 Rl 15:52 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 49890 2.2 0.0 0 0 ? S 15:52 0:00 [kni_single]
root 49910 0.0 0.0 38376 3632 pts/2 R+ 15:52 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9428 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5312 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:55:50 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:55:53 dut.10.238.54.218:
22/01/2020 16:55:53 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:55:54 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:55:54 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:55:54 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:55:54 dut.10.238.54.218:
22/01/2020 16:55:54 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:55:54 dut.10.238.54.218:
22/01/2020 16:55:54 dut.10.238.54.218: ls
22/01/2020 16:55:54 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:55:54 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:55:55 dut.10.238.54.218:
22/01/2020 16:55:55 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko kthread_mode=multiple
22/01/2020 16:55:55 dut.10.238.54.218:
22/01/2020 16:55:55 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:56:01 dut.10.238.54.218: [1] 49953
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 16:56:06 dut.10.238.54.218: ps -aux
22/01/2020 16:56:06 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 83636 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:09 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16452 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 49953 276 0.0 269017208 26280 pts/2 Rl 15:52 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 49961 1.3 0.0 0 0 ? S 15:52 0:00 [kni_vEth0_0]
root 49969 1.3 0.0 0 0 ? S 15:52 0:00 [kni_vEth1_0]
root 49978 0.0 0.0 38376 3632 pts/2 R+ 15:52 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9428 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5312 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:56:06 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:56:08 dut.10.238.54.218:
22/01/2020 16:56:09 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:56:09 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:56:09 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:56:09 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:56:10 dut.10.238.54.218:
22/01/2020 16:56:10 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:56:10 dut.10.238.54.218:
22/01/2020 16:56:10 dut.10.238.54.218: ls
22/01/2020 16:56:10 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:56:10 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:56:10 dut.10.238.54.218:
22/01/2020 16:56:10 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko kthread_mode=singlemulti
22/01/2020 16:56:10 dut.10.238.54.218: insmod: ERROR: could not insert module ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko: Invalid parameters
22/01/2020 16:56:10 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:56:30 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:56:31 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:56:32 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:56:32 dut.10.238.54.218: rmmod: ERROR: Module rte_kni is not currently loaded
[1]+ Exit 1 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:56:32 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:56:32 dut.10.238.54.218:
22/01/2020 16:56:32 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:56:32 dut.10.238.54.218:
22/01/2020 16:56:32 dut.10.238.54.218: ls
22/01/2020 16:56:32 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:56:32 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:56:33 dut.10.238.54.218:
22/01/2020 16:56:33 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_fifo kthread_mode=multiple
22/01/2020 16:56:33 dut.10.238.54.218:
22/01/2020 16:56:33 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:56:40 dut.10.238.54.218: [1] 50066
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
..........................................................done
22/01/2020 16:56:45 dut.10.238.54.218: ps -aux
22/01/2020 16:56:45 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 83776 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:10 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16452 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 50066 263 0.0 269082744 26280 pts/2 Rl 15:53 0:31 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 50074 1.4 0.0 0 0 ? S 15:53 0:00 [kni_vEth0_0]
root 50082 1.4 0.0 0 0 ? S 15:53 0:00 [kni_vEth1_0]
root 50091 0.0 0.0 38376 3632 pts/2 R+ 15:53 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9428 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5312 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:56:45 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:56:48 dut.10.238.54.218:
22/01/2020 16:56:48 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:56:49 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:56:49 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:56:49 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:56:49 dut.10.238.54.218:
22/01/2020 16:56:49 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:56:49 dut.10.238.54.218:
22/01/2020 16:56:49 dut.10.238.54.218: ls
22/01/2020 16:56:49 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:56:49 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:56:50 dut.10.238.54.218:
22/01/2020 16:56:50 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_fifo_skb kthread_mode=multiple
22/01/2020 16:56:50 dut.10.238.54.218:
22/01/2020 16:56:50 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:56:56 dut.10.238.54.218: [1] 50134
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 16:57:01 dut.10.238.54.218: ps -aux
22/01/2020 16:57:01 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 83820 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:10 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16716 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 5637 0.0 0.0 4628 780 ? Ss 10:35 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 50134 276 0.0 269082744 26280 pts/2 Rl 15:53 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 50142 1.3 0.0 0 0 ? S 15:53 0:00 [kni_vEth0_0]
root 50150 1.3 0.0 0 0 ? S 15:53 0:00 [kni_vEth1_0]
root 50159 0.0 0.0 38376 3632 pts/2 R+ 15:53 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9428 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5312 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149239 0.0 0.0 4628 1860 ? S 11:07 0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149318 0.0 0.1 151304 81604 ? S 11:13 0:16 /usr/bin/python3 /usr/bin/unattended-upgrade --download-only
_apt 149327 0.0 0.0 78392 8708 ? S 11:13 0:00 /usr/lib/apt/methods/http
_apt 149336 0.0 0.0 78388 8696 ? S 11:15 0:00 /usr/lib/apt/methods/http
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:57:01 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:57:03 dut.10.238.54.218:
22/01/2020 16:57:04 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:57:04 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:57:04 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:57:04 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:57:05 dut.10.238.54.218:
22/01/2020 16:57:05 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:57:05 dut.10.238.54.218:
22/01/2020 16:57:05 dut.10.238.54.218: ls
22/01/2020 16:57:05 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:57:05 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:57:05 dut.10.238.54.218:
22/01/2020 16:57:05 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_fifo_skb kthread_mode=singlemulti
22/01/2020 16:57:05 dut.10.238.54.218: insmod: ERROR: could not insert module ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko: Invalid parameters
22/01/2020 16:57:05 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:57:25 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:57:26 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:57:27 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:57:27 dut.10.238.54.218: rmmod: ERROR: Module rte_kni is not currently loaded
[1]+ Exit 1 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:57:27 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:57:27 dut.10.238.54.218:
22/01/2020 16:57:27 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:57:27 dut.10.238.54.218:
22/01/2020 16:57:27 dut.10.238.54.218: ls
22/01/2020 16:57:27 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:57:27 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:57:28 dut.10.238.54.218:
22/01/2020 16:57:28 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_random kthread_mode=multiple
22/01/2020 16:57:28 dut.10.238.54.218:
22/01/2020 16:57:28 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:57:35 dut.10.238.54.218: [1] 50253
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
........................................................done
22/01/2020 16:57:40 dut.10.238.54.218: ps -aux
22/01/2020 16:57:40 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 83948 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:10 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16716 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 50211 0.0 0.0 0 0 ? I 15:53 0:00 [kworker/62:0]
root 50253 262 0.0 269082744 26280 pts/2 Rl 15:53 0:31 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 50261 1.2 0.0 0 0 ? S 15:54 0:00 [kni_vEth0_0]
root 50269 1.2 0.0 0 0 ? S 15:54 0:00 [kni_vEth1_0]
root 50282 0.0 0.0 38376 3632 pts/2 R+ 15:54 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9432 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5312 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:57:40 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:57:43 dut.10.238.54.218:
22/01/2020 16:57:43 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:57:44 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:57:44 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:57:44 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:57:44 dut.10.238.54.218:
22/01/2020 16:57:44 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:57:44 dut.10.238.54.218:
22/01/2020 16:57:44 dut.10.238.54.218: ls
22/01/2020 16:57:44 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:57:44 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:57:45 dut.10.238.54.218:
22/01/2020 16:57:45 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko
22/01/2020 16:57:45 dut.10.238.54.218:
22/01/2020 16:57:45 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:57:50 dut.10.238.54.218: [1] 50325
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 16:57:55 dut.10.238.54.218: ps -aux
22/01/2020 16:57:55 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 84008 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:11 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:10 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16716 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 50211 0.0 0.0 0 0 ? I 15:53 0:00 [kworker/62:0]
root 50325 276 0.0 269017208 26280 pts/2 Rl 15:54 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 50333 2.2 0.0 0 0 ? S 15:54 0:00 [kni_single]
root 50349 0.0 0.0 38376 3632 pts/2 R+ 15:54 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:00 sshd: root@pts/2
root 63834 0.0 0.0 25724 9432 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5312 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:57:55 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:57:58 dut.10.238.54.218:
22/01/2020 16:57:59 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:57:59 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:57:59 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:57:59 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:57:59 dut.10.238.54.218:
22/01/2020 16:57:59 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:57:59 dut.10.238.54.218:
22/01/2020 16:57:59 dut.10.238.54.218: ls
22/01/2020 16:57:59 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:57:59 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:58:00 dut.10.238.54.218:
22/01/2020 16:58:00 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_none
22/01/2020 16:58:00 dut.10.238.54.218:
22/01/2020 16:58:00 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:58:06 dut.10.238.54.218: [1] 50392
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 16:58:11 dut.10.238.54.218: ps -aux
22/01/2020 16:58:11 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 84084 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:12 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:10 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16716 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 50211 0.0 0.0 0 0 ? I 15:53 0:00 [kworker/62:0]
root 50392 276 0.0 269017208 26280 pts/2 Rl 15:54 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 50400 2.2 0.0 0 0 ? S 15:54 0:00 [kni_single]
root 50416 0.0 0.0 38376 3632 pts/2 R+ 15:54 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:01 sshd: root@pts/2
root 63834 0.0 0.0 25724 9432 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5312 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:58:11 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:58:14 dut.10.238.54.218:
22/01/2020 16:58:14 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:58:15 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:58:15 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:58:15 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:58:15 dut.10.238.54.218:
22/01/2020 16:58:15 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:58:15 dut.10.238.54.218:
22/01/2020 16:58:15 dut.10.238.54.218: ls
22/01/2020 16:58:15 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:58:15 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:58:16 dut.10.238.54.218:
22/01/2020 16:58:16 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_fifo
22/01/2020 16:58:16 dut.10.238.54.218:
22/01/2020 16:58:16 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:58:21 dut.10.238.54.218: [1] 50459
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 16:58:26 dut.10.238.54.218: ps -aux
22/01/2020 16:58:27 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 84208 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:12 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:10 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17040 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16716 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 50211 0.0 0.0 0 0 ? I 15:53 0:00 [kworker/62:0]
root 50459 276 0.0 269082744 26280 pts/2 Rl 15:54 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 50467 2.0 0.0 0 0 ? S 15:54 0:00 [kni_single]
root 50483 0.0 0.0 38376 3632 pts/2 R+ 15:54 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:01 sshd: root@pts/2
root 63834 0.0 0.0 25724 9432 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5316 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285907 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:18]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:58:27 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:58:29 dut.10.238.54.218:
22/01/2020 16:58:30 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:58:30 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:58:30 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:58:30 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:58:30 dut.10.238.54.218:
22/01/2020 16:58:30 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:58:30 dut.10.238.54.218:
22/01/2020 16:58:30 dut.10.238.54.218: ls
22/01/2020 16:58:31 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:58:31 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:58:31 dut.10.238.54.218:
22/01/2020 16:58:31 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_fifo_skb
22/01/2020 16:58:31 dut.10.238.54.218:
22/01/2020 16:58:31 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:58:37 dut.10.238.54.218: [1] 50529
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 16:58:42 dut.10.238.54.218: ps -aux
22/01/2020 16:58:42 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 182996 84252 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:12 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:10 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17044 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16716 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37228 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 50211 0.0 0.0 0 0 ? I 15:53 0:00 [kworker/62:0]
root 50529 276 0.0 269082744 26280 pts/2 Rl 15:55 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 50537 2.2 0.0 0 0 ? S 15:55 0:00 [kni_single]
root 50553 0.0 0.0 38376 3632 pts/2 R+ 15:55 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:01 sshd: root@pts/2
root 63834 0.0 0.0 25724 9432 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5316 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:58:42 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:58:45 dut.10.238.54.218:
22/01/2020 16:58:45 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:58:46 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:58:46 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:58:46 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:58:46 dut.10.238.54.218:
22/01/2020 16:58:46 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:58:46 dut.10.238.54.218:
22/01/2020 16:58:46 dut.10.238.54.218: ls
22/01/2020 16:58:46 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:58:46 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:58:47 dut.10.238.54.218:
22/01/2020 16:58:47 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_random
22/01/2020 16:58:47 dut.10.238.54.218:
22/01/2020 16:58:47 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:58:52 dut.10.238.54.218: [1] 50596
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 16:58:57 dut.10.238.54.218: ps -aux
22/01/2020 16:58:58 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 191188 85060 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:12 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:10 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17044 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16716 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37232 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 50211 0.0 0.0 0 0 ? I 15:53 0:00 [kworker/62:0]
root 50596 276 0.0 269082744 26280 pts/2 Rl 15:55 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 50604 2.2 0.0 0 0 ? S 15:55 0:00 [kni_single]
root 50620 0.0 0.0 38376 3632 pts/2 R+ 15:55 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:01 sshd: root@pts/2
root 63834 0.0 0.0 25724 9432 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5316 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:58:58 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:59:00 dut.10.238.54.218:
22/01/2020 16:59:01 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:59:01 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:59:01 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:59:01 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:59:01 dut.10.238.54.218:
22/01/2020 16:59:01 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:59:01 dut.10.238.54.218:
22/01/2020 16:59:01 dut.10.238.54.218: ls
22/01/2020 16:59:02 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:59:02 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:59:02 dut.10.238.54.218:
22/01/2020 16:59:02 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko kthread_mode=single
22/01/2020 16:59:02 dut.10.238.54.218:
22/01/2020 16:59:02 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:59:08 dut.10.238.54.218: [1] 50663
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
..............................................done
22/01/2020 16:59:13 dut.10.238.54.218: taskset -p `pgrep -fl kni_single | awk '{print $1}'`
22/01/2020 16:59:13 dut.10.238.54.218: pid 50671's current affinity mask: 100000
22/01/2020 16:59:13 dut.10.238.54.218: ps -aux
22/01/2020 16:59:13 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 191188 85636 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:12 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:10 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17044 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16716 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37232 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 50211 0.0 0.0 0 0 ? I 15:53 0:00 [kworker/62:0]
root 50663 309 0.0 269082744 26280 pts/2 Rl 15:55 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 50671 2.4 0.0 0 0 ? S 15:55 0:00 [kni_single]
root 50691 0.0 0.0 38376 3632 pts/2 R+ 15:55 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:01 sshd: root@pts/2
root 63834 0.0 0.0 25724 9432 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5316 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:59:13 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:59:16 dut.10.238.54.218:
22/01/2020 16:59:16 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:59:17 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:59:17 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:59:17 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:59:17 dut.10.238.54.218:
22/01/2020 16:59:17 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:59:17 dut.10.238.54.218:
22/01/2020 16:59:17 dut.10.238.54.218: ls
22/01/2020 16:59:17 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:59:17 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:59:18 dut.10.238.54.218:
22/01/2020 16:59:18 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko kthread_mode=multiple
22/01/2020 16:59:18 dut.10.238.54.218:
22/01/2020 16:59:18 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:59:24 dut.10.238.54.218: [1] 50734
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 16:59:29 dut.10.238.54.218: ps -aux
22/01/2020 16:59:29 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 191188 85748 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:12 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:10 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:13 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17044 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16716 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37232 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 50211 0.0 0.0 0 0 ? I 15:53 0:00 [kworker/62:0]
root 50734 276 0.0 269082744 26280 pts/2 Rl 15:55 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 50742 1.3 0.0 0 0 ? S 15:55 0:00 [kni_vEth0_0]
root 50750 1.3 0.0 0 0 ? S 15:55 0:00 [kni_vEth1_0]
root 50759 0.0 0.0 38376 3632 pts/2 R+ 15:56 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:01 sshd: root@pts/2
root 63834 0.0 0.0 25724 9432 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5316 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 16:59:29 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:59:32 dut.10.238.54.218:
22/01/2020 16:59:32 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:59:32 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:59:33 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:59:33 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:59:33 dut.10.238.54.218:
22/01/2020 16:59:33 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:59:33 dut.10.238.54.218:
22/01/2020 16:59:33 dut.10.238.54.218: ls
22/01/2020 16:59:33 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:59:33 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:59:33 dut.10.238.54.218:
22/01/2020 16:59:33 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko kthread_mode=singlemulti
22/01/2020 16:59:34 dut.10.238.54.218: insmod: ERROR: could not insert module ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko: Invalid parameters
22/01/2020 16:59:34 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 16:59:54 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:59:55 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 16:59:55 dut.10.238.54.218: rmmod rte_kni
22/01/2020 16:59:55 dut.10.238.54.218: rmmod: ERROR: Module rte_kni is not currently loaded
[1]+ Exit 1 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 16:59:55 dut.10.238.54.218: rmmod igb_uio
22/01/2020 16:59:55 dut.10.238.54.218:
22/01/2020 16:59:55 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 16:59:55 dut.10.238.54.218:
22/01/2020 16:59:55 dut.10.238.54.218: ls
22/01/2020 16:59:55 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 16:59:55 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 16:59:56 dut.10.238.54.218:
22/01/2020 16:59:56 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_fifo kthread_mode=multiple
22/01/2020 16:59:56 dut.10.238.54.218:
22/01/2020 16:59:56 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 17:00:03 dut.10.238.54.218: [1] 50847
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.........................................................done
22/01/2020 17:00:08 dut.10.238.54.218: ps -aux
22/01/2020 17:00:08 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 191188 86196 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:12 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:10 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:14 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17044 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16716 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37232 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 48403 0.0 0.0 0 0 ? I 15:46 0:00 [kworker/18:0]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 50211 0.0 0.0 0 0 ? I 15:53 0:00 [kworker/62:0]
root 50847 263 0.0 269082744 26280 pts/2 Rl 15:56 0:31 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 50855 1.3 0.0 0 0 ? S 15:56 0:00 [kni_vEth0_0]
root 50863 1.5 0.0 0 0 ? S 15:56 0:00 [kni_vEth1_0]
root 50872 0.0 0.0 38376 3632 pts/2 R+ 15:56 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:01 sshd: root@pts/2
root 63834 0.0 0.0 25724 9436 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5316 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 17:00:08 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 17:00:11 dut.10.238.54.218:
22/01/2020 17:00:11 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 17:00:12 dut.10.238.54.218: rmmod rte_kni
22/01/2020 17:00:12 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 17:00:12 dut.10.238.54.218: rmmod igb_uio
22/01/2020 17:00:12 dut.10.238.54.218:
22/01/2020 17:00:12 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 17:00:12 dut.10.238.54.218:
22/01/2020 17:00:12 dut.10.238.54.218: ls
22/01/2020 17:00:12 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 17:00:12 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 17:00:13 dut.10.238.54.218:
22/01/2020 17:00:13 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_fifo_skb kthread_mode=multiple
22/01/2020 17:00:13 dut.10.238.54.218:
22/01/2020 17:00:13 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 17:00:19 dut.10.238.54.218: [1] 50915
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 17:00:24 dut.10.238.54.218: ps -aux
22/01/2020 17:00:24 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 191188 86304 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:12 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:10 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:14 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17044 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16716 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37232 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 50211 0.0 0.0 0 0 ? I 15:53 0:00 [kworker/62:0]
root 50915 276 0.0 269017208 26280 pts/2 Rl 15:56 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 50923 1.3 0.0 0 0 ? S 15:56 0:00 [kni_vEth0_0]
root 50931 1.3 0.0 0 0 ? S 15:56 0:00 [kni_vEth1_0]
root 50940 0.0 0.0 38376 3632 pts/2 R+ 15:56 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:01 sshd: root@pts/2
root 63834 0.0 0.0 25724 9436 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5316 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 17:00:24 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 17:00:27 dut.10.238.54.218:
22/01/2020 17:00:27 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 17:00:27 dut.10.238.54.218: rmmod rte_kni
22/01/2020 17:00:27 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 17:00:27 dut.10.238.54.218: rmmod igb_uio
22/01/2020 17:00:28 dut.10.238.54.218:
22/01/2020 17:00:28 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 17:00:28 dut.10.238.54.218:
22/01/2020 17:00:28 dut.10.238.54.218: ls
22/01/2020 17:00:28 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 17:00:28 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 17:00:28 dut.10.238.54.218:
22/01/2020 17:00:28 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_fifo_skb kthread_mode=singlemulti
22/01/2020 17:00:28 dut.10.238.54.218: insmod: ERROR: could not insert module ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko: Invalid parameters
22/01/2020 17:00:28 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 17:00:49 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 17:00:50 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 17:00:50 dut.10.238.54.218: rmmod rte_kni
22/01/2020 17:00:50 dut.10.238.54.218: rmmod: ERROR: Module rte_kni is not currently loaded
[1]+ Exit 1 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 17:00:50 dut.10.238.54.218: rmmod igb_uio
22/01/2020 17:00:50 dut.10.238.54.218:
22/01/2020 17:00:50 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 17:00:50 dut.10.238.54.218:
22/01/2020 17:00:50 dut.10.238.54.218: ls
22/01/2020 17:00:50 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 17:00:50 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 17:00:51 dut.10.238.54.218:
22/01/2020 17:00:51 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_random kthread_mode=multiple
22/01/2020 17:00:51 dut.10.238.54.218:
22/01/2020 17:00:51 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 17:00:58 dut.10.238.54.218: [1] 51029
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.........................................................done
22/01/2020 17:01:03 dut.10.238.54.218: ps -aux
22/01/2020 17:01:03 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 191188 86612 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:12 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:10 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:14 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17044 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16716 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37232 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 50211 0.0 0.0 0 0 ? I 15:53 0:00 [kworker/62:0]
root 50978 0.0 0.0 0 0 ? I 15:57 0:00 [kworker/18:0]
root 51029 263 0.0 269082744 26280 pts/2 Rl 15:57 0:31 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 51037 1.2 0.0 0 0 ? S 15:57 0:00 [kni_vEth0_0]
root 51045 1.4 0.0 0 0 ? S 15:57 0:00 [kni_vEth1_0]
root 51054 0.0 0.0 38376 3632 pts/2 R+ 15:57 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Ss 15:39 0:01 sshd: root@pts/2
root 63834 0.0 0.0 25724 9436 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5316 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 17:01:03 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 17:01:06 dut.10.238.54.218:
22/01/2020 17:01:06 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 17:01:07 dut.10.238.54.218: rmmod rte_kni
22/01/2020 17:01:07 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 17:01:07 dut.10.238.54.218: rmmod igb_uio
22/01/2020 17:01:07 dut.10.238.54.218:
22/01/2020 17:01:07 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 17:01:07 dut.10.238.54.218:
22/01/2020 17:01:07 dut.10.238.54.218: ls
22/01/2020 17:01:07 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 17:01:07 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 17:01:08 dut.10.238.54.218:
22/01/2020 17:01:08 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko
22/01/2020 17:01:08 dut.10.238.54.218:
22/01/2020 17:01:08 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 17:01:14 dut.10.238.54.218: [1] 51097
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 17:01:19 dut.10.238.54.218: ps -aux
22/01/2020 17:01:19 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 191188 86848 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:12 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:10 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:14 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17044 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16716 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37232 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 50211 0.0 0.0 0 0 ? I 15:53 0:00 [kworker/62:0]
root 50978 0.0 0.0 0 0 ? I 15:57 0:00 [kworker/18:0]
root 51097 276 0.0 269082744 26280 pts/2 Rl 15:57 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 51105 2.2 0.0 0 0 ? S 15:57 0:00 [kni_single]
root 51121 0.0 0.0 38376 3632 pts/2 R+ 15:57 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:01 sshd: root@pts/2
root 63834 0.0 0.0 25724 9436 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5316 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 17:01:19 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 17:01:21 dut.10.238.54.218:
22/01/2020 17:01:22 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 17:01:22 dut.10.238.54.218: rmmod rte_kni
22/01/2020 17:01:22 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 17:01:22 dut.10.238.54.218: rmmod igb_uio
22/01/2020 17:01:23 dut.10.238.54.218:
22/01/2020 17:01:23 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 17:01:23 dut.10.238.54.218:
22/01/2020 17:01:23 dut.10.238.54.218: ls
22/01/2020 17:01:23 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 17:01:23 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 17:01:23 dut.10.238.54.218:
22/01/2020 17:01:23 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_none
22/01/2020 17:01:23 dut.10.238.54.218:
22/01/2020 17:01:23 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 17:01:29 dut.10.238.54.218: [1] 51164
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 17:01:34 dut.10.238.54.218: ps -aux
22/01/2020 17:01:34 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 191188 87028 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:12 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:10 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:14 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17044 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16716 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37232 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 50211 0.0 0.0 0 0 ? I 15:53 0:00 [kworker/62:0]
root 50978 0.0 0.0 0 0 ? I 15:57 0:00 [kworker/18:0]
root 51164 303 0.0 269082744 26280 pts/2 Rl 15:57 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 51172 2.4 0.0 0 0 ? S 15:57 0:00 [kni_single]
root 51191 0.0 0.0 38376 3632 pts/2 R+ 15:58 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:01 sshd: root@pts/2
root 63834 0.0 0.0 25724 9436 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5320 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 17:01:34 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 17:01:37 dut.10.238.54.218:
22/01/2020 17:01:37 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 17:01:38 dut.10.238.54.218: rmmod rte_kni
22/01/2020 17:01:38 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 17:01:38 dut.10.238.54.218: rmmod igb_uio
22/01/2020 17:01:38 dut.10.238.54.218:
22/01/2020 17:01:38 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 17:01:38 dut.10.238.54.218:
22/01/2020 17:01:38 dut.10.238.54.218: ls
22/01/2020 17:01:38 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 17:01:38 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 17:01:39 dut.10.238.54.218:
22/01/2020 17:01:39 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_fifo
22/01/2020 17:01:39 dut.10.238.54.218:
22/01/2020 17:01:39 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 17:01:45 dut.10.238.54.218: [1] 51234
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 17:01:50 dut.10.238.54.218: ps -aux
22/01/2020 17:01:50 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 191188 87300 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:12 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:10 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:14 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17044 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16716 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37232 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 50211 0.0 0.0 0 0 ? I 15:53 0:00 [kworker/62:0]
root 50978 0.0 0.0 0 0 ? I 15:57 0:00 [kworker/18:0]
root 51234 276 0.0 269082744 26280 pts/2 Rl 15:58 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 51242 2.0 0.0 0 0 ? S 15:58 0:00 [kni_single]
root 51258 0.0 0.0 38376 3632 pts/2 R+ 15:58 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:01 sshd: root@pts/2
root 63834 0.0 0.0 25724 9436 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5320 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:03 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 17:01:50 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 17:01:53 dut.10.238.54.218:
22/01/2020 17:01:53 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 17:01:53 dut.10.238.54.218: rmmod rte_kni
22/01/2020 17:01:53 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 17:01:53 dut.10.238.54.218: rmmod igb_uio
22/01/2020 17:01:54 dut.10.238.54.218:
22/01/2020 17:01:54 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 17:01:54 dut.10.238.54.218:
22/01/2020 17:01:54 dut.10.238.54.218: ls
22/01/2020 17:01:54 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 17:01:54 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 17:01:54 dut.10.238.54.218:
22/01/2020 17:01:54 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_fifo_skb
22/01/2020 17:01:54 dut.10.238.54.218:
22/01/2020 17:01:54 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 17:02:00 dut.10.238.54.218: [1] 51301
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 17:02:05 dut.10.238.54.218: ps -aux
22/01/2020 17:02:05 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 191188 87496 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:12 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:10 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:14 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17044 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16708 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37232 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 49382 0.0 0.0 0 0 ? I 15:49 0:00 [kworker/u593:0]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 50211 0.0 0.0 0 0 ? I 15:53 0:00 [kworker/62:0]
root 50978 0.0 0.0 0 0 ? I 15:57 0:00 [kworker/18:0]
root 51301 303 0.0 269082744 26280 pts/2 Rl 15:58 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 51309 2.2 0.0 0 0 ? S 15:58 0:00 [kni_single]
root 51325 0.0 0.0 38376 3632 pts/2 R+ 15:58 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:01 sshd: root@pts/2
root 63834 0.0 0.0 25724 9436 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5320 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:04 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 17:02:05 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 17:02:08 dut.10.238.54.218:
22/01/2020 17:02:08 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 17:02:09 dut.10.238.54.218: rmmod rte_kni
22/01/2020 17:02:09 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 17:02:09 dut.10.238.54.218: rmmod igb_uio
22/01/2020 17:02:09 dut.10.238.54.218:
22/01/2020 17:02:09 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 17:02:09 dut.10.238.54.218:
22/01/2020 17:02:09 dut.10.238.54.218: ls
22/01/2020 17:02:09 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 17:02:09 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 17:02:10 dut.10.238.54.218:
22/01/2020 17:02:10 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko lo_mode=lo_mode_random
22/01/2020 17:02:10 dut.10.238.54.218:
22/01/2020 17:02:10 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 17:02:16 dut.10.238.54.218: [1] 51368
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 17:02:21 dut.10.238.54.218: ps -aux
22/01/2020 17:02:21 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 191188 87624 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:12 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root 1302 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/8:1H]
root 1303 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/9:1H]
root 1305 0.0 0.0 0 0 ? S 03:30 0:00 [irq/579-mei_me]
root 1313 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/25:1H]
root 1318 0.0 0.0 0 0 ? SN 03:30 0:00 [kipmi0]
root 1344 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/68:1H]
root 1345 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/31:1H]
root 1386 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/47:1H]
root 1429 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/36:1H]
root 1438 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/65:1H]
root 1452 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/70:1H]
root 1454 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/28:1H]
root 1463 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/71:1H]
root 1490 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/56:1H]
root 1493 0.0 0.0 0 0 ? S 03:30 0:00 [jbd2/sda2-8]
root 1494 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1682 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/61:1H]
systemd+ 1687 0.0 0.0 71948 6068 ? Ss 03:30 0:10 /lib/systemd/systemd-networkd
root 1736 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/21:1H]
root 1821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/48:1H]
root 1823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/26:1H]
root 1860 0.0 0.0 47600 3508 ? Ss 03:30 0:00 /sbin/rpcbind -f -w
systemd+ 1867 0.0 0.0 141908 3260 ? Ssl 03:30 0:00 /lib/systemd/systemd-timesyncd
systemd+ 1872 0.0 0.0 70716 6140 ? Ss 03:30 0:01 /lib/systemd/systemd-resolved
root 1931 0.1 0.0 110996 4164 ? Ssl 03:30 1:14 /usr/sbin/irqbalance --foreground
root 1941 0.0 0.0 236028 2516 ? Ssl 03:30 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
root 1951 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/60:1H]
root 1954 0.0 0.0 30028 3172 ? Ss 03:30 0:00 /usr/sbin/cron -f
syslog 1963 0.0 0.0 267272 5904 ? Ssl 03:30 0:01 /usr/sbin/rsyslogd -n
daemon 1984 0.0 0.0 28332 2344 ? Ss 03:30 0:00 /usr/sbin/atd -f
root 1993 0.0 0.0 434316 9692 ? Ssl 03:30 0:00 /usr/sbin/ModemManager --filter-policy=strict
root 2002 0.0 0.0 70580 6120 ? Ss 03:30 0:01 /lib/systemd/systemd-logind
root 2032 0.0 0.0 286352 6884 ? Ssl 03:30 0:03 /usr/lib/accountsservice/accounts-daemon
root 2088 0.0 0.0 169224 17044 ? Ssl 03:30 0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher
message+ 2095 0.0 0.0 50272 4856 ? Ss 03:30 0:03 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root 2133 0.0 0.0 44752 5244 ? Ss 03:30 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
root 2151 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/29:1H]
root 2164 0.0 0.0 4241624 16708 ? Ssl 03:30 0:11 /usr/lib/snapd/snapd
root 2198 0.0 0.0 288868 6520 ? Ssl 03:30 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 2344 0.0 0.0 25376 232 ? Ss 03:30 0:00 /sbin/iscsid
root 2346 0.0 0.0 25880 5260 ? S<Ls 03:30 0:00 /sbin/iscsid
root 2478 0.0 0.0 1804384 37232 ? Ssl 03:30 0:04 /usr/sbin/libvirtd
root 2533 0.0 0.0 14664 2364 ttyS0 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
uml-net 2546 0.0 0.0 4524 760 ? S 03:30 0:00 /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl
root 2566 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/58:1H]
root 2569 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/59:1H]
root 2578 0.0 0.0 14888 1936 tty1 Ss+ 03:30 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 2682 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/62:2]
root 2687 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/66:1H]
root 2801 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/2:1H]
root 2802 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/0:1H]
root 2803 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/1:1H]
root 2804 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/6:1H]
root 2805 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/10:1H]
root 2806 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/5:1H]
root 2807 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/4:1H]
root 2808 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/7:1H]
root 2809 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/37:1H]
root 2810 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/38:1H]
root 2811 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/39:1H]
root 2812 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/40:1H]
root 2813 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/41:1H]
root 2814 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/42:1H]
root 2815 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/43:1H]
root 2816 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/15:1H]
root 2817 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/17:1H]
root 2818 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/16:1H]
root 2819 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/44:1H]
root 2820 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/45:1H]
root 2821 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/46:1H]
root 2822 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/24:1H]
root 2823 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/51:1H]
root 2824 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/52:1H]
root 2825 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/53:1H]
root 2826 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/3:1H]
root 2827 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/67:1H]
root 2904 0.0 0.0 0 0 ? S 03:30 0:01 [SEPDRV_ABNORMAL]
root 3011 0.0 0.0 72296 6364 ? Ss 03:30 0:00 /usr/sbin/sshd -D
root 3028 0.0 0.0 0 0 ? I 03:30 0:00 [kworker/24:2]
root 3071 0.0 0.0 0 0 ? I 03:30 0:02 [kworker/12:3]
root 3103 0.0 0.0 0 0 ? I 03:31 0:02 [kworker/37:2]
root 3285 0.0 0.0 0 0 ? I 03:34 0:02 [kworker/59:2]
root 3372 0.0 0.0 0 0 ? I 03:34 0:00 [kworker/29:2]
root 4977 0.0 0.0 76756 8072 ? Ss 10:29 0:00 /lib/systemd/systemd --user
root 4978 0.0 0.0 259296 2764 ? S 10:29 0:00 (sd-pam)
root 4988 0.0 0.0 0 0 ? I 10:29 0:00 [kworker/33:2]
root 6434 0.0 0.0 0 0 ? I 10:37 0:01 [kworker/17:4]
root 9702 0.0 0.0 0 0 ? I 15:11 0:00 [kworker/52:0]
root 9977 0.0 0.0 0 0 ? I 14:32 0:01 [kworker/20:2]
root 10116 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:3]
root 10118 0.0 0.0 0 0 ? I 15:12 0:00 [kworker/42:5]
root 10281 0.0 0.0 0 0 ? I 14:32 0:00 [kworker/16:2]
root 10586 0.0 0.0 0 0 ? I 14:37 0:00 [kworker/45:0]
root 10589 0.0 0.0 0 0 ? I 14:37 0:01 [kworker/45:4]
root 11051 0.0 0.0 0 0 ? I 14:38 0:00 [kworker/28:2]
root 19692 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/41:4]
root 22975 0.0 0.0 108148 7320 ? Ss 14:07 0:00 sshd: root@pts/5
root 22995 0.0 0.0 107784 7136 ? Ss 14:08 0:00 sshd: root@notty
root 23139 0.0 0.0 13060 2180 ? Ss 14:08 0:00 /usr/lib/openssh/sftp-server
root 23140 0.0 0.0 25816 9452 pts/5 Ss+ 14:08 0:00 -bash
root 23308 0.0 0.0 108148 7320 ? Ss 14:10 0:00 sshd: root@pts/6
root 23325 0.0 0.0 107784 7136 ? Ss 14:10 0:00 sshd: root@notty
root 23468 0.0 0.0 13060 2180 ? Ss 14:10 0:00 /usr/lib/openssh/sftp-server
root 23469 0.0 0.0 21716 5356 pts/6 Ss+ 14:10 0:00 -bash
root 24113 0.0 0.0 0 0 ? I 14:25 0:01 [kworker/36:2]
root 27153 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:1]
root 27156 0.0 0.0 0 0 ? I 14:59 0:00 [kworker/48:5]
root 37000 0.0 0.0 0 0 ? I 14:00 0:00 [kworker/40:0]
root 43593 0.0 0.0 0 0 ? I 15:00 0:00 [kworker/17:0]
root 46458 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:27]
root 46818 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/u593:32]
root 49739 0.0 0.0 0 0 ? I 15:51 0:00 [kworker/18:1]
root 50211 0.0 0.0 0 0 ? I 15:53 0:00 [kworker/62:0]
root 50978 0.0 0.0 0 0 ? I 15:57 0:00 [kworker/18:0]
root 51368 276 0.0 269082744 26280 pts/2 Rl 15:58 0:30 ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config=(0,18,19,20),(1,21,22,23) -m
root 51376 1.9 0.0 0 0 ? S 15:58 0:00 [kni_single]
root 51392 0.0 0.0 38376 3632 pts/2 R+ 15:58 0:00 ps -aux
root 52742 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/0:0]
root 52926 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/71:0]
root 53082 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/60:2]
root 53670 0.0 0.0 0 0 ? I 15:13 0:00 [kworker/10:1]
root 63747 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/8:1]
root 63748 0.0 0.0 0 0 ? I 15:38 0:00 [kworker/13:1]
root 63754 0.1 0.0 110076 7352 ? Rs 15:39 0:01 sshd: root@pts/2
root 63834 0.0 0.0 25724 9436 pts/2 Ss 15:39 0:00 -bash
root 63868 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:1]
root 63870 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/50:3]
root 63919 0.0 0.0 110076 7348 ? Ss 15:39 0:00 sshd: root@pts/7
root 63999 0.0 0.0 21624 5320 pts/7 Ss+ 15:39 0:00 -bash
root 64036 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:3]
root 64037 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/53:4]
root 64166 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/6:1]
root 64201 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/1:0]
root 64224 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/18:2]
root 64533 0.0 0.0 0 0 ? I 15:39 0:00 [kworker/u592:1]
root 69994 0.0 0.0 0 0 ? I 13:36 0:01 [kworker/49:1]
root 70199 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/5:4]
root 70241 0.0 0.0 110076 7348 ? Ss 13:46 0:00 sshd: root@pts/1
root 70321 0.0 0.0 21624 5316 pts/1 Ss+ 13:46 0:00 -bash
root 70355 0.0 0.0 0 0 ? I 13:46 0:01 [kworker/8:0]
root 86952 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/49:2]
root 86953 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/12:0]
root 87462 0.0 0.0 0 0 ? I 13:27 0:00 [kworker/22:0]
root 87800 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/6:0]
root 87898 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:2]
root 87901 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/32:5]
root 88066 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:5]
root 88075 0.0 0.0 0 0 ? I 15:33 0:00 [kworker/2:7]
root 114470 0.0 0.0 0 0 ? I 13:06 0:00 [kworker/37:0]
root 114659 0.0 0.0 110076 7348 ? Ss 13:13 0:00 sshd: root@pts/3
root 114739 0.0 0.0 21624 5324 pts/3 Ss+ 13:13 0:00 -bash
root 114781 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/46:1]
root 114783 0.0 0.0 0 0 ? I 13:13 0:01 [kworker/46:3]
root 115247 0.0 0.0 0 0 ? I 13:13 0:00 [kworker/57:2]
root 126637 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/58:4]
root 126638 0.0 0.0 0 0 ? I 12:53 0:01 [kworker/58:5]
root 126880 0.0 0.0 0 0 ? I 12:53 0:00 [kworker/35:2]
root 127890 0.0 0.0 0 0 ? I 12:59 0:01 [kworker/44:4]
root 135622 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:1]
root 135624 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/23:4]
root 138140 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/13:4]
root 138304 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:3]
root 138305 0.0 0.0 0 0 ? I 15:22 0:00 [kworker/15:5]
root 138439 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/4:0]
root 139520 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:4]
root 139522 0.0 0.0 0 0 ? I 15:34 0:00 [kworker/31:5]
root 143669 0.0 0.0 0 0 ? I 13:20 0:01 [kworker/11:1]
root 143673 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/11:5]
root 149254 0.0 0.0 0 0 ? I 11:07 0:02 [kworker/69:2]
root 149566 0.0 0.0 0 0 ? I 11:23 0:01 [kworker/10:5]
root 152798 0.0 0.0 0 0 ? I 15:16 0:00 [kworker/41:1]
root 155797 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/39:2]
root 156322 0.0 0.0 0 0 ? I 15:23 0:00 [kworker/38:0]
root 163782 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:2]
root 163784 0.0 0.0 0 0 ? I 15:01 0:00 [kworker/70:4]
root 169273 0.0 0.0 0 0 ? I 15:07 0:00 [kworker/9:4]
root 169534 0.1 0.0 0 0 ? I 15:07 0:04 [kworker/0:1]
root 185875 0.0 0.0 0 0 ? I 15:02 0:00 [kworker/5:1]
root 194987 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/0
root 195067 0.0 0.0 21624 5316 pts/0 Ss+ 13:57 0:00 -bash
root 195152 0.0 0.0 110076 7348 ? Ss 13:57 0:00 sshd: root@pts/4
root 195232 0.0 0.0 21624 5312 pts/4 Ss+ 13:57 0:00 -bash
root 195269 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/3:5]
root 195695 0.0 0.0 0 0 ? I 13:57 0:00 [kworker/63:2]
root 201959 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/44:1]
root 203016 0.0 0.0 0 0 ? I 15:35 0:00 [kworker/4:1]
root 206364 0.0 0.0 0 0 ? I 15:43 0:00 [kworker/9:0]
root 212748 0.0 0.0 0 0 ? I 13:50 0:00 [kworker/19:2]
root 215873 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/1:1]
root 215997 0.0 0.0 0 0 ? I 15:08 0:00 [kworker/3:0]
root 247182 0.0 0.0 0 0 ? I 13:23 0:01 [kworker/51:2]
root 247185 0.0 0.0 0 0 ? I 13:23 0:00 [kworker/51:5]
root 280575 0.0 0.0 0 0 ? I 15:26 0:00 [kworker/69:1]
root 280708 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:0]
root 280711 0.0 0.0 0 0 ? I 15:31 0:00 [kworker/68:5]
root 281285 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u592:2]
root 285331 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:4]
root 285739 0.0 0.0 0 0 ? I 15:32 0:00 [kworker/u594:16]
root 285996 0.0 0.0 0 0 ? I 15:32 0:01 [kworker/u594:22]
root 299421 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/52:1]
root 299422 0.0 0.0 0 0 ? I 15:03 0:00 [kworker/39:1]
root 299494 0.0 0.0 107784 7136 ? Ss 14:50 0:00 sshd: root@notty
root 299722 0.0 0.0 0 0 ? I 14:50 0:00 [kworker/71:2]
root 299764 0.0 0.0 13060 2180 ? Ss 14:50 0:00 /usr/lib/openssh/sftp-server
root 299778 0.0 0.0 0 0 ? I 14:54 0:00 [kworker/16:0]
root 299909 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:4]
root 299910 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/43:5]
root 300074 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:1]
root 300077 0.0 0.0 0 0 ? I 14:58 0:00 [kworker/47:3]
22/01/2020 17:02:21 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 17:02:23 dut.10.238.54.218:
22/01/2020 17:02:24 dut.10.238.54.218: kill_all: called by dut and has no prefix list.
22/01/2020 17:02:24 dut.10.238.54.218: rmmod rte_kni
22/01/2020 17:02:24 dut.10.238.54.218: [1]+ Killed ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m
22/01/2020 17:02:24 dut.10.238.54.218: rmmod igb_uio
22/01/2020 17:02:25 dut.10.238.54.218:
22/01/2020 17:02:25 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/igb_uio.ko
22/01/2020 17:02:25 dut.10.238.54.218:
22/01/2020 17:02:25 dut.10.238.54.218: ls
22/01/2020 17:02:25 dut.10.238.54.218: ABI_VERSION app buildtools config devtools doc dpdk.log drivers examples GNUmakefile kernel lib license MAINTAINERS Makefile meson.build meson_options.txt mk README usertools VERSION x86_64-native-linuxapp-icc
22/01/2020 17:02:25 dut.10.238.54.218: usertools/dpdk-devbind.py --force --bind=igb_uio 0000:86:00.0 0000:86:00.1
22/01/2020 17:02:25 dut.10.238.54.218:
22/01/2020 17:02:25 dut.10.238.54.218: insmod ./x86_64-native-linuxapp-icc/kmod/rte_kni.ko kthread_mode=single
22/01/2020 17:02:25 dut.10.238.54.218:
22/01/2020 17:02:25 dut.10.238.54.218: ./examples/kni/build/app/kni -c 0xfc0000 -n 4 -- -P -p 0x3 --config="(0,18,19,20),(1,21,22,23)" -m &
22/01/2020 17:02:31 dut.10.238.54.218: [1] 51435
[PEXPECT]# EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: Probing VFIO support...
EAL: PCI device 0000:00:04.0 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.1 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.2 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.3 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.4 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.5 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.6 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:00:04.7 on NUMA socket 0
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:18:00.0 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:18:00.1 on NUMA socket 0
EAL: probe driver: 8086:1583 net_i40e
EAL: PCI device 0000:3d:00.0 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:3d:00.1 on NUMA socket 0
EAL: probe driver: 8086:37d2 net_i40e
EAL: PCI device 0000:80:04.0 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.1 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.2 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.3 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.4 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.5 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.6 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:80:04.7 on NUMA socket 1
EAL: probe driver: 8086:2021 rawdev_ioat
EAL: PCI device 0000:86:00.0 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
EAL: PCI device 0000:86:00.1 on NUMA socket 1
EAL: probe driver: 8086:1528 net_ixgbe
APP: Initialising port 0 ...
APP: Initialising port 1 ...
Checking link status
.............................................done
22/01/2020 17:02:36 dut.10.238.54.218: taskset -p `pgrep -fl kni_single | awk '{print $1}'`
22/01/2020 17:02:36 dut.10.238.54.218: pid 51443's current affinity mask: 100000
22/01/2020 17:02:36 dut.10.238.54.218: ps -aux
22/01/2020 17:02:36 dut.10.238.54.218: USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 225652 9408 ? Ss 03:29 0:22 /sbin/init maybe-ubiquity
root 2 0.0 0.0 0 0 ? S 03:29 0:00 [kthreadd]
root 4 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/0:0H]
root 7 0.0 0.0 0 0 ? I< 03:29 0:00 [mm_percpu_wq]
root 8 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/0]
root 9 0.0 0.0 0 0 ? I 03:29 0:09 [rcu_sched]
root 10 0.0 0.0 0 0 ? I 03:29 0:00 [rcu_bh]
root 11 0.0 0.0 0 0 ? S 03:29 0:00 [migration/0]
root 12 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/0]
root 13 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/1]
root 15 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/1]
root 16 0.0 0.0 0 0 ? S 03:29 0:00 [migration/1]
root 17 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/1]
root 19 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/1:0H]
root 20 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/2]
root 21 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/2]
root 22 0.0 0.0 0 0 ? S 03:29 0:00 [migration/2]
root 23 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/2]
root 25 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/2:0H]
root 26 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/3]
root 27 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/3]
root 28 0.0 0.0 0 0 ? S 03:29 0:00 [migration/3]
root 29 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/3]
root 31 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/3:0H]
root 32 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/4]
root 33 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/4]
root 34 0.0 0.0 0 0 ? S 03:29 0:00 [migration/4]
root 35 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/4]
root 37 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/4:0H]
root 38 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/5]
root 39 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/5]
root 40 0.0 0.0 0 0 ? S 03:29 0:00 [migration/5]
root 41 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/5]
root 43 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/5:0H]
root 44 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/6]
root 45 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/6]
root 46 0.0 0.0 0 0 ? S 03:29 0:00 [migration/6]
root 47 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/6]
root 49 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/6:0H]
root 50 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/7]
root 51 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/7]
root 52 0.0 0.0 0 0 ? S 03:29 0:00 [migration/7]
root 53 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/7]
root 55 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/7:0H]
root 56 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/8]
root 57 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/8]
root 58 0.0 0.0 0 0 ? S 03:29 0:00 [migration/8]
root 59 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/8]
root 61 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/8:0H]
root 62 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/9]
root 63 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/9]
root 64 0.0 0.0 0 0 ? S 03:29 0:00 [migration/9]
root 65 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/9]
root 67 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/9:0H]
root 68 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/10]
root 69 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/10]
root 70 0.0 0.0 0 0 ? S 03:29 0:00 [migration/10]
root 71 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/10]
root 73 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/10:0H]
root 74 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/11]
root 75 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/11]
root 76 0.0 0.0 0 0 ? S 03:29 0:00 [migration/11]
root 77 0.0 0.0 0 0 ? S 03:29 0:02 [ksoftirqd/11]
root 79 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:0H]
root 80 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/12]
root 81 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/12]
root 82 0.0 0.0 0 0 ? S 03:29 0:00 [migration/12]
root 83 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/12]
root 85 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/12:0H]
root 86 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/13]
root 87 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/13]
root 88 0.0 0.0 0 0 ? S 03:29 0:00 [migration/13]
root 89 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/13]
root 91 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/13:0H]
root 92 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/14]
root 93 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/14]
root 94 0.0 0.0 0 0 ? S 03:29 0:00 [migration/14]
root 95 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/14]
root 96 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/14:0]
root 97 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/14:0H]
root 98 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/15]
root 99 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/15]
root 100 0.0 0.0 0 0 ? S 03:29 0:00 [migration/15]
root 101 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/15]
root 103 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/15:0H]
root 104 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/16]
root 105 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/16]
root 106 0.0 0.0 0 0 ? S 03:29 0:00 [migration/16]
root 107 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/16]
root 109 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/16:0H]
root 110 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/17]
root 111 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/17]
root 112 0.0 0.0 0 0 ? S 03:29 0:00 [migration/17]
root 113 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/17]
root 115 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/17:0H]
root 116 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/18]
root 117 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/18]
root 118 0.0 0.0 0 0 ? S 03:29 0:00 [migration/18]
root 119 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/18]
root 121 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/18:0H]
root 123 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/19]
root 124 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/19]
root 125 0.0 0.0 0 0 ? S 03:29 0:00 [migration/19]
root 126 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/19]
root 128 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/19:0H]
root 129 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/20]
root 130 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/20]
root 131 0.0 0.0 0 0 ? S 03:29 0:00 [migration/20]
root 132 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/20]
root 134 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/20:0H]
root 135 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/21]
root 136 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/21]
root 137 0.0 0.0 0 0 ? S 03:29 0:00 [migration/21]
root 138 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/21]
root 139 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/21:0]
root 140 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/21:0H]
root 141 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/22]
root 142 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/22]
root 143 0.0 0.0 0 0 ? S 03:29 0:00 [migration/22]
root 144 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/22]
root 146 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/22:0H]
root 147 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/23]
root 148 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/23]
root 149 0.0 0.0 0 0 ? S 03:29 0:00 [migration/23]
root 150 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/23]
root 152 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/23:0H]
root 153 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/24]
root 154 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/24]
root 155 0.0 0.0 0 0 ? S 03:29 0:00 [migration/24]
root 156 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/24]
root 158 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/24:0H]
root 159 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/25]
root 160 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/25]
root 161 0.0 0.0 0 0 ? S 03:29 0:00 [migration/25]
root 162 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/25]
root 163 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/25:0]
root 164 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/25:0H]
root 165 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/26]
root 166 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/26]
root 167 0.0 0.0 0 0 ? S 03:29 0:00 [migration/26]
root 168 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/26]
root 169 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/26:0]
root 170 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/26:0H]
root 171 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/27]
root 172 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/27]
root 173 0.0 0.0 0 0 ? S 03:29 0:00 [migration/27]
root 174 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/27]
root 175 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/27:0]
root 176 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/27:0H]
root 177 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/28]
root 178 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/28]
root 179 0.0 0.0 0 0 ? S 03:29 0:00 [migration/28]
root 180 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/28]
root 182 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/28:0H]
root 183 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/29]
root 184 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/29]
root 185 0.0 0.0 0 0 ? S 03:29 0:00 [migration/29]
root 186 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/29]
root 188 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/29:0H]
root 189 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/30]
root 190 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/30]
root 191 0.0 0.0 0 0 ? S 03:29 0:00 [migration/30]
root 192 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/30]
root 193 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/30:0]
root 194 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/30:0H]
root 195 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/31]
root 196 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/31]
root 197 0.0 0.0 0 0 ? S 03:29 0:00 [migration/31]
root 198 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/31]
root 200 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/31:0H]
root 201 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/32]
root 202 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/32]
root 203 0.0 0.0 0 0 ? S 03:29 0:00 [migration/32]
root 204 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/32]
root 206 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/32:0H]
root 207 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/33]
root 208 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/33]
root 209 0.0 0.0 0 0 ? S 03:29 0:00 [migration/33]
root 210 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/33]
root 212 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/33:0H]
root 213 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/34]
root 214 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/34]
root 215 0.0 0.0 0 0 ? S 03:29 0:00 [migration/34]
root 216 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/34]
root 217 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/34:0]
root 218 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/34:0H]
root 219 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/35]
root 220 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/35]
root 221 0.0 0.0 0 0 ? S 03:29 0:00 [migration/35]
root 222 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/35]
root 224 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/35:0H]
root 225 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/36]
root 226 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/36]
root 227 0.0 0.0 0 0 ? S 03:29 0:00 [migration/36]
root 228 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/36]
root 230 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/36:0H]
root 231 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/37]
root 232 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/37]
root 233 0.0 0.0 0 0 ? S 03:29 0:00 [migration/37]
root 234 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/37]
root 236 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/37:0H]
root 237 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/38]
root 238 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/38]
root 239 0.0 0.0 0 0 ? S 03:29 0:00 [migration/38]
root 240 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/38]
root 242 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/38:0H]
root 243 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/39]
root 244 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/39]
root 245 0.0 0.0 0 0 ? S 03:29 0:00 [migration/39]
root 246 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/39]
root 248 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/39:0H]
root 249 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/40]
root 250 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/40]
root 251 0.0 0.0 0 0 ? S 03:29 0:00 [migration/40]
root 252 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/40]
root 254 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/40:0H]
root 255 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/41]
root 256 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/41]
root 257 0.0 0.0 0 0 ? S 03:29 0:00 [migration/41]
root 258 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/41]
root 260 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/41:0H]
root 261 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/42]
root 262 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/42]
root 263 0.0 0.0 0 0 ? S 03:29 0:00 [migration/42]
root 264 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/42]
root 266 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/42:0H]
root 267 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/43]
root 268 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/43]
root 269 0.0 0.0 0 0 ? S 03:29 0:00 [migration/43]
root 270 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/43]
root 272 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/43:0H]
root 273 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/44]
root 274 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/44]
root 275 0.0 0.0 0 0 ? S 03:29 0:00 [migration/44]
root 276 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/44]
root 278 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/44:0H]
root 279 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/45]
root 280 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/45]
root 281 0.0 0.0 0 0 ? S 03:29 0:00 [migration/45]
root 282 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/45]
root 284 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/45:0H]
root 285 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/46]
root 286 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/46]
root 287 0.0 0.0 0 0 ? S 03:29 0:00 [migration/46]
root 288 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/46]
root 290 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/46:0H]
root 291 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/47]
root 292 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/47]
root 293 0.0 0.0 0 0 ? S 03:29 0:00 [migration/47]
root 294 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/47]
root 296 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/47:0H]
root 297 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/48]
root 298 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/48]
root 299 0.0 0.0 0 0 ? S 03:29 0:00 [migration/48]
root 300 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/48]
root 302 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/48:0H]
root 303 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/49]
root 304 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/49]
root 305 0.0 0.0 0 0 ? S 03:29 0:00 [migration/49]
root 306 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/49]
root 308 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/49:0H]
root 309 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/50]
root 310 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/50]
root 311 0.0 0.0 0 0 ? S 03:29 0:00 [migration/50]
root 312 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/50]
root 314 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/50:0H]
root 315 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/51]
root 316 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/51]
root 317 0.0 0.0 0 0 ? S 03:29 0:00 [migration/51]
root 318 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/51]
root 320 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/51:0H]
root 321 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/52]
root 322 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/52]
root 323 0.0 0.0 0 0 ? S 03:29 0:00 [migration/52]
root 324 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/52]
root 326 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/52:0H]
root 327 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/53]
root 328 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/53]
root 329 0.0 0.0 0 0 ? S 03:29 0:00 [migration/53]
root 330 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/53]
root 332 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/53:0H]
root 333 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/54]
root 334 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/54]
root 335 0.0 0.0 0 0 ? S 03:29 0:00 [migration/54]
root 336 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/54]
root 337 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/54:0]
root 338 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/54:0H]
root 339 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/55]
root 340 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/55]
root 341 0.0 0.0 0 0 ? S 03:29 0:00 [migration/55]
root 342 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/55]
root 343 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/55:0]
root 344 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/55:0H]
root 345 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/56]
root 346 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/56]
root 347 0.0 0.0 0 0 ? S 03:29 0:00 [migration/56]
root 348 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/56]
root 349 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/56:0]
root 350 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/56:0H]
root 351 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/57]
root 352 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/57]
root 353 0.0 0.0 0 0 ? S 03:29 0:00 [migration/57]
root 354 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/57]
root 356 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/57:0H]
root 357 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/58]
root 358 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/58]
root 359 0.0 0.0 0 0 ? S 03:29 0:00 [migration/58]
root 360 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/58]
root 362 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/58:0H]
root 363 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/59]
root 364 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/59]
root 365 0.0 0.0 0 0 ? S 03:29 0:00 [migration/59]
root 366 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/59]
root 368 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/59:0H]
root 369 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/60]
root 370 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/60]
root 371 0.0 0.0 0 0 ? S 03:29 0:00 [migration/60]
root 372 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/60]
root 374 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/60:0H]
root 375 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/61]
root 376 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/61]
root 377 0.0 0.0 0 0 ? S 03:29 0:00 [migration/61]
root 378 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/61]
root 379 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/61:0]
root 380 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/61:0H]
root 381 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/62]
root 382 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/62]
root 383 0.0 0.0 0 0 ? S 03:29 0:00 [migration/62]
root 384 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/62]
root 386 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:0H]
root 387 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/63]
root 388 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/63]
root 389 0.0 0.0 0 0 ? S 03:29 0:00 [migration/63]
root 390 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/63]
root 392 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/63:0H]
root 393 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/64]
root 394 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/64]
root 395 0.0 0.0 0 0 ? S 03:29 0:00 [migration/64]
root 396 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/64]
root 397 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/64:0]
root 398 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/64:0H]
root 399 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/65]
root 400 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/65]
root 401 0.0 0.0 0 0 ? S 03:29 0:00 [migration/65]
root 402 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/65]
root 403 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/65:0]
root 404 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/65:0H]
root 405 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/66]
root 406 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/66]
root 407 0.0 0.0 0 0 ? S 03:29 0:00 [migration/66]
root 408 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/66]
root 409 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/66:0]
root 410 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/66:0H]
root 411 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/67]
root 412 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/67]
root 413 0.0 0.0 0 0 ? S 03:29 0:00 [migration/67]
root 414 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/67]
root 415 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/67:0]
root 416 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/67:0H]
root 417 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/68]
root 418 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/68]
root 419 0.0 0.0 0 0 ? S 03:29 0:00 [migration/68]
root 420 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/68]
root 422 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/68:0H]
root 423 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/69]
root 424 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/69]
root 425 0.0 0.0 0 0 ? S 03:29 0:00 [migration/69]
root 426 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/69]
root 428 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/69:0H]
root 429 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/70]
root 430 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/70]
root 431 0.0 0.0 0 0 ? S 03:29 0:00 [migration/70]
root 432 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/70]
root 434 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/70:0H]
root 435 0.0 0.0 0 0 ? S 03:29 0:00 [cpuhp/71]
root 436 0.0 0.0 0 0 ? S 03:29 0:00 [watchdog/71]
root 437 0.0 0.0 0 0 ? S 03:29 0:00 [migration/71]
root 438 0.0 0.0 0 0 ? S 03:29 0:01 [ksoftirqd/71]
root 440 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/71:0H]
root 441 0.0 0.0 0 0 ? S 03:29 0:00 [kdevtmpfs]
root 442 0.0 0.0 0 0 ? I< 03:29 0:00 [netns]
root 443 0.0 0.0 0 0 ? S 03:29 0:00 [rcu_tasks_kthre]
root 444 0.0 0.0 0 0 ? S 03:29 0:00 [kauditd]
root 449 0.0 0.0 0 0 ? S 03:29 0:00 [khungtaskd]
root 450 0.0 0.0 0 0 ? S 03:29 0:00 [oom_reaper]
root 451 0.0 0.0 0 0 ? I< 03:29 0:00 [writeback]
root 452 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd0]
root 453 0.0 0.0 0 0 ? S 03:29 0:00 [kcompactd1]
root 454 0.0 0.0 0 0 ? SN 03:29 0:00 [ksmd]
root 455 0.0 0.0 0 0 ? SN 03:29 0:00 [khugepaged]
root 456 0.0 0.0 0 0 ? I< 03:29 0:00 [crypto]
root 457 0.0 0.0 0 0 ? I< 03:29 0:00 [kintegrityd]
root 458 0.0 0.0 0 0 ? I< 03:29 0:00 [kblockd]
root 462 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/7:1]
root 473 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/21:1]
root 474 0.0 0.0 0 0 ? I 03:29 0:03 [kworker/20:1]
root 475 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/19:1]
root 476 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/22:1]
root 478 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/25:1]
root 479 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/26:1]
root 480 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/28:1]
root 481 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/27:1]
root 483 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/29:1]
root 484 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/30:1]
root 485 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/36:1]
root 487 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/38:1]
root 490 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/33:1]
root 491 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/34:1]
root 492 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/40:1]
root 493 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/35:1]
root 503 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/55:1]
root 505 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/54:1]
root 508 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/56:1]
root 511 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/57:1]
root 512 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/59:1]
root 513 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/61:1]
root 514 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/62:1]
root 515 0.0 0.0 0 0 ? I 03:29 0:01 [kworker/60:1]
root 516 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/63:1]
root 517 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/66:1]
root 518 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/64:1]
root 519 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/65:1]
root 520 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/67:1]
root 525 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/24:1]
root 526 0.0 0.0 0 0 ? I 03:29 0:02 [kworker/14:1]
root 527 0.0 0.0 0 0 ? I< 03:29 0:00 [ata_sff]
root 528 0.0 0.0 0 0 ? I< 03:29 0:00 [md]
root 529 0.0 0.0 0 0 ? I< 03:29 0:00 [edac-poller]
root 530 0.0 0.0 0 0 ? I< 03:29 0:00 [devfreq_wq]
root 531 0.0 0.0 0 0 ? I< 03:29 0:00 [watchdogd]
root 534 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd0]
root 535 0.0 0.0 0 0 ? S 03:29 0:00 [kswapd1]
root 536 0.0 0.0 0 0 ? S 03:29 0:00 [ecryptfs-kthrea]
root 578 0.0 0.0 0 0 ? I< 03:29 0:00 [kthrotld]
root 579 0.0 0.0 0 0 ? I< 03:29 0:00 [acpi_thermal_pm]
root 584 0.0 0.0 0 0 ? I< 03:29 0:00 [ipv6_addrconf]
root 593 0.0 0.0 0 0 ? I< 03:29 0:00 [kstrp]
root 610 0.0 0.0 0 0 ? I< 03:29 0:00 [charger_manager]
root 707 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_0]
root 723 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_0]
root 725 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_1]
root 726 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_1]
root 728 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_2]
root 729 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_2]
root 730 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_3]
root 731 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_3]
root 733 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_4]
root 734 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_4]
root 736 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_5]
root 737 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_5]
root 761 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_6]
root 762 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_6]
root 763 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_7]
root 764 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_7]
root 765 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_8]
root 766 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_8]
root 767 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_9]
root 768 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_9]
root 769 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_10]
root 770 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_10]
root 771 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_11]
root 772 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_11]
root 773 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_12]
root 774 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_12]
root 775 0.0 0.0 0 0 ? S 03:29 0:00 [scsi_eh_13]
root 776 0.0 0.0 0 0 ? I< 03:29 0:00 [scsi_tmf_13]
root 803 0.0 0.0 0 0 ? I 03:29 0:00 [kworker/7:2]
root 805 0.0 0.0 0 0 ? I< 03:29 0:00 [i40e]
root 806 0.0 0.0 0 0 ? I< 03:29 0:00 [ixgbe]
root 831 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/11:1H]
root 840 0.0 0.0 0 0 ? I< 03:29 0:00 [ttm_swap]
root 844 0.0 0.0 0 0 ? I< 03:29 0:00 [kworker/62:1H]
root 948 0.0 0.0 0 0 ? I< 03:30 0:00 [raid5wq]
root 1003 0.0 0.0 0 0 ? S 03:30 0:01 [jbd2/sda4-8]
root 1004 0.0 0.0 0 0 ? I< 03:30 0:00 [ext4-rsv-conver]
root 1034 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/12:1H]
root 1036 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/54:1H]
root 1052 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/14:1H]
root 1055 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/19:1H]
root 1058 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/20:1H]
root 1064 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/27:1H]
root 1067 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/64:1H]
root 1068 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/50:1H]
root 1070 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/30:1H]
root 1073 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/13:1H]
root 1079 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/32:1H]
root 1083 0.0 0.0 0 0 ? I< 03:30 0:00 [iscsi_eh]
root 1085 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/33:1H]
root 1087 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/35:1H]
root 1089 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/18:1H]
root 1090 0.0 0.1 191188 87688 ? S<s 03:30 0:05 /lib/systemd/systemd-journald
root 1091 0.0 0.0 0 0 ? I< 03:30 0:00 [ib-comp-wq]
root 1092 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_mcast]
root 1093 0.0 0.0 0 0 ? I< 03:30 0:00 [ib_nl_sa_wq]
root 1095 0.0 0.0 0 0 ? I< 03:30 0:00 [rpciod]
root 1096 0.0 0.0 0 0 ? I< 03:30 0:00 [xprtiod]
root 1098 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/63:1H]
root 1106 0.0 0.0 0 0 ? I< 03:30 0:00 [rdma_cm]
root 1110 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/22:1H]
root 1114 0.0 0.0 97708 1868 ? Ss 03:30 0:00 /sbin/lvmetad -f
root 1119 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/69:1H]
root 1121 0.0 0.0 50448 9232 ? Ss 03:30 0:12 /lib/systemd/systemd-udevd
root 1211 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/55:1H]
root 1275 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/34:1H]
root 1276 0.0 0.0 0 0 ? S< 03:30 0:00 [loop0]
root 1280 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/23:1H]
root 1281 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/57:1H]
root 1301 0.0 0.0 0 0 ? I< 03:30 0:00 [kworker/49:1H]
root
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dts] [PATCH V2] tests/ kni: modify send_packet method
2020-01-22 7:45 [dts] [PATCH V2] tests/ kni: modify send_packet method Zeng Xiaoxiao
2020-01-22 8:50 ` Zhou, JunX W
@ 2020-02-10 8:57 ` Tu, Lijuan
1 sibling, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2020-02-10 8:57 UTC (permalink / raw)
To: Zeng, XiaoxiaoX, dts; +Cc: Zeng, XiaoxiaoX
Applied, thanks
> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Zeng Xiaoxiao
> Sent: Wednesday, January 22, 2020 3:45 PM
> To: dts@dpdk.org
> Cc: Zeng, XiaoxiaoX <xiaoxiaox.zeng@intel.com>
> Subject: [dts] [PATCH V2] tests/ kni: modify send_packet method
>
> *.use scapy_append will cause drop packets.
>
> Signed-off-by: Zeng Xiaoxiao <xiaoxiaox.zeng@intel.com>
> ---
> tests/TestSuite_kni.py | 23 ++++++++++-------------
> 1 file changed, 10 insertions(+), 13 deletions(-)
>
> diff --git a/tests/TestSuite_kni.py b/tests/TestSuite_kni.py index
> f1f85df..f611383 100644
> --- a/tests/TestSuite_kni.py
> +++ b/tests/TestSuite_kni.py
> @@ -43,6 +43,7 @@ import time
> from random import randint
> from pktgen import PacketGeneratorHelper from test_case import TestCase
> +import packet
>
> dut_ports = []
> port_virtual_interaces = []
> @@ -259,6 +260,7 @@ class TestKni(TestCase):
> "The linux tool brctl is needed to run this test suite")
>
> self.dut.send_expect("sed -i -e
> 's/KNI_KMOD_ETHTOOL=n$/KNI_KMOD_ETHTOOL=y/'
> config/common_base", "# ", 30)
> + self.dut.send_expect("sed -i -e
> + 's/CONFIG_RTE_KNI_KMOD=n$/CONFIG_RTE_KNI_KMOD=y/'
> config/common_base",
> + "# ", 30)
> self.dut.build_install_dpdk(self.target)
>
> out = self.dut.build_dpdk_apps("./examples/kni/")
> @@ -707,20 +709,15 @@ class TestKni(TestCase):
> tx_mac = self.tester.get_mac(tx_port)
> tx_interface = self.tester.get_interface(tx_port)
>
> - self.tester.scapy_append('dstmac = "%s"' % rx_mac)
> - self.tester.scapy_append('srcmac = "%s"' % tx_mac)
> + scapy_str = ['Ether(src = "%s",dst="%s")/IP()/UDP()/("X"*28)' %
> (tx_mac, rx_mac),
> + 'Ether(src = "%s",dst="%s")/IP()/TCP()/("X"*28)' % (tx_mac,
> rx_mac),
> + 'Ether(src = "%s",dst="%s")/IP()/ICMP()/("X"*28)' % (tx_mac,
> rx_mac),
> + 'Ether(src = "%s",dst="%s")/IP()/("X"*38)' % (tx_mac, rx_mac),
> + 'Ether(src = "%s",dst="%s")/("X"*46)' %
> + (tx_mac, rx_mac), ]
>
> - self.tester.scapy_append(
> - 'sendp([Ether(src =
> srcmac,dst=dstmac)/IP()/UDP()/("X"*28)],iface="%s",count=200)' %
> tx_interface)
> - self.tester.scapy_append(
> - 'sendp([Ether(src =
> srcmac,dst=dstmac)/IP()/TCP()/("X"*28)],iface="%s",count=200)' %
> tx_interface)
> - self.tester.scapy_append(
> - 'sendp([Ether(src =
> srcmac,dst=dstmac)/IP()/ICMP()/("X"*28)],iface="%s",count=200)' %
> tx_interface)
> - self.tester.scapy_append(
> - 'sendp([Ether(src =
> srcmac,dst=dstmac)/IP()/("X"*38)],iface="%s",count=200)' % tx_interface)
> - self.tester.scapy_append(
> - 'sendp([Ether(src =
> srcmac,dst=dstmac)/("X"*46)],iface="%s",count=200)' % tx_interface)
> - self.tester.scapy_execute()
> + pkt = packet.Packet()
> + pkt.update_pkt(scapy_str)
> + pkt.send_pkt(self.tester, tx_port=tx_interface, count=200)
>
> out = self.dut.send_expect("ifconfig %s" % virtual_interface, "# ")
> m = re.search(rx_match, out)
> --
> 1.8.3.1
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-02-10 8:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-22 7:45 [dts] [PATCH V2] tests/ kni: modify send_packet method Zeng Xiaoxiao
2020-01-22 8:50 ` Zhou, JunX W
2020-02-10 8:57 ` Tu, Lijuan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).