Re: USB hotplug on HP 255 G6 laptop

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

 



On Tue 16-10-18 17:47:17, Mathias Nyman wrote:
> On 16.10.2018 14:38, Jan Kara wrote:
> > On Wed 03-10-18 16:46:05, Jan Kara wrote:
> > > On Wed 03-10-18 17:19:33, Mathias Nyman wrote:
> > > > On 02.10.2018 17:53, Jan Kara wrote:
> > > > > On Tue 02-10-18 17:01:54, Mathias Nyman wrote:
> > > > > > On 02.10.2018 16:06, Jan Kara wrote:
> > > > > > > Hello,
> > > > > > > 
> > > > > > > my wife has HP 255 G6 laptop. When it is attached to AC, everything works
> > > > > > > as expected however when it is running on battery, USB hotplug stops
> > > > > > > working - newly plugged devices do not appear to be visible to the kernel.
> > > > > > > Only when the AC is plugged back in, the kernel suddently wakes up and
> > > > > > > detects all newly attached devices. Maybe it is related to some power
> > > > > > > management? Any idea how to debug this? Dmesg from the system is attached.
> > > > > > > The kernels I've tested with (both behave the same way) are 4.18.11 kernel
> > > > > > > and also openSUSE Leap 15 kernel which is 4.12-based. Thanks in advance for
> > > > > > > any help.
> > > > > > > 
> > > > > > 
> > > > > > Are you running laptop mode tools or similar that would enable runtime suspend
> > > > > > D3 state for xhci controller?
> > > > > 
> > > > > It is openSUSE Leap 15 installation with xfce4 desktop so I assume there is
> > > > > some power-management going on. Not sure what I should look for but there's
> > > > > xfce4-power-manager running, also upowerd is running.
> > > > > 
> > > > > > what does lspci -vv say?
> > > > > 
> > > > > Attached.
> > > > > 
> > > > > > check the content of the following files while running on battery:
> > > > > > 
> > > > > > cat /sys/bus/pci/devices/0000:00:10.0/firmware_node/power_state
> > > > > 
> > > > > D0
> > > > > 
> > > > > > cat /sys/bus/pci/devices/0000:00:10.0/power/control
> > > > > 
> > > > > auto - when on battery, on - when on AC.
> > > > > 
> > > > > > try: echo on > /sys/bus/pci/devices/0000:00:10.0/power/control
> > > > > > before pluggin in a usb device, does it help?
> > > > > 
> > > > > Yes, USB device gets recognized after this.
> > > > > 
> > > > 
> > > > To me this looks like xhci is runtime suspended, but controller is still
> > > > in a PCI D0 state.
> > > > 
> > > > Normally the xHC should be put to PCI D3 in runtime suspend,  and woken
> > > > up by a PCI PME# when a device is plugged in, but PME# is not enabled in
> > > > D0 so in this case nothing wakes up the xHC.
> > > > 
> > > > The xhci runtime suspend code already stopped the controller, so probably
> > > > you're not getting an interrupt either.
> > > > 
> > > > PCI code looks at firmware ACPI tables to choose the suspend D state, if
> > > > something is off in the tables it's possible the wrong state is chosen.
> > > > worth checking.
> > > > 
> > > > Could you dump the DSDT ACPI table form /sys/firmware/acpi/tables/DSDT
> > > 
> > > Sure. Attached.
> > > 
> > > > As a quick temporary workaround you could find and prevent the
> > > > powersaving program from enabling runtime suspend. (make sure it won't
> > > > write "auto" to /sys/bus/pci/devices/0000:00:10.0/power/control)
> > > 
> > > OK, thanks for the hint.
> > 
> > Any news here? Are really ACPI tables wrong on this laptop?
> > 
> 
> Can't say for sure
> 
> There might be differences how Windows and Linux parse ACPI tables.
> 
> If _PR0  or _PS0 is present for a device in ACPI tables then Linux will
> assume the device is ACPI power manageable, and select PCI D states from ACPI tables.
> 
> _S3W should return the highest D-value (deepest sleep state) device can wake up from S3 (system suspend)
> _S0W should return the highest D-value (deepest sleep state) device can wake up from S0 (Runtime suspend)
> 
> Your ACPI DSDT table shows:
> 
>     Scope (_SB.PCI0.XHC0)
>     {
>         Name (_PR0, Package (0x01)  // _PR0: Power Resources for D0
>         {
>             P0U3
>         })
>         Name (_PR3, Package (0x01)  // _PR3: Power Resources for D3hot
>         {
>             P3U3
>         })
>         Method (_S0W, 0, NotSerialized)  // _S0W: S0 Device Wake State
>         {
>             If ((XHCD == One))
>             {
>                 Return (0x04)
>             }
>             Else
>             {
>                 Return (Zero)
>             }
>         }
> 
>         Method (_S3W, 0, NotSerialized)  // _S3W: S3 Device Wake State
>         {
>             Return (0x04)
>         }
> 
> 
> Those with better APCI and PCI knowledge might know more details, or better debugging for this,
> but it at least would be possible to check which D state is chosen by adding the below code,
> and recompiling the kernel:

Thanks for the patch and suggestiong. As expected this hack has fixed the
problem with the USB on that laptop. The messages in the logs are:

[   96.433856] xhci_hcd 0000:00:10.0: HACK: device 0x7914: ACPI selected D0 state, Force D3

Interestingly, when plugging the device for the first time there was also a
message:
[   96.451576] acpi device:19: Cannot transition from D3cold to D3hot

When I unplugged and plugged the USB stick again, there was just:

[  141.620436] xhci_hcd 0000:00:10.0: HACK: device 0x7914: ACPI selected D0 state, Force D3

Full dmesg is attached.

I have also added linux-acpi to CC for more ACPI knowledge and attached
DSDT dump again so that ACPI people don't have to look it up on linux-usb.

								Honza

-- 
Jan Kara <jack@xxxxxxxx>
SUSE Labs, CR
[    0.000000] Linux version 4.12.14-0-default (geeko@buildhost) (gcc version 7.3.1 20180323 [gcc-7-branch revision 258812] (SUSE Linux) ) #1 SMP Fri Oct 19 08:56:08 UTC 2018 (f579d0a)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.12.14-0-default root=UUID=5e2aed7e-7fca-44a1-9bda-4fed54e58e8b splash=silent quiet showopts
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000086fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000087000-0x0000000000087fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000088000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000e6e0efff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e6e0f000-0x00000000e787efff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e787f000-0x00000000e7b7efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000e7b7f000-0x00000000e7bfefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000e7bff000-0x00000000e7bfffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e7c00000-0x00000000e7ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0100000-0x00000000f01fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000111ffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000112000000-0x0000000116ffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0xdcdbd018-0xdcdccc57] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000086fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000087000-0x0000000000087fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000088000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x00000000dcdbd017] usable
[    0.000000] reserve setup_data: [mem 0x00000000dcdbd018-0x00000000dcdccc57] usable
[    0.000000] reserve setup_data: [mem 0x00000000dcdccc58-0x00000000e6e0efff] usable
[    0.000000] reserve setup_data: [mem 0x00000000e6e0f000-0x00000000e787efff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000e787f000-0x00000000e7b7efff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000e7b7f000-0x00000000e7bfefff] ACPI data
[    0.000000] reserve setup_data: [mem 0x00000000e7bff000-0x00000000e7bfffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000e7c00000-0x00000000e7ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000f0100000-0x00000000f01fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x0000000111ffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000112000000-0x0000000116ffffff] reserved
[    0.000000] efi: EFI v2.50 by INSYDE Corp.
[    0.000000] efi:  ESRT=0xe71e1098  ACPI 2.0=0xe7bfe014  SMBIOS=0xe71df000  SMBIOS 3.0=0xe71dd000 
[    0.000000] SMBIOS 3.0.0 present.
[    0.000000] DMI: HP HP 255 G6 Notebook PC/8330, BIOS F.21 11/17/2017
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x112000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-through
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFE0000000 write-back
[    0.000000]   3 base 0000E0000000 mask FFFFF8000000 write-back
[    0.000000]   4 base 0000FF800000 mask FFFFFF800000 write-protect
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000117000000 aka 4464M
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000000] e820: last_pfn = 0xe7c00 max_arch_pfn = 0x400000000
[    0.000000] esrt: Reserving ESRT space from 0x00000000e71e1098 to 0x00000000e71e10d0.
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff893240099000] 99000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x8221f000, 0x8221ffff] PGTABLE
[    0.000000] BRK [0x82220000, 0x82220fff] PGTABLE
[    0.000000] BRK [0x82221000, 0x82221fff] PGTABLE
[    0.000000] BRK [0x82222000, 0x82222fff] PGTABLE
[    0.000000] BRK [0x82223000, 0x82223fff] PGTABLE
[    0.000000] BRK [0x82224000, 0x82224fff] PGTABLE
[    0.000000] BRK [0x82225000, 0x82225fff] PGTABLE
[    0.000000] BRK [0x82226000, 0x82226fff] PGTABLE
[    0.000000] Secure boot disabled
[    0.000000] RAMDISK: [mem 0x3f1f0000-0x3fffafff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000E7BFE014 000024 (v02 HPQOEM)
[    0.000000] ACPI: XSDT 0x00000000E7BC6188 0000FC (v01 HPQOEM SLIC-MPC 00000001 HP   01000013)
[    0.000000] ACPI: FACP 0x00000000E7BF9000 00010C (v05 HPQOEM SLIC-MPC 00000001 HP   00040000)
[    0.000000] ACPI: DSDT 0x00000000E7BE9000 0099DA (v01 HPQOEM SLIC-MPC 00040000 ACPI 00040000)
[    0.000000] ACPI: FACS 0x00000000E7B44000 000040
[    0.000000] ACPI: UEFI 0x00000000E7BFD000 000236 (v01 HPQOEM INSYDE   00000001 HP   00040000)
[    0.000000] ACPI: MSDM 0x00000000E7BFC000 000055 (v03 HPQOEM SLIC-MPC 00000001 HP   00040000)
[    0.000000] ACPI: ASF! 0x00000000E7BFB000 0000A5 (v32 HPQOEM INSYDE   00000001 HP   00040000)
[    0.000000] ACPI: BOOT 0x00000000E7BFA000 000028 (v01 HPQOEM INSYDE   00000001 HP   00040000)
[    0.000000] ACPI: HPET 0x00000000E7BF8000 000038 (v01 HPQOEM INSYDE   00000001 HP   00040000)
[    0.000000] ACPI: APIC 0x00000000E7BF7000 000090 (v03 HPQOEM SLIC-MPC 00000001 HP   00040000)
[    0.000000] ACPI: MCFG 0x00000000E7BF6000 00003C (v01 HPQOEM INSYDE   00000001 HP   00040000)
[    0.000000] ACPI: SPCR 0x00000000E7BF5000 000050 (v01 HPQOEM INSYDE   00000001 HP   00040000)
[    0.000000] ACPI: WDAT 0x00000000E7BF4000 00017C (v01 HPQOEM INSYDE   00000001 HP   00040000)
[    0.000000] ACPI: WDRT 0x00000000E7BF3000 000047 (v01 HPQOEM INSYDE   00000000 HP   00040000)
[    0.000000] ACPI: UEFI 0x00000000E7BE8000 000042 (v01 HPQOEM INSYDE   00000000 HP   00040000)
[    0.000000] ACPI: SSDT 0x00000000E7BE1000 00692D (v01 HPQOEM INSYDE   00001000 ACPI 00040000)
[    0.000000] ACPI: SSDT 0x00000000E7BE0000 0006B2 (v01 HPQOEM INSYDE   00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 0x00000000E7BDB000 004B5B (v02 HPQOEM INSYDE   00000002 ACPI 00040000)
[    0.000000] ACPI: IVRS 0x00000000E7BDA000 0000D0 (v02 HPQOEM INSYDE   00000001 HP   00040000)
[    0.000000] ACPI: CRAT 0x00000000E7BD9000 0002E8 (v01 HPQOEM INSYDE   00000001 HP   00040000)
[    0.000000] ACPI: VFCT 0x00000000E7BC9000 00FC84 (v01 HPQOEM INSYDE   00000001 HP   00040000)
[    0.000000] ACPI: SSDT 0x00000000E7BC8000 000482 (v01 HPQOEM INSYDE   00001000 ACPI 00040000)
[    0.000000] ACPI: TPM2 0x00000000E7BC7000 000034 (v03 HPQOEM INSYDE   00000002 HP   00040000)
[    0.000000] ACPI: SSDT 0x00000000E7BC5000 000692 (v01 HPQOEM INSYDE   00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 0x00000000E7BC4000 000174 (v01 HPQOEM INSYDE   00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 0x00000000E7BC2000 001CE0 (v01 HPQOEM INSYDE   00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 0x00000000E7BC0000 00165E (v01 HPQOEM INSYDE   00000001 ACPI 00040000)
[    0.000000] ACPI: FPDT 0x00000000E7BBF000 000044 (v01 HPQOEM SLIC-MPC 00000002 HP   00040000)
[    0.000000] ACPI: SSDT 0x00000000E7BBC000 0021DF (v01 HPQOEM INSYDE   00000001 ACPI 00040000)
[    0.000000] ACPI: BGRT 0x00000000E7BBB000 000038 (v01 HPQOEM INSYDE   00000001 HP   00040000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x0000000111ffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x111fd6000-0x111ffffff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x0000000111ffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x0000000000086fff]
[    0.000000]   node   0: [mem 0x0000000000088000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x00000000e6e0efff]
[    0.000000]   node   0: [mem 0x00000000e7bff000-0x00000000e7bfffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x0000000111ffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x0000000111ffffff]
[    0.000000] On node 0 totalpages: 1019310
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 22 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14713 pages used for memmap
[    0.000000]   DMA32 zone: 941584 pages, LIFO batch:63
[    0.000000]   Normal zone: 1152 pages used for memmap
[    0.000000]   Normal zone: 73728 pages, LIFO batch:15
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
[    0.000000] IOAPIC[1]: apic_id 5, version 33, address 0xfec01000, GSI 24-55
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10228210 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 2 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x00087000-0x00087fff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xdcdbd000-0xdcdbdfff]
[    0.000000] PM: Registered nosave memory: [mem 0xdcdcc000-0xdcdccfff]
[    0.000000] PM: Registered nosave memory: [mem 0xe6e0f000-0xe787efff]
[    0.000000] PM: Registered nosave memory: [mem 0xe787f000-0xe7b7efff]
[    0.000000] PM: Registered nosave memory: [mem 0xe7b7f000-0xe7bfefff]
[    0.000000] PM: Registered nosave memory: [mem 0xe7c00000-0xe7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe8000000-0xf00fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf0100000-0xf01fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf0200000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfec0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec11000-0xfed7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed80000-0xfed80fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed81000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xff7fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff800000-0xffffffff]
[    0.000000] e820: [mem 0xe8000000-0xf00fffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 47 pages/cpu @ffff893351c00000 s155648 r8192 d28672 u524288
[    0.000000] pcpu-alloc: s155648 r8192 d28672 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1003359
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.12.14-0-default root=UUID=5e2aed7e-7fca-44a1-9bda-4fed54e58e8b splash=silent quiet showopts
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Memory: 3843444K/4077240K available (10256K kernel code, 2265K rwdata, 3324K rodata, 2520K init, 10696K bss, 233796K reserved, 0K cma-reserved)
[    0.000000] ftrace: allocating 30822 entries in 121 pages
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU event tracing is enabled.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS:524544 nr_irqs:1000 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.004000] tsc: Detected 2495.304 MHz processor
[    0.004000] Calibrating delay loop (skipped), value calculated using timer frequency.. 4990.60 BogoMIPS (lpj=9981216)
[    0.004000] pid_max: default: 32768 minimum: 301
[    0.004000] ACPI: Core revision 20170303
[    0.030516] ACPI: 10 ACPI AML tables successfully acquired and loaded
[    0.032081] Security Framework initialized
[    0.032103] AppArmor: AppArmor initialized
[    0.033222] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.036171] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.036208] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.036227] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.036536] mce: CPU supports 7 MCE banks
[    0.036545] LVT offset 1 assigned for vector 0xf9
[    0.036549] [Firmware Bug]: cpu 0, invalid threshold interrupt offset 1 for bank 4, block 0 (MSR00000413=0xd000000001000000)
[    0.036561] Last level iTLB entries: 4KB 512, 2MB 1024, 4MB 512
[    0.036561] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 512, 1GB 0
[    0.036564] Spectre V2 : Mitigation: Full AMD retpoline
[    0.036564] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.036566] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.042732] Freeing SMP alternatives memory: 28K
[    0.052376] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.096000] smpboot: CPU0: AMD A6-9220 RADEON R4, 5 COMPUTE CORES 2C+3G (family: 0x15, model: 0x70, stepping: 0x0)
[    0.096000] Performance Events: Fam15h core perfctr, AMD PMU driver.
[    0.096000] ... version:                0
[    0.096000] ... bit width:              48
[    0.096000] ... generic registers:      6
[    0.096000] ... value mask:             0000ffffffffffff
[    0.096000] ... max period:             00007fffffffffff
[    0.096000] ... fixed-purpose events:   0
[    0.096000] ... event mask:             000000000000003f
[    0.096000] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.096000] smp: Bringing up secondary CPUs ...
[    0.096000] x86: Booting SMP configuration:
[    0.096000] .... node  #0, CPUs:      #1
[    0.096000] smp: Brought up 1 node, 2 CPUs
[    0.096000] smpboot: Max logical packages: 2
[    0.096000] smpboot: Total of 2 processors activated (9981.21 BogoMIPS)
[    0.096000] devtmpfs: initialized
[    0.096028] x86/mm: Memory block size: 128MB
[    0.098461] evm: security.selinux
[    0.098462] evm: security.ima
[    0.098463] evm: security.capability
[    0.098495] PM: Registering ACPI NVS region [mem 0xe787f000-0xe7b7efff] (3145728 bytes)
[    0.098495] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.098495] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.098495] pinctrl core: initialized pinctrl subsystem
[    0.098495] RTC time: 11:37:59, date: 10/19/18
[    0.098495] NET: Registered protocol family 16
[    0.098495] cpuidle: using governor ladder
[    0.098495] cpuidle: using governor menu
[    0.098495] Simple Boot Flag at 0x44 set to 0x1
[    0.098495] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.098495] ACPI: bus type PCI registered
[    0.098495] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.098495] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.098495] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.098495] PCI: Using configuration type 1 for base access
[    0.100556] HugeTLB registered 1 GB page size, pre-allocated 0 pages
[    0.100556] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.100556] ACPI: Added _OSI(Module Device)
[    0.100556] ACPI: Added _OSI(Processor Device)
[    0.100556] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.100556] ACPI: Added _OSI(Processor Aggregator Device)
[    0.100556] ACPI: Executed 1 blocks of module-level executable AML code
[    0.116814] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.121049] ACPI : EC: EC started
[    0.121049] ACPI : EC: interrupt blocked
[    0.121330] ACPI: \_SB_.PCI0.LPC0.EC0_: Used as first EC
[    0.121333] ACPI: \_SB_.PCI0.LPC0.EC0_: GPE=0x3, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.121335] ACPI: \_SB_.PCI0.LPC0.EC0_: Used as boot DSDT EC to handle transactions
[    0.121335] ACPI: Interpreter enabled
[    0.121368] ACPI: (supports S0 S3 S4 S5)
[    0.121369] ACPI: Using IOAPIC for interrupt routing
[    0.121580] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.121897] ACPI: Enabled 7 GPEs in block 00 to 1F
[    0.124399] ACPI: Power Resource [P0U2] (off)
[    0.124441] ACPI: Power Resource [P3U2] (off)
[    0.124893] ACPI: Power Resource [P0U3] (off)
[    0.124936] ACPI: Power Resource [P3U3] (off)
[    0.188420] ACPI: Power Resource [P0ST] (on)
[    0.188467] ACPI: Power Resource [P3ST] (on)
[    0.192299] ACPI: Power Resource [P0SD] (off)
[    0.192341] ACPI: Power Resource [P3SD] (off)
[    0.193458] ACPI Error: [WLVD] Namespace lookup failure, AE_NOT_FOUND (20170303/psargs-364)
[    0.193469] ACPI Error: Method parse/execution failed [\_SB.WLBU._STA] (Node ffff89334d13c9d8), AE_NOT_FOUND (20170303/psparse-543)
[    0.193554] ACPI Error: [WLVD] Namespace lookup failure, AE_NOT_FOUND (20170303/psargs-364)
[    0.193561] ACPI Error: Method parse/execution failed [\_SB.WLBU._STA] (Node ffff89334d13c9d8), AE_NOT_FOUND (20170303/psparse-543)
[    0.196606] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.196613] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.196943] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.196945] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.196967] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.197323] PCI host bridge to bus 0000:00
[    0.197325] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.197327] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.197329] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.197330] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
[    0.197332] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    0.197333] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    0.197334] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
[    0.197336] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[    0.197337] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    0.197338] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    0.197340] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[    0.197341] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[    0.197342] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    0.197343] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    0.197345] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    0.197346] pci_bus 0000:00: root bus resource [mem 0xe8000000-0xf7ffffff window]
[    0.197348] pci_bus 0000:00: root bus resource [mem 0xfc000000-0xfed3ffff window]
[    0.197349] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.197358] pci 0000:00:00.0: [1022:1576] type 00 class 0x060000
[    0.197465] pci 0000:00:00.2: [1022:1577] type 00 class 0x080600
[    0.197582] pci 0000:00:01.0: [1002:98e4] type 00 class 0x030000
[    0.197597] pci 0000:00:01.0: reg 0x10: [mem 0xe8000000-0xefffffff 64bit pref]
[    0.197605] pci 0000:00:01.0: reg 0x18: [mem 0xf0800000-0xf0ffffff 64bit pref]
[    0.197611] pci 0000:00:01.0: reg 0x20: [io  0x4000-0x40ff]
[    0.197616] pci 0000:00:01.0: reg 0x24: [mem 0xf0400000-0xf043ffff]
[    0.197622] pci 0000:00:01.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
[    0.197625] pci 0000:00:01.0: enabling Extended Tags
[    0.197633] pci 0000:00:01.0: BAR 0: assigned to efifb
[    0.197662] pci 0000:00:01.0: supports D1 D2
[    0.197663] pci 0000:00:01.0: PME# supported from D1 D2 D3hot
[    0.197764] pci 0000:00:01.1: [1002:15b3] type 00 class 0x040300
[    0.197776] pci 0000:00:01.1: reg 0x10: [mem 0xf0460000-0xf0463fff 64bit]
[    0.197799] pci 0000:00:01.1: enabling Extended Tags
[    0.197827] pci 0000:00:01.1: supports D1 D2
[    0.197906] pci 0000:00:02.0: [1022:157b] type 00 class 0x060000
[    0.198001] pci 0000:00:02.1: [1022:157c] type 01 class 0x060400
[    0.198031] pci 0000:00:02.1: enabling Extended Tags
[    0.198067] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
[    0.198133] pci 0000:00:02.1: System wakeup disabled by ACPI
[    0.198169] pci 0000:00:02.2: [1022:157c] type 01 class 0x060400
[    0.198198] pci 0000:00:02.2: enabling Extended Tags
[    0.198235] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    0.198335] pci 0000:00:02.4: [1022:157c] type 01 class 0x060400
[    0.198365] pci 0000:00:02.4: enabling Extended Tags
[    0.198401] pci 0000:00:02.4: PME# supported from D0 D3hot D3cold
[    0.198465] pci 0000:00:02.4: System wakeup disabled by ACPI
[    0.198497] pci 0000:00:03.0: [1022:157b] type 00 class 0x060000
[    0.198600] pci 0000:00:08.0: [1022:1578] type 00 class 0x108000
[    0.198611] pci 0000:00:08.0: reg 0x10: [mem 0xf0440000-0xf045ffff 64bit pref]
[    0.198616] pci 0000:00:08.0: reg 0x18: [mem 0xf0200000-0xf02fffff]
[    0.198621] pci 0000:00:08.0: reg 0x1c: [mem 0xf046f000-0xf046ffff]
[    0.198629] pci 0000:00:08.0: reg 0x24: [mem 0xf046a000-0xf046bfff]
[    0.198726] pci 0000:00:09.0: [1022:157d] type 00 class 0x060000
[    0.198816] pci 0000:00:09.2: [1022:157a] type 00 class 0x040300
[    0.198824] pci 0000:00:09.2: reg 0x10: [mem 0xf0464000-0xf0467fff]
[    0.198861] pci 0000:00:09.2: PME# supported from D0 D3hot D3cold
[    0.198963] pci 0000:00:10.0: [1022:7914] type 00 class 0x0c0330
[    0.198985] pci 0000:00:10.0: reg 0x10: [mem 0xf0468000-0xf0469fff 64bit]
[    0.199083] pci 0000:00:10.0: PME# supported from D0 D3hot D3cold
[    0.199189] pci 0000:00:10.0: System wakeup disabled by ACPI
[    0.199224] pci 0000:00:11.0: [1022:7904] type 00 class 0x010601
[    0.199239] pci 0000:00:11.0: reg 0x10: [io  0x4118-0x411f]
[    0.199247] pci 0000:00:11.0: reg 0x14: [io  0x4124-0x4127]
[    0.199256] pci 0000:00:11.0: reg 0x18: [io  0x4110-0x4117]
[    0.199264] pci 0000:00:11.0: reg 0x1c: [io  0x4120-0x4123]
[    0.199272] pci 0000:00:11.0: reg 0x20: [io  0x4100-0x410f]
[    0.199280] pci 0000:00:11.0: reg 0x24: [mem 0xf046c000-0xf046c3ff]
[    0.199318] pci 0000:00:11.0: PME# supported from D3hot
[    0.199494] pci 0000:00:12.0: [1022:7908] type 00 class 0x0c0320
[    0.199494] pci 0000:00:12.0: reg 0x10: [mem 0xf046d000-0xf046d0ff]
[    0.199494] pci 0000:00:12.0: supports D1 D2
[    0.199494] pci 0000:00:12.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.199494] pci 0000:00:12.0: System wakeup disabled by ACPI
[    0.199494] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.199494] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.199494] pci 0000:00:18.0: [1022:15b0] type 00 class 0x060000
[    0.199494] pci 0000:00:18.1: [1022:15b1] type 00 class 0x060000
[    0.199494] pci 0000:00:18.2: [1022:15b2] type 00 class 0x060000
[    0.199526] pci 0000:00:18.3: [1022:15b3] type 00 class 0x060000
[    0.199610] pci 0000:00:18.4: [1022:15b4] type 00 class 0x060000
[    0.199687] pci 0000:00:18.5: [1022:15b5] type 00 class 0x060000
[    0.200091] pci 0000:00:02.1: PCI bridge to [bus 01]
[    0.200172] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[    0.200198] pci 0000:02:00.0: reg 0x10: [io  0x3000-0x30ff]
[    0.200226] pci 0000:02:00.0: reg 0x18: [mem 0xf0304000-0xf0304fff 64bit]
[    0.200245] pci 0000:02:00.0: reg 0x20: [mem 0xf0300000-0xf0303fff 64bit]
[    0.200339] pci 0000:02:00.0: supports D1 D2
[    0.200340] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.200438] pci 0000:02:00.0: System wakeup disabled by ACPI
[    0.212149] pci 0000:00:02.2: PCI bridge to [bus 02]
[    0.212156] pci 0000:00:02.2:   bridge window [io  0x3000-0x3fff]
[    0.212161] pci 0000:00:02.2:   bridge window [mem 0xf0300000-0xf03fffff]
[    0.212290] pci 0000:03:00.0: [8086:24fb] type 00 class 0x028000
[    0.212363] pci 0000:03:00.0: reg 0x10: [mem 0xf1000000-0xf1001fff 64bit]
[    0.212566] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.228152] pci 0000:00:02.4: PCI bridge to [bus 03-05]
[    0.228159] pci 0000:00:02.4:   bridge window [io  0x2000-0x2fff]
[    0.228164] pci 0000:00:02.4:   bridge window [mem 0xf1000000-0xf10fffff]
[    0.228168] pci 0000:00:02.4:   bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[    0.228569] ACPI: IRQ 7 override to edge, high
[    0.300423] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 5 6 10 11) *0, disabled.
[    0.300526] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 5 6 10 11) *0, disabled.
[    0.300606] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 5 6 10 11) *0, disabled.
[    0.300704] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 5 6 10 11) *0, disabled.
[    0.300796] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 5 6 10 11) *0, disabled.
[    0.300870] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 5 6 10 11) *0, disabled.
[    0.300944] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 5 6 10 11) *0, disabled.
[    0.301018] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 5 6 10 11) *0, disabled.
[    0.301095] ACPI Error: [WLVD] Namespace lookup failure, AE_NOT_FOUND (20170303/psargs-364)
[    0.301107] ACPI Error: Method parse/execution failed [\_SB.WLBU._STA] (Node ffff89334d13c9d8), AE_NOT_FOUND (20170303/psparse-543)
[    0.301648] ACPI : EC: interrupt unblocked
[    0.301655] ACPI : EC: event unblocked
[    0.301661] ACPI: \_SB_.PCI0.LPC0.EC0_: GPE=0x3, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.301663] ACPI: \_SB_.PCI0.LPC0.EC0_: Used as boot DSDT EC to handle transactions and events
[    0.301751] pci 0000:00:01.0: vgaarb: setting as boot VGA device
[    0.301751] pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.301751] pci 0000:00:01.0: vgaarb: bridge control possible
[    0.301751] vgaarb: loaded
[    0.301751] EDAC MC: Ver: 3.0.0
[    0.301751] Registered efivars operations
[    0.340035] PCI: Using ACPI for IRQ routing
[    0.341827] PCI: pci_cache_line_size set to 64 bytes
[    0.341900] e820: reserve RAM buffer [mem 0x00087000-0x0008ffff]
[    0.341901] e820: reserve RAM buffer [mem 0xdcdbd018-0xdfffffff]
[    0.341902] e820: reserve RAM buffer [mem 0xe6e0f000-0xe7ffffff]
[    0.341904] e820: reserve RAM buffer [mem 0xe7c00000-0xe7ffffff]
[    0.341905] e820: reserve RAM buffer [mem 0x112000000-0x113ffffff]
[    0.342010] NetLabel: Initializing
[    0.342011] NetLabel:  domain hash size = 128
[    0.342011] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.342027] NetLabel:  unlabeled traffic allowed by default
[    0.342040] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.342040] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.344001] clocksource: Switched to clocksource hpet
[    0.358764] VFS: Disk quotas dquot_6.6.0
[    0.358795] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.358940] AppArmor: AppArmor Filesystem Enabled
[    0.358989] pnp: PnP ACPI init
[    0.359262] system 00:00: [mem 0xfec00000-0xfec01fff] could not be reserved
[    0.359265] system 00:00: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.359267] system 00:00: [mem 0xf0100000-0xf01fffff] has been reserved
[    0.359271] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.359448] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.359484] pnp 00:02: Plug and Play ACPI device, IDs HPQ8001 PNP0303 (active)
[    0.359509] pnp 00:03: Plug and Play ACPI device, IDs SYN3254 PNP0f13 (active)
[    0.359561] system 00:04: [io  0x0400-0x04cf] has been reserved
[    0.359563] system 00:04: [io  0x04d0-0x04d1] has been reserved
[    0.359565] system 00:04: [io  0x04d6] has been reserved
[    0.359567] system 00:04: [io  0x0c00-0x0c01] has been reserved
[    0.359568] system 00:04: [io  0x0c14] has been reserved
[    0.359570] system 00:04: [io  0x0c50-0x0c52] has been reserved
[    0.359571] system 00:04: [io  0x0c6c] has been reserved
[    0.359573] system 00:04: [io  0x0c6f] has been reserved
[    0.359575] system 00:04: [io  0x0cd0-0x0cdb] has been reserved
[    0.359578] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.359661] system 00:05: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.359663] system 00:05: [mem 0xff800000-0xffffffff] has been reserved
[    0.359665] system 00:05: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.421718] ACPI Error: [WLVD] Namespace lookup failure, AE_NOT_FOUND (20170303/psargs-364)
[    0.421732] ACPI Error: Method parse/execution failed [\_SB.WLBU._STA] (Node ffff89334d13c9d8), AE_NOT_FOUND (20170303/psparse-543)
[    0.422008] pnp: PnP ACPI: found 6 devices
[    0.428340] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.428348] pci 0000:00:01.0: can't claim BAR 6 [mem 0xfffe0000-0xffffffff pref]: no compatible bridge window
[    0.428361] pci 0000:00:02.1: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    0.428364] pci 0000:00:02.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    0.428366] pci 0000:00:02.1: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    0.428391] pci 0000:00:02.1: BAR 14: assigned [mem 0xf0500000-0xf06fffff]
[    0.428402] pci 0000:00:02.1: BAR 15: assigned [mem 0xf1100000-0xf12fffff 64bit pref]
[    0.428407] pci 0000:00:01.0: BAR 6: assigned [mem 0xf0480000-0xf049ffff pref]
[    0.428411] pci 0000:00:02.1: BAR 13: assigned [io  0x1000-0x1fff]
[    0.428414] pci 0000:00:02.1: PCI bridge to [bus 01]
[    0.428417] pci 0000:00:02.1:   bridge window [io  0x1000-0x1fff]
[    0.428421] pci 0000:00:02.1:   bridge window [mem 0xf0500000-0xf06fffff]
[    0.428423] pci 0000:00:02.1:   bridge window [mem 0xf1100000-0xf12fffff 64bit pref]
[    0.428428] pci 0000:00:02.2: PCI bridge to [bus 02]
[    0.428430] pci 0000:00:02.2:   bridge window [io  0x3000-0x3fff]
[    0.428433] pci 0000:00:02.2:   bridge window [mem 0xf0300000-0xf03fffff]
[    0.428440] pci 0000:00:02.4: PCI bridge to [bus 03-05]
[    0.428442] pci 0000:00:02.4:   bridge window [io  0x2000-0x2fff]
[    0.428445] pci 0000:00:02.4:   bridge window [mem 0xf1000000-0xf10fffff]
[    0.428448] pci 0000:00:02.4:   bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[    0.428454] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.428456] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.428457] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.428459] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
[    0.428460] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
[    0.428461] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
[    0.428463] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
[    0.428464] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
[    0.428465] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
[    0.428466] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
[    0.428468] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
[    0.428469] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
[    0.428470] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
[    0.428471] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
[    0.428473] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
[    0.428474] pci_bus 0000:00: resource 19 [mem 0xe8000000-0xf7ffffff window]
[    0.428475] pci_bus 0000:00: resource 20 [mem 0xfc000000-0xfed3ffff window]
[    0.428477] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    0.428478] pci_bus 0000:01: resource 1 [mem 0xf0500000-0xf06fffff]
[    0.428480] pci_bus 0000:01: resource 2 [mem 0xf1100000-0xf12fffff 64bit pref]
[    0.428482] pci_bus 0000:02: resource 0 [io  0x3000-0x3fff]
[    0.428483] pci_bus 0000:02: resource 1 [mem 0xf0300000-0xf03fffff]
[    0.428485] pci_bus 0000:03: resource 0 [io  0x2000-0x2fff]
[    0.428486] pci_bus 0000:03: resource 1 [mem 0xf1000000-0xf10fffff]
[    0.428487] pci_bus 0000:03: resource 2 [mem 0xf0000000-0xf00fffff 64bit pref]
[    0.428619] NET: Registered protocol family 2
[    0.428795] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.428880] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.429002] TCP: Hash tables configured (established 32768 bind 32768)
[    0.429059] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.429080] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.429164] NET: Registered protocol family 1
[    0.429182] pci 0000:00:01.0: disabling ATS (broken on this device)
[    0.429190] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.456414] PCI: CLS 64 bytes, default 64
[    0.456469] Unpacking initramfs...
[    1.966482] Freeing initrd memory: 14380K
[    1.966517] AMD-Vi: IOMMU performance counters supported
[    1.966698] pci 0000:00:00.2: can't derive routing for PCI INT A
[    1.966700] pci 0000:00:00.2: PCI INT A: not connected
[    1.966910] iommu: Adding device 0000:00:01.0 to group 0
[    1.966925] iommu: Using direct mapping for device 0000:00:01.0
[    1.966941] iommu: Adding device 0000:00:01.1 to group 0
[    1.966998] iommu: Adding device 0000:00:02.0 to group 1
[    1.967013] iommu: Adding device 0000:00:02.1 to group 1
[    1.967028] iommu: Adding device 0000:00:02.2 to group 1
[    1.967045] iommu: Adding device 0000:00:02.4 to group 1
[    1.967139] iommu: Adding device 0000:00:03.0 to group 2
[    1.967228] iommu: Adding device 0000:00:08.0 to group 3
[    1.967320] iommu: Adding device 0000:00:09.0 to group 4
[    1.967334] iommu: Adding device 0000:00:09.2 to group 4
[    1.967418] iommu: Adding device 0000:00:10.0 to group 5
[    1.967497] iommu: Adding device 0000:00:11.0 to group 6
[    1.967581] iommu: Adding device 0000:00:12.0 to group 7
[    1.967675] iommu: Adding device 0000:00:14.0 to group 8
[    1.967690] iommu: Adding device 0000:00:14.3 to group 8
[    1.967802] iommu: Adding device 0000:00:18.0 to group 9
[    1.967817] iommu: Adding device 0000:00:18.1 to group 9
[    1.967833] iommu: Adding device 0000:00:18.2 to group 9
[    1.967849] iommu: Adding device 0000:00:18.3 to group 9
[    1.967864] iommu: Adding device 0000:00:18.4 to group 9
[    1.967879] iommu: Adding device 0000:00:18.5 to group 9
[    1.967894] iommu: Adding device 0000:02:00.0 to group 1
[    1.967920] iommu: Adding device 0000:03:00.0 to group 1
[    1.968527] AMD-Vi: Found IOMMU at 0000:00:00.2 cap 0x40
[    1.968529] AMD-Vi: Extended features (0x37ef22294ada):
[    1.968530]  PPR NX GT IA GA PC GA_vAPIC
[    1.968534] AMD-Vi: Interrupt remapping enabled
[    1.968534] AMD-Vi: virtual APIC enabled
[    1.968707] AMD-Vi: Lazy IO/TLB flushing enabled
[    1.970504] LVT offset 0 assigned for vector 0x400
[    1.970555] perf: AMD IBS detected (0x000007ff)
[    1.970562] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    1.970620] Scanning for low memory corruption every 60 seconds
[    1.971028] audit: initializing netlink subsys (disabled)
[    1.971079] audit: type=2000 audit(1539949080.964:1): state=initialized audit_enabled=0 res=1
[    1.971436] Initialise system trusted keyrings
[    1.971450] Key type blacklist registered
[    1.971496] workingset: timestamp_bits=36 max_order=20 bucket_order=0
[    1.971529] zbud: loaded
[    2.161123] Key type asymmetric registered
[    2.161125] Asymmetric key parser 'x509' registered
[    2.161167] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[    2.161200] io scheduler noop registered
[    2.161200] io scheduler deadline registered
[    2.161211] io scheduler cfq registered (default)
[    2.161211] io scheduler mq-deadline registered
[    2.161212] io scheduler kyber registered
[    2.161222] io scheduler bfq registered
[    2.161923] pcieport 0000:00:02.1: Signaling PME with IRQ 26
[    2.161940] pcieport 0000:00:02.2: Signaling PME with IRQ 27
[    2.161954] pcieport 0000:00:02.4: Signaling PME with IRQ 28
[    2.161971] pciehp 0000:00:02.1:pcie004: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+
[    2.162041] efifb: probing for efifb
[    2.162064] efifb: framebuffer at 0xe8000000, using 8100k, total 8100k
[    2.162065] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    2.162065] efifb: scrolling: redraw
[    2.162067] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    2.165965] Console: switching to colour frame buffer device 240x67
[    2.169664] fb0: EFI VGA frame buffer device
[    2.169863] GHES: HEST is not enabled!
[    2.169929] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    2.171168] Non-volatile memory driver v1.3
[    2.171186] Linux agpgart interface v0.103
[    2.171477] i8042: PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    2.195574] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.195579] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.195670] mousedev: PS/2 mouse device common for all mice
[    2.195721] rtc_cmos 00:01: RTC can wake from S4
[    2.195822] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    2.195848] rtc_cmos 00:01: alarms up to one month, 114 bytes nvram, hpet irqs
[    2.195875] ledtrig-cpu: registered to indicate activity on CPUs
[    2.195876] EFI Variables Facility v0.08 2004-May-17
[    2.237727] hidraw: raw HID events driver (C) Jiri Kosina
[    2.237921] NET: Registered protocol family 10
[    2.240517] Segment Routing with IPv6
[    2.240800] microcode: CPU0: patch_level=0x06006704
[    2.240803] microcode: CPU1: patch_level=0x06006704
[    2.240829] microcode: Microcode Update Driver: v2.2.
[    2.240847] sched_clock: Marking stable (2240621427, 0)->(2395446897, -154825470)
[    2.241020] registered taskstats version 1
[    2.241023] Loading compiled-in X.509 certificates
[    2.243164] alg: No test for pkcs1pad(rsa,sha256) (pkcs1pad(rsa-generic,sha256))
[    2.243998] Loaded X.509 cert 'Build time autogenerated kernel key: 506fdb06077469a28a95e8d2e13e0969fce51001'
[    2.247207] Loaded UEFI:db cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53' linked to secondary sys keyring
[    2.247234] Loaded UEFI:db cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4' linked to secondary sys keyring
[    2.247257] Loaded UEFI:db cert 'Hewlett-Packard Company: HP UEFI Secure Boot 2013 DB key: 1d7cf2c2b92673f69c8ee1ec7063967ab9b62bec' linked to secondary sys keyring
[    2.249131] zswap: loaded using pool lzo/zbud
[    2.249206] page_owner is disabled
[    2.249222] Key type trusted registered
[    2.251515] Key type encrypted registered
[    2.251520] AppArmor: AppArmor sha1 policy hashing enabled
[    2.251523] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
[    2.251530] ima: Allocated hash algorithm: sha256
[    2.251553] evm: HMAC attrs: 0x1
[    2.251938] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    2.252425]   Magic number: 6:200:631
[    2.252571] PM: Hibernation image not present or could not be loaded.
[    2.797108] Freeing unused kernel memory: 2520K
[    2.808221] Write protecting the kernel read-only data: 16384k
[    2.809885] Freeing unused kernel memory: 2016K
[    2.811559] Freeing unused kernel memory: 772K
[    2.816086] systemd[1]: RTC configured in localtime, applying delta of 120 minutes to system time.
[    2.816635] autofs4: module verification failed: signature and/or required key missing - tainting kernel
[    2.867744] systemd[1]: systemd 234 running in system mode. (+PAM -AUDIT +SELINUX -IMA +APPARMOR -SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT -GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN default-hierarchy=hybrid)
[    2.867892] systemd[1]: Detected architecture x86-64.
[    2.867894] systemd[1]: Running in initial RAM disk.
[    2.867910] systemd[1]: Set hostname to <scarlett>.
[    2.917419] random: systemd: uninitialized urandom read (16 bytes read)
[    2.917461] systemd[1]: Listening on Journal Audit Socket.
[    2.917522] random: systemd: uninitialized urandom read (16 bytes read)
[    2.917532] systemd[1]: Reached target Timers.
[    2.917544] random: systemd: uninitialized urandom read (16 bytes read)
[    2.917553] systemd[1]: Reached target Swap.
[    2.917568] random: systemd: uninitialized urandom read (16 bytes read)
[    2.918030] systemd[1]: Created slice System Slice.
[    2.918057] random: systemd: uninitialized urandom read (16 bytes read)
[    2.918091] systemd[1]: Listening on udev Control Socket.
[    2.918106] random: systemd: uninitialized urandom read (16 bytes read)
[    2.918143] systemd[1]: Listening on Journal Socket.
[    2.918163] random: systemd: uninitialized urandom read (16 bytes read)
[    2.918985] random: systemd: uninitialized urandom read (16 bytes read)
[    2.919907] random: systemd: uninitialized urandom read (16 bytes read)
[    2.919983] random: systemd: uninitialized urandom read (16 bytes read)
[    2.935993] SCSI subsystem initialized
[    2.964128] alua: device handler registered
[    2.964544] emc: device handler registered
[    2.964870] rdac: device handler registered
[    2.974940] device-mapper: uevent: version 1.0.3
[    2.975021] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@xxxxxxxxxx
[    2.976028] tsc: Refined TSC clocksource calibration: 2495.317 MHz
[    2.976034] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x23f7f206bf1, max_idle_ns: 440795322908 ns
[    3.239669] ACPI: bus type USB registered
[    3.239706] usbcore: registered new interface driver usbfs
[    3.239718] usbcore: registered new interface driver hub
[    3.239741] usbcore: registered new device driver usb
[    3.241127] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.241426] ehci-pci: EHCI PCI platform driver
[    3.241709] ehci-pci 0000:00:12.0: EHCI Host Controller
[    3.241721] ehci-pci 0000:00:12.0: new USB bus registered, assigned bus number 1
[    3.241737] ehci-pci 0000:00:12.0: debug port 2
[    3.241799] ehci-pci 0000:00:12.0: irq 18, io mem 0xf046d000
[    3.263955] ehci-pci 0000:00:12.0: USB 2.0 started, EHCI 1.00
[    3.264115] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.264117] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.264119] usb usb1: Product: EHCI Host Controller
[    3.264120] usb usb1: Manufacturer: Linux 4.12.14-0-default ehci_hcd
[    3.264122] usb usb1: SerialNumber: 0000:00:12.0
[    3.273706] hub 1-0:1.0: USB hub found
[    3.273728] hub 1-0:1.0: 2 ports detected
[    3.287465] xhci_hcd 0000:00:10.0: xHCI Host Controller
[    3.287488] xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 2
[    3.287761] xhci_hcd 0000:00:10.0: hcc params 0x014040c3 hci version 0x100 quirks 0x00000410
[    3.293287] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    3.293292] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.293293] usb usb2: Product: xHCI Host Controller
[    3.293295] usb usb2: Manufacturer: Linux 4.12.14-0-default xhci-hcd
[    3.293296] usb usb2: SerialNumber: 0000:00:10.0
[    3.293486] hub 2-0:1.0: USB hub found
[    3.293499] hub 2-0:1.0: 4 ports detected
[    3.297978] xhci_hcd 0000:00:10.0: xHCI Host Controller
[    3.297985] xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 3
[    3.298015] usb usb3: We don't know the algorithms for LPM for this host, disabling LPM.
[    3.298047] usb usb3: New USB device found, idVendor=1d6b, idProduct=0003
[    3.298048] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.298050] usb usb3: Product: xHCI Host Controller
[    3.298051] usb usb3: Manufacturer: Linux 4.12.14-0-default xhci-hcd
[    3.298053] usb usb3: SerialNumber: 0000:00:10.0
[    3.298202] hub 3-0:1.0: USB hub found
[    3.298216] hub 3-0:1.0: 4 ports detected
[    3.302578] libata version 3.00 loaded.
[    3.304043] ahci 0000:00:11.0: version 3.0
[    3.304293] ahci 0000:00:11.0: AHCI 0001.0300 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[    3.304296] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp fbs pio slum part 
[    3.372060] scsi host0: ahci
[    3.373317] [drm] amdgpu kernel modesetting enabled.
[    3.384699] scsi host1: ahci
[    3.384779] ata1: SATA max UDMA/133 abar m1024@0xf046c000 port 0xf046c100 irq 19
[    3.384781] ata2: SATA max UDMA/133 abar m1024@0xf046c000 port 0xf046c180 irq 19
[    3.390230] AMD IOMMUv2 driver by Joerg Roedel <jroedel@xxxxxxx>
[    3.393085] Found CRAT image with size=744
[    3.393088] Parsing CRAT table with 1 nodes
[    3.393089] Found CU entry in CRAT table with proximity_domain=0 caps=0
[    3.393090] CU CPU: cores=2 id_base=16
[    3.393091] Found CU entry in CRAT table with proximity_domain=0 caps=0
[    3.393092] CU GPU: simds=40 id_base=-2147483648
[    3.393092] Found memory entry in CRAT table with proximity_domain=0
[    3.393093] Found cache entry in CRAT table with processor_id=16
[    3.393094] Found cache entry in CRAT table with processor_id=16
[    3.393095] Found cache entry in CRAT table with processor_id=16
[    3.393095] Found cache entry in CRAT table with processor_id=17
[    3.393096] Found TLB entry in CRAT table (not processing)
[    3.393096] Found TLB entry in CRAT table (not processing)
[    3.393097] Found TLB entry in CRAT table (not processing)
[    3.393097] Found TLB entry in CRAT table (not processing)
[    3.393097] Found TLB entry in CRAT table (not processing)
[    3.393098] Creating topology SYSFS entries
[    3.393115] Finished initializing topology ret=0
[    3.393129] kfd kfd: Initialized module
[    3.393370] checking generic (e8000000 7e9000) vs hw (e8000000 8000000)
[    3.393372] fb: switching to amdgpudrmfb from EFI VGA
[    3.393420] Console: switching to colour dummy device 80x25
[    3.394429] [drm] initializing kernel modesetting (STONEY 0x1002:0x98E4 0x103C:0x8330 0xEA).
[    3.394434] amdgpu 0000:00:01.0: VM size (-1) must be a power of 2
[    3.394454] [drm] register mmio base: 0xF0400000
[    3.394455] [drm] register mmio size: 262144
[    3.394942] [drm] UVD is enabled in physical mode
[    3.394943] [drm] VCE enabled in VM mode
[    3.394980] ATOM BIOS: 113-C91400-007
[    3.394990] [drm] GPU post is not needed
[    3.395178] [drm] vm size is 64 GB, block size is 13-bit
[    3.395186] amdgpu 0000:00:01.0: VRAM: 80M 0x0000000000000000 - 0x0000000004FFFFFF (80M used)
[    3.395188] amdgpu 0000:00:01.0: GTT: 3072M 0x0000000005000000 - 0x00000000C4FFFFFF
[    3.395199] [drm] Detected VRAM RAM=80M, BAR=80M
[    3.395200] [drm] RAM width 64bits UNKNOWN
[    3.408089] [TTM] Zone  kernel: Available graphics memory: 1990412 kiB
[    3.408091] [TTM] Initializing pool allocator
[    3.408096] [TTM] Initializing DMA pool allocator
[    3.408130] [drm] amdgpu: 80M of VRAM memory ready
[    3.408131] [drm] amdgpu: 3072M of GTT memory ready.
[    3.408148] [drm] GART: num cpu pages 786432, num gpu pages 786432
[    3.409330] [drm] PCIE GART of 3072M enabled (table at 0x0000000000040000).
[    3.409351] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    3.409352] [drm] Driver supports precise vblank timestamp query.
[    3.409405] amdgpu 0000:00:01.0: amdgpu: using MSI.
[    3.409426] [drm] amdgpu: irq initialized.
[    3.409444] amdgpu: [powerplay] amdgpu: powerplay sw initialized
[    3.412925] [drm] amdgpu atom DIG backlight initialized
[    3.412927] [drm] AMDGPU Display Connectors
[    3.412928] [drm] Connector 0:
[    3.412929] [drm]   eDP-1
[    3.412929] [drm]   HPD1
[    3.412931] [drm]   DDC: 0x4868 0x4868 0x4869 0x4869 0x486a 0x486a 0x486b 0x486b
[    3.412932] [drm]   Encoders:
[    3.412932] [drm]     LCD1: INTERNAL_UNIPHY
[    3.412933] [drm] Connector 1:
[    3.412933] [drm]   HDMI-A-1
[    3.412934] [drm]   HPD2
[    3.412935] [drm]   DDC: 0x486c 0x486c 0x486d 0x486d 0x486e 0x486e 0x486f 0x486f
[    3.412936] [drm]   Encoders:
[    3.412936] [drm]     DFP1: INTERNAL_UNIPHY
[    3.412937] [drm] Connector 2:
[    3.412937] [drm]   DP-1
[    3.412938] [drm]   HPD3
[    3.412939] [drm]   DDC: 0x4870 0x4870 0x4871 0x4871 0x4872 0x4872 0x4873 0x4873
[    3.412939] [drm]   Encoders:
[    3.412940] [drm]     DFP2: INTERNAL_UNIPHY1
[    3.420131] amdgpu 0000:00:01.0: fence driver on ring 0 use gpu addr 0x0000000005000010, cpu addr 0xffff893345f6a010
[    3.431280] amdgpu 0000:00:01.0: fence driver on ring 1 use gpu addr 0x0000000005000020, cpu addr 0xffff893345f6a020
[    3.436029] amdgpu 0000:00:01.0: fence driver on ring 2 use gpu addr 0x0000000005000030, cpu addr 0xffff893345f6a030
[    3.447118] amdgpu 0000:00:01.0: fence driver on ring 3 use gpu addr 0x0000000005000040, cpu addr 0xffff893345f6a040
[    3.447226] amdgpu 0000:00:01.0: fence driver on ring 4 use gpu addr 0x0000000005000050, cpu addr 0xffff893345f6a050
[    3.458282] amdgpu 0000:00:01.0: fence driver on ring 5 use gpu addr 0x0000000005000060, cpu addr 0xffff893345f6a060
[    3.460299] amdgpu 0000:00:01.0: fence driver on ring 6 use gpu addr 0x0000000005000070, cpu addr 0xffff893345f6a070
[    3.460414] amdgpu 0000:00:01.0: fence driver on ring 7 use gpu addr 0x0000000005000080, cpu addr 0xffff893345f6a080
[    3.460457] amdgpu 0000:00:01.0: fence driver on ring 8 use gpu addr 0x0000000005000090, cpu addr 0xffff893345f6a090
[    3.460555] amdgpu 0000:00:01.0: fence driver on ring 9 use gpu addr 0x00000000050000a0, cpu addr 0xffff893345f6a0a0
[    3.460720] [drm] Found UVD firmware Version: 1.43 Family ID: 15
[    3.461144] amdgpu 0000:00:01.0: fence driver on ring 10 use gpu addr 0x0000000000696ae0, cpu addr 0xffffaf5d00e43ae0
[    3.461245] [drm] Found VCE firmware Version: 52.0 Binary ID: 3
[    3.461328] amdgpu 0000:00:01.0: fence driver on ring 11 use gpu addr 0x00000000050000c0, cpu addr 0xffff893345f6a0c0
[    3.461367] amdgpu 0000:00:01.0: fence driver on ring 12 use gpu addr 0x00000000050000d0, cpu addr 0xffff893345f6a0d0
[    3.489811] [drm] ring test on 0 succeeded in 7 usecs
[    3.490059] [drm] ring test on 1 succeeded in 12 usecs
[    3.490099] [drm] ring test on 2 succeeded in 16 usecs
[    3.490120] [drm] ring test on 3 succeeded in 8 usecs
[    3.490141] [drm] ring test on 4 succeeded in 8 usecs
[    3.490160] [drm] ring test on 5 succeeded in 7 usecs
[    3.490181] [drm] ring test on 6 succeeded in 8 usecs
[    3.490202] [drm] ring test on 7 succeeded in 8 usecs
[    3.490221] [drm] ring test on 8 succeeded in 7 usecs
[    3.490256] [drm] ring test on 9 succeeded in 3 usecs
[    3.516155] [drm] ring test on 10 succeeded in 1 usecs
[    3.516158] [drm] UVD initialized successfully.
[    3.615840] [drm] ring test on 11 succeeded in 3 usecs
[    3.615849] [drm] ring test on 12 succeeded in 2 usecs
[    3.615850] [drm] VCE initialized successfully.
[    3.616579] [drm] ib test on ring 0 succeeded
[    3.616668] [drm] ib test on ring 1 succeeded
[    3.616696] [drm] ib test on ring 2 succeeded
[    3.616719] [drm] ib test on ring 3 succeeded
[    3.616744] [drm] ib test on ring 4 succeeded
[    3.616768] [drm] ib test on ring 5 succeeded
[    3.616794] [drm] ib test on ring 6 succeeded
[    3.616819] [drm] ib test on ring 7 succeeded
[    3.616846] [drm] ib test on ring 8 succeeded
[    3.616863] [drm] ib test on ring 9 succeeded
[    3.617365] [drm] ib test on ring 10 succeeded
[    3.617484] [drm] ib test on ring 11 succeeded
[    3.618133] amdgpu: [powerplay] min_core_set_clock not set
[    3.619010] amdgpu: [powerplay] min_core_set_clock not set
[    3.636022] usb 2-1: new high-speed USB device number 2 using xhci_hcd
[    3.817637] usb 2-1: New USB device found, idVendor=0408, idProduct=5220
[    3.817639] usb 2-1: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    3.817641] usb 2-1: Product: HP Webcam
[    3.817642] usb 2-1: Manufacturer: Generic
[    3.817643] usb 2-1: SerialNumber: 0x0001
[    3.860030] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    3.860057] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.860717] ata1.00: ATA-10: INTEL SSDSCKKF256G8H,  LHFH03N, max UDMA/100
[    3.860719] ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    3.861146] ata1.00: configured for UDMA/100
[    3.861310] scsi 0:0:0:0: Direct-Access     ATA      INTEL SSDSCKKF25 H03N PQ: 0 ANSI: 5
[    3.861679] scsi 0:0:0:0: Attached scsi generic sg0 type 0
[    3.864690] ata2.00: ATAPI: hp      DVDRW  DA8AESH, XH6M, max UDMA/133
[    3.871563] ata2.00: configured for UDMA/133
[    4.254532] clocksource: Switched to clocksource tsc
[    4.257759] scsi 1:0:0:0: CD-ROM            hp       DVDRW  DA8AESH   XH6M PQ: 0 ANSI: 5
[    4.275365] scsi 1:0:0:0: Attached scsi generic sg1 type 5
[    4.279367] ata1.00: Enabling discard_zeroes_data
[    4.279429] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    4.279441] sd 0:0:0:0: [sda] Write Protect is off
[    4.279443] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    4.279461] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.279589] ata1.00: Enabling discard_zeroes_data
[    4.282656]  sda: sda1 sda2 sda3 sda4 sda5 sda6
[    4.283117] ata1.00: Enabling discard_zeroes_data
[    4.283249] sd 0:0:0:0: [sda] Attached SCSI disk
[    4.299713] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
[    4.299716] cdrom: Uniform CD-ROM driver Revision: 3.20
[    4.300068] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    4.303016] [drm] fb mappable at 0x1128A0000
[    4.303018] [drm] vram apper at 0x112000000
[    4.303018] [drm] size 8294400
[    4.303019] [drm] fb depth is 24
[    4.303020] [drm]    pitch is 7680
[    4.389971] random: crng init done
[    4.393113] fbcon: amdgpudrmfb (fb0) is primary device
[    5.522015] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    6.153593] amdgpu: [powerplay] min_core_set_clock not set
[    6.157526] amdgpu: [powerplay] min_core_set_clock not set
[    6.165262] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
[    6.801398] amdgpu: [powerplay] min_core_set_clock not set
[    6.802049] amdgpu: [powerplay] min_core_set_clock not set
[    6.802939] amdgpu: [powerplay] min_core_set_clock not set
[    6.803876] Console: switching to colour frame buffer device 240x67
[    6.820469] usb 1-1: New USB device found, idVendor=0438, idProduct=7900
[    6.820472] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    6.820755] hub 1-1:1.0: USB hub found
[    6.821592] hub 1-1:1.0: 4 ports detected
[    6.846025] amdgpu: [powerplay] min_core_set_clock not set
[    6.851174] amdgpu 0000:00:01.0: fb0: amdgpudrmfb frame buffer device
[    6.853864] psmouse serio1: synaptics: queried max coordinates: x [..5648], y [..4826]
[    6.860181] amdgpu: [powerplay] min_core_set_clock not set
[    6.861840] [drm] Initialized amdgpu 3.15.0 20150101 for 0000:00:01.0 on minor 0
[    6.885606] psmouse serio1: synaptics: queried min coordinates: x [1292..], y [1026..]
[    6.885613] psmouse serio1: synaptics: Your touchpad (PNP: SYN3254 PNP0f13) says it can support a different bus. If i2c-hid and hid-rmi are not used, you might want to try setting psmouse.synaptics_intertouch to 1 and report this to linux-input@xxxxxxxxxxxxxxx.
[    6.943799] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.16, id: 0x1e2b1, caps: 0xf00323/0x840300/0x2e800/0x400000, board id: 3320, fw id: 2659795
[    6.981615] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input2
[    7.011334] systemd-journald[138]: Received SIGTERM from PID 1 (systemd).
[    7.032724] systemd: 15 output lines suppressed due to ratelimiting
[    7.108034] usb 1-1.4: new full-speed USB device number 3 using ehci-pci
[    7.108522] systemd[1]: RTC configured in localtime, applying delta of 120 minutes to system time.
[    7.222038] usb 1-1.4: New USB device found, idVendor=8087, idProduct=0aa7
[    7.222042] usb 1-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    7.266085] EXT4-fs (sda6): re-mounted. Opts: acl,user_xattr
[    7.327289] systemd-journald[397]: Received request to flush runtime journal from PID 1
[    7.516427] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
[    7.516591] ACPI: Power Button [PWRB]
[    7.516772] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input4
[    7.517536] ACPI: Lid Switch [LID]
[    7.517613] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
[    7.517670] ACPI: Power Button [PWRF]
[    7.517720] acpi_cpufreq: overriding BIOS provided _PSD data
[    7.530882] input: HP Wireless hotkeys as /devices/virtual/input/input6
[    7.534246] tpm_crb MSFT0101:00: can't request region for resource [mem 0xe7b7a000-0xe7b7dfff]
[    7.534293] tpm_crb: probe of MSFT0101:00 failed with error -16
[    7.538319] ACPI: Video Device [VGA] (multi-head: yes  rom: no  post: no)
[    7.539635] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input7
[    7.550126] cmi: probe of SMB0001:00 failed with error -5
[    7.563008] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    7.563055] ACPI: AC Adapter [ACAD] (on-line)
[    7.569174] wmi: Mapper loaded
[    7.593753] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    7.604544] thermal LNXTHERM:00: registered as thermal_zone0
[    7.604550] ACPI: Thermal Zone [TSZ0] (62 C)
[    7.604734] thermal LNXTHERM:01: registered as thermal_zone1
[    7.604736] ACPI: Thermal Zone [TSZ2] (20 C)
[    7.615284] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    7.615287] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[    7.628083] input: PC Speaker as /devices/platform/pcspkr/input/input8
[    7.657235] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    7.657250] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
[    7.680862] r8169 0000:02:00.0 eth0: RTL8168h/8111h at 0xffffaf5d00a69000, 80:ce:62:85:82:88, XID 14100800 IRQ 35
[    7.680865] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    7.692182] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    7.692187] ACPI: Battery Slot [BAT1] (battery present)
[    7.704068] AVX2 version of gcm_enc/dec engaged.
[    7.704070] AES CTR mode by8 optimization enabled
[    7.734580] Intel(R) Wireless WiFi driver for Linux
[    7.734582] Copyright(c) 2003- 2015 Intel Corporation
[    7.830266] snd_hda_intel 0000:00:01.1: Force to non-snoop mode
[    7.849261] iwlwifi 0000:03:00.0: loaded firmware version 29.1044073957.0 op_mode iwlmvm
[    7.859373] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC3227: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    7.859377] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    7.859384] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    7.859386] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[    7.859387] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[    7.859389] snd_hda_codec_realtek hdaudioC1D0:      Mic=0x19
[    7.859391] snd_hda_codec_realtek hdaudioC1D0:      Internal Mic=0x12
[    7.864273] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card0/input10
[    7.960435] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:09.2/sound/card1/input11
[    7.970147] input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:09.2/sound/card1/input12
[    7.970336] input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:09.2/sound/card1/input13
[    8.058575] iwlwifi 0000:03:00.0: Detected Intel(R) Dual Band Wireless AC 3168, REV=0x220
[    8.089995] iwlwifi 0000:03:00.0: base HW address: 40:a3:cc:ed:83:02
[    8.090319] audit: type=1400 audit(1539941887.086:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ping" pid=453 comm="apparmor_parser"
[    8.120155] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[    8.191126] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    8.191435] thermal thermal_zone2: failed to read out thermal zone (-61)
[    8.237309] alg: No test for pcbc(aes) (pcbc-aes-aesni)
[    8.299674] kvm: disabled by bios
[    8.306520] MCE: In-kernel MCE decoding enabled.
[    8.508880] input: HP WMI hotkeys as /devices/virtual/input/input9
[    9.137923] Linux video capture interface: v2.00
[    9.300447] uvcvideo: Found UVC 1.00 device HP Webcam (0408:5220)
[    9.302026] input: HP Webcam as /devices/pci0000:00/0000:00:10.0/usb2/2-1/2-1:1.0/input/input14
[    9.302097] usbcore: registered new interface driver uvcvideo
[    9.302097] USB Video Class driver (1.1.1)
[    9.647583] Bluetooth: Core ver 2.22
[    9.647612] NET: Registered protocol family 31
[    9.647613] Bluetooth: HCI device and connection manager initialized
[    9.647618] Bluetooth: HCI socket layer initialized
[    9.647620] Bluetooth: L2CAP socket layer initialized
[    9.647631] Bluetooth: SCO socket layer initialized
[    9.660159] usbcore: registered new interface driver btusb
[    9.674337] Bluetooth: hci0: read Intel version: 370810225019140f00
[    9.674970] Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.8.10-fw-22.50.19.14.f.bseq
[   10.068285] Bluetooth: hci0: Intel Bluetooth firmware patch completed and activated
[   14.758046] ip_tables: (C) 2000-2006 Netfilter Core Team
[   14.802085] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   14.848373] Ebtables v2.0 registered
[   14.923196] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   15.097968] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   15.168686] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   15.179380] Netfilter messages via NETLINK v0.30.
[   15.189907] ip_set: protocol 6
[   15.266669] r8169 0000:02:00.0 eth0: link down
[   15.266787] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   15.271479] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   15.340643] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   15.456126] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   15.535428] NET: Registered protocol family 17
[   15.588966] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   15.682702] amdgpu: [powerplay] min_core_set_clock not set
[   15.702069] amdgpu: [powerplay] min_core_set_clock not set
[   16.028564] amdgpu: [powerplay] min_core_set_clock not set
[   16.050000] amdgpu: [powerplay] min_core_set_clock not set
[   16.051543] amdgpu: [powerplay] min_core_set_clock not set
[   16.053341] amdgpu: [powerplay] min_core_set_clock not set
[   16.056642] amdgpu: [powerplay] min_core_set_clock not set
[   16.171871] amdgpu: [powerplay] min_core_set_clock not set
[   16.634379] amdgpu: [powerplay] min_core_set_clock not set
[   18.213976] fuse init (API version 7.26)
[   19.043350] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   19.931823] wlan0: authenticate with bc:ae:c5:c4:3c:d9
[   19.937801] wlan0: send auth to bc:ae:c5:c4:3c:d9 (try 1/3)
[   19.941255] wlan0: authenticated
[   19.944239] wlan0: associate with bc:ae:c5:c4:3c:d9 (try 1/3)
[   19.947508] wlan0: RX AssocResp from bc:ae:c5:c4:3c:d9 (capab=0x401 status=0 aid=2)
[   19.957047] wlan0: associated
[   19.957100] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   96.433856] xhci_hcd 0000:00:10.0: HACK: device 0x7914: ACPI selected D0 state, Force D3
[   96.451576] acpi device:19: Cannot transition from D3cold to D3hot
[  124.176329] usb 2-2: new high-speed USB device number 3 using xhci_hcd
[  124.327893] usb 2-2: New USB device found, idVendor=1307, idProduct=0165
[  124.327899] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  124.327903] usb 2-2: Product: USB Mass Storage Device
[  124.327906] usb 2-2: Manufacturer: USBest Technology
[  124.327908] usb 2-2: SerialNumber: 080726737e070e
[  124.875013] usb-storage 2-2:1.0: USB Mass Storage device detected
[  124.877127] scsi host2: usb-storage 2-2:1.0
[  124.877268] usbcore: registered new interface driver usb-storage
[  124.880633] usbcore: registered new interface driver uas
[  125.885720] scsi 2:0:0:0: Direct-Access     Ut165    USB2FlashStorage 0.00 PQ: 0 ANSI: 2
[  125.886142] sd 2:0:0:0: Attached scsi generic sg2 type 0
[  125.887905] sd 2:0:0:0: [sdb] 7897088 512-byte logical blocks: (4.04 GB/3.77 GiB)
[  125.889837] sd 2:0:0:0: [sdb] Write Protect is off
[  125.889843] sd 2:0:0:0: [sdb] Mode Sense: 00 00 00 00
[  125.890153] sd 2:0:0:0: [sdb] Asking for cache data failed
[  125.890157] sd 2:0:0:0: [sdb] Assuming drive cache: write through
[  125.962770]  sdb: sdb1
[  126.037855] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[  131.964582] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[  139.592269] sdb: detected capacity change from 4043309056 to 0
[  141.434974] usb 2-2: USB disconnect, device number 3
[  141.620436] xhci_hcd 0000:00:10.0: HACK: device 0x7914: ACPI selected D0 state, Force D3
[  157.609067] usb 2-3: new high-speed USB device number 4 using xhci_hcd
[  157.760631] usb 2-3: New USB device found, idVendor=1307, idProduct=0165
[  157.760637] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  157.760641] usb 2-3: Product: USB Mass Storage Device
[  157.760644] usb 2-3: Manufacturer: USBest Technology
[  157.760646] usb 2-3: SerialNumber: 080726737e070e
[  157.764249] usb-storage 2-3:1.0: USB Mass Storage device detected
[  157.764654] scsi host2: usb-storage 2-3:1.0
[  158.782467] scsi 2:0:0:0: Direct-Access     Ut165    USB2FlashStorage 0.00 PQ: 0 ANSI: 2
[  158.783258] sd 2:0:0:0: [sdb] 7897088 512-byte logical blocks: (4.04 GB/3.77 GiB)
[  158.784200] sd 2:0:0:0: Attached scsi generic sg2 type 0
[  158.784308] sd 2:0:0:0: [sdb] Write Protect is off
[  158.784312] sd 2:0:0:0: [sdb] Mode Sense: 00 00 00 00
[  158.784832] sd 2:0:0:0: [sdb] Asking for cache data failed
[  158.784836] sd 2:0:0:0: [sdb] Assuming drive cache: write through
[  158.859906]  sdb: sdb1
[  158.934119] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[  164.961692] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[  216.168169] sdb: detected capacity change from 4043309056 to 0
[  225.812940] usb 2-3: USB disconnect, device number 4
[  226.003227] xhci_hcd 0000:00:10.0: HACK: device 0x7914: ACPI selected D0 state, Force D3
[  385.816375] usb 2-2: new high-speed USB device number 5 using xhci_hcd
[  385.967937] usb 2-2: New USB device found, idVendor=1307, idProduct=0165
[  385.967943] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  385.967946] usb 2-2: Product: USB Mass Storage Device
[  385.967949] usb 2-2: Manufacturer: USBest Technology
[  385.967952] usb 2-2: SerialNumber: 080726737e070e
[  385.970066] usb-storage 2-2:1.0: USB Mass Storage device detected
[  385.971105] scsi host2: usb-storage 2-2:1.0
[  386.977605] scsi 2:0:0:0: Direct-Access     Ut165    USB2FlashStorage 0.00 PQ: 0 ANSI: 2
[  386.978025] sd 2:0:0:0: Attached scsi generic sg2 type 0
[  386.979733] sd 2:0:0:0: [sdb] 7897088 512-byte logical blocks: (4.04 GB/3.77 GiB)
[  386.980085] sd 2:0:0:0: [sdb] Write Protect is off
[  386.980089] sd 2:0:0:0: [sdb] Mode Sense: 00 00 00 00
[  386.982932] sd 2:0:0:0: [sdb] Asking for cache data failed
[  386.982937] sd 2:0:0:0: [sdb] Assuming drive cache: write through
[  387.053821]  sdb: sdb1
[  387.127757] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[  392.967838] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.

Attachment: dsdt
Description: Binary data


[Index of Archives]     [Linux Media]     [Linux Input]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Old Linux USB Devel Archive]

  Powered by Linux