[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#921542: marked as done (tc qdisc kernel crash)



Your message dated Tue, 12 Mar 2019 18:00:11 +0000
with message-id <E1h3lhD-00013v-Kk@fasolo.debian.org>
and subject line Bug#921542: fixed in linux 4.19.28-1
has caused the Debian Bug report #921542,
regarding tc qdisc kernel crash
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
921542: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=921542
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
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

--- End Message ---
--- Begin Message ---
Source: linux
Source-Version: 4.19.28-1

We believe that the bug you reported is fixed in the latest version of
linux, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 921542@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ben Hutchings <ben@decadent.org.uk> (supplier of updated linux package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Tue, 12 Mar 2019 05:06:28 +0000
Source: linux
Binary: linux-doc-4.19 linux-headers-4.19.0-4-common linux-headers-4.19.0-4-common-rt linux-source-4.19 linux-support-4.19.0-4 lockdep
Architecture: all source
Version: 4.19.28-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Changed-By: Ben Hutchings <ben@decadent.org.uk>
Closes: 895131 913119 913138 921542 922182 922306
Description: 
 linux-doc-4.19 - Linux kernel specific documentation for version 4.19
 linux-headers-4.19.0-4-common - Common header files for Linux 4.19.0-4
 linux-headers-4.19.0-4-common-rt - Common header files for Linux 4.19.0-4-rt
 linux-source-4.19 - Linux kernel source for version 4.19 with Debian patches
 linux-support-4.19.0-4 - Support files for Linux 4.19
 lockdep    - Runtime locking correctness validator
Changes:
 linux (4.19.28-1) unstable; urgency=medium
 .
   * New upstream stable update:
     https://www.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.19.21
     - devres: Align data[] to ARCH_KMALLOC_MINALIGN
     - drm/bufs: Fix Spectre v1 vulnerability
     - drm/vgem: Fix vgem_init to get drm device available.
     - [arm*] pinctrl: bcm2835: Use raw spinlock for RT compatibility
     - [x86] ASoC: Intel: mrfld: fix uninitialized variable access
     - gpiolib: Fix possible use after free on label
     - [armhf] drm/sun4i: Initialize registers in tcon-top driver
     - genirq/affinity: Spread IRQs to all available NUMA nodes
     - [armhf] gpu: ipu-v3: image-convert: Prevent race between run and
       unprepare
     - wil6210: fix reset flow for Talyn-mb
     - wil6210: fix memory leak in wil_find_tx_bcast_2
     - ath10k: assign 'n_cipher_suites' for WCN3990
     - ath9k: dynack: use authentication messages for 'late' ack
     - scsi: lpfc: Correct LCB RJT handling
     - scsi: mpt3sas: Call sas_remove_host before removing the target devices
     - scsi: lpfc: Fix LOGO/PLOGI handling when triggerd by ABTS Timeout event
     - [armhf] 8808/1: kexec:offline panic_smp_self_stop CPU
     - [mips] clk: boston: fix possible memory leak in clk_boston_setup()
     - dlm: Don't swamp the CPU with callbacks queued during recovery
     - [x86] PCI: Fix Broadcom CNB20LE unintended sign extension (redux)
     - [powerpc] pseries: add of_node_put() in dlpar_detach_node()
     - [arm*] drm/vc4: ->x_scaling[1] should never be set to VC4_SCALING_NONE
     - ptp: check gettime64 return code in PTP_SYS_OFFSET ioctl
     - [mips] Boston: Disable EG20T prefetch
     - iwlwifi: fw: do not set sgi bits for HE connection
     - fpga: altera-cvp: Fix registration for CvP incapable devices
     - [x86] fpga: altera-cvp: fix 'bad IO access' on x86_64
     - [x86] vbox: fix link error with 'gcc -Og'
     - platform/chrome: don't report EC_MKBP_EVENT_SENSOR_FIFO as wakeup
     - i40e: prevent overlapping tx_timeout recover
     - scsi: hisi_sas: change the time of SAS SSP connection
     - usbnet: smsc95xx: fix rx packet alignment
     - [armhf,arm64] drm/rockchip: fix for mailbox read size
     - [arm*] OMAP2+: hwmod: Fix some section annotations
     - drm/amd/display: fix gamma not being applied correctly
     - drm/amd/display: calculate stream->phy_pix_clk before clock mapping
     - bpf: libbpf: retry map creation without the name
     - net/mlx5: EQ, Use the right place to store/read IRQ affinity hint
     - modpost: validate symbol names also in find_elf_symbol
     - perf tools: Add Hygon Dhyana support
     - [armhf] soc/tegra: Don't leak device tree node reference
     - media: rc: ensure close() is called on rc_unregister_device
     - media: video-i2c: avoid accessing released memory area when removing
       driver
     - [armhf] media: mtk-vcodec: Release device nodes in
       mtk_vcodec_init_enc_pm()
     - ptp: Fix pass zero to ERR_PTR() in ptp_clock_register
     - dmaengine: xilinx_dma: Remove __aligned attribute on zynqmp_dma_desc_ll
     - [powerpc] 32: Add .data..Lubsan_data*/.data..Lubsan_type* sections
       explicitly
     - media: adv*/tc358743/ths8200: fill in min width/height/pixelclock
     - ACPI: SPCR: Consider baud rate 0 as preconfigured state
     - f2fs: move dir data flush to write checkpoint process
     - f2fs: fix race between write_checkpoint and write_begin
     - f2fs: fix wrong return value of f2fs_acl_create
     - [arm64] io: Ensure calls to delay routines are ordered against prior
       readX()
     - net: aquantia: return 'err' if set MPI_DEINIT state fails
     - [sparc*] sunvdc: Do not spin in an infinite loop when vio_ldc_send()
       returns EAGAIN
     - nfsd4: fix crash on writing v4_end_grace before nfsd startup
     - drm: Clear state->acquire_ctx before leaving
       drm_atomic_helper_commit_duplicated_state()
     - [arm64] io: Ensure value passed to __iormb() is held in a 64-bit register
     - Thermal: do not clear passive state during system sleep
     - thermal: Fix locking in cooling device sysfs update cur_state
     - firmware/efi: Add NULL pointer checks in efivars API functions
     - [s390] zcrypt: improve special ap message cmd handling
     - [arm64] ftrace: don't adjust the LR value
     - [x86] fpu: Add might_fault() to user_insn()
     - usb: dwc3: Correct the logic for checking TRB full in
       __dwc3_prepare_one_trb()
     - usb: dwc2: Disable power down feature on Samsung SoCs
     - usb: hub: delay hub autosuspend if USB3 port is still link training
     - timekeeping: Use proper seqcount initializer
     - usb: mtu3: fix the issue about SetFeature(U1/U2_Enable)
     - [armhf] clk: sunxi-ng: a33: Set CLK_SET_RATE_PARENT for all audio module
       clocks
     - media: imx274: select REGMAP_I2C
     - drm/amdgpu/powerplay: fix clock stretcher limits on polaris (v2)
     - tipc: fix node keep alive interval calculation
     - driver core: Move async_synchronize_full call
     - kobject: return error code if writing /sys/.../uevent fails
     - IB/hfi1: Unreserve a reserved request when it is completed
     - usb: dwc3: trace: add missing break statement to make compiler happy
     - [mips] gpio: mt7621: report failure of devm_kasprintf()
     - [mips] gpio: mt7621: pass mediatek_gpio_bank_probe() failure up the stack
     - [x86] iommu/amd: Fix amd_iommu=force_isolation
     - [armhf] dts: Fix OMAP4430 SDP Ethernet startup
     - [mips] bpf: fix encoding bug for mm_srlv32_op
     - media: coda: fix H.264 deblocking filter controls
     - [armel] dts: Fix up the D-Link DIR-685 MTD partition info
     - watchdog: renesas_wdt: don't set divider while watchdog is running
     - [armhf] dts: imx51-zii-rdu1: Do not specify "power-gpio" for hpa1
     - usb: dwc3: gadget: Disable CSP for stream OUT ep
     - [arm64] iommu/arm-smmu-v3: Avoid memory corruption from Hisilicon MSI
       payloads
     - [arm64] iommu/arm-smmu: Add support for qcom,smmu-v2 variant
     - [arm64] iommu/arm-smmu-v3: Use explicit mb() when moving cons pointer
     - [armhf] clk: imx6sl: ensure MMDC CH0 handshake is bypassed
     - OPP: Use opp_table->regulators to verify no regulator case
     - [arm64] tee: optee: avoid possible double list_del()
     - [arm64] drm/msm/dsi: fix dsi clock names in DSI 10nm PLL driver
     - [arm64] drm/msm: dpu: Only check flush register against pending flushes
     - lightnvm: pblk: fix resubmission of overwritten write err lbas
     - lightnvm: pblk: add lock protection to list operations
     - i2c-axxia: check for error conditions first
     - [armhf] phy: sun4i-usb: add support for missing USB PHY index
     - udf: Fix BUG on corrupted inode
     - selftests/bpf: use __bpf_constant_htons in test_prog.c
     - [armel] pxa: avoid section mismatch warning
     - [armhf] ASoC: fsl: Fix SND_SOC_EUKREA_TLV320 build error on i.MX8M
     - [powerpc] KVM: Book3S: Only report KVM_CAP_SPAPR_TCE_VFIO on powernv
       machines
     - [arm*] mmc: bcm2835: Recover from MMC_SEND_EXT_CSD
     - [arm*] mmc: bcm2835: reset host on timeout
     - memstick: Prevent memstick host from getting runtime suspended during
       card detection
     - [arm64] mmc: sdhci-xenon: Fix timeout checks
     - btrfs: harden agaist duplicate fsid on scanned devices
     - serial: sh-sci: Fix locking in sci_submit_rx()
     - serial: sh-sci: Resume PIO in sci_rx_interrupt() on DMA failure
     - tty: serial: samsung: Properly set flags in autoCTS mode
     - perf test: Fix perf_event_attr test failure
     - perf dso: Fix unchecked usage of strncpy()
     - perf header: Fix unchecked usage of strncpy()
     - btrfs: use tagged writepage to mitigate livelock of snapshot
     - perf probe: Fix unchecked usage of strncpy()
     - i2c: sh_mobile: Add support for r8a774c0 (RZ/G2E)
     - bnxt_en: Disable MSIX before re-reserving NQs/CMPL rings.
     - [x86] tools/power/x86/intel_pstate_tracer: Fix non root execution for
       post processing a trace file
     - livepatch: check kzalloc return values
     - [arm64] KVM: Skip MMIO insn after emulation
     - usb: musb: dsps: fix otg state machine
     - usb: musb: dsps: fix runtime pm for peripheral mode
     - perf header: Fix up argument to ctime()
     - perf tools: Cast off_t to s64 to avoid warning on bionic libc
     - percpu: convert spin_lock_irq to spin_lock_irqsave.
     - [arm64] net: hns3: fix incomplete uninitialization of IRQ in the
       hns3_nic_uninit_vector_data()
     - drm/amd/display: Add retry to read ddc_clock pin
     - Bluetooth: hci_bcm: Handle deferred probing for the clock supply
     - drm/amd/display: fix YCbCr420 blank color
     - [powerpc] uaccess: fix warning/error with access_ok()
     - mac80211: fix radiotap vendor presence bitmap handling
     - xfrm6_tunnel: Fix spi check in __xfrm6_tunnel_alloc_spi
     - scsi: smartpqi: correct host serial num for ssa
     - scsi: smartpqi: correct volume status
     - scsi: smartpqi: increase fw status register read timeout
     - cw1200: Fix concurrency use-after-free bugs in cw1200_hw_scan()
     - [arm64] net: hns3: add max vector number check for pf
     - [powerpc] perf: Fix thresholding counter data for unknown type
     - iwlwifi: mvm: fix setting HE ppe FW config
     - [powerpc] powernv/ioda: Allocate indirect TCE levels of cached userspace
       addresses on demand
     - mlx5: update timecounter at least twice per counter overflow
     - drbd: narrow rcu_read_lock in drbd_sync_handshake
     - drbd: disconnect, if the wrong UUIDs are attached on a connected peer
     - drbd: skip spurious timeout (ping-timeo) when failing promote
     - drbd: Avoid Clang warning about pointless switch statment
     - drm/amd/display: validate extended dongle caps
     - md: fix raid10 hang issue caused by barrier
     - fbdev: fbmem: behave better with small rotated displays and many CPUs
     - i40e: define proper net_device::neigh_priv_len
     - ice: Do not enable NAPI on q_vectors that have no rings
     - igb: Fix an issue that PME is not enabled during runtime suspend
     - ACPI/APEI: Clear GHES block_status before panic()
     - fbdev: fbcon: Fix unregister crash when more than one framebuffer
     - [powerpc] mm: Fix reporting of kernel execute faults on the 8xx
     - [x86] KVM: svm: report MSR_IA32_MCG_EXT_CTL as unsupported
     - [powerpc] fadump: Do not allow hot-remove memory from fadump reserved
       area.
     - kvm: Change offset in kvm_write_guest_offset_cached to unsigned
     - NFS: nfs_compare_mount_options always compare auth flavors.
     - perf build: Don't unconditionally link the libbfd feature test to
       -liberty and -lz
     - hwmon: (lm80) fix a missing check of the status of SMBus read
     - hwmon: (lm80) fix a missing check of bus read in lm80 probe
     - seq_buf: Make seq_buf_puts() null-terminate the buffer
     - cifs: check ntwrk_buf_start for NULL before dereferencing it
     - f2fs: fix use-after-free issue when accessing sbi->stat_info
     - niu: fix missing checks of niu_pci_eeprom_read
     - f2fs: fix sbi->extent_list corruption issue
     - cgroup: fix parsing empty mount option string
     - perf python: Do not force closing original perf descriptor in
       evlist.get_pollfd()
     - scripts/decode_stacktrace: only strip base path when a prefix of the path
     - arch/sh/boards/mach-kfr2r09/setup.c: fix struct mtd_oob_ops build warning
     - ocfs2: don't clear bh uptodate for block read
     - ocfs2: improve ocfs2 Makefile
     - mm/page_alloc.c: don't call kasan_free_pages() at deferred mem init
     - zram: fix lockdep warning of free block handling
     - isdn: hisax: hfc_pci: Fix a possible concurrency use-after-free bug in
       HFCPCI_l1hw()
     - [m68k] block/swim3: Fix -EBUSY error when re-opening device after unmount
     - [arm*] thermal: bcm2835: enable hwmon explicitly
     - [armhf] PCI: imx: Enable MSI from downstream components
     - thermal: generic-adc: Fix adc to temp interpolation
     - [arm64] sve: ptrace: Fix SVE_PT_REGS_OFFSET definition
     - kernel/hung_task.c: break RCU locks based on jiffies
     - proc/sysctl: fix return error for proc_doulongvec_minmax()
     - kernel/hung_task.c: force console verbose before panic
     - fs/epoll: drop ovflist branch prediction
     - exec: load_script: don't blindly truncate shebang string
     - xfs: Fix xqmstats offsets in /proc/fs/xfs/xqmstat
     - xfs: cancel COW blocks before swapext
     - xfs: Fix error code in 'xfs_ioc_getbmap()'
     - xfs: fix overflow in xfs_attr3_leaf_verify
     - xfs: fix shared extent data corruption due to missing cow reservation
     - xfs: fix transient reference count error in
       xfs_buf_resubmit_failed_buffers
     - xfs: delalloc -> unwritten COW fork allocation can go wrong
     - fs/xfs: fix f_ffree value for statfs when project quota is set
     - xfs: fix PAGE_MASK usage in xfs_free_file_space
     - xfs: fix inverted return from xfs_btree_sblock_verify_crc
     - thermal: hwmon: inline helpers when CONFIG_THERMAL_HWMON is not set
     - dccp: fool proof ccid_hc_[rt]x_parse_options()
     - enic: fix checksum validation for IPv6
     - lib/test_rhashtable: Make test_insert_dup() allocate its hash table
       dynamically
     - net: dsa: Fix lockdep false positive splat
     - net: dsa: Fix NULL checking in dsa_slave_set_eee()
     - [armhf,arm64] net: dsa: mv88e6xxx: Fix counting of ATU violations
     - net: dsa: slave: Don't propagate flag changes on down slave interfaces
     - net/mlx5e: Force CHECKSUM_UNNECESSARY for short ethernet frames
     - rds: fix refcount bug in rds_sock_addref
     - Revert "net: phy: marvell: avoid pause mode on SGMII-to-Copper for
       88e151x"
     - rxrpc: bad unlock balance in rxrpc_recvmsg
     - sctp: check and update stream->out_curr when allocating stream_out
     - sctp: walk the list of asoc safely (CVE-2019-8956)
     - skge: potential memory corruption in skge_get_regs()
     - virtio_net: Account for tx bytes and packets on sending xdp_frames
     - net/mlx5e: FPGA, fix Innova IPsec TX offload data path performance
     - xfs: eof trim writeback mapping as soon as it is cached
     - ALSA: compress: Fix stop handling on compressed capture streams
     - ALSA: usb-audio: Add support for new T+A USB DAC
     - ALSA: hda - Serialize codec registrations
     - ALSA: hda/realtek - Fix lose hp_pins for disable auto mute
     - ALSA: hda/realtek - Use a common helper for hp pin reference
     - ALSA: hda/realtek - Headset microphone support for System76 darp5
     - fuse: call pipe_buf_release() under pipe lock
     - fuse: decrement NR_WRITEBACK_TEMP on the right page
     - fuse: handle zero sized retrieve correctly
     - [arm*] dmaengine: bcm2835: Fix interrupt race on RT
     - [arm*] dmaengine: bcm2835: Fix abort of transactions
     - [armhf] dmaengine: imx-dma: fix wrong callback invoke
     - futex: Handle early deadlock return correctly
     - [arm64] irqchip/gic-v3-its: Plug allocation race for devices sharing a
       DevID
     - [armhf] usb: phy: am335x: fix race condition in _probe
     - usb: dwc3: gadget: Handle 0 xfer length for OUT EP
     - usb: gadget: udc: net2272: Fix bitwise and boolean operations
     - usb: gadget: musb: fix short isoc packets with inventra dma
     - staging: speakup: fix tty-operation NULL derefs
     - scsi: cxlflash: Prevent deadlock when adapter probe fails
     - scsi: aic94xx: fix module loading
     - cpu/hotplug: Fix "SMT disabled by BIOS" detection for KVM
     - [x86] perf/x86/intel/uncore: Add Node ID mask
     - [x86] MCE: Initialize mce.bank in the case of a fatal error in
       mce_no_way_out()
     - perf/core: Don't WARN() for impossible ring-buffer sizes
     - perf tests evsel-tp-sched: Fix bitwise operator
     - serial: fix race between flush_to_ldisc and tty_open
     - serial: 8250_pci: Make PCI class test non fatal
     - serial: sh-sci: Do not free irqs that have already been freed
     - cacheinfo: Keep the old value if of_property_read_u32 fails
     - IB/hfi1: Add limit test for RC/UC send via loopback
     - [x86] perf/x86/intel: Delay memory deallocation until x86_pmu_dead_cpu()
     - ath9k: dynack: make ewma estimation faster
     - ath9k: dynack: check da->enabled first in sampling routines
     https://www.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.19.22
     - mtd: Make sure mtd->erasesize is valid even if the partition is of size 0
     - mtd: rawnand: gpmi: fix MX28 bus master lockup problem
     - libata: Add NOLPM quirk for SAMSUNG MZ7TE512HMHP-000L1 SSD
     - [armhf, arm64] iio: adc: axp288: Fix TS-pin handling
     - signal: Always notice exiting tasks
     - signal: Better detection of synchronous signals
     - [armhf, arm64] misc: vexpress: Off by one in vexpress_syscfg_exec()
     - [x86] mei: me: add ice lake point device id.
     - debugfs: fix debugfs_rename parameter checking
     - [arm64] pinctrl: sunxi: Correct number of IRQ banks on H6 main pin
       controller
     - [x86] pinctrl: cherryview: fix Strago DMI workaround
     - tracing: uprobes: Fix typo in pr_fmt string
     - [mips*] cm: reprime error cause
     - [mips*] OCTEON: don't set octeon_dma_bar_type if PCI is disabled
     - [mips*] VDSO: Use same -m%-float cflag as the kernel proper
     - [mips*] loongson64: remove unreachable(), fix loongson_poweroff().
     - [mips*] VDSO: Include $(ccflags-vdso) in o32,n32 .lds builds
     - [arm64] firmware: arm_scmi: provide the mandatory device release callback
     - [powerpc*] radix: Fix kernel crash with mremap()
     - [amd64] mic: vop: Fix use-after-free on remove
     - mac80211: ensure that mgmt tx skbs have tailroom for encryption
     - drm/modes: Prevent division by zero htotal
     - drm/amd/powerplay: Fix missing break in switch
     - [x86] drm/i915: always return something on DDI clock selection
     - [x86] drm/vmwgfx: Fix setting of dma masks
     - [x86] drm/vmwgfx: Return error code from vmw_execbuf_copy_fence_user
     - SUNRPC: Always drop the XPRT_LOCK on XPRT_CLOSE_WAIT
     - xfrm: Make set-mark default behavior backward compatible
     - Revert "ext4: use ext4_write_inode() when fsyncing w/o a journal"
     - libceph: avoid KEEPALIVE_PENDING races in ceph_con_keepalive()
     - xfrm: refine validation of template and selector families
     - batman-adv: Avoid WARN on net_device without parent in netns
     - batman-adv: Force mac header to start of data on xmit
     - svcrdma: Reduce max_send_sges
     - svcrdma: Remove max_sge check at connect time
     https://www.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.19.23
     - Revert "exec: load_script: don't blindly truncate shebang string"
     https://www.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.19.24
     - dt-bindings: eeprom: at24: add "atmel,24c2048" compatible string
     - eeprom: at24: add support for 24c2048
     - blk-mq: fix a hung issue when fsync (Closes: #913119, #913138)
     - [armel, armhf] 8789/1: signal: copy registers using __copy_to_user()
     - [armel, armhf] 8790/1: signal: always use __copy_to_user to save iwmmxt
       context
     - [armel, armhf] 8791/1: vfp: use __copy_to_user() when saving VFP state
     - [armel, armhf] 8792/1: oabi-compat: copy oabi events using
       __copy_to_user()
     - [armel, armhf] 8793/1: signal: replace __put_user_error with __put_user
     - [armel, armhf] 8794/1: uaccess: Prevent speculative use of the current
       addr_limit
     - [armel, armhf] 8795/1: spectre-v1.1: use put_user() for __put_user()
     - [armel, armhf] 8796/1: spectre-v1,v1.1: provide helpers for address
       sanitization
     - [armel, armhf] 8797/1: spectre-v1.1: harden __copy_to_user
     - [armel, armhf] 8810/1: vfp: Fix wrong assignement to ufp_exc
     - [armel, armhfl armhf] make lookup_processor_type() non-__init
     - [armel, armhf] split out processor lookup
     - [armel, armhf] clean up per-processor check_bugs method call
     - [armel, armhf] add PROC_VTABLE and PROC_TABLE macros
     - [armel, armhf] spectre-v2: per-CPU vtables to work around big.Little
       systems
     - [armel, armhf] ensure that processor vtables is not lost after boot
     - [armel, armhf] fix the cockup in the previous patch
     - drm/amdgpu/sriov:Correct pfvf exchange logic
     - [i386] ACPI: NUMA: Use correct type for printing addresses on i386-PAE
     - perf report: Fix wrong iteration count in --branch-history
     - perf test shell: Use a fallback to get the pathname in vfs_getname
     - [riscv64] riscv: fix trace_sys_exit hook
     - cpufreq: check if policy is inactive early in __cpufreq_get()
     - nvme-pci: use the same attributes when freeing host_mem_desc_bufs.
     - nvme-pci: fix out of bounds access in nvme_cqe_pending
     - nvme-multipath: zero out ANA log buffer
     - nvme: pad fake subsys NQN vid and ssvid with zeros
     - drm/amdgpu: set WRITE_BURST_LENGTH to 64B to workaround SDMA1 hang
     - [armel] dts: kirkwood: Fix polarity of GPIO fan lines
     - [armel, armhf] gpio: pl061: handle failed allocations
     - drm/nouveau: Don't disable polling in fallback mode
     - drm/nouveau/falcon: avoid touching registers if engine is off
     - cifs: Limit memory used by lock request calls to a page
     - [x86] kvm: sev: Fail KVM_SEV_INIT if already initialized
     - CIFS: Do not assume one credit for async responses
     - [arm*] gpio: mxc: move gpio noirq suspend/resume to syscore phase
     - [x86] Revert "Input: elan_i2c - add ACPI ID for touchpad in ASUS Aspire
       F5-573G"
     - [x86] Input: elan_i2c - add ACPI ID for touchpad in Lenovo V330-15ISK
     - [armhf] OMAP5+: Fix inverted nirq pin interrupts with irq_set_type
     - perf/core: Fix impossible ring-buffer sizes warning
     - [x86] perf: Add check_period PMU callback
     - [x86] ALSA: hda - Add quirk for HP EliteBook 840 G5
     - ALSA: usb-audio: Fix implicit fb endpoint setup by quirk
     - ASoC: hdmi-codec: fix oops on re-probe
     - [alpha] tools uapi: fix Alpha support
     - [riscv64] Add pte bit to distinguish swap from invalid
     - [x86] kvm/nVMX: read from MSR_IA32_VMX_PROCBASED_CTLS2 only when it is
       available
     - [x86] kvm: vmx: Fix entry number check for add_atomic_switch_msr()
     - [arm*] mmc: sunxi: Filter out unsupported modes declared in the device
       tree
     - mmc: block: handle complete_work on separate workqueue
     - [x86] Input: elantech - enable 3rd button support on Fujitsu CELSIUS H780
     - Revert "nfsd4: return default lease period"
     - Revert "mm: don't reclaim inodes with many attached pages"
     - Revert "mm: slowly shrink slabs with a relatively small number of
       objects"
     - [alpha] fix page fault handling for r16-r18 targets
     - [alpha] Fix Eiger NR_IRQS to 128
     - [s390*] zcrypt: fix specification exception on z196 during ap probe
     - tracing/uprobes: Fix output for multiple string arguments
     - [x86] platform/UV: Use efi_runtime_lock to serialise BIOS calls
     - scsi: sd: fix entropy gathering for most rotational disks
     - signal: Restore the stop PTRACE_EVENT_EXIT
     - md/raid1: don't clear bitmap bits on interrupted recovery.
     - [x86] a.out: Clear the dump structure initially
     - dm crypt: don't overallocate the integrity tag space
     - dm thin: fix bug where bio that overwrites thin block ignores FUA
     - drm: Use array_size() when creating lease
     - [x86] drm/i915: Block fbdev HPD processing during suspend
     - [x86] drm/i915: Prevent a race during I915_GEM_MMAP ioctl with WC set
     - mm: proc: smaps_rollup: fix pss_locked calculation
     https://www.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.19.25
     - af_packet: fix raw sockets over 6in4 tunnel
     - [arm64, armhf] dsa: mv88e6xxx: Ensure all pending interrupts are handled
       prior to exit
     - net: crypto set sk to NULL when af_alg_release. (CVE-2019-8912)
     - net: Fix for_each_netdev_feature on Big endian
     - net: fix IPv6 prefix route residue
     - net: ip6_gre: initialize erspan_ver just for erspan tunnels
     - net: ipv4: use a dedicated counter for icmp_v4 redirect packets
     - net: phy: xgmiitorgmii: Support generic PHY status read
     - net: stmmac: Fix a race in EEE enable callback
     - net: stmmac: handle endianness in dwmac4_get_timestamp
     - sky2: Increase D3 delay again
     - vhost: correctly check the return value of translate_desc() in log_used()
     - vsock: cope with memory allocation failure at socket creation time
     - vxlan: test dev->flags & IFF_UP before calling netif_rx()
     - net: Add header for usage of fls64()
     - tcp: clear icsk_backoff in tcp_write_queue_purge()
     - tcp: tcp_v4_err() should be more careful
     - net: Do not allocate page fragments that are not skb aligned
     - hwmon: (lm80) Fix missing unlock on error in set_fan_div()
     - scsi: target/core: Use kmem_cache_free() instead of kfree()
     - PCI: Fix __initdata issue with "pci=disable_acs_redir" parameter
     - sunrpc: fix 4 more call sites that were using stack memory with a
       scatterlist
     - netfilter: nf_nat_snmp_basic: add missing length checks in ASN.1 cbs
       (CVE-2019-9162)
     - net/x25: do not hold the cpu too long in x25_new_lci()
     - ax25: fix possible use-after-free
     https://www.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.19.26
     - [armel armhf] 8834/1: Fix: kprobes: optimized kprobes illegal instruction
     - tracing: Fix number of entries in trace header
     - [mips*] eBPF: Always return sign extended 32b values
     - mac80211: Restore vif beacon interval if start ap fails
     - mac80211: Use linked list instead of rhashtable walk for mesh tables
     - mac80211: Free mpath object when rhashtable insertion fails
     - libceph: handle an empty authorize reply
     - ceph: avoid repeatedly adding inode to mdsc->snap_flush_list
     - numa: change get_mempolicy() to use nr_node_ids instead of MAX_NUMNODES
     - proc, oom: do not report alien mms when setting oom_score_adj
     - [x86] ALSA: hda/realtek - Headset microphone and internal speaker
       support for System76 oryp5
     - [x86] ALSA: hda/realtek: Disable PC beep in passthrough on alc285
     - KEYS: allow reaching the keys quotas exactly
     - [armhf,arm64] backlight: pwm_bl: Fix devicetree parsing with auto-
       generated brightness tables
     - [armhf] mfd: ti_am335x_tscadc: Use PLATFORM_DEVID_AUTO while registering
       mfd cells
     - [armhf] mfd: twl-core: Fix section annotations on {,un}protect_pm_master
     - [arm64] mfd: qcom_rpm: write fw_version to CTRL_REG
     - mfd: axp20x: Add AC power supply cell for AXP813
     - mfd: axp20x: Re-align MFD cell entries
     - mfd: axp20x: Add supported cells for AXP803
     - mfd: cros_ec_dev: Add missing mfd_remove_devices() call in remove
       probe()
     - [armhf] mfd: mc13xxx: Fix a missing check of a register-read failure
     - qed: Fix qed_chain_set_prod() for PBL chains with non power of 2 page
       count
     - qed: Fix qed_ll2_post_rx_buffer_notify_fw() by adding a write memory
       barrier
     - [arm64] net: hns: Fix use after free identified by SLUB debug
     - bpf: Fix [::] -> [::1] rewrite in sys_sendmsg
     - selftests/bpf: Test [::] -> [::1] rewrite in sys_sendmsg in
       test_sock_addr
     - net/mlx4: Get rid of page operation after dma_alloc_coherent
     - xprtrdma: Double free in rpcrdma_sendctxs_create()
     - selftests: forwarding: Add a test for VLAN deletion
     - netfilter: nf_tables: fix leaking object reference count
     - scsi: qla4xxx: check return code of qla4xxx_copy_from_fwddb_param
     - scsi: isci: initialize shost fully before calling scsi_add_host()
     - include/linux/compiler*.h: fix OPTIMIZER_HIDE_VAR
     - netfilter: nft_flow_offload: Fix reverse route lookup
     - bpf: correctly set initial window on active Fast Open sender
     - bpf: fix panic in stack_map_get_build_id() on i386 and arm32
     - netfilter: nft_flow_offload: fix interaction with vrf slave device
     - RDMA/mthca: Clear QP objects during their allocation
     - [powerpcspe] 8xx: fix setting of pagetable for Abatron BDI debug tool.
     - acpi/nfit: Fix race accessing memdev in nfit_get_smbios_id()
     - net: stmmac: Fix PCI module removal leak
     - net: stmmac: dwxgmac2: Only clear interrupts that are active
     - net: stmmac: Check if CBS is supported before configuring
     - net: stmmac: Fix the logic of checking if RX Watchdog must be enabled
     - net: stmmac: Prevent RX starvation in stmmac_napi_poll()
     - scsi: tcmu: avoid cmd/qfull timers updated whenever a new cmd comes
     - scsi: ufs: Fix system suspend status
     - scsi: qedi: Add ep_state for login completion on un-reachable targets
     - scsi: ufs: Fix geometry descriptor size
     - scsi: cxgb4i: add wait_for_completion()
     - netfilter: nft_flow_offload: fix checking method of conntrack helper
     - always clear the X2APIC_ENABLE bit for PV guest
     - [armhf, arm64] drm/meson: add missing of_node_put
     - drm/amdkfd: Don't assign dGPUs to APU topology devices
     - drm/amd/display: fix PME notification not working in RV desktop
     - vhost: return EINVAL if iovecs size does not match the message size
     - [armhf, arm64] drm/sun4i: backend: add missing of_node_puts
     - bpf: don't assume build-id length is always 20 bytes
     - bpf: zero out build_id for BPF_STACK_BUILD_ID_IP
     - atm: he: fix sign-extension overflow on large shift
     - hwmon: (tmp421) Correct the misspelling of the tmp442 compatible
       attribute in OF device ID table
     - [armhf] leds: lp5523: fix a missing check of return value of lp55xx_read
     - bpf: bpf_setsockopt: reset sock dst on SO_MARK changes
     - net: bridge: Mark FDB entries that were added by user as such
     - net/mlx5e: Fix wrong (zero) TX drop counter indication for representor
     - isdn: avm: Fix string plus integer warning from Clang
     - batman-adv: fix uninit-value in batadv_interface_tx()
     - inet_diag: fix reporting cgroup classid and fallback to priority
     - ipv6: propagate genlmsg_reply return code
     - net: ena: fix race between link up and device initalization
     - net/mlx4_en: Force CHECKSUM_NONE for short ethernet frames
     - net/mlx5e: Don't overwrite pedit action when multiple pedit used
     - net/packet: fix 4gb buffer limit due to overflow check
     - net: sfp: do not probe SFP module before we're attached
     - sctp: call gso_reset_checksum when computing checksum in sctp_gso_segment
     - sctp: set stream ext to NULL after freeing it in sctp_stream_outq_migrate
     - team: avoid complex list operations in team_nl_cmd_options_set()
     - Revert "socket: fix struct ifreq size in compat ioctl"
     - Revert "kill dev_ifsioc()"
     - net: socket: fix SIOCGIFNAME in compat
     - net: socket: make bond ioctls go through compat_ifreq_ioctl()
     - geneve: should not call rt6_lookup() when ipv6 was disabled
     - sit: check if IPv6 enabled before calling ip6_err_gen_icmpv6_unreach()
     - net_sched: fix a race condition in tcindex_destroy() (Closes: #921542)
     - net_sched: fix a memory leak in cls_tcindex
     - net_sched: fix two more memory leaks in cls_tcindex
     - net/mlx5e: XDP, fix redirect resources availability check
     - RDMA/srp: Rework SCSI device reset handling
     - KEYS: user: Align the payload buffer
     - KEYS: always initialize keyring_index_key::desc_len
     - drm/amdgpu: Set DPM_FLAG_NEVER_SKIP when enabling PM-runtime
     - gpu: drm: radeon: Set DPM_FLAG_NEVER_SKIP when enabling PM-runtime
     - [x86] drm/i915/fbdev: Actually configure untiled displays
     - drm/amd/display: Fix MST reboot/poweroff sequence
     - mac80211: allocate tailroom for forwarded mesh packets
     - [x86] kvm: Return LA57 feature based on hardware capability
     - net: validate untrusted gso packets without csum offload
     - net: avoid false positives in untrusted gso validation
     - Revert "bridge: do not add port to router list when receives query with
       source 0.0.0.0"
     - netfilter: nf_tables: fix flush after rule deletion in the same batch
     - netfilter: nft_compat: use-after-free when deleting targets
     - netfilter: ipv6: Don't preserve original oif for loopback address
     - netfilter: nfnetlink_osf: add missing fmatch check
     - netfilter: ipt_CLUSTERIP: fix sleep-in-atomic bug in
       clusterip_config_entry_put()
     - udlfb: handle unplug properly
     - [armhf arm64] pinctrl: max77620: Use define directive for
       max77620_pinconf_param values
     - net: phylink: avoid resolving link state too early
     https://www.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.19.27
     - irq/matrix: Split out the CPU selection code into a helper
     - irq/matrix: Spread managed interrupts on allocation
     - genirq/matrix: Improve target CPU selection for managed interrupts
       (Closes: #922182)
     - mac80211: Change default tx_sk_pacing_shift to 7
     - scsi: libsas: Fix rphy phy_identifier for PHYs with end devices attached
     - [arm64] drm/msm: Unblock writer if reader closes file
     - [x86] ASoC: Intel: Haswell/Broadwell: fix setting for .dynamic field
     - [armhf] clk: tegra: dfll: Fix a potential Oop in remove()
     - [x86] thermal: int340x_thermal: Fix a NULL vs IS_ERR() check
     - [arm64, armhf] usb: dwc3: gadget: synchronize_irq dwc irq in suspend
     - [arm64, armhf] usb: dwc3: gadget: Fix the uninitialized link_state when
       udc starts
     - genirq: Make sure the initial affinity is not empty
     - [arm64, armel, x86, armhf] ASoC: dapm: change snprintf to scnprintf for
       possible overflow
     - [x86] drivers: thermal: int340x_thermal: Fix sysfs race condition
     - mac80211: fix miscounting of ttl-dropped frames
     - sched/wait: Fix rcuwait_wake_up() ordering
     - sched/wake_q: Fix wakeup ordering for wake_q
     - futex: Fix (possible) missed wakeup
     - drm/amd/powerplay: OD setting fix on Vega10
     - [armhf] drm/sun4i: hdmi: Fix usage of TMDS clock
     - direct-io: allow direct writes to empty inodes
     - writeback: synchronize sync(2) against cgroup writeback membership
       switches
     - scsi: lpfc: nvme: avoid hang / use-after-free when destroying localport
     - scsi: lpfc: nvmet: avoid hang / use-after-free when destroying targetport
     - scsi: csiostor: fix NULL pointer dereference in csio_vport_set_state()
     - [x86] hv_netvsc: Fix ethtool change hash key error
     - [x86] hv_netvsc: Refactor assignments of struct netvsc_device_info
     - [x86] hv_netvsc: Fix hash key value reset after other ops
     - nvme-rdma: fix timeout handler
     - nvme-multipath: drop optimization for static ANA group IDs
     - [arm64] drm/msm: Fix A6XX support for opp-level
     - net: usb: asix: ax88772_bind return error when hw_reset fail
     - net: dev_is_mac_header_xmit() true for ARPHRD_RAWIP
     - [powerpc*] ibmveth: Do not process frames after calling napi_reschedule
     - mac80211: don't initiate TDLS connection if station is not associated to
       AP
     - mac80211: Add attribute aligned(2) to struct 'action'
     - cfg80211: extend range deviation for DMG
     - [x86] svm: Fix AVIC incomplete IPI emulation
     - [x86] KVM: nSVM: clear events pending from svm_complete_interrupts() when
       exiting to L1
     - [arm64, armhf] mmc: spi: Fix card detection during probe
     - mmc: core: Fix NULL ptr crash from mmc_should_fail_request
     - [armhf] mmc: sdhci-esdhc-imx: correct the fix of ERR004536
     - mm: enforce min addr even if capable() in expand_downwards()
       (CVE-2019-9213)
     - hugetlbfs: fix races and page leaks during migration
     - [mips*] fix truncation in __cmpxchg_small for short values
     - [x86] uaccess: Don't leak the AC flag into __put_user() value evaluation
     https://www.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.19.28
     - cpufreq: Use struct kobj_attribute instead of struct global_attr
     - staging: erofs: fix mis-acted TAIL merging behavior
     - USB: serial: option: add Telit ME910 ECM composition
     - USB: serial: cp210x: add ID for Ingenico 3070
     - USB: serial: ftdi_sio: add ID for Hjelmslund Electronics USB485
     - [x86] staging: comedi: ni_660x: fix missing break in switch statement
     - [x86, arm64, armhf] staging: android: ashmem: Don't call fallocate() with
       ashmem_mutex held.
     - [x86, arm64, armhf] staging: android: ashmem: Avoid range_alloc()
       allocation with ashmem_mutex held.
     - ip6mr: Do not call __IP6_INC_STATS() from preemptible context
     - [arm64, armhf] net: dsa: mv88e6xxx: handle unknown duplex modes gracefully
       in mv88e6xxx_port_set_duplex
     - [arm64, armhf] net: dsa: mv88e6xxx: fix number of internal PHYs for
       88E6x90 family
     - net: sched: put back q.qlen into a single location
     - net-sysfs: Fix mem leak in netdev_register_kobject
     - qmi_wwan: Add support for Quectel EG12/EM12
     - sctp: call iov_iter_revert() after sending ABORT
     - sky2: Disable MSI on Dell Inspiron 1545 and Gateway P-79
     - team: Free BPF filter when unregistering netdev
     - tipc: fix RDM/DGRAM connect() regression
     - bnxt_en: Drop oversize TX packets to prevent errors.
     - geneve: correctly handle ipv6.disable module parameter
     - [x86] hv_netvsc: Fix IP header checksum for coalesced packets
     - ipv4: Add ICMPv6 support when parse route ipproto
     - lan743x: Fix TX Stall Issue
     - [arm64, armhf] net: dsa: mv88e6xxx: Fix statistics on mv88e6161
     - [arm64, armhf] net: dsa: mv88e6xxx: Fix u64 statistics
     - net: netem: fix skb length BUG_ON in __skb_to_sgvec
     - net: nfc: Fix NULL dereference on nfc_llcp_build_tlv fails
     - net: phy: Micrel KSZ8061: link failure after cable connect
     - [arm64, armhf] net: phy: phylink: fix uninitialized variable in
       phylink_get_mac_state
     - net: sit: fix memory leak in sit_init_net()
     - net: socket: set sock->sk to NULL after calling proto_ops::release()
     - tipc: fix race condition causing hung sendto
     - tun: fix blocking read
     - [x86, arm64, armhf] xen-netback: don't populate the hash cache on XenBus
       disconnect
     - [x86, arm64, armhf] xen-netback: fix occasional leak of grant ref mappings
       under memory pressure
     - tun: remove unnecessary memory barrier
     - net: Add __icmp_send helper.
     - ipv4: Return error for RTA_VIA attribute
     - ipv6: Return error for RTA_VIA attribute
     - mpls: Return error for RTA_GATEWAY attribute
     - ipv4: Pass original device to ip_rcv_finish_core
     - [arm64, armhf] net: dsa: mv88e6xxx: power serdes on/off for 10G interfaces
       on 6390X
     - [arm64, armhf] net: dsa: mv88e6xxx: prevent interrupt storm caused by
       mv88e6390x_port_set_cmode
     - net/sched: act_ipt: fix refcount leak when replace fails
     - net/sched: act_skbedit: fix refcount leak when replace fails
     - net: sched: act_tunnel_key: fix NULL pointer dereference during init
     - [x86] CPU/AMD: Set the CPB bit unconditionally on F17h
     - [x86] boot/compressed/64: Do not read legacy ROM on EFI system
     - tracing: Fix event filters and triggers to handle negative numbers
     - usb: xhci: Fix for Enabling USB ROLE SWITCH QUIRK on
       INTEL_SUNRISEPOINT_LP_XHCI
     - [x86, powerpc*] applicom: Fix potential Spectre v1 vulnerabilities
     - [mips*] irq: Allocate accurate order pages for irq stack
     - aio: Fix locking in aio_poll()
     - xtensa: fix get_wchan
     - gnss: sirf: fix premature wakeup interrupt enable
     - USB: serial: cp210x: fix GPIO in autosuspend
     - Bluetooth: btrtl: Restore old logic to assume firmware is already loaded
     - Bluetooth: Fix locking in bt_accept_enqueue() for BH context
     - exec: Fix mem leak in kernel_read_file (CVE-2019-8980)
     - scsi: core: reset host byte in DID_NEXUS_FAILURE case
     - bpf: fix sanitation rewrite in case of non-pointers
 .
   [ Ben Hutchings ]
   * [sparc64] udeb: Use standard module list in nic-modules; add i2c-modules
     and nic-shared-modules to avoid duplication
   * mt76: Use the correct hweight8() function (fixes FTBFS on ia64)
   * [armel] udeb: Add mmc-core-modules
   * udeb: Make nic-wireless-modules depend on mmc-core-modules, not
     mmc-modules; move crc7 to crc-modules to avoid duplication
   * [powerpc*] udeb: Add i2c-modules, mmc-core-modules, nic-wireless-modules
   * [arm64,armhf] udeb: Add mmc-core-modules to Provides of kernel-image
   * udeb: Add fb-modules and include drm and drm_kms_helper on most
     architecures
   * udeb: Move basic PV modules from {hyperv,virtio}-modules to kernel-image
   * udeb: Move drivers from {hyperv,virtio}-modules to
     {fb,input,nic,scsi}-modules
   * debian/bin/gencontrol.py: Add rules to build debian/build/config.*
   * certs: Replace test signing certificate with production signing certificate
   * debian/bin/gencontrol_signed.py: Put all files.json fields under "packages"
   * Bump ABI to 4
 .
   [ Wookey ]
   * linux-perf: Enable coresight trace (libopencsd) support in perf
     (Closes: #895131)
 .
   [ Vagrant Cascadian ]
   * [armhf] Add patch from upstream fixing stability issues when cpufreq
     is enabled on Orange Pi Plus.
   * [armhf] Enable REGULATOR_SY8106A as module.
   * [arm64] Add patch working around A64 timer issues.
 .
   [ dann frazier ]
   * arm64: lockdown: Move init_lockdown() call after uefi_init()
 .
   [ Salvatore Bonaccorso ]
   * Btrfs: fix corruption reading shared and compressed extents after hole
     punching (Closes: #922306)
 .
   [ Vagrant Cascadian ]
   * [arm64] Add patch from v4.20 to enable device-tree for Pine64-LTS.
 .
   [ Romain Perier ]
   * [rt] Update to 4.19.25-rt16:
     - Add zram_slot_trylock() to "drivers/block/zram: Replace bit spinlocks
       with rtmutex for -rt"
     - Refresh "futex: workaround migrate_disable/enable in different context"
     - softirq: Avoid "local_softirq_pending" messages if ksoftirqd is blocked
     - softirq: Avoid "local_softirq_pending" messages if task is in cpu_chill()
     - hrtimer: Don't lose state in cpu_chill()
     - hrtimer: cpu_chill(): save task state in ->saved_state()
     - [x86] lazy-preempt: properly check against preempt-mask
     - [i386] lazy-preempt: use proper return label on 32bit-x86
   * [armel/rpi] Add flavour for Raspberry Pi and Raspberry Pi Zero
   * [armel, armhf] Enable CRASH_DUMP
   * Enable STRICT_MODULE_RWX
 .
   [ Marcin Juszkiewicz ]
   * [arm64] udeb: Use generic ata-modules
   * [arm64] udeb: Remove redundant lines from nic-modules
 .
   [ YunQiang Su ]
   * [mips r6] Disable JUMP_LABEL for now: it will cause Reserved Instruction.
     Enable SERIAL_OF_PLATFORM, if not, userland shows nothing.
     Enable CPU_HAS_MSA, HIGHMEM, CRYPTO_CRC32_MIPS, and NR_CPUS to 16.
     Support some boston drivers: IMG_ASCII_LCD, I2C_EG20T, PCH_PHUB, MMC,
       PCIE_XILINX, RTC_DRV_M41T80, SPI_TOPCLIFF_PCH.
   * [mipsel/mips64el] Backport MIPS: Loongson: Introduce and use
     loongson_llsc_mb()
Checksums-Sha1: 
 77ce2bb60e0ba79a52a16ec4824df928bf22e130 190358 linux_4.19.28-1.dsc
 08f846ed175211ee6c79fa1765b0767896c3ccdb 107165972 linux_4.19.28.orig.tar.xz
 fadf31b6ee51593519ccf5ee83b3d851c59bb7f7 1134132 linux_4.19.28-1.debian.tar.xz
 59603a4554f6a12a9e260e55564a90be9b99d1f4 47793 linux_4.19.28-1_source.buildinfo
 db57cf4c0af43b27548958f6b74ae564adbffd59 17915588 linux-doc-4.19_4.19.28-1_all.deb
 9cad0ef93563afe11dd7d3fec8a41083d795cc9f 6382608 linux-headers-4.19.0-4-common-rt_4.19.28-1_all.deb
 e7bac1945a001b497764d9a2afd2799e4e1af93a 8160164 linux-headers-4.19.0-4-common_4.19.28-1_all.deb
 cdb3f0d50322faa116795af4d5d834f93d069576 106441024 linux-source-4.19_4.19.28-1_all.deb
 ed42f025c575e181a522ff0111b1c7282133a0bb 286912 linux-support-4.19.0-4_4.19.28-1_all.deb
 e320cc0e5e0b0c4cd368b9adcf113a0c04f346d2 239704 lockdep_4.19.28-1_all.deb
Checksums-Sha256: 
 e3b1e3a9e8cbc63c2ffbd30d85698ef22d46b7932dd3d6554c77e0adb97b6dbe 190358 linux_4.19.28-1.dsc
 c3a3ebf6191cedb7997b0360e2e642352d19645fba7aefdc261080f223e5e0b1 107165972 linux_4.19.28.orig.tar.xz
 ab0aba37bf71a3f31ebcaff2f3bc426bd7823c71197bf287fbbfe35e7e500e5e 1134132 linux_4.19.28-1.debian.tar.xz
 bcc992cf86f68e679e920ee3eaaec75e19e5afb3db190ac8bf6f70c520363793 47793 linux_4.19.28-1_source.buildinfo
 8dc2c2ee9b01da45021f45e23137c74869b635e12d7e616963aa4b537eb56aa8 17915588 linux-doc-4.19_4.19.28-1_all.deb
 532b0c589c3bc55c384e27cee7f2f7bf0ea45c2369b2232629aeef918ad71e1b 6382608 linux-headers-4.19.0-4-common-rt_4.19.28-1_all.deb
 2976b456736d17ccb813cd3b5782e3f427fa60b8a546979935cbb75add011567 8160164 linux-headers-4.19.0-4-common_4.19.28-1_all.deb
 4594a2cc35e578212746ddf7adebb202df1262079094fdd21898086a13a2c175 106441024 linux-source-4.19_4.19.28-1_all.deb
 9dd86e24741b560501f7cefdafcab85dceb1b155705c70a2c2eb238952322482 286912 linux-support-4.19.0-4_4.19.28-1_all.deb
 7cc4015618c6295517530805f0e9f5adf2ae479854e391c9df39169ecb35736e 239704 lockdep_4.19.28-1_all.deb
Files: 
 8ea378ba4a3f99d54ce710629cf92f84 190358 kernel optional linux_4.19.28-1.dsc
 ecf68f45b49c43fa6594ee9357e21b4b 107165972 kernel optional linux_4.19.28.orig.tar.xz
 162b13691755be6ddcff19d1824f7455 1134132 kernel optional linux_4.19.28-1.debian.tar.xz
 7217d79169e26c9c5e5d1df8b815bf04 47793 kernel optional linux_4.19.28-1_source.buildinfo
 b7b6be4a00065a2c82b9c508f76c88f6 17915588 doc optional linux-doc-4.19_4.19.28-1_all.deb
 bf1c20554e0643f075578c239c4793f4 6382608 kernel optional linux-headers-4.19.0-4-common-rt_4.19.28-1_all.deb
 17d7f8664e856f02291e2dcce4cca72b 8160164 kernel optional linux-headers-4.19.0-4-common_4.19.28-1_all.deb
 6098b5d05520d3b821cb70c96cf062ce 106441024 kernel optional linux-source-4.19_4.19.28-1_all.deb
 1032c143acd7a5b707abcd7638559c44 286912 devel optional linux-support-4.19.0-4_4.19.28-1_all.deb
 8ec14cbf8ffd9bbf846cee0a49c021ce 239704 devel optional lockdep_4.19.28-1_all.deb

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEErCspvTSmr92z9o8157/I7JWGEQkFAlyHkPAACgkQ57/I7JWG
EQn+AhAArvG2hRGwD6ZUPDZxkSriXf560HuuUuNcy28D8ycpaReBHXriaIrBoDCQ
Bq66pxOCjbK7V5IkV1ufRMeykrdhrTrLBHqufnET1kRW9j3lr7AW5QOnQOXknBw9
/EUhyRQvedO61b11epHxRtKsgd3h1FJn7lSIOVfUEAt4zb/M8LnypjNCOa/5Rbpi
6SuPDzVKfajF7XP/gtJygs9H0JJeu0n3a4jBdgDI3Wr26svdE82KTu65tzOK27kr
sfFDtWn+OaIgcfro+Lz43fz2SARSZowQYZRSfXUnYgMVGnLLNxaelhD2urmYWx/I
0MTsuhrwfllq5vCZWlK0uGNewr0GQ3YTe1uW7m9Dbp0MquWIuRPHt0FdLPhRcKNS
6ZNVnnwskmXmUeTMa5DLQt7T6sIkQggZe283Dj7spRUA2MC7XxzjZOzslV4Gu1I+
uLEnveMaggNU/61+JQtokZglo9ijIdb9ZMQtfHDvCumhC1ccKsaEyd589xztSvwS
fY4jrF9seOPwZW3qagqr6V7gkREUOPqLIA9ppFFWPwehJR7arEUCcgl1ph+pk9wg
/1UEh+t9G3P4rqopSxIgqyJOm3oq9RM4skveCIgJU30Uan6WJpZ52gXpp7Uw6Bm0
7QP0mVjeQLPJL6Xlk1ycoa/TjMhjnmfBvsEOKhQuPtMzQ+/wJGw=
=V1zi
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: