Package: src:linux Version: 4.19.16-1 Severity: critical When I'm trying to use this script:
#!/bin/bash ifaces[0]="tun0" ifaces[1]="ens192" ifaceIn="ifb0" ifaceOut="ifb1" #echo ${#iface[@]} #exit tc qdisc del dev $ifaceIn root for iface in ${ifaces[@]}; do echo "Delete qdisc ingress on ${iface}" tc qdisc del dev ${iface} handle ffff: ingress echo "Add qdisc ingress on ${iface}" tc qdisc add dev ${iface} handle ffff: ingress # tc filter add dev ${iface} parent ffff: protocol ip u32 match u32 0 0 action mirred egress redirect dev ${ifaceIn} done #tc qdisc add dev $ifaceIn root handle 1: prio bands 5 #tc qdisc add dev $ifaceIn parent 1:1 handle 10: sfq #tc qdisc add dev $ifaceIn parent 1:2 handle 20: sfq #tc qdisc add dev $ifaceIn parent 1:3 handle 30: sfq #tc qdisc add dev $ifaceIn parent 1:4 handle 40: sfq #tc qdisc add dev $ifaceIn parent 1:5 handle 50: sfq ### Create a root qdisc type DSmark echo "Add qdisc root on ${ifaceIn} type DSmark" tc qdisc add dev $ifaceIn handle 1:0 root dsmark indices 64 set_tc_index ### filter to copy the correct DS filed from the IP packet to skb->tc_index echo "Add filter on parent 1:0 ${ifaceIn} for set the tcindex" tc filter add dev $ifaceIn parent 1:0 protocol ip prio 1 tcindex mask 0xfc shift 2 ### Add a PRIO class with 5 bands on 1:0 echo "Add qdisc on parent 1:0 ${ifaceIn} as PRIO with 5 bands" tc qdisc add dev $ifaceIn parent 1:0 handle 2:0 prio bands 5 ### Add a qdisc on the leaf PRIO 2:1 #tc qdisc add dev $ifaceIn parent 2:1 tbf rate 1.5Mbit burst 1.5kB limit 1.6kB echo "Add qdisc on leaf parent 2:1 ${ifaceIn} as SFQ" tc qdisc add dev $ifaceIn parent 2:1 sfq ### Match the traffic with DSCP EF (ToS 0xb8 / DSCP 0x2e) mark echo "Add filter on parent 2:0 ${ifaceIn} to match DSCP EF (ToS 0xb8 / DSCP 0x2e) mark and send the traffic to class 2:1" tc filter add dev $ifaceIn parent 2:0 protocol ip prio 1 handle 0x2e tcindex classid 2:1 pass_on ### Add a qdisck on leaf PRIO 2:2 - IPTV services echo "Add qdisc on leaf parent 2:1 ${ifaceIn} as SFQ" tc qdisc add dev $ifaceIn parent 2:2 sfq ### Match the traffic with DSCP AF41 (ToS 0x88 / DSCP 0x22) mark echo "Add filter on parent 2:0 ${ifaceIn} to match DSCP AF41 (ToS 0x88 / DSCP 0x22 mark) and send the traffic to class 2:2" tc filter add dev $ifaceIn parent 2:0 protocol ip prio 2 handle 0x22 tcindex classid 2:2 pass_on ### Best Effort traffic move to 2:5 #BE class(2:2) #tc qdisc add dev $ifaceIn parent 2:5 red limit 60KB min 15KB max 45KB burst 20 avpkt 1000 bandwidth 10Mbit probability 0.4 echo "Add qdisc on leaf parent 2:5 ${ifaceIn} as SFQ" tc qdisc add dev $ifaceIn parent 2:5 sfq echo "Add filter on parent 2:0 ${ifaceIn} to match DSCP BE (ToS 0x0 / DSCP 0x0 mark) and send the traffic to class 2:5" tc filter add dev $ifaceIn parent 2:0 protocol ip prio 5 handle 0 tcindex mask 0 classid 2:5 pass_on exit And run it 2-3 times I'm getting a severe kernel crash: Feb 6 17:15:34 Telenet-PC kernel: [ 511.608275] general protection fault: 0000 [#1] SMP PTI Feb 6 17:15:34 Telenet-PC kernel: [ 511.608279] CPU: 2 PID: 3889 Comm: tc Not tainted 4.19.0-2-amd64 #1 Debian 4.19.16-1 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608281] Hardware name: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 05/19/2017 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608285] RIP: 0010:__kmalloc_node+0x195/0x2b0 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608288] Code: fa 48 8b 74 24 08 e8 7a 54 7d 00 4c 8b 13 58 4d 85 d2 75 d7 e9 75 ff ff ff 41 8b 5a 20 49 8b 3a 48 8d 4a 01 4c 89 f8 4c 01 fb <48> 33 1b 49 33 9a 38 01 00 00 65 48 0f c7 0f 0f 94 c0 84 c0 0f 84 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608289] RSP: 0018:ffffb4ad4322b978 EFLAGS: 00010286 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608291] RAX: d36cc43800000000 RBX: d36cc43800000000 RCX: 0000000000000181 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608292] RDX: 0000000000000180 RSI: 00000000006012c0 RDI: 0000000000025120 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608294] RBP: 00000000006012c0 R08: ffff984037ca5120 R09: ffff984037807900 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608295] R10: ffff984037806a00 R11: 0000000000000000 R12: 0000000000001c00 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608296] R13: 00000000ffffffff R14: ffff984037806a00 R15: d36cc43800000000 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608298] FS: 00007fc881130800(0000) GS:ffff984037c80000(0000) knlGS:0000000000000000 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608299] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608300] CR2: 00007fc88153fee0 CR3: 0000000141b9e006 CR4: 00000000003606e0 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608336] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608337] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608338] Call Trace: Feb 6 17:15:34 Telenet-PC kernel: [ 511.608342] ? kvmalloc_node+0x3e/0x70 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608345] kvmalloc_node+0x3e/0x70 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608351] sfq_init+0x426/0x6f0 [sch_sfq] Feb 6 17:15:34 Telenet-PC kernel: [ 511.608354] ? qdisc_alloc+0x3d/0x200 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608356] qdisc_create+0x1b9/0x490 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608359] tc_modify_qdisc+0x125/0x6fa Feb 6 17:15:34 Telenet-PC kernel: [ 511.608362] rtnetlink_rcv_msg+0x200/0x2f0 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608364] ? __skb_try_recv_datagram+0xcb/0x170 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608366] ? rtnl_calcit.isra.34+0x100/0x100 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608368] netlink_rcv_skb+0x4c/0x120 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608370] netlink_unicast+0x1bd/0x260 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608372] netlink_sendmsg+0x1ff/0x3b0 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608375] sock_sendmsg+0x36/0x40 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608378] ___sys_sendmsg+0x295/0x2f0 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608380] ? filemap_map_pages+0x360/0x3a0 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608383] ? __handle_mm_fault+0x10ab/0x12a0 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608386] __sys_sendmsg+0x57/0xa0 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608389] do_syscall_64+0x53/0x100 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608392] entry_SYSCALL_64_after_hwframe+0x44/0xa9 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608394] RIP: 0033:0x7fc8814e2c34 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608395] Code: 00 f7 d8 64 89 02 48 c7 c0 ff ff ff ff eb b5 0f 1f 80 00 00 00 00 48 8d 05 c9 5a 0c 00 8b 00 85 c0 75 13 b8 2e 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 54 c3 0f 1f 00 41 54 41 89 d4 55 48 89 f5 53 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608397] RSP: 002b:00007ffdf1fd46b8 EFLAGS: 00000246 ORIG_RAX: 000000000000002e Feb 6 17:15:34 Telenet-PC kernel: [ 511.608399] RAX: ffffffffffffffda RBX: 000000005c5b0828 RCX: 00007fc8814e2c34 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608400] RDX: 0000000000000000 RSI: 00007ffdf1fd4720 RDI: 0000000000000003 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608401] RBP: 0000000000000000 R08: 0000000000000001 R09: 00005633784a3950 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608402] R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000001 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608403] R13: 00005633777bc6c0 R14: 00007ffdf1fe49e8 R15: 00007ffdf1fd4810 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608405] Modules linked in: sch_sfq sch_prio cls_tcindex sch_dsmark sch_ingress ifb tun rfcomm xfrm_user xfrm4_tunnel tunnel4 ipcomp xfrm_ipcomp esp4 ah4 l2tp_ppp l2tp_netlink af_key l2tp_core xfrm_algo ip6_udp_tunnel udp_tunnel pppox ppp_generic slhc bnep kvm_intel kvm btusb irqbypass crct10dif_pclmul btrtl btbcm btintel crc32_pclmul snd_ens1371 bluetooth snd_ac97_codec ghash_clmulni_intel ac97_bus vmw_balloon gameport drbg intel_rapl_perf joydev snd_rawmidi pcspkr serio_raw snd_seq_device evdev ansi_cprng vmw_vsock_vmci_transport snd_pcm snd_timer vsock ecdh_generic rfkill snd sg soundcore vmw_vmci vmwgfx ttm drm_kms_helper drm button ac binfmt_misc fuse vhci_hcd usbip_host usbip_vudc udc_core usbip_core parport_pc ppdev lp parport ip_tables x_tables autofs4 ext4 crc16 mbcache jbd2 crc32c_generic Feb 6 17:15:34 Telenet-PC kernel: [ 511.608450] fscrypto ecb hid_generic usbhid hid sd_mod sr_mod cdrom ata_generic crc32c_intel aesni_intel xhci_pci aes_x86_64 crypto_simd uhci_hcd cryptd ehci_pci glue_helper psmouse xhci_hcd ata_piix ehci_hcd libata mptspi mptscsih mptbase scsi_transport_spi vmxnet3 usbcore scsi_mod usb_common i2c_piix4 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608467] ---[ end trace c4463abbc58f6528 ]--- Feb 6 17:15:34 Telenet-PC kernel: [ 511.608469] RIP: 0010:__kmalloc_node+0x195/0x2b0 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608470] Code: fa 48 8b 74 24 08 e8 7a 54 7d 00 4c 8b 13 58 4d 85 d2 75 d7 e9 75 ff ff ff 41 8b 5a 20 49 8b 3a 48 8d 4a 01 4c 89 f8 4c 01 fb <48> 33 1b 49 33 9a 38 01 00 00 65 48 0f c7 0f 0f 94 c0 84 c0 0f 84 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608472] RSP: 0018:ffffb4ad4322b978 EFLAGS: 00010286 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608473] RAX: d36cc43800000000 RBX: d36cc43800000000 RCX: 0000000000000181 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608474] RDX: 0000000000000180 RSI: 00000000006012c0 RDI: 0000000000025120 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608475] RBP: 00000000006012c0 R08: ffff984037ca5120 R09: ffff984037807900 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608477] R10: ffff984037806a00 R11: 0000000000000000 R12: 0000000000001c00 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608478] R13: 00000000ffffffff R14: ffff984037806a00 R15: d36cc43800000000 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608479] FS: 00007fc881130800(0000) GS:ffff984037c80000(0000) knlGS:0000000000000000 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608480] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608482] CR2: 00007fc88153fee0 CR3: 0000000141b9e006 CR4: 00000000003606e0 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608504] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 Feb 6 17:15:34 Telenet-PC kernel: [ 511.608506] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 The system is almost unuseble after this. -- Package-specific info: ** Version: Linux version 4.19.0-2-amd64 (debian-kernel@lists.debian.org) (gcc version 8.2.0 (Debian 8.2.0-14)) #1 SMP Debian 4.19.16-1 (2019-01-17) ** Command line: BOOT_IMAGE=/boot/vmlinuz-4.19.0-2-amd64 root=UUID=63557941-5e8a-4299-b490-1905b8083de8 ro quiet ** Tainted: OE (12288) * Out-of-tree module has been loaded. * Unsigned module has been loaded. ** Kernel log: [ 35.848720] [drm] Extended Fifo. [ 35.848720] [drm] Multimon. [ 35.848721] [drm] Pitchlock. [ 35.848721] [drm] Irq mask. [ 35.848722] [drm] Display Topology. [ 35.848722] [drm] GMR. [ 35.848722] [drm] Traces. [ 35.848723] [drm] GMR2. [ 35.848723] [drm] Screen Object 2. [ 35.848723] [drm] Command Buffers. [ 35.848724] [drm] Command Buffers 2. [ 35.848724] [drm] Guest Backed Resources. [ 35.848725] [drm] DX Features. [ 35.848725] [drm] HP Command Queue. [ 35.848725] [drm] Capabilities2: [ 35.848726] [drm] Grow oTable. [ 35.848726] [drm] IntraSurface copy. [ 35.848727] [drm] Max GMR ids is 64 [ 35.848727] [drm] Max number of GMR pages is 65536 [ 35.848728] [drm] Max dedicated hypervisor surface memory is 0 kiB [ 35.848729] [drm] Maximum display memory size is 131072 kiB [ 35.848729] [drm] VRAM at 0xe8000000 size is 4096 kiB [ 35.848730] [drm] MMIO at 0xfe000000 size is 256 kiB [ 35.848732] [drm] global init. [ 35.848784] [TTM] Zone kernel: Available graphics memory: 3041370 kiB [ 35.848785] [TTM] Zone dma32: Available graphics memory: 2097152 kiB [ 35.848785] [TTM] Initializing pool allocator [ 35.848789] [TTM] Initializing DMA pool allocator [ 35.849028] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ 35.849028] [drm] No driver support for vblank timestamp query. [ 35.849332] [drm] Screen Target Display device initialized [ 35.849385] [drm] width 640 [ 35.849394] [drm] height 480 [ 35.849402] [drm] bpp 32 [ 35.854668] [drm] Fifo max 0x00040000 min 0x00001000 cap 0x0000077f [ 35.856788] [drm] Using command buffers with DMA pool. [ 35.856797] [drm] DX: yes. [ 35.856797] [drm] Atomic: yes. [ 35.856798] [drm] SM4_1: no. [ 35.860592] sr 1:0:0:0: Attached scsi generic sg0 type 5 [ 35.860747] sd 2:0:0:0: Attached scsi generic sg1 type 0 [ 35.870202] input: PC Speaker as /devices/platform/pcspkr/input/input6 [ 35.871215] alg: No test for fips(ansi_cprng) (fips_ansi_cprng) [ 35.887967] fbcon: svgadrmfb (fb0) is primary device [ 35.890061] Console: switching to colour frame buffer device 100x37 [ 35.931559] [drm] Initialized vmwgfx 2.15.0 20180704 for 0000:00:0f.0 on minor 0 [ 35.986482] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 10737418240 ms ovfl timer [ 35.986484] RAPL PMU: hw unit of domain pp0-core 2^-0 Joules [ 35.986484] RAPL PMU: hw unit of domain package 2^-0 Joules [ 35.986485] RAPL PMU: hw unit of domain dram 2^-0 Joules [ 35.986485] RAPL PMU: hw unit of domain pp1-gpu 2^-0 Joules [ 35.986486] RAPL PMU: hw unit of domain psys 2^-0 Joules [ 36.008851] Bluetooth: Core ver 2.22 [ 36.008865] NET: Registered protocol family 31 [ 36.008866] Bluetooth: HCI device and connection manager initialized [ 36.008872] Bluetooth: HCI socket layer initialized [ 36.008874] Bluetooth: L2CAP socket layer initialized [ 36.008878] Bluetooth: SCO socket layer initialized [ 36.054098] usbcore: registered new interface driver btusb [ 36.224491] systemd-journald[398]: Received request to flush runtime journal from PID 1 [ 36.356016] NET: Registered protocol family 40 [ 37.363698] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 37.363699] Bluetooth: BNEP filters: protocol multicast [ 37.363703] Bluetooth: BNEP socket layer initialized [ 37.896149] IPv6: ADDRCONF(NETDEV_UP): ens192: link is not ready [ 37.899038] vmxnet3 0000:0b:00.0 ens192: intr type 3, mode 0, 3 vectors allocated [ 37.899819] vmxnet3 0000:0b:00.0 ens192: NIC Link is Up 10000 Mbps [ 37.908614] IPv6: ADDRCONF(NETDEV_UP): ens224: link is not ready [ 37.910894] vmxnet3 0000:13:00.0 ens224: intr type 3, mode 0, 3 vectors allocated [ 37.911485] vmxnet3 0000:13:00.0 ens224: NIC Link is Up 10000 Mbps [ 37.919562] IPv6: ADDRCONF(NETDEV_UP): ens256: link is not ready [ 37.922639] vmxnet3 0000:1b:00.0 ens256: intr type 3, mode 0, 3 vectors allocated [ 37.922937] vmxnet3 0000:1b:00.0 ens256: NIC Link is Up 10000 Mbps [ 38.269625] NET: Registered protocol family 15 [ 38.279205] PPP generic driver version 2.4.2 [ 38.285814] NET: Registered protocol family 24 [ 38.322469] l2tp_core: L2TP core driver, V2.0 [ 38.327078] l2tp_netlink: L2TP netlink interface [ 38.330531] l2tp_ppp: PPPoL2TP kernel driver, V2.0 [ 38.376842] Initializing XFRM netlink socket [ 204.676504] Bluetooth: RFCOMM TTY layer initialized [ 204.676510] Bluetooth: RFCOMM socket layer initialized [ 204.676517] Bluetooth: RFCOMM ver 1.11 [ 215.495977] perf: interrupt took too long (2573 > 2500), lowering kernel.perf_event_max_sample_rate to 77500 [ 229.242901] perf: interrupt took too long (3255 > 3216), lowering kernel.perf_event_max_sample_rate to 61250 [ 239.192292] perf: interrupt took too long (4070 > 4068), lowering kernel.perf_event_max_sample_rate to 49000 [ 271.058840] perf: interrupt took too long (5108 > 5087), lowering kernel.perf_event_max_sample_rate to 39000 [ 298.732750] tun: Universal TUN/TAP device driver, 1.6 [ 302.521473] perf: interrupt took too long (6386 > 6385), lowering kernel.perf_event_max_sample_rate to 31250 [ 373.901214] perf: interrupt took too long (8022 > 7982), lowering kernel.perf_event_max_sample_rate to 24750 [ 388.175911] ufsd: loading out-of-tree module taints kernel. [ 388.176160] ufsd: module verification failed: signature and/or required key missing - tainting kernel [ 388.181120] ufsd: driver (UFSD_HEAD lke_9.5.4_r312115_b132, acl, ioctl, sd2(5), car) loaded at 000000003fd6af4c NTFS support included Hfs+ support included Built_for__Retail_Express_lke_9.5.4_r312115_b132 [ 388.181122] ufsd: ported on kernels 4.13 to 4.20 by Antonio Petricca @ 2018 (https://github.com/antonio-petricca/paragon-ufsd-ntfs-driver-porting). [ 388.181124] ufsd: PAGE_SIZE=4K, THREAD_SIZE=16k [ 388.181124] ufsd: Kernel .config hash: original 0x15480581, current can't check. [ 393.859987] scsi host3: vhba ** Model information sys_vendor: VMware, Inc. product_name: VMware Virtual Platform product_version: None chassis_vendor: No Enclosure chassis_version: N/A bios_vendor: Phoenix Technologies LTD bios_version: 6.00 board_vendor: Intel Corporation board_name: 440BX Desktop Reference Platform board_version: None ** Loaded modules: vhba(OE) ufsd(OE) tun rfcomm xfrm_user xfrm4_tunnel tunnel4 ipcomp xfrm_ipcomp l2tp_ppp l2tp_netlink l2tp_core ip6_udp_tunnel udp_tunnel esp4 ah4 pppox ppp_generic slhc af_key xfrm_algo bnep vmw_vsock_vmci_transport vsock kvm_intel kvm irqbypass crct10dif_pclmul crc32_pclmul btusb btrtl btbcm vmw_balloon ghash_clmulni_intel btintel bluetooth intel_rapl_perf snd_ens1371 snd_ac97_codec ac97_bus gameport joydev snd_rawmidi snd_seq_device snd_pcm serio_raw evdev drbg pcspkr sg snd_timer ansi_cprng vmwgfx snd ecdh_generic soundcore rfkill ttm drm_kms_helper drm vmw_vmci ac button binfmt_misc fuse vhci_hcd usbip_host usbip_vudc udc_core usbip_core parport_pc ppdev lp parport ip_tables x_tables autofs4 ext4 crc16 mbcache jbd2 crc32c_generic fscrypto ecb hid_generic usbhid hid sd_mod sr_mod cdrom ata_generic crc32c_intel aesni_intel aes_x86_64 crypto_simd cryptd xhci_pci glue_helper psmouse ehci_pci xhci_hcd uhci_hcd ehci_hcd mptspi usbcore vmxnet3 mptscsih ata_piix mptbase libata usb_common scsi_transport_spi i2c_piix4 scsi_mod ** Network interface configuration: source /etc/network/interfaces.d/* auto lo iface lo inet loopback ** Network status: *** IP interfaces and addresses: 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: ens192: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000 link/ether 00:0c:29:dd:5a:8f brd ff:ff:ff:ff:ff:ff 3: ens224: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000 link/ether 00:0c:29:dd:5a:99 brd ff:ff:ff:ff:ff:ff inet 10.120.140.12/24 brd 10.120.140.255 scope global dynamic noprefixroute ens224 valid_lft 28673sec preferred_lft 28673sec inet6 fe80::975a:97a1:ab9b:3ec9/64 scope link noprefixroute valid_lft forever preferred_lft forever 4: ens256: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000 link/ether 00:0c:29:dd:5a:a3 brd ff:ff:ff:ff:ff:ff inet 192.168.73.143/24 brd 192.168.73.255 scope global dynamic noprefixroute ens256 valid_lft 1413sec preferred_lft 1413sec inet6 fe80::9a5a:7aa8:8c28:b416/64 scope link noprefixroute valid_lft forever preferred_lft forever 5: tun0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN group default qlen 100 link/none inet 10.8.7.6 peer 10.8.7.5/32 brd 10.8.7.6 scope global noprefixroute tun0 valid_lft forever preferred_lft forever inet6 fe80::fcd7:a699:a42f:a699/64 scope link stable-privacy valid_lft forever preferred_lft forever *** Device statistics: Inter-| Receive | Transmit face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed tun0: 9899119 7449 0 0 0 0 0 0 201268 2781 0 0 0 0 0 0 lo: 10545686 3719 0 0 0 0 0 0 10545686 3719 0 0 0 0 0 0 ens192: 57512 371 0 9 0 0 0 1 0 0 0 0 0 0 0 0 ens224: 10795072 10070 0 0 0 0 0 37 653863 5304 0 0 0 0 0 0 ens256: 23087 238 0 0 0 0 0 0 20696 217 0 0 0 0 0 0 *** Protocol statistics: Ip: Forwarding: 2 21764 total packets received 298 with invalid addresses 0 forwarded 0 incoming packets discarded 21431 incoming packets delivered 11927 requests sent out 6847303 dropped because of missing route Icmp: 1 ICMP messages received 1 input ICMP message failed ICMP input histogram: destination unreachable: 1 1 ICMP messages sent 0 ICMP messages failed ICMP output histogram: destination unreachable: 1 IcmpMsg: InType3: 1 OutType3: 1 Tcp: 33 active connection openings 1 passive connection openings 9 failed connection attempts 0 connection resets received 4 connections established 20944 segments received 11547 segments sent out 0 segments retransmitted 0 bad segments received 18 resets sent Udp: 421 packets received 1 packets to unknown port received 4 packet receive errors 388 packets sent 4 receive buffer errors 0 send buffer errors IgnoredMulti: 99 UdpLite: TcpExt: 3 TCP sockets finished time wait in fast timer 232 delayed acks sent 4 delayed acks further delayed because of locked socket Quick ack mode was activated 6 times 13292 packet headers predicted 321 acknowledgments not containing data payload received 3071 predicted acknowledgments Detected reordering 1 times using SACK TCPDSACKOldSent: 6 4 connections reset due to unexpected data TCPSackShiftFallback: 2 TCPRcvCoalesce: 6576 TCPOFOQueue: 2599 TCPAutoCorking: 22 TCPOrigDataSent: 4162 TCPKeepAlive: 2 TCPDelivered: 4185 TCPAckCompressed: 1042 IpExt: InMcastPkts: 52 OutMcastPkts: 56 InBcastPkts: 145 OutBcastPkts: 44 InOctets: 31131663 OutOctets: 11335956 InMcastOctets: 6741 OutMcastOctets: 6901 InBcastOctets: 28553 OutBcastOctets: 6311 InNoECTPkts: 21764 ** PCI devices: 00:00.0 Host bridge [0600]: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX Host bridge [8086:7190] (rev 01) Subsystem: VMware Virtual Machine Chipset [15ad:1976] Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Kernel driver in use: agpgart-intel 00:01.0 PCI bridge [0604]: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge [8086:7191] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV+ VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx- Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Bus: primary=00, secondary=01, subordinate=01, sec-latency=64 Secondary status: 66MHz+ FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B+ PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- 00:07.0 ISA bridge [0601]: Intel Corporation 82371AB/EB/MB PIIX4 ISA [8086:7110] (rev 08) Subsystem: VMware Virtual Machine Chipset [15ad:1976] Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 00:07.1 IDE interface [0101]: Intel Corporation 82371AB/EB/MB PIIX4 IDE [8086:7111] (rev 01) (prog-if 8a [ISA Compatibility mode controller, supports both channels switched to PCI native mode, supports bus mastering]) Subsystem: VMware Virtual Machine Chipset [15ad:1976] Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 64 Region 0: [virtual] Memory at 000001f0 (32-bit, non-prefetchable) [size=8] Region 1: [virtual] Memory at 000003f0 (type 3, non-prefetchable) Region 2: [virtual] Memory at 00000170 (32-bit, non-prefetchable) [size=8] Region 3: [virtual] Memory at 00000370 (type 3, non-prefetchable) Region 4: I/O ports at 1060 [size=16] Kernel driver in use: ata_piix Kernel modules: ata_piix, ata_generic 00:07.3 Bridge [0680]: Intel Corporation 82371AB/EB/MB PIIX4 ACPI [8086:7113] (rev 08) Subsystem: VMware Virtual Machine Chipset [15ad:1976] Control: I/O+ Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Interrupt: pin ? routed to IRQ 9 Kernel modules: i2c_piix4 00:07.7 System peripheral [0880]: VMware Virtual Machine Communication Interface [15ad:0740] (rev 10) Subsystem: VMware Virtual Machine Communication Interface [15ad:0740] Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+ Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 64 (1500ns min, 63750ns max) Interrupt: pin A routed to IRQ 16 Region 0: I/O ports at 1080 [size=64] Region 1: Memory at febfe000 (64-bit, non-prefetchable) [size=8K] Capabilities: <access denied> Kernel driver in use: vmw_vmci Kernel modules: vmw_vmci 00:0f.0 VGA compatible controller [0300]: VMware SVGA II Adapter [15ad:0405] (prog-if 00 [VGA controller]) Subsystem: VMware SVGA II Adapter [15ad:0405] Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 64, Cache Line Size: 32 bytes Interrupt: pin A routed to IRQ 16 Region 0: I/O ports at 1070 [size=16] Region 1: Memory at e8000000 (32-bit, prefetchable) [size=128M] Region 2: Memory at fe000000 (32-bit, non-prefetchable) [size=8M] [virtual] Expansion ROM at 000c0000 [disabled] [size=128K] Capabilities: <access denied> Kernel driver in use: vmwgfx Kernel modules: vmwgfx 00:10.0 SCSI storage controller [0100]: LSI Logic / Symbios Logic 53c1030 PCI-X Fusion-MPT Dual Ultra320 SCSI [1000:0030] (rev 01) Subsystem: VMware LSI Logic Parallel SCSI Controller [15ad:1976] Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 64 (1500ns min, 63750ns max) Interrupt: pin A routed to IRQ 17 Region 0: I/O ports at 1400 [size=256] Region 1: Memory at feba0000 (64-bit, non-prefetchable) [size=128K] Region 3: Memory at febc0000 (64-bit, non-prefetchable) [size=128K] [virtual] Expansion ROM at c0808000 [disabled] [size=16K] Capabilities: <access denied> Kernel driver in use: mptspi Kernel modules: mptspi 00:11.0 PCI bridge [0604]: VMware PCI bridge [15ad:0790] (rev 02) (prog-if 01 [Subtractive decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 64, Cache Line Size: 32 bytes Bus: primary=00, secondary=02, subordinate=02, sec-latency=68 I/O behind bridge: 00002000-00003fff Memory behind bridge: fd500000-fdffffff Prefetchable memory behind bridge: 00000000e7b00000-00000000e7ffffff Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> 00:15.0 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 24 Bus: primary=00, secondary=03, subordinate=03, sec-latency=0 Memory behind bridge: fd400000-fd4fffff Prefetchable memory behind bridge: 00000000c0000000-00000000c01fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:15.1 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 25 Bus: primary=00, secondary=04, subordinate=04, sec-latency=0 I/O behind bridge: 00007000-00007fff Memory behind bridge: fd000000-fd0fffff Prefetchable memory behind bridge: 00000000e7a00000-00000000e7afffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:15.2 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 26 Bus: primary=00, secondary=05, subordinate=05, sec-latency=0 I/O behind bridge: 0000b000-0000bfff Memory behind bridge: fcc00000-fccfffff Prefetchable memory behind bridge: 00000000e7600000-00000000e76fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:15.3 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 27 Bus: primary=00, secondary=06, subordinate=06, sec-latency=0 Memory behind bridge: fc800000-fc8fffff Prefetchable memory behind bridge: 00000000e7200000-00000000e72fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:15.4 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 28 Bus: primary=00, secondary=07, subordinate=07, sec-latency=0 Memory behind bridge: fc400000-fc4fffff Prefetchable memory behind bridge: 00000000e6e00000-00000000e6efffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:15.5 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 29 Bus: primary=00, secondary=08, subordinate=08, sec-latency=0 Memory behind bridge: fc000000-fc0fffff Prefetchable memory behind bridge: 00000000e6a00000-00000000e6afffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:15.6 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 30 Bus: primary=00, secondary=09, subordinate=09, sec-latency=0 Memory behind bridge: fbc00000-fbcfffff Prefetchable memory behind bridge: 00000000e6600000-00000000e66fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:15.7 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 31 Bus: primary=00, secondary=0a, subordinate=0a, sec-latency=0 Memory behind bridge: fb800000-fb8fffff Prefetchable memory behind bridge: 00000000e6200000-00000000e62fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:16.0 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 32 Bus: primary=00, secondary=0b, subordinate=0b, sec-latency=0 I/O behind bridge: 00004000-00004fff Memory behind bridge: fd300000-fd3fffff Prefetchable memory behind bridge: 00000000c0200000-00000000c03fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:16.1 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 33 Bus: primary=00, secondary=0c, subordinate=0c, sec-latency=0 I/O behind bridge: 00008000-00008fff Memory behind bridge: fcf00000-fcffffff Prefetchable memory behind bridge: 00000000e7900000-00000000e79fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:16.2 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 34 Bus: primary=00, secondary=0d, subordinate=0d, sec-latency=0 I/O behind bridge: 0000c000-0000cfff Memory behind bridge: fcb00000-fcbfffff Prefetchable memory behind bridge: 00000000e7500000-00000000e75fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:16.3 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 35 Bus: primary=00, secondary=0e, subordinate=0e, sec-latency=0 Memory behind bridge: fc700000-fc7fffff Prefetchable memory behind bridge: 00000000e7100000-00000000e71fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:16.4 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 36 Bus: primary=00, secondary=0f, subordinate=0f, sec-latency=0 Memory behind bridge: fc300000-fc3fffff Prefetchable memory behind bridge: 00000000e6d00000-00000000e6dfffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:16.5 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 37 Bus: primary=00, secondary=10, subordinate=10, sec-latency=0 Memory behind bridge: fbf00000-fbffffff Prefetchable memory behind bridge: 00000000e6900000-00000000e69fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:16.6 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 38 Bus: primary=00, secondary=11, subordinate=11, sec-latency=0 Memory behind bridge: fbb00000-fbbfffff Prefetchable memory behind bridge: 00000000e6500000-00000000e65fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:16.7 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 39 Bus: primary=00, secondary=12, subordinate=12, sec-latency=0 Memory behind bridge: fb700000-fb7fffff Prefetchable memory behind bridge: 00000000e6100000-00000000e61fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:17.0 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 40 Bus: primary=00, secondary=13, subordinate=13, sec-latency=0 I/O behind bridge: 00005000-00005fff Memory behind bridge: fd200000-fd2fffff Prefetchable memory behind bridge: 00000000c0400000-00000000c05fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:17.1 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 41 Bus: primary=00, secondary=14, subordinate=14, sec-latency=0 I/O behind bridge: 00009000-00009fff Memory behind bridge: fce00000-fcefffff Prefetchable memory behind bridge: 00000000e7800000-00000000e78fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:17.2 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 42 Bus: primary=00, secondary=15, subordinate=15, sec-latency=0 I/O behind bridge: 0000d000-0000dfff Memory behind bridge: fca00000-fcafffff Prefetchable memory behind bridge: 00000000e7400000-00000000e74fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:17.3 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 43 Bus: primary=00, secondary=16, subordinate=16, sec-latency=0 Memory behind bridge: fc600000-fc6fffff Prefetchable memory behind bridge: 00000000e7000000-00000000e70fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:17.4 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 44 Bus: primary=00, secondary=17, subordinate=17, sec-latency=0 Memory behind bridge: fc200000-fc2fffff Prefetchable memory behind bridge: 00000000e6c00000-00000000e6cfffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:17.5 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 45 Bus: primary=00, secondary=18, subordinate=18, sec-latency=0 Memory behind bridge: fbe00000-fbefffff Prefetchable memory behind bridge: 00000000e6800000-00000000e68fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:17.6 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 46 Bus: primary=00, secondary=19, subordinate=19, sec-latency=0 Memory behind bridge: fba00000-fbafffff Prefetchable memory behind bridge: 00000000e6400000-00000000e64fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:17.7 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 47 Bus: primary=00, secondary=1a, subordinate=1a, sec-latency=0 Memory behind bridge: fb600000-fb6fffff Prefetchable memory behind bridge: 00000000e6000000-00000000e60fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:18.0 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 48 Bus: primary=00, secondary=1b, subordinate=1b, sec-latency=0 I/O behind bridge: 00006000-00006fff Memory behind bridge: fd100000-fd1fffff Prefetchable memory behind bridge: 00000000c0600000-00000000c07fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:18.1 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 49 Bus: primary=00, secondary=1c, subordinate=1c, sec-latency=0 I/O behind bridge: 0000a000-0000afff Memory behind bridge: fcd00000-fcdfffff Prefetchable memory behind bridge: 00000000e7700000-00000000e77fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:18.2 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 50 Bus: primary=00, secondary=1d, subordinate=1d, sec-latency=0 I/O behind bridge: 0000e000-0000efff Memory behind bridge: fc900000-fc9fffff Prefetchable memory behind bridge: 00000000e7300000-00000000e73fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:18.3 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 51 Bus: primary=00, secondary=1e, subordinate=1e, sec-latency=0 Memory behind bridge: fc500000-fc5fffff Prefetchable memory behind bridge: 00000000e6f00000-00000000e6ffffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:18.4 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 52 Bus: primary=00, secondary=1f, subordinate=1f, sec-latency=0 Memory behind bridge: fc100000-fc1fffff Prefetchable memory behind bridge: 00000000e6b00000-00000000e6bfffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:18.5 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 53 Bus: primary=00, secondary=20, subordinate=20, sec-latency=0 Memory behind bridge: fbd00000-fbdfffff Prefetchable memory behind bridge: 00000000e6700000-00000000e67fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:18.6 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 54 Bus: primary=00, secondary=21, subordinate=21, sec-latency=0 Memory behind bridge: fb900000-fb9fffff Prefetchable memory behind bridge: 00000000e6300000-00000000e63fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 00:18.7 PCI bridge [0604]: VMware PCI Express Root Port [15ad:07a0] (rev 01) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin ? routed to IRQ 55 Bus: primary=00, secondary=22, subordinate=22, sec-latency=0 Memory behind bridge: fb500000-fb5fffff Prefetchable memory behind bridge: 00000000e5f00000-00000000e5ffffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: <access denied> Kernel driver in use: pcieport 02:00.0 USB controller [0c03]: VMware USB1.1 UHCI Controller [15ad:0774] (prog-if 00 [UHCI]) Subsystem: VMware USB1.1 UHCI Controller [15ad:1976] Physical Slot: 32 Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 64 Interrupt: pin A routed to IRQ 18 Region 4: I/O ports at 2040 [size=32] Capabilities: <access denied> Kernel driver in use: uhci_hcd Kernel modules: uhci_hcd 02:01.0 USB controller [0c03]: VMware USB2 EHCI Controller [15ad:0770] (prog-if 20 [EHCI]) Subsystem: VMware USB2 EHCI Controller [15ad:0770] Physical Slot: 33 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 64 (1500ns min, 63750ns max) Interrupt: pin A routed to IRQ 19 Region 0: Memory at fd5ff000 (32-bit, non-prefetchable) [size=4K] Capabilities: <access denied> Kernel driver in use: ehci-pci Kernel modules: ehci_pci 02:02.0 Multimedia audio controller [0401]: Ensoniq ES1371/ES1373 / Creative Labs CT2518 [1274:1371] (rev 02) Subsystem: Ensoniq Audio PCI 64V/128/5200 / Creative CT4810/CT5803/CT5806 [Sound Blaster PCI] [1274:1371] Physical Slot: 34 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 64 (1500ns min, 63750ns max) Interrupt: pin A routed to IRQ 16 Region 0: I/O ports at 2000 [size=64] Capabilities: <access denied> Kernel driver in use: snd_ens1371 Kernel modules: snd_ens1371 03:00.0 USB controller [0c03]: VMware USB3 xHCI 1.0 Controller [15ad:0779] (prog-if 30 [XHCI]) Subsystem: VMware USB3 xHCI 1.0 Controller [15ad:0779] Physical Slot: 160 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 64 (1500ns min, 63750ns max) Interrupt: pin A routed to IRQ 18 Region 0: Memory at fd4e0000 (64-bit, non-prefetchable) [size=128K] Capabilities: <access denied> Kernel driver in use: xhci_hcd Kernel modules: xhci_pci 0b:00.0 Ethernet controller [0200]: VMware VMXNET3 Ethernet Controller [15ad:07b0] (rev 01) Subsystem: VMware VMXNET3 Ethernet Controller [15ad:07b0] Physical Slot: 192 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+ Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin A routed to IRQ 19 Region 0: Memory at fd3fc000 (32-bit, non-prefetchable) [size=4K] Region 1: Memory at fd3fd000 (32-bit, non-prefetchable) [size=4K] Region 2: Memory at fd3fe000 (32-bit, non-prefetchable) [size=8K] Region 3: I/O ports at 4000 [size=16] [virtual] Expansion ROM at fd300000 [disabled] [size=64K] Capabilities: <access denied> Kernel driver in use: vmxnet3 Kernel modules: vmxnet3 13:00.0 Ethernet controller [0200]: VMware VMXNET3 Ethernet Controller [15ad:07b0] (rev 01) Subsystem: VMware VMXNET3 Ethernet Controller [15ad:07b0] Physical Slot: 224 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+ Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin A routed to IRQ 16 Region 0: Memory at fd2fc000 (32-bit, non-prefetchable) [size=4K] Region 1: Memory at fd2fd000 (32-bit, non-prefetchable) [size=4K] Region 2: Memory at fd2fe000 (32-bit, non-prefetchable) [size=8K] Region 3: I/O ports at 5000 [size=16] [virtual] Expansion ROM at fd200000 [disabled] [size=64K] Capabilities: <access denied> Kernel driver in use: vmxnet3 Kernel modules: vmxnet3 1b:00.0 Ethernet controller [0200]: VMware VMXNET3 Ethernet Controller [15ad:07b0] (rev 01) Subsystem: VMware VMXNET3 Ethernet Controller [15ad:07b0] Physical Slot: 256 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+ Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin A routed to IRQ 17 Region 0: Memory at fd1fc000 (32-bit, non-prefetchable) [size=4K] Region 1: Memory at fd1fd000 (32-bit, non-prefetchable) [size=4K] Region 2: Memory at fd1fe000 (32-bit, non-prefetchable) [size=8K] Region 3: I/O ports at 6000 [size=16] [virtual] Expansion ROM at fd100000 [disabled] [size=64K] Capabilities: <access denied> Kernel driver in use: vmxnet3 Kernel modules: vmxnet3 ** USB devices: Bus 020 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 019 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 018 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 017 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 016 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 015 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 014 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 013 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 012 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 011 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 009 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 010 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 008 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 007 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 006 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 003 Device 005: ID 0e0f:0002 VMware, Inc. Virtual USB Hub Bus 003 Device 004: ID 0e0f:0002 VMware, Inc. Virtual USB Hub Bus 003 Device 003: ID 0e0f:0008 VMware, Inc. Bus 003 Device 002: ID 0e0f:0003 VMware, Inc. Virtual Mouse Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 001 Device 002: ID 0e0f:0002 VMware, Inc. Virtual USB Hub Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub -- System Information: Debian Release: 10.0 APT prefers testing APT policy: (500, 'testing'), (500, 'stable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.19.0-2-amd64 (SMP w/3 CPU cores) Locale: LANG=ro_RO.UTF-8, LC_CTYPE=ro_RO.UTF-8 (charmap=UTF-8), LANGUAGE=en_US:ro (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled Versions of packages linux-image-4.19.0-2-amd64 depends on: ii initramfs-tools [linux-initramfs-tool] 0.132 ii kmod 25-2 ii linux-base 4.5 Versions of packages linux-image-4.19.0-2-amd64 recommends: ii apparmor 2.13.2-3 ii firmware-linux-free 3.4 ii irqbalance 1.5.0-2 Versions of packages linux-image-4.19.0-2-amd64 suggests: pn debian-kernel-handbook <none> ii grub-pc 2.02+dfsg1-10 pn linux-doc-4.19 <none> Versions of packages linux-image-4.19.0-2-amd64 is related to: pn firmware-amd-graphics <none> pn firmware-atheros <none> pn firmware-bnx2 <none> pn firmware-bnx2x <none> pn firmware-brcm80211 <none> pn firmware-cavium <none> pn firmware-intel-sound <none> pn firmware-intelwimax <none> pn firmware-ipw2x00 <none> pn firmware-ivtv <none> pn firmware-iwlwifi <none> pn firmware-libertas <none> pn firmware-linux-nonfree <none> ii firmware-misc-nonfree 20190114-1 pn firmware-myricom <none> pn firmware-netxen <none> pn firmware-qlogic <none> pn firmware-realtek <none> pn firmware-samsung <none> pn firmware-siano <none> pn firmware-ti-connectivity <none> pn xen-hypervisor <none> -- no debconf information