All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] PCI(e): Documentation "io-reserve" and related properties?
@ 2019-06-06 16:19 Kashyap Chamarthy
  2019-06-06 18:20 ` Michael S. Tsirkin
  0 siblings, 1 reply; 6+ messages in thread
From: Kashyap Chamarthy @ 2019-06-06 16:19 UTC (permalink / raw)
  To: qemu-devel; +Cc: mst

Hi folks,

Today I learnt about some obscure PCIe-related properties, in context of
the adding PCIe root ports to a guest, namely:

    io-reserve
    mem-reserve
    bus-reserve
    pref32-reserve
    pref64-reserve

Unfortunately, the commit[*] that added them provided no documentation
whatsover.

In my scenario, I was specifically wondering about what does
"io-reserve" mean, in what context to use it, etc.  (But documentation
about other properties is also welcome.)

Anyone more well-versed in this area care to shed some light?


[*] 6755e618d0 (hw/pci: add PCI resource reserve capability to legacy
    PCI bridge, 2018-08-21)

-- 
/kashyap


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] PCI(e): Documentation "io-reserve" and related properties?
  2019-06-06 16:19 [Qemu-devel] PCI(e): Documentation "io-reserve" and related properties? Kashyap Chamarthy
@ 2019-06-06 18:20 ` Michael S. Tsirkin
  2019-06-07 11:43   ` Andrea Bolognani
  2019-06-11  7:21   ` Kashyap Chamarthy
  0 siblings, 2 replies; 6+ messages in thread
From: Michael S. Tsirkin @ 2019-06-06 18:20 UTC (permalink / raw)
  To: Kashyap Chamarthy; +Cc: qemu-devel

On Thu, Jun 06, 2019 at 06:19:43PM +0200, Kashyap Chamarthy wrote:
> Hi folks,
> 
> Today I learnt about some obscure PCIe-related properties, in context of
> the adding PCIe root ports to a guest, namely:
> 
>     io-reserve
>     mem-reserve
>     bus-reserve
>     pref32-reserve
>     pref64-reserve
> 
> Unfortunately, the commit[*] that added them provided no documentation
> whatsover.
> 
> In my scenario, I was specifically wondering about what does
> "io-reserve" mean, in what context to use it, etc.  (But documentation
> about other properties is also welcome.)
> 
> Anyone more well-versed in this area care to shed some light?
> 
> 
> [*] 6755e618d0 (hw/pci: add PCI resource reserve capability to legacy
>     PCI bridge, 2018-08-21)

So normally bios would reserve just enough io space to satisfy all
devices behind a bridge. What if you intend to hotplug more devices?
These properties allow you to ask bios to reserve extra space.

> -- 
> /kashyap


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] PCI(e): Documentation "io-reserve" and related properties?
  2019-06-06 18:20 ` Michael S. Tsirkin
@ 2019-06-07 11:43   ` Andrea Bolognani
  2019-06-11 10:15     ` Marcel Apfelbaum
  2019-06-11  7:21   ` Kashyap Chamarthy
  1 sibling, 1 reply; 6+ messages in thread
From: Andrea Bolognani @ 2019-06-07 11:43 UTC (permalink / raw)
  To: Michael S. Tsirkin, Kashyap Chamarthy; +Cc: libvir-list, qemu-devel

[-- Attachment #1: Type: text/plain, Size: 2353 bytes --]

On Thu, 2019-06-06 at 14:20 -0400, Michael S. Tsirkin wrote:
> On Thu, Jun 06, 2019 at 06:19:43PM +0200, Kashyap Chamarthy wrote:
> > Hi folks,
> > 
> > Today I learnt about some obscure PCIe-related properties, in context of
> > the adding PCIe root ports to a guest, namely:
> > 
> >     io-reserve
> >     mem-reserve
> >     bus-reserve
> >     pref32-reserve
> >     pref64-reserve
> > 
> > Unfortunately, the commit[*] that added them provided no documentation
> > whatsover.
> > 
> > In my scenario, I was specifically wondering about what does
> > "io-reserve" mean, in what context to use it, etc.  (But documentation
> > about other properties is also welcome.)
> > 
> > Anyone more well-versed in this area care to shed some light?
> > 
> > 
> > [*] 6755e618d0 (hw/pci: add PCI resource reserve capability to legacy
> >     PCI bridge, 2018-08-21)
> 
> So normally bios would reserve just enough io space to satisfy all
> devices behind a bridge. What if you intend to hotplug more devices?
> These properties allow you to ask bios to reserve extra space.

Is it fair to say that setting io-reserve=0 for a pcie-root-port
would be a way to implement the requirements set forth in

  https://bugzilla.redhat.com/show_bug.cgi?id=1408810

? I tested this on aarch64 and it seems to work as expected, but
then again without documentation it's hard to tell.

More specifically, I created an aarch64/virt guest with several
pcie-root-ports and it couldn't boot much further than GRUB when
the number of ports exceeded 24, but as soon as I added the
io-reserve=0 option I could get the same guest to boot fine with
32 or even 64 pcie-root-ports. I'm attaching the boot log for
reference: there are a bunch of messages about the topic but they
would appear to be benign.

Hotplug seemed to work too: I tried with a single virtio-net-pci
and I could access the network. My understanding is that PCIe
devices are required to work without IO space, so this behavior
matches my expectations.

I wonder, though, what would happen if I had something like

  -device pcie-root-port,io-reserve=0,id=pci.1
  -device pcie-pci-bridge,bus=pci.1

Would I be able to hotplug conventional PCI devices into the
pcie-pci-bridge, or would the lack of IO space reservation for
the pcie-root-port cause issues with that?

-- 
Andrea Bolognani / Red Hat / Virtualization

[-- Attachment #2: boot.log --]
[-- Type: text/x-log, Size: 120700 bytes --]

Jun 07 12:26:01 localhost.localdomain kernel: Booting Linux on physical CPU 0x0000000000 [0x431f0a11]
Jun 07 12:26:01 localhost.localdomain kernel: Linux version 4.18.0-42.el8.aarch64 (mockbuild@arm64-026.build.eng.bos.redhat.com) (gcc version 8.2.1 20180905 (Red Hat 8.2.1-3) (GCC)) #1 SMP Wed Nov 21 10:29:43 UTC 2018
Jun 07 12:26:01 localhost.localdomain kernel: efi: Getting EFI parameters from FDT:
Jun 07 12:26:01 localhost.localdomain kernel: efi: EFI v2.70 by EDK II
Jun 07 12:26:01 localhost.localdomain kernel: efi:  SMBIOS 3.0=0xbf670000  MEMATTR=0xbe4d1018  ACPI 2.0=0xbc030000  RNG=0xbf77cf98  MEMRESERVE=0xbc2e3e18 
Jun 07 12:26:01 localhost.localdomain kernel: efi: seeding entropy pool
Jun 07 12:26:01 localhost.localdomain kernel: Using crashkernel=auto, the size chosen is a best effort estimation.
Jun 07 12:26:01 localhost.localdomain kernel: crashkernel reserved: 0x000000009bc00000 - 0x00000000bbc00000 (512 MB)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: Early table checksum verification disabled
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: RSDP 0x00000000BC030000 000024 (v02 BOCHS )
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: XSDT 0x00000000BC020000 00005C (v01 BOCHS  BXPCFACP 00000001      01000013)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: FACP 0x00000000BBDE0000 00010C (v05 BOCHS  BXPCFACP 00000001 BXPC 00000001)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: DSDT 0x00000000BBDF0000 004882 (v02 BOCHS  BXPCDSDT 00000001 BXPC 00000001)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: APIC 0x00000000BBDD0000 000198 (v03 BOCHS  BXPCAPIC 00000001 BXPC 00000001)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: GTDT 0x00000000BBDC0000 000060 (v02 BOCHS  BXPCGTDT 00000001 BXPC 00000001)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: MCFG 0x00000000BBDB0000 00003C (v01 BOCHS  BXPCMCFG 00000001 BXPC 00000001)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: SPCR 0x00000000BBDA0000 000050 (v02 BOCHS  BXPCSPCR 00000001 BXPC 00000001)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: IORT 0x00000000BBD90000 00007C (v00 BOCHS  BXPCIORT 00000001 BXPC 00000001)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: BGRT 0x00000000BBE10000 000038 (v01 INTEL  EDK2     00000002      01000013)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: SPCR: console: pl011,mmio,0x9000000,9600
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: NUMA: Failed to initialise from firmware
Jun 07 12:26:01 localhost.localdomain kernel: NUMA: Faking a node at [mem 0x0000000000000000-0x00000000bfffffff]
Jun 07 12:26:01 localhost.localdomain kernel: NUMA: NODE_DATA [mem 0xbfffe600-0xbfffffff]
Jun 07 12:26:01 localhost.localdomain kernel: Zone ranges:
Jun 07 12:26:01 localhost.localdomain kernel:   DMA32    [mem 0x0000000040000000-0x00000000bfffffff]
Jun 07 12:26:01 localhost.localdomain kernel:   Normal   empty
Jun 07 12:26:01 localhost.localdomain kernel: Movable zone start for each node
Jun 07 12:26:01 localhost.localdomain kernel: Early memory node ranges
Jun 07 12:26:01 localhost.localdomain kernel:   node   0: [mem 0x0000000040000000-0x00000000bbe1ffff]
Jun 07 12:26:01 localhost.localdomain kernel:   node   0: [mem 0x00000000bbe20000-0x00000000bbffffff]
Jun 07 12:26:01 localhost.localdomain kernel:   node   0: [mem 0x00000000bc000000-0x00000000bc03ffff]
Jun 07 12:26:01 localhost.localdomain kernel:   node   0: [mem 0x00000000bc040000-0x00000000bc2dffff]
Jun 07 12:26:01 localhost.localdomain kernel:   node   0: [mem 0x00000000bc2e0000-0x00000000bf5bffff]
Jun 07 12:26:01 localhost.localdomain kernel:   node   0: [mem 0x00000000bf5c0000-0x00000000bf64ffff]
Jun 07 12:26:01 localhost.localdomain kernel:   node   0: [mem 0x00000000bf650000-0x00000000bf65ffff]
Jun 07 12:26:01 localhost.localdomain kernel:   node   0: [mem 0x00000000bf660000-0x00000000bf77ffff]
Jun 07 12:26:01 localhost.localdomain kernel:   node   0: [mem 0x00000000bf780000-0x00000000bfffffff]
Jun 07 12:26:01 localhost.localdomain kernel: Zeroed struct page in unavailable ranges: 99 pages
Jun 07 12:26:01 localhost.localdomain kernel: Initmem setup node 0 [mem 0x0000000040000000-0x00000000bfffffff]
Jun 07 12:26:01 localhost.localdomain kernel: On node 0 totalpages: 32768
Jun 07 12:26:01 localhost.localdomain kernel:   DMA32 zone: 32 pages used for memmap
Jun 07 12:26:01 localhost.localdomain kernel:   DMA32 zone: 0 pages reserved
Jun 07 12:26:01 localhost.localdomain kernel:   DMA32 zone: 32768 pages, LIFO batch:1
Jun 07 12:26:01 localhost.localdomain kernel: psci: probing for conduit method from ACPI.
Jun 07 12:26:01 localhost.localdomain kernel: psci: PSCIv1.0 detected in firmware.
Jun 07 12:26:01 localhost.localdomain kernel: psci: Using standard PSCI v0.2 function IDs
Jun 07 12:26:01 localhost.localdomain kernel: psci: Trusted OS migration not required
Jun 07 12:26:01 localhost.localdomain kernel: psci: SMC Calling Convention v1.1
Jun 07 12:26:01 localhost.localdomain kernel: random: get_random_bytes called from start_kernel+0x9c/0x4cc with crng_init=0
Jun 07 12:26:01 localhost.localdomain kernel: percpu: Embedded 3 pages/cpu @(____ptrval____) s123672 r8192 d64744 u196608
Jun 07 12:26:01 localhost.localdomain kernel: pcpu-alloc: s123672 r8192 d64744 u196608 alloc=3*65536
Jun 07 12:26:01 localhost.localdomain kernel: pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
Jun 07 12:26:01 localhost.localdomain kernel: Detected VIPT I-cache on CPU0
Jun 07 12:26:01 localhost.localdomain kernel: CPU features: enabling workaround for Cavium erratum 27456
Jun 07 12:26:01 localhost.localdomain kernel: CPU features: enabling workaround for Cavium erratum 30115
Jun 07 12:26:01 localhost.localdomain kernel: CPU features: detected: Software prefetching using PRFM
Jun 07 12:26:01 localhost.localdomain kernel: CPU features: kernel page table isolation forced OFF by ARM64_WORKAROUND_CAVIUM_27456
Jun 07 12:26:01 localhost.localdomain kernel: Built 1 zonelists, mobility grouping off.  Total pages: 32736
Jun 07 12:26:01 localhost.localdomain kernel: Policy zone: DMA32
Jun 07 12:26:01 localhost.localdomain kernel: Kernel command line: BOOT_IMAGE=(hd0,gpt2)/vmlinuz-4.18.0-42.el8.aarch64 root=/dev/mapper/rhel-root ro crashkernel=auto rd.lvm.lv=rhel/root rd.lvm.lv=rhel/swap
Jun 07 12:26:01 localhost.localdomain kernel: Memory: 1506240K/2097152K available (8764K kernel code, 1774K rwdata, 5632K rodata, 4224K init, 9192K bss, 590912K reserved, 0K cma-reserved)
Jun 07 12:26:01 localhost.localdomain kernel: SLUB: HWalign=128, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Jun 07 12:26:01 localhost.localdomain kernel: ftrace: allocating 31703 entries in 8 pages
Jun 07 12:26:01 localhost.localdomain kernel: rcu: Hierarchical RCU implementation.
Jun 07 12:26:01 localhost.localdomain kernel: rcu:         RCU restricting CPUs from NR_CPUS=4096 to nr_cpu_ids=4.
Jun 07 12:26:01 localhost.localdomain kernel: rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
Jun 07 12:26:01 localhost.localdomain kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
Jun 07 12:26:01 localhost.localdomain kernel: NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
Jun 07 12:26:01 localhost.localdomain kernel: GICv3: Distributor has no Range Selector support
Jun 07 12:26:01 localhost.localdomain kernel: GICv3: no VLPI support, no direct LPI support
Jun 07 12:26:01 localhost.localdomain kernel: GICv3: CPU0: found redistributor 0 region 0:0x00000000080a0000
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: SRAT not present
Jun 07 12:26:01 localhost.localdomain kernel: ITS [mem 0x08080000-0x0809ffff]
Jun 07 12:26:01 localhost.localdomain kernel: ITS@0x0000000008080000: allocated 8192 Devices @602a0000 (indirect, esz 8, psz 64K, shr 1)
Jun 07 12:26:01 localhost.localdomain kernel: ITS@0x0000000008080000: allocated 8192 Interrupt Collections @602b0000 (flat, esz 8, psz 64K, shr 1)
Jun 07 12:26:01 localhost.localdomain kernel: GICv3: using LPI property table @0x00000000602c0000
Jun 07 12:26:01 localhost.localdomain kernel: GICv3: CPU0: using allocated LPI pending table @0x00000000602d0000
Jun 07 12:26:01 localhost.localdomain kernel: rcu:         Offload RCU callbacks from CPUs: (none).
Jun 07 12:26:01 localhost.localdomain kernel: arch_timer: cp15 timer(s) running at 100.00MHz (virt).
Jun 07 12:26:01 localhost.localdomain kernel: clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x171024e7e0, max_idle_ns: 440795205315 ns
Jun 07 12:26:01 localhost.localdomain kernel: sched_clock: 56 bits at 100MHz, resolution 10ns, wraps every 4398046511100ns
Jun 07 12:26:01 localhost.localdomain kernel: Console: colour dummy device 80x25
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: Core revision 20180531
Jun 07 12:26:01 localhost.localdomain kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 200.00 BogoMIPS (lpj=1000000)
Jun 07 12:26:01 localhost.localdomain kernel: pid_max: default: 32768 minimum: 301
Jun 07 12:26:01 localhost.localdomain kernel: Security Framework initialized
Jun 07 12:26:01 localhost.localdomain kernel: Yama: becoming mindful.
Jun 07 12:26:01 localhost.localdomain kernel: SELinux:  Initializing.
Jun 07 12:26:01 localhost.localdomain kernel: SELinux:  Starting in permissive mode
Jun 07 12:26:01 localhost.localdomain kernel: Dentry cache hash table entries: 262144 (order: 5, 2097152 bytes)
Jun 07 12:26:01 localhost.localdomain kernel: Inode-cache hash table entries: 131072 (order: 4, 1048576 bytes)
Jun 07 12:26:01 localhost.localdomain kernel: Mount-cache hash table entries: 8192 (order: 0, 65536 bytes)
Jun 07 12:26:01 localhost.localdomain kernel: Mountpoint-cache hash table entries: 8192 (order: 0, 65536 bytes)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI PPTT: No PPTT table found, cpu topology may be inaccurate
Jun 07 12:26:01 localhost.localdomain kernel: ASID allocator initialised with 32768 entries
Jun 07 12:26:01 localhost.localdomain kernel: rcu: Hierarchical SRCU implementation.
Jun 07 12:26:01 localhost.localdomain kernel: Platform MSI: ITS@0x8080000 domain created
Jun 07 12:26:01 localhost.localdomain kernel: PCI/MSI: ITS@0x8080000 domain created
Jun 07 12:26:01 localhost.localdomain kernel: Remapping and enabling EFI services.
Jun 07 12:26:01 localhost.localdomain kernel: smp: Bringing up secondary CPUs ...
Jun 07 12:26:01 localhost.localdomain kernel: Detected VIPT I-cache on CPU1
Jun 07 12:26:01 localhost.localdomain kernel: GICv3: CPU1: found redistributor 1 region 0:0x00000000080c0000
Jun 07 12:26:01 localhost.localdomain kernel: GICv3: CPU1: using allocated LPI pending table @0x00000000602e0000
Jun 07 12:26:01 localhost.localdomain kernel: CPU1: Booted secondary processor 0x0000000001 [0x431f0a11]
Jun 07 12:26:01 localhost.localdomain kernel: Detected VIPT I-cache on CPU2
Jun 07 12:26:01 localhost.localdomain kernel: GICv3: CPU2: found redistributor 2 region 0:0x00000000080e0000
Jun 07 12:26:01 localhost.localdomain kernel: GICv3: CPU2: using allocated LPI pending table @0x00000000602f0000
Jun 07 12:26:01 localhost.localdomain kernel: CPU2: Booted secondary processor 0x0000000002 [0x431f0a11]
Jun 07 12:26:01 localhost.localdomain kernel: Detected VIPT I-cache on CPU3
Jun 07 12:26:01 localhost.localdomain kernel: GICv3: CPU3: found redistributor 3 region 0:0x0000000008100000
Jun 07 12:26:01 localhost.localdomain kernel: GICv3: CPU3: using allocated LPI pending table @0x0000000060300000
Jun 07 12:26:01 localhost.localdomain kernel: CPU3: Booted secondary processor 0x0000000003 [0x431f0a11]
Jun 07 12:26:01 localhost.localdomain kernel: smp: Brought up 1 node, 4 CPUs
Jun 07 12:26:01 localhost.localdomain kernel: SMP: Total of 4 processors activated.
Jun 07 12:26:01 localhost.localdomain kernel: CPU features: detected: GIC system register CPU interface
Jun 07 12:26:01 localhost.localdomain kernel: CPU: All CPU(s) started at EL1
Jun 07 12:26:01 localhost.localdomain kernel: alternatives: patching kernel code
Jun 07 12:26:01 localhost.localdomain kernel: devtmpfs: initialized
Jun 07 12:26:01 localhost.localdomain kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
Jun 07 12:26:01 localhost.localdomain kernel: futex hash table entries: 1024 (order: 0, 65536 bytes)
Jun 07 12:26:01 localhost.localdomain kernel: pinctrl core: initialized pinctrl subsystem
Jun 07 12:26:01 localhost.localdomain kernel: SMBIOS 3.0.0 present.
Jun 07 12:26:01 localhost.localdomain kernel: DMI: QEMU KVM Virtual Machine, BIOS 0.0.0 02/06/2015
Jun 07 12:26:01 localhost.localdomain kernel: NET: Registered protocol family 16
Jun 07 12:26:01 localhost.localdomain kernel: audit: initializing netlink subsys (disabled)
Jun 07 12:26:01 localhost.localdomain kernel: audit: type=2000 audit(0.030:1): state=initialized audit_enabled=0 res=1
Jun 07 12:26:01 localhost.localdomain kernel: cpuidle: using governor menu
Jun 07 12:26:01 localhost.localdomain kernel: vdso: 2 pages (1 code @ (____ptrval____), 1 data @ (____ptrval____))
Jun 07 12:26:01 localhost.localdomain kernel: hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
Jun 07 12:26:01 localhost.localdomain kernel: DMA: preallocated 256 KiB pool for atomic allocations
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: bus type PCI registered
Jun 07 12:26:01 localhost.localdomain kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun 07 12:26:01 localhost.localdomain kernel: Serial: AMBA PL011 UART driver
Jun 07 12:26:01 localhost.localdomain kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Jun 07 12:26:01 localhost.localdomain kernel: HugeTLB registered 512 MiB page size, pre-allocated 0 pages
Jun 07 12:26:01 localhost.localdomain kernel: cryptd: max_cpu_qlen set to 1000
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: Added _OSI(Module Device)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: Added _OSI(Processor Device)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: Added _OSI(Linux-Dell-Video)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: 1 ACPI AML tables successfully acquired and loaded
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: Interpreter enabled
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: Using GIC for interrupt routing
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: MCFG table detected, 1 entries
Jun 07 12:26:01 localhost.localdomain kernel: ARMH0011:00: ttyAMA0 at MMIO 0x9000000 (irq = 4, base_baud = 0) is a SBSA
Jun 07 12:26:01 localhost.localdomain kernel: console [ttyAMA0] enabled
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Jun 07 12:26:01 localhost.localdomain kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Jun 07 12:26:01 localhost.localdomain kernel: acpi PNP0A08:00: _OSC: platform does not support [LTR]
Jun 07 12:26:01 localhost.localdomain kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
Jun 07 12:26:01 localhost.localdomain kernel: acpi PNP0A08:00: ECAM area [mem 0x4010000000-0x401fffffff] reserved by PNP0C02:00
Jun 07 12:26:01 localhost.localdomain kernel: acpi PNP0A08:00: ECAM at [mem 0x4010000000-0x401fffffff] for [bus 00-ff]
Jun 07 12:26:01 localhost.localdomain kernel: Remapped I/O 0x000000003eff0000 to [io  0x0000-0xffff window]
Jun 07 12:26:01 localhost.localdomain kernel: PCI host bridge to bus 0000:00
Jun 07 12:26:01 localhost.localdomain kernel: pci_bus 0000:00: root bus resource [mem 0x10000000-0x3efeffff window]
Jun 07 12:26:01 localhost.localdomain kernel: pci_bus 0000:00: root bus resource [io  0x0000-0xffff window]
Jun 07 12:26:01 localhost.localdomain kernel: pci_bus 0000:00: root bus resource [mem 0x8000000000-0xffffffffff window]
Jun 07 12:26:01 localhost.localdomain kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:00.0: [1b36:0008] type 00 class 0x060000
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.0: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.0: reg 0x10: [mem 0x1051f000-0x1051ffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.1: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.1: reg 0x10: [mem 0x1051e000-0x1051efff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.2: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.2: reg 0x10: [mem 0x1051d000-0x1051dfff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.3: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.3: reg 0x10: [mem 0x1051c000-0x1051cfff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.4: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.4: reg 0x10: [mem 0x1051b000-0x1051bfff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.5: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.5: reg 0x10: [mem 0x1051a000-0x1051afff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.6: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.6: reg 0x10: [mem 0x10519000-0x10519fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.7: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.7: reg 0x10: [mem 0x10518000-0x10518fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.0: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.0: reg 0x10: [mem 0x10517000-0x10517fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.1: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.1: reg 0x10: [mem 0x10516000-0x10516fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.2: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.2: reg 0x10: [mem 0x10515000-0x10515fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.3: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.3: reg 0x10: [mem 0x10514000-0x10514fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.4: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.4: reg 0x10: [mem 0x10513000-0x10513fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.5: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.5: reg 0x10: [mem 0x10512000-0x10512fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.6: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.6: reg 0x10: [mem 0x10511000-0x10511fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.7: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.7: reg 0x10: [mem 0x10510000-0x10510fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.0: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.0: reg 0x10: [mem 0x1050f000-0x1050ffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.1: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.1: reg 0x10: [mem 0x1050e000-0x1050efff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.2: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.2: reg 0x10: [mem 0x1050d000-0x1050dfff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.3: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.3: reg 0x10: [mem 0x1050c000-0x1050cfff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.4: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.4: reg 0x10: [mem 0x1050b000-0x1050bfff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.5: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.5: reg 0x10: [mem 0x1050a000-0x1050afff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.6: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.6: reg 0x10: [mem 0x10509000-0x10509fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.7: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.7: reg 0x10: [mem 0x10508000-0x10508fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.0: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.0: reg 0x10: [mem 0x10507000-0x10507fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.1: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.1: reg 0x10: [mem 0x10506000-0x10506fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.2: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.2: reg 0x10: [mem 0x10505000-0x10505fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.3: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.3: reg 0x10: [mem 0x10504000-0x10504fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.4: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.4: reg 0x10: [mem 0x10503000-0x10503fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.5: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.5: reg 0x10: [mem 0x10502000-0x10502fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.6: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.6: reg 0x10: [mem 0x10501000-0x10501fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.7: [1b36:000c] type 01 class 0x060400
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.7: reg 0x10: [mem 0x10500000-0x10500fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:01:00.0: [1af4:1041] type 00 class 0x020000
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:01:00.0: reg 0x14: [mem 0x10400000-0x10400fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:01:00.0: reg 0x20: [mem 0x8000000000-0x8000003fff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:01:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x1 link at 0000:00:01.0 (capable of 7.876 Gb/s with 8 GT/s x1 link)
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:02:00.0: [1b36:000d] type 00 class 0x0c0330
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:02:00.0: reg 0x10: [mem 0x10300000-0x10303fff 64bit]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:02:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x1 link at 0000:00:01.1 (capable of 7.876 Gb/s with 8 GT/s x1 link)
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:03:00.0: [1af4:1048] type 00 class 0x010000
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:03:00.0: reg 0x14: [mem 0x10200000-0x10200fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:03:00.0: reg 0x20: [mem 0x8000100000-0x8000103fff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:03:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x1 link at 0000:00:01.2 (capable of 7.876 Gb/s with 8 GT/s x1 link)
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:04:00.0: [1af4:1043] type 00 class 0x078000
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:04:00.0: reg 0x14: [mem 0x10100000-0x10100fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:04:00.0: reg 0x20: [mem 0x8000200000-0x8000203fff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:04:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x1 link at 0000:00:01.3 (capable of 7.876 Gb/s with 8 GT/s x1 link)
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:05:00.0: [1af4:1044] type 00 class 0x00ff00
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:05:00.0: reg 0x20: [mem 0x8000300000-0x8000303fff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:05:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x1 link at 0000:00:01.4 (capable of 7.876 Gb/s with 8 GT/s x1 link)
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:06:00.0: [1af4:1050] type 00 class 0x038000
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:06:00.0: reg 0x20: [mem 0x8000400000-0x8000403fff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:06:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x1 link at 0000:00:01.5 (capable of 7.876 Gb/s with 8 GT/s x1 link)
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:07:00.0: [1af4:1042] type 00 class 0x010000
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:07:00.0: reg 0x14: [mem 0x10000000-0x10000fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:07:00.0: reg 0x20: [mem 0x8000500000-0x8000503fff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:07:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x1 link at 0000:00:01.6 (capable of 7.876 Gb/s with 8 GT/s x1 link)
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.0: BAR 14: assigned [mem 0x10000000-0x101fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.0: BAR 15: assigned [mem 0x8000000000-0x80001fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.1: BAR 14: assigned [mem 0x10200000-0x103fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.1: BAR 15: assigned [mem 0x8000200000-0x80003fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.2: BAR 14: assigned [mem 0x10400000-0x105fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.2: BAR 15: assigned [mem 0x8000400000-0x80005fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.3: BAR 14: assigned [mem 0x10600000-0x107fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.3: BAR 15: assigned [mem 0x8000600000-0x80007fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.4: BAR 14: assigned [mem 0x10800000-0x109fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.4: BAR 15: assigned [mem 0x8000800000-0x80009fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.5: BAR 14: assigned [mem 0x10a00000-0x10bfffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.5: BAR 15: assigned [mem 0x8000a00000-0x8000bfffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.6: BAR 14: assigned [mem 0x10c00000-0x10dfffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.6: BAR 15: assigned [mem 0x8000c00000-0x8000dfffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.7: BAR 14: assigned [mem 0x10e00000-0x10ffffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.7: BAR 15: assigned [mem 0x8000e00000-0x8000ffffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.0: BAR 14: assigned [mem 0x11000000-0x111fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.0: BAR 15: assigned [mem 0x8001000000-0x80011fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.1: BAR 14: assigned [mem 0x11200000-0x113fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.1: BAR 15: assigned [mem 0x8001200000-0x80013fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.2: BAR 14: assigned [mem 0x11400000-0x115fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.2: BAR 15: assigned [mem 0x8001400000-0x80015fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.3: BAR 14: assigned [mem 0x11600000-0x117fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.3: BAR 15: assigned [mem 0x8001600000-0x80017fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.4: BAR 14: assigned [mem 0x11800000-0x119fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.4: BAR 15: assigned [mem 0x8001800000-0x80019fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.5: BAR 14: assigned [mem 0x11a00000-0x11bfffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.5: BAR 15: assigned [mem 0x8001a00000-0x8001bfffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.6: BAR 14: assigned [mem 0x11c00000-0x11dfffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.6: BAR 15: assigned [mem 0x8001c00000-0x8001dfffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.7: BAR 14: assigned [mem 0x11e00000-0x11ffffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.7: BAR 15: assigned [mem 0x8001e00000-0x8001ffffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.0: BAR 14: assigned [mem 0x12000000-0x121fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.0: BAR 15: assigned [mem 0x8002000000-0x80021fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.1: BAR 14: assigned [mem 0x12200000-0x123fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.1: BAR 15: assigned [mem 0x8002200000-0x80023fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.2: BAR 14: assigned [mem 0x12400000-0x125fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.2: BAR 15: assigned [mem 0x8002400000-0x80025fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.3: BAR 14: assigned [mem 0x12600000-0x127fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.3: BAR 15: assigned [mem 0x8002600000-0x80027fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.4: BAR 14: assigned [mem 0x12800000-0x129fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.4: BAR 15: assigned [mem 0x8002800000-0x80029fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.5: BAR 14: assigned [mem 0x12a00000-0x12bfffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.5: BAR 15: assigned [mem 0x8002a00000-0x8002bfffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.6: BAR 14: assigned [mem 0x12c00000-0x12dfffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.6: BAR 15: assigned [mem 0x8002c00000-0x8002dfffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.7: BAR 14: assigned [mem 0x12e00000-0x12ffffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.7: BAR 15: assigned [mem 0x8002e00000-0x8002ffffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.0: BAR 14: assigned [mem 0x13000000-0x131fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.0: BAR 15: assigned [mem 0x8003000000-0x80031fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.1: BAR 14: assigned [mem 0x13200000-0x133fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.1: BAR 15: assigned [mem 0x8003200000-0x80033fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.2: BAR 14: assigned [mem 0x13400000-0x135fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.2: BAR 15: assigned [mem 0x8003400000-0x80035fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.3: BAR 14: assigned [mem 0x13600000-0x137fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.3: BAR 15: assigned [mem 0x8003600000-0x80037fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.4: BAR 14: assigned [mem 0x13800000-0x139fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.4: BAR 15: assigned [mem 0x8003800000-0x80039fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.5: BAR 14: assigned [mem 0x13a00000-0x13bfffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.5: BAR 15: assigned [mem 0x8003a00000-0x8003bfffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.6: BAR 14: assigned [mem 0x13c00000-0x13dfffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.6: BAR 15: assigned [mem 0x8003c00000-0x8003dfffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.7: BAR 14: assigned [mem 0x13e00000-0x13ffffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.7: BAR 15: assigned [mem 0x8003e00000-0x8003ffffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.0: BAR 0: assigned [mem 0x14000000-0x14000fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.0: BAR 13: assigned [io  0x1000-0x1fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.1: BAR 0: assigned [mem 0x14001000-0x14001fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.1: BAR 13: assigned [io  0x2000-0x2fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.2: BAR 0: assigned [mem 0x14002000-0x14002fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.2: BAR 13: assigned [io  0x3000-0x3fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.3: BAR 0: assigned [mem 0x14003000-0x14003fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.3: BAR 13: assigned [io  0x4000-0x4fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.4: BAR 0: assigned [mem 0x14004000-0x14004fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.4: BAR 13: assigned [io  0x5000-0x5fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.5: BAR 0: assigned [mem 0x14005000-0x14005fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.5: BAR 13: assigned [io  0x6000-0x6fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.6: BAR 0: assigned [mem 0x14006000-0x14006fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.6: BAR 13: assigned [io  0x7000-0x7fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.7: BAR 0: assigned [mem 0x14007000-0x14007fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.7: BAR 13: assigned [io  0x8000-0x8fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.0: BAR 0: assigned [mem 0x14008000-0x14008fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.0: BAR 13: assigned [io  0x9000-0x9fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.1: BAR 0: assigned [mem 0x14009000-0x14009fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.1: BAR 13: assigned [io  0xa000-0xafff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.2: BAR 0: assigned [mem 0x1400a000-0x1400afff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.2: BAR 13: assigned [io  0xb000-0xbfff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.3: BAR 0: assigned [mem 0x1400b000-0x1400bfff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.3: BAR 13: assigned [io  0xc000-0xcfff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.4: BAR 0: assigned [mem 0x1400c000-0x1400cfff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.4: BAR 13: assigned [io  0xd000-0xdfff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.5: BAR 0: assigned [mem 0x1400d000-0x1400dfff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.5: BAR 13: assigned [io  0xe000-0xefff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.6: BAR 0: assigned [mem 0x1400e000-0x1400efff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.6: BAR 13: assigned [io  0xf000-0xffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.7: BAR 0: assigned [mem 0x1400f000-0x1400ffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.7: BAR 13: no space for [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.7: BAR 13: failed to assign [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.0: BAR 0: assigned [mem 0x14010000-0x14010fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.0: BAR 13: no space for [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.0: BAR 13: failed to assign [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.1: BAR 0: assigned [mem 0x14011000-0x14011fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.1: BAR 13: no space for [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.1: BAR 13: failed to assign [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.2: BAR 0: assigned [mem 0x14012000-0x14012fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.2: BAR 13: no space for [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.2: BAR 13: failed to assign [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.3: BAR 0: assigned [mem 0x14013000-0x14013fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.3: BAR 13: no space for [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.3: BAR 13: failed to assign [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.4: BAR 0: assigned [mem 0x14014000-0x14014fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.4: BAR 13: no space for [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.4: BAR 13: failed to assign [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.5: BAR 0: assigned [mem 0x14015000-0x14015fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.5: BAR 13: no space for [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.5: BAR 13: failed to assign [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.6: BAR 0: assigned [mem 0x14016000-0x14016fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.6: BAR 13: no space for [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.6: BAR 13: failed to assign [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.7: BAR 0: assigned [mem 0x14017000-0x14017fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.7: BAR 13: no space for [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.7: BAR 13: failed to assign [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.0: BAR 0: assigned [mem 0x14018000-0x14018fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.0: BAR 13: no space for [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.0: BAR 13: failed to assign [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.1: BAR 0: assigned [mem 0x14019000-0x14019fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.1: BAR 13: no space for [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.1: BAR 13: failed to assign [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.2: BAR 0: assigned [mem 0x1401a000-0x1401afff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.2: BAR 13: no space for [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.2: BAR 13: failed to assign [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.3: BAR 0: assigned [mem 0x1401b000-0x1401bfff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.3: BAR 13: no space for [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.3: BAR 13: failed to assign [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.4: BAR 0: assigned [mem 0x1401c000-0x1401cfff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.4: BAR 13: no space for [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.4: BAR 13: failed to assign [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.5: BAR 0: assigned [mem 0x1401d000-0x1401dfff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.5: BAR 13: no space for [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.5: BAR 13: failed to assign [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.6: BAR 0: assigned [mem 0x1401e000-0x1401efff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.6: BAR 13: no space for [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.6: BAR 13: failed to assign [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.7: BAR 0: assigned [mem 0x1401f000-0x1401ffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.7: BAR 13: no space for [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.7: BAR 13: failed to assign [io  size 0x1000]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:01:00.0: BAR 4: assigned [mem 0x8000000000-0x8000003fff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:01:00.0: BAR 1: assigned [mem 0x10000000-0x10000fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.0:   bridge window [io  0x1000-0x1fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.0:   bridge window [mem 0x10000000-0x101fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.0:   bridge window [mem 0x8000000000-0x80001fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:02:00.0: BAR 0: assigned [mem 0x10200000-0x10203fff 64bit]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.1: PCI bridge to [bus 02]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.1:   bridge window [io  0x2000-0x2fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.1:   bridge window [mem 0x10200000-0x103fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.1:   bridge window [mem 0x8000200000-0x80003fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:03:00.0: BAR 4: assigned [mem 0x8000400000-0x8000403fff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:03:00.0: BAR 1: assigned [mem 0x10400000-0x10400fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.2: PCI bridge to [bus 03]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.2:   bridge window [io  0x3000-0x3fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.2:   bridge window [mem 0x10400000-0x105fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.2:   bridge window [mem 0x8000400000-0x80005fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:04:00.0: BAR 4: assigned [mem 0x8000600000-0x8000603fff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:04:00.0: BAR 1: assigned [mem 0x10600000-0x10600fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.3: PCI bridge to [bus 04]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.3:   bridge window [io  0x4000-0x4fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.3:   bridge window [mem 0x10600000-0x107fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.3:   bridge window [mem 0x8000600000-0x80007fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:05:00.0: BAR 4: assigned [mem 0x8000800000-0x8000803fff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.4: PCI bridge to [bus 05]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.4:   bridge window [io  0x5000-0x5fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.4:   bridge window [mem 0x10800000-0x109fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.4:   bridge window [mem 0x8000800000-0x80009fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:06:00.0: BAR 4: assigned [mem 0x8000a00000-0x8000a03fff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.5: PCI bridge to [bus 06]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.5:   bridge window [io  0x6000-0x6fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.5:   bridge window [mem 0x10a00000-0x10bfffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.5:   bridge window [mem 0x8000a00000-0x8000bfffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:07:00.0: BAR 4: assigned [mem 0x8000c00000-0x8000c03fff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:07:00.0: BAR 1: assigned [mem 0x10c00000-0x10c00fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.6: PCI bridge to [bus 07]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.6:   bridge window [io  0x7000-0x7fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.6:   bridge window [mem 0x10c00000-0x10dfffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.6:   bridge window [mem 0x8000c00000-0x8000dfffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.7: PCI bridge to [bus 08]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.7:   bridge window [io  0x8000-0x8fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.7:   bridge window [mem 0x10e00000-0x10ffffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.7:   bridge window [mem 0x8000e00000-0x8000ffffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.0: PCI bridge to [bus 09]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.0:   bridge window [io  0x9000-0x9fff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.0:   bridge window [mem 0x11000000-0x111fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.0:   bridge window [mem 0x8001000000-0x80011fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.1: PCI bridge to [bus 0a]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.1:   bridge window [io  0xa000-0xafff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.1:   bridge window [mem 0x11200000-0x113fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.1:   bridge window [mem 0x8001200000-0x80013fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.2: PCI bridge to [bus 0b]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.2:   bridge window [io  0xb000-0xbfff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.2:   bridge window [mem 0x11400000-0x115fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.2:   bridge window [mem 0x8001400000-0x80015fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.3: PCI bridge to [bus 0c]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.3:   bridge window [io  0xc000-0xcfff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.3:   bridge window [mem 0x11600000-0x117fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.3:   bridge window [mem 0x8001600000-0x80017fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.4: PCI bridge to [bus 0d]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.4:   bridge window [io  0xd000-0xdfff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.4:   bridge window [mem 0x11800000-0x119fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.4:   bridge window [mem 0x8001800000-0x80019fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.5: PCI bridge to [bus 0e]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.5:   bridge window [io  0xe000-0xefff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.5:   bridge window [mem 0x11a00000-0x11bfffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.5:   bridge window [mem 0x8001a00000-0x8001bfffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.6: PCI bridge to [bus 0f]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.6:   bridge window [io  0xf000-0xffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.6:   bridge window [mem 0x11c00000-0x11dfffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.6:   bridge window [mem 0x8001c00000-0x8001dfffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.7: PCI bridge to [bus 10]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.7:   bridge window [mem 0x11e00000-0x11ffffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:02.7:   bridge window [mem 0x8001e00000-0x8001ffffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.0: PCI bridge to [bus 11]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.0:   bridge window [mem 0x12000000-0x121fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.0:   bridge window [mem 0x8002000000-0x80021fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.1: PCI bridge to [bus 12]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.1:   bridge window [mem 0x12200000-0x123fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.1:   bridge window [mem 0x8002200000-0x80023fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.2: PCI bridge to [bus 13]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.2:   bridge window [mem 0x12400000-0x125fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.2:   bridge window [mem 0x8002400000-0x80025fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.3: PCI bridge to [bus 14]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.3:   bridge window [mem 0x12600000-0x127fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.3:   bridge window [mem 0x8002600000-0x80027fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.4: PCI bridge to [bus 15]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.4:   bridge window [mem 0x12800000-0x129fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.4:   bridge window [mem 0x8002800000-0x80029fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.5: PCI bridge to [bus 16]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.5:   bridge window [mem 0x12a00000-0x12bfffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.5:   bridge window [mem 0x8002a00000-0x8002bfffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.6: PCI bridge to [bus 17]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.6:   bridge window [mem 0x12c00000-0x12dfffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.6:   bridge window [mem 0x8002c00000-0x8002dfffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.7: PCI bridge to [bus 18]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.7:   bridge window [mem 0x12e00000-0x12ffffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:03.7:   bridge window [mem 0x8002e00000-0x8002ffffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.0: PCI bridge to [bus 19]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.0:   bridge window [mem 0x13000000-0x131fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.0:   bridge window [mem 0x8003000000-0x80031fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.1: PCI bridge to [bus 1a]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.1:   bridge window [mem 0x13200000-0x133fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.1:   bridge window [mem 0x8003200000-0x80033fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.2: PCI bridge to [bus 1b]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.2:   bridge window [mem 0x13400000-0x135fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.2:   bridge window [mem 0x8003400000-0x80035fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.3: PCI bridge to [bus 1c]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.3:   bridge window [mem 0x13600000-0x137fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.3:   bridge window [mem 0x8003600000-0x80037fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.4: PCI bridge to [bus 1d]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.4:   bridge window [mem 0x13800000-0x139fffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.4:   bridge window [mem 0x8003800000-0x80039fffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.5: PCI bridge to [bus 1e]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.5:   bridge window [mem 0x13a00000-0x13bfffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.5:   bridge window [mem 0x8003a00000-0x8003bfffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.6: PCI bridge to [bus 1f]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.6:   bridge window [mem 0x13c00000-0x13dfffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.6:   bridge window [mem 0x8003c00000-0x8003dfffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.7: PCI bridge to [bus 20]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.7:   bridge window [mem 0x13e00000-0x13ffffff]
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:04.7:   bridge window [mem 0x8003e00000-0x8003ffffff 64bit pref]
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: PCI Interrupt Link [GSI0] (IRQs *35)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: PCI Interrupt Link [GSI1] (IRQs *36)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: PCI Interrupt Link [GSI2] (IRQs *37)
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: PCI Interrupt Link [GSI3] (IRQs *38)
Jun 07 12:26:01 localhost.localdomain kernel: vgaarb: loaded
Jun 07 12:26:01 localhost.localdomain kernel: SCSI subsystem initialized
Jun 07 12:26:01 localhost.localdomain kernel: libata version 3.00 loaded.
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: bus type USB registered
Jun 07 12:26:01 localhost.localdomain kernel: usbcore: registered new interface driver usbfs
Jun 07 12:26:01 localhost.localdomain kernel: usbcore: registered new interface driver hub
Jun 07 12:26:01 localhost.localdomain kernel: usbcore: registered new device driver usb
Jun 07 12:26:01 localhost.localdomain kernel: pps_core: LinuxPPS API ver. 1 registered
Jun 07 12:26:01 localhost.localdomain kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jun 07 12:26:01 localhost.localdomain kernel: PTP clock support registered
Jun 07 12:26:01 localhost.localdomain kernel: EDAC MC: Ver: 3.0.0
Jun 07 12:26:01 localhost.localdomain kernel: Registered efivars operations
Jun 07 12:26:01 localhost.localdomain kernel: NetLabel: Initializing
Jun 07 12:26:01 localhost.localdomain kernel: NetLabel:  domain hash size = 128
Jun 07 12:26:01 localhost.localdomain kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Jun 07 12:26:01 localhost.localdomain kernel: NetLabel:  unlabeled traffic allowed by default
Jun 07 12:26:01 localhost.localdomain kernel: clocksource: Switched to clocksource arch_sys_counter
Jun 07 12:26:01 localhost.localdomain kernel: VFS: Disk quotas dquot_6.6.0
Jun 07 12:26:01 localhost.localdomain kernel: VFS: Dquot-cache hash table entries: 8192 (order 0, 65536 bytes)
Jun 07 12:26:01 localhost.localdomain kernel: pnp: PnP ACPI init
Jun 07 12:26:01 localhost.localdomain kernel: system 00:00: [mem 0x4010000000-0x401fffffff window] could not be reserved
Jun 07 12:26:01 localhost.localdomain kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 07 12:26:01 localhost.localdomain kernel: pnp: PnP ACPI: found 1 devices
Jun 07 12:26:01 localhost.localdomain kernel: NET: Registered protocol family 2
Jun 07 12:26:01 localhost.localdomain kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 0, 65536 bytes)
Jun 07 12:26:01 localhost.localdomain kernel: TCP established hash table entries: 16384 (order: 1, 131072 bytes)
Jun 07 12:26:01 localhost.localdomain kernel: TCP bind hash table entries: 16384 (order: 2, 262144 bytes)
Jun 07 12:26:01 localhost.localdomain kernel: TCP: Hash tables configured (established 16384 bind 16384)
Jun 07 12:26:01 localhost.localdomain kernel: UDP hash table entries: 2048 (order: 0, 65536 bytes)
Jun 07 12:26:01 localhost.localdomain kernel: UDP-Lite hash table entries: 2048 (order: 0, 65536 bytes)
Jun 07 12:26:01 localhost.localdomain kernel: NET: Registered protocol family 1
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:00:01.1: enabling device (0002 -> 0003)
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:02:00.0: enabling device (0000 -> 0002)
Jun 07 12:26:01 localhost.localdomain kernel: pci 0000:02:00.0: quirk_usb_early_handoff+0x0/0x7c0 took 14411 usecs
Jun 07 12:26:01 localhost.localdomain kernel: PCI: CLS 0 bytes, default 64
Jun 07 12:26:01 localhost.localdomain kernel: Unpacking initramfs...
Jun 07 12:26:01 localhost.localdomain kernel: Freeing initrd memory: 23872K
Jun 07 12:26:01 localhost.localdomain kernel: hw perfevents: enabled with armv8_pmuv3_0 PMU driver, 7 counters available
Jun 07 12:26:01 localhost.localdomain kernel: kvm [1]: HYP mode not available
Jun 07 12:26:01 localhost.localdomain kernel: Initialise system trusted keyrings
Jun 07 12:26:01 localhost.localdomain kernel: workingset: timestamp_bits=43 max_order=15 bucket_order=0
Jun 07 12:26:01 localhost.localdomain kernel: zbud: loaded
Jun 07 12:26:01 localhost.localdomain kernel: pstore: using deflate compression
Jun 07 12:26:01 localhost.localdomain kernel: SELinux:  Registering netfilter hooks
Jun 07 12:26:01 localhost.localdomain kernel: NET: Registered protocol family 38
Jun 07 12:26:01 localhost.localdomain kernel: Key type asymmetric registered
Jun 07 12:26:01 localhost.localdomain kernel: Asymmetric key parser 'x509' registered
Jun 07 12:26:01 localhost.localdomain kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
Jun 07 12:26:01 localhost.localdomain kernel: io scheduler noop registered
Jun 07 12:26:01 localhost.localdomain kernel: io scheduler deadline registered (default)
Jun 07 12:26:01 localhost.localdomain kernel: io scheduler cfq registered
Jun 07 12:26:01 localhost.localdomain kernel: io scheduler mq-deadline registered (default)
Jun 07 12:26:01 localhost.localdomain kernel: io scheduler kyber registered
Jun 07 12:26:01 localhost.localdomain kernel: io scheduler bfq registered
Jun 07 12:26:01 localhost.localdomain kernel: atomic64_test: passed
Jun 07 12:26:01 localhost.localdomain kernel: pl061_gpio ARMH0061:00: PL061 GPIO chip @0x0000000009030000 registered
Jun 07 12:26:01 localhost.localdomain kernel: PCI Interrupt Link [GSI1] enabled at IRQ 36
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.0: enabling device (0002 -> 0003)
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.2: enabling device (0002 -> 0003)
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.3: enabling device (0002 -> 0003)
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.4: enabling device (0002 -> 0003)
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.5: enabling device (0002 -> 0003)
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.6: enabling device (0002 -> 0003)
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.7: enabling device (0002 -> 0003)
Jun 07 12:26:01 localhost.localdomain kernel: PCI Interrupt Link [GSI2] enabled at IRQ 37
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.0: enabling device (0002 -> 0003)
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.1: enabling device (0002 -> 0003)
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.2: enabling device (0002 -> 0003)
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.3: enabling device (0002 -> 0003)
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.4: enabling device (0002 -> 0003)
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.5: enabling device (0002 -> 0003)
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.6: enabling device (0002 -> 0003)
Jun 07 12:26:01 localhost.localdomain kernel: PCI Interrupt Link [GSI3] enabled at IRQ 38
Jun 07 12:26:01 localhost.localdomain kernel: PCI Interrupt Link [GSI0] enabled at IRQ 35
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.0: AER enabled with IRQ 44
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.1: AER enabled with IRQ 45
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.2: AER enabled with IRQ 46
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.3: AER enabled with IRQ 47
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.4: AER enabled with IRQ 48
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.5: AER enabled with IRQ 49
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.6: AER enabled with IRQ 50
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.7: AER enabled with IRQ 51
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.0: AER enabled with IRQ 52
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.1: AER enabled with IRQ 53
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.2: AER enabled with IRQ 54
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.3: AER enabled with IRQ 55
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.4: AER enabled with IRQ 56
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.5: AER enabled with IRQ 57
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.6: AER enabled with IRQ 58
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.7: AER enabled with IRQ 59
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:03.0: AER enabled with IRQ 60
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:03.1: AER enabled with IRQ 61
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:03.2: AER enabled with IRQ 62
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:03.3: AER enabled with IRQ 63
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:03.4: AER enabled with IRQ 64
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:03.5: AER enabled with IRQ 65
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:03.6: AER enabled with IRQ 66
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:03.7: AER enabled with IRQ 67
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:04.0: AER enabled with IRQ 68
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:04.1: AER enabled with IRQ 69
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:04.2: AER enabled with IRQ 70
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:04.3: AER enabled with IRQ 71
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:04.4: AER enabled with IRQ 72
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:04.5: AER enabled with IRQ 73
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:04.6: AER enabled with IRQ 74
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:04.7: AER enabled with IRQ 75
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.0: Signaling PME with IRQ 44
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.1: Signaling PME with IRQ 45
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.2: Signaling PME with IRQ 46
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.3: Signaling PME with IRQ 47
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.4: Signaling PME with IRQ 48
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.5: Signaling PME with IRQ 49
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.6: Signaling PME with IRQ 50
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:01.7: Signaling PME with IRQ 51
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.0: Signaling PME with IRQ 52
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.1: Signaling PME with IRQ 53
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.2: Signaling PME with IRQ 54
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.3: Signaling PME with IRQ 55
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.4: Signaling PME with IRQ 56
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.5: Signaling PME with IRQ 57
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.6: Signaling PME with IRQ 58
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:02.7: Signaling PME with IRQ 59
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:03.0: Signaling PME with IRQ 60
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:03.1: Signaling PME with IRQ 61
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:03.2: Signaling PME with IRQ 62
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:03.3: Signaling PME with IRQ 63
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:03.4: Signaling PME with IRQ 64
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:03.5: Signaling PME with IRQ 65
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:03.6: Signaling PME with IRQ 66
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:03.7: Signaling PME with IRQ 67
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:04.0: Signaling PME with IRQ 68
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:04.1: Signaling PME with IRQ 69
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:04.2: Signaling PME with IRQ 70
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:04.3: Signaling PME with IRQ 71
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:04.4: Signaling PME with IRQ 72
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:04.5: Signaling PME with IRQ 73
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:04.6: Signaling PME with IRQ 74
Jun 07 12:26:01 localhost.localdomain kernel: pcieport 0000:00:04.7: Signaling PME with IRQ 75
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:01.0:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:01.1:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:01.2:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:01.3:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:01.4:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:01.5:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:01.6:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:01.7:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:02.0:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:02.1:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:02.2:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:02.3:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:02.4:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:02.5:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:02.6:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:02.7:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:03.0:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:03.1:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:03.2:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:03.3:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:03.4:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:03.5:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:03.6:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:03.7:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:04.0:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:04.1:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:04.2:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:04.3:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:04.4:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:04.5:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:04.6:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: pciehp 0000:00:04.7:pcie004: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- LLActRep+
Jun 07 12:26:01 localhost.localdomain kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Jun 07 12:26:01 localhost.localdomain kernel: ACPI: Power Button [PWRB]
Jun 07 12:26:01 localhost.localdomain kernel: virtio-pci 0000:01:00.0: enabling device (0000 -> 0002)
Jun 07 12:26:01 localhost.localdomain kernel: virtio-pci 0000:03:00.0: enabling device (0000 -> 0002)
Jun 07 12:26:01 localhost.localdomain kernel: virtio-pci 0000:04:00.0: enabling device (0000 -> 0002)
Jun 07 12:26:01 localhost.localdomain kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Jun 07 12:26:01 localhost.localdomain kernel: random: fast init done
Jun 07 12:26:01 localhost.localdomain kernel: ACPI PPTT: No PPTT table found, cache topology may be inaccurate
Jun 07 12:26:01 localhost.localdomain kernel: ACPI PPTT: No PPTT table found, cache topology may be inaccurate
Jun 07 12:26:01 localhost.localdomain kernel: random: crng init done
Jun 07 12:26:01 localhost.localdomain kernel: cacheinfo: Unable to detect cache hierarchy for CPU 0
Jun 07 12:26:01 localhost.localdomain kernel: rdac: device handler registered
Jun 07 12:26:01 localhost.localdomain kernel: hp_sw: device handler registered
Jun 07 12:26:01 localhost.localdomain kernel: emc: device handler registered
Jun 07 12:26:01 localhost.localdomain kernel: alua: device handler registered
Jun 07 12:26:01 localhost.localdomain kernel: libphy: Fixed MDIO Bus: probed
Jun 07 12:26:01 localhost.localdomain kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jun 07 12:26:01 localhost.localdomain kernel: ehci-pci: EHCI PCI platform driver
Jun 07 12:26:01 localhost.localdomain kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jun 07 12:26:01 localhost.localdomain kernel: ohci-pci: OHCI PCI platform driver
Jun 07 12:26:01 localhost.localdomain kernel: uhci_hcd: USB Universal Host Controller Interface driver
Jun 07 12:26:01 localhost.localdomain kernel: xhci_hcd 0000:02:00.0: xHCI Host Controller
Jun 07 12:26:01 localhost.localdomain kernel: xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 1
Jun 07 12:26:01 localhost.localdomain kernel: xhci_hcd 0000:02:00.0: hcc params 0x00087001 hci version 0x100 quirks 0x0000000000000010
Jun 07 12:26:01 localhost.localdomain kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.18
Jun 07 12:26:01 localhost.localdomain kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 07 12:26:01 localhost.localdomain kernel: usb usb1: Product: xHCI Host Controller
Jun 07 12:26:01 localhost.localdomain kernel: usb usb1: Manufacturer: Linux 4.18.0-42.el8.aarch64 xhci-hcd
Jun 07 12:26:01 localhost.localdomain kernel: usb usb1: SerialNumber: 0000:02:00.0
Jun 07 12:26:01 localhost.localdomain kernel: hub 1-0:1.0: USB hub found
Jun 07 12:26:01 localhost.localdomain kernel: hub 1-0:1.0: 15 ports detected
Jun 07 12:26:01 localhost.localdomain kernel: xhci_hcd 0000:02:00.0: xHCI Host Controller
Jun 07 12:26:01 localhost.localdomain kernel: xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
Jun 07 12:26:01 localhost.localdomain kernel: xhci_hcd 0000:02:00.0: Host supports USB 3.0  SuperSpeed
Jun 07 12:26:01 localhost.localdomain kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
Jun 07 12:26:01 localhost.localdomain kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 4.18
Jun 07 12:26:01 localhost.localdomain kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 07 12:26:01 localhost.localdomain kernel: usb usb2: Product: xHCI Host Controller
Jun 07 12:26:01 localhost.localdomain kernel: usb usb2: Manufacturer: Linux 4.18.0-42.el8.aarch64 xhci-hcd
Jun 07 12:26:01 localhost.localdomain kernel: usb usb2: SerialNumber: 0000:02:00.0
Jun 07 12:26:01 localhost.localdomain kernel: hub 2-0:1.0: USB hub found
Jun 07 12:26:01 localhost.localdomain kernel: hub 2-0:1.0: 15 ports detected
Jun 07 12:26:01 localhost.localdomain kernel: usbcore: registered new interface driver usbserial_generic
Jun 07 12:26:01 localhost.localdomain kernel: usbserial: USB Serial support registered for generic
Jun 07 12:26:01 localhost.localdomain kernel: mousedev: PS/2 mouse device common for all mice
Jun 07 12:26:01 localhost.localdomain kernel: rtc-efi rtc-efi: rtc core: registered rtc-efi as rtc0
Jun 07 12:26:01 localhost.localdomain kernel: EFI Variables Facility v0.08 2004-May-17
Jun 07 12:26:01 localhost.localdomain kernel: hidraw: raw HID events driver (C) Jiri Kosina
Jun 07 12:26:01 localhost.localdomain kernel: usbcore: registered new interface driver usbhid
Jun 07 12:26:01 localhost.localdomain kernel: usbhid: USB HID core driver
Jun 07 12:26:01 localhost.localdomain kernel: drop_monitor: Initializing network drop monitor service
Jun 07 12:26:01 localhost.localdomain kernel: Initializing XFRM netlink socket
Jun 07 12:26:01 localhost.localdomain kernel: NET: Registered protocol family 10
Jun 07 12:26:01 localhost.localdomain kernel: Segment Routing with IPv6
Jun 07 12:26:01 localhost.localdomain kernel: NET: Registered protocol family 17
Jun 07 12:26:01 localhost.localdomain kernel: mpls_gso: MPLS GSO support
Jun 07 12:26:01 localhost.localdomain kernel: registered taskstats version 1
Jun 07 12:26:01 localhost.localdomain kernel: Loading compiled-in X.509 certificates
Jun 07 12:26:01 localhost.localdomain kernel: Loaded X.509 cert 'Red Hat Enterprise Linux kernel signing key: 32c9049ec24cbdd879cb9d0a53aca193ac7a7554'
Jun 07 12:26:01 localhost.localdomain kernel: Loaded X.509 cert 'Red Hat Enterprise Linux Driver Update Program (key 3): bf57f3e87362bc7229d9f465321773dfd1f77a80'
Jun 07 12:26:01 localhost.localdomain kernel: Loaded X.509 cert 'Red Hat Enterprise Linux kpatch signing key: 4d38fd864ebe18c5f0b72e3852e2014c3a676fc8'
Jun 07 12:26:01 localhost.localdomain kernel: zswap: loaded using pool lzo/zbud
Jun 07 12:26:01 localhost.localdomain kernel: Key type big_key registered
Jun 07 12:26:01 localhost.localdomain kernel: rtc-efi rtc-efi: setting system clock to 2019-06-07 10:26:00 UTC (1559903160)
Jun 07 12:26:01 localhost.localdomain kernel: Freeing unused kernel memory: 4224K
Jun 07 12:26:01 localhost.localdomain kernel: usb 1-1: new high-speed USB device number 2 using xhci_hcd
Jun 07 12:26:01 localhost.localdomain systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
Jun 07 12:26:01 localhost.localdomain systemd[1]: Detected virtualization kvm.
Jun 07 12:26:01 localhost.localdomain systemd[1]: Detected architecture arm64.
Jun 07 12:26:01 localhost.localdomain systemd[1]: Running in initial RAM disk.
Jun 07 12:26:01 localhost.localdomain systemd[1]: Set hostname to <localhost.localdomain>.
Jun 07 12:26:01 localhost.localdomain kernel: usb 1-1: New USB device found, idVendor=0627, idProduct=0001, bcdDevice= 0.00
Jun 07 12:26:01 localhost.localdomain kernel: usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=10
Jun 07 12:26:01 localhost.localdomain kernel: usb 1-1: Product: QEMU USB Tablet
Jun 07 12:26:01 localhost.localdomain kernel: usb 1-1: Manufacturer: QEMU
Jun 07 12:26:01 localhost.localdomain kernel: usb 1-1: SerialNumber: 28754-0000:00:01.1:00.0-1
Jun 07 12:26:01 localhost.localdomain kernel: input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:01.1/0000:02:00.0/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input1
Jun 07 12:26:01 localhost.localdomain kernel: hid-generic 0003:0627:0001.0001: input,hidraw0: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:02:00.0-1/input0
Jun 07 12:26:01 localhost.localdomain systemd[1]: Reached target Timers.
Jun 07 12:26:01 localhost.localdomain systemd[1]: Listening on Journal Socket (/dev/log).
Jun 07 12:26:01 localhost.localdomain systemd[1]: Reached target Slices.
Jun 07 12:26:01 localhost.localdomain systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Jun 07 12:26:01 localhost.localdomain systemd[1]: Reached target Paths.
Jun 07 12:26:01 localhost.localdomain kernel: usb 1-2: new high-speed USB device number 3 using xhci_hcd
Jun 07 12:26:01 localhost.localdomain kernel: usb 1-2: New USB device found, idVendor=0627, idProduct=0001, bcdDevice= 0.00
Jun 07 12:26:01 localhost.localdomain kernel: usb 1-2: New USB device strings: Mfr=1, Product=4, SerialNumber=11
Jun 07 12:26:01 localhost.localdomain kernel: usb 1-2: Product: QEMU USB Keyboard
Jun 07 12:26:01 localhost.localdomain kernel: usb 1-2: Manufacturer: QEMU
Jun 07 12:26:01 localhost.localdomain kernel: usb 1-2: SerialNumber: 68284-0000:00:01.1:00.0-2
Jun 07 12:26:01 localhost.localdomain kernel: input: QEMU QEMU USB Keyboard as /devices/pci0000:00/0000:00:01.1/0000:02:00.0/usb1/1-2/1-2:1.0/0003:0627:0001.0002/input/input2
Jun 07 12:26:01 localhost.localdomain kernel: hid-generic 0003:0627:0001.0002: input,hidraw1: USB HID v1.11 Keyboard [QEMU QEMU USB Keyboard] on usb-0000:02:00.0-2/input0
Jun 07 12:26:01 localhost.localdomain systemd-journald[241]: Journal started
Jun 07 12:26:01 localhost.localdomain systemd-journald[241]: Runtime journal (/run/log/journal/5b93f1b8995a455caf0a32da63b53357) is 8.0M, max 74.9M, 66.9M free.
Jun 07 12:26:01 localhost.localdomain systemd-vconsole-setup[237]: KD_FONT_OP_GET failed while trying to get the font metadata: Function not implemented
Jun 07 12:26:01 localhost.localdomain systemd-vconsole-setup[237]: Fonts will not be copied to remaining consoles
Jun 07 12:26:01 localhost.localdomain dracut-cmdline[255]: dracut-8.0 (Ootpa) dracut-049-8.git20181030.el8
Jun 07 12:26:01 localhost.localdomain dracut-cmdline[255]: Using kernel command line parameters: BOOT_IMAGE=(hd0,gpt2)/vmlinuz-4.18.0-42.el8.aarch64 root=/dev/mapper/rhel-root ro crashkernel=auto rd.lvm.lv=rhel/root rd.lvm.lv=rhel/swap
Jun 07 12:26:01 localhost.localdomain systemd[1]: Started dracut cmdline hook.
Jun 07 12:26:01 localhost.localdomain systemd[1]: Starting dracut pre-udev hook...
Jun 07 12:26:01 localhost.localdomain kernel: device-mapper: uevent: version 1.0.3
Jun 07 12:26:01 localhost.localdomain kernel: device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel@redhat.com
Jun 07 12:26:01 localhost.localdomain systemd[1]: Started dracut pre-udev hook.
Jun 07 12:26:01 localhost.localdomain systemd[1]: Starting udev Kernel Device Manager...
Jun 07 12:26:01 localhost.localdomain systemd[1]: Started udev Kernel Device Manager.
Jun 07 12:26:01 localhost.localdomain systemd[1]: Starting udev Coldplug all Devices...
Jun 07 12:26:01 localhost.localdomain systemd[1]: Mounting Kernel Configuration File System...
Jun 07 12:26:01 localhost.localdomain systemd[1]: Mounted Kernel Configuration File System.
Jun 07 12:26:01 localhost.localdomain systemd[1]: Started udev Coldplug all Devices.
Jun 07 12:26:01 localhost.localdomain systemd[1]: Reached target System Initialization.
Jun 07 12:26:01 localhost.localdomain systemd[1]: Reached target Basic System.
Jun 07 12:26:01 localhost.localdomain systemd[1]: Starting dracut initqueue hook...
Jun 07 12:26:01 localhost.localdomain kernel: scsi host0: Virtio SCSI HBA
Jun 07 12:26:01 localhost.localdomain kernel: virtio_blk virtio5: [vda] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB)
Jun 07 12:26:01 localhost.localdomain kernel:  vda: vda1 vda2 vda3
Jun 07 12:26:02 localhost.localdomain systemd-udevd[422]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jun 07 12:26:02 localhost.localdomain systemd-udevd[426]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jun 07 12:26:02 localhost.localdomain kernel: virtio_net virtio0 enp1s0: renamed from eth0
Jun 07 12:26:02 localhost.localdomain dracut-initqueue[428]: Scanning devices vda3  for LVM logical volumes rhel/root rhel/swap
Jun 07 12:26:02 localhost.localdomain dracut-initqueue[428]: WARNING: locking_type (4) is deprecated, using --sysinit --readonly.
Jun 07 12:26:02 localhost.localdomain dracut-initqueue[428]: inactive '/dev/rhel/swap' [512.00 MiB] inherit
Jun 07 12:26:02 localhost.localdomain dracut-initqueue[428]: inactive '/dev/rhel/root' [2.91 GiB] inherit
Jun 07 12:26:02 localhost.localdomain dracut-initqueue[428]: WARNING: locking_type (4) is deprecated, using --sysinit --readonly.
Jun 07 12:26:02 localhost.localdomain dracut-initqueue[428]: Allowing activation with --readonly --sysinit.
Jun 07 12:26:02 localhost.localdomain systemd[1]: Found device /dev/mapper/rhel-root.
Jun 07 12:26:02 localhost.localdomain systemd[1]: Reached target Initrd Root Device.
Jun 07 12:26:02 localhost.localdomain dracut-initqueue[428]: WARNING: locking_type (4) is deprecated, using --sysinit --readonly.
Jun 07 12:26:02 localhost.localdomain dracut-initqueue[428]: Allowing activation with --readonly --sysinit.
Jun 07 12:26:03 localhost.localdomain systemd[1]: Started dracut initqueue hook.
Jun 07 12:26:03 localhost.localdomain systemd[1]: Starting File System Check on /dev/mapper/rhel-root...
Jun 07 12:26:03 localhost.localdomain systemd[1]: Reached target Remote File Systems (Pre).
Jun 07 12:26:03 localhost.localdomain systemd[1]: Reached target Remote File Systems.
Jun 07 12:26:03 localhost.localdomain systemd-fsck[515]: /usr/sbin/fsck.xfs: XFS file system.
Jun 07 12:26:03 localhost.localdomain systemd[1]: Started File System Check on /dev/mapper/rhel-root.
Jun 07 12:26:03 localhost.localdomain systemd[1]: Mounting /sysroot...
Jun 07 12:26:03 localhost.localdomain kernel: SGI XFS with ACLs, security attributes, no debug enabled
Jun 07 12:26:03 localhost.localdomain kernel: XFS (dm-0): Mounting V5 Filesystem
Jun 07 12:26:03 localhost.localdomain kernel: XFS (dm-0): Ending clean mount
Jun 07 12:26:03 localhost.localdomain systemd[1]: Mounted /sysroot.
Jun 07 12:26:03 localhost.localdomain systemd[1]: Reached target Initrd Root File System.
Jun 07 12:26:03 localhost.localdomain systemd[1]: Starting Reload Configuration from the Real Root...
Jun 07 12:26:03 localhost.localdomain systemd[1]: Reloading.
Jun 07 12:26:03 localhost.localdomain systemd[1]: Started Reload Configuration from the Real Root.
Jun 07 12:26:03 localhost.localdomain systemd[1]: Reached target Initrd File Systems.
Jun 07 12:26:03 localhost.localdomain systemd[1]: Reached target Initrd Default Target.
Jun 07 12:26:03 localhost.localdomain systemd[1]: Starting dracut pre-pivot and cleanup hook...
Jun 07 12:26:03 localhost.localdomain systemd[1]: Started dracut pre-pivot and cleanup hook.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Starting Cleaning Up and Shutting Down Daemons...
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped dracut pre-pivot and cleanup hook.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped target Remote File Systems.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped target Initrd Default Target.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped target Initrd Root Device.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped target Timers.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped target Remote File Systems (Pre).
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped dracut initqueue hook.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped target Basic System.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped target Paths.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped target Sockets.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped target Slices.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped target System Initialization.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped Apply Kernel Variables.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped Create Volatile Files and Directories.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopping udev Kernel Device Manager...
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped target Local File Systems.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped udev Coldplug all Devices.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped target Swap.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Started Cleaning Up and Shutting Down Daemons.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped udev Kernel Device Manager.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped Create Static Device Nodes in /dev.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped Create list of required static device nodes for the current kernel.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped dracut pre-udev hook.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Stopped dracut cmdline hook.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Closed udev Kernel Socket.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Closed udev Control Socket.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Starting Cleanup udevd DB...
Jun 07 12:26:04 localhost.localdomain systemd[1]: Started Cleanup udevd DB.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Reached target Switch Root.
Jun 07 12:26:04 localhost.localdomain systemd[1]: Starting Switch Root...
Jun 07 12:26:04 localhost.localdomain systemd[1]: Switching root.
Jun 07 12:26:04 localhost.localdomain systemd-journald[241]: Journal stopped
Jun 07 12:26:06 abologna-rhel8 systemd-journald[241]: Received SIGTERM from PID 1 (systemd).
Jun 07 12:26:06 abologna-rhel8 kernel: systemd: 19 output lines suppressed due to ratelimiting
Jun 07 12:26:06 abologna-rhel8 kernel: audit: type=1404 audit(1559903164.480:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=1 old-enabled=1 lsm=selinux res=1
Jun 07 12:26:06 abologna-rhel8 kernel: SELinux: 32768 avtab hash slots, 116270 rules.
Jun 07 12:26:06 abologna-rhel8 kernel: SELinux: 32768 avtab hash slots, 116270 rules.
Jun 07 12:26:06 abologna-rhel8 kernel: SELinux:  8 users, 14 roles, 5154 types, 324 bools, 1 sens, 1024 cats
Jun 07 12:26:06 abologna-rhel8 kernel: SELinux:  129 classes, 116270 rules
Jun 07 12:26:06 abologna-rhel8 kernel: SELinux:  Class bpf not defined in policy.
Jun 07 12:26:06 abologna-rhel8 kernel: SELinux:  Class xdp_socket not defined in policy.
Jun 07 12:26:06 abologna-rhel8 kernel: SELinux: the above unknown classes and permissions will be allowed
Jun 07 12:26:06 abologna-rhel8 kernel: SELinux:  policy capability network_peer_controls=1
Jun 07 12:26:06 abologna-rhel8 kernel: SELinux:  policy capability open_perms=1
Jun 07 12:26:06 abologna-rhel8 kernel: SELinux:  policy capability extended_socket_class=1
Jun 07 12:26:06 abologna-rhel8 kernel: SELinux:  policy capability always_check_network=0
Jun 07 12:26:06 abologna-rhel8 kernel: SELinux:  policy capability cgroup_seclabel=1
Jun 07 12:26:06 abologna-rhel8 kernel: SELinux:  policy capability nnp_nosuid_transition=1
Jun 07 12:26:06 abologna-rhel8 kernel: SELinux:  Completing initialization.
Jun 07 12:26:06 abologna-rhel8 kernel: SELinux:  Setting up existing superblocks.
Jun 07 12:26:06 abologna-rhel8 kernel: audit: type=1403 audit(1559903165.970:3): auid=4294967295 ses=4294967295 lsm=selinux res=1
Jun 07 12:26:06 abologna-rhel8 systemd[1]: Successfully loaded SELinux policy in 1.497104s.
Jun 07 12:26:06 abologna-rhel8 systemd[1]: Failed to insert module 'ip_tables': Operation not permitted
Jun 07 12:26:06 abologna-rhel8 systemd[1]: Relabelled /dev, /run and /sys/fs/cgroup in 126.649ms.
Jun 07 12:26:06 abologna-rhel8 systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
Jun 07 12:26:06 abologna-rhel8 systemd[1]: Detected virtualization kvm.
Jun 07 12:26:06 abologna-rhel8 systemd[1]: Detected architecture arm64.
Jun 07 12:26:06 abologna-rhel8 systemd[1]: Set hostname to <abologna-rhel8>.
Jun 07 12:26:06 abologna-rhel8 systemd[1]: Stopped Switch Root.
Jun 07 12:26:06 abologna-rhel8 systemd[1]: systemd-journald.service: Service has no hold-off time (RestartSec=0), scheduling restart.
Jun 07 12:26:06 abologna-rhel8 systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
Jun 07 12:26:06 abologna-rhel8 systemd[1]: Stopped Journal Service.
Jun 07 12:26:06 abologna-rhel8 systemd[1]: Starting Journal Service...
Jun 07 12:26:06 abologna-rhel8 systemd[1]: Listening on udev Kernel Socket.
Jun 07 12:26:06 abologna-rhel8 systemd-journald[625]: Journal started
Jun 07 12:26:06 abologna-rhel8 systemd-journald[625]: Runtime journal (/run/log/journal/5b93f1b8995a455caf0a32da63b53357) is 8.0M, max 74.9M, 66.9M free.
Jun 07 12:26:06 abologna-rhel8 kernel: Adding 524224k swap on /dev/mapper/rhel-swap.  Priority:-2 extents:1 across:524224k FS
Jun 07 12:26:06 abologna-rhel8 systemd[1]: Started Create list of required static device nodes for the current kernel.
Jun 07 12:26:06 abologna-rhel8 systemd[1]: Mounted POSIX Message Queue File System.
Jun 07 12:26:06 abologna-rhel8 systemd[1]: Started Remount Root and Kernel File Systems.
Jun 07 12:26:06 abologna-rhel8 systemd[1]: Mounted Huge Pages File System.
Jun 07 12:26:06 abologna-rhel8 systemd[1]: Mounted Kernel Debug File System.
Jun 07 12:26:06 abologna-rhel8 systemd[1]: Started Apply Kernel Variables.
Jun 07 12:26:06 abologna-rhel8 systemd[1]: Started Read and set NIS domainname from /etc/sysconfig/network.
Jun 07 12:26:06 abologna-rhel8 systemd[1]: Starting Load/Save Random Seed...
Jun 07 12:26:07 abologna-rhel8 systemd[1]: Starting Create Static Device Nodes in /dev...
Jun 07 12:26:07 abologna-rhel8 systemd[1]: Starting Flush Journal to Persistent Storage...
Jun 07 12:26:07 abologna-rhel8 systemd[1]: Reached target Swap.
Jun 07 12:26:07 abologna-rhel8 systemd[1]: Started Load/Save Random Seed.
Jun 07 12:26:07 abologna-rhel8 systemd-journald[625]: Runtime journal (/run/log/journal/5b93f1b8995a455caf0a32da63b53357) is 8.0M, max 74.9M, 66.9M free.
Jun 07 12:26:07 abologna-rhel8 systemd-tmpfiles[647]: [/usr/lib/tmpfiles.d/subscription-manager.conf:1] Line references path below legacy directory /var/run/, updating /var/run/rhsm → /run/rhsm; please update the tmpfiles.d/ drop-in file accordingly.
Jun 07 12:26:07 abologna-rhel8 systemd[1]: Started Create Static Device Nodes in /dev.
Jun 07 12:26:07 abologna-rhel8 systemd[1]: Starting udev Kernel Device Manager...
Jun 07 12:26:07 abologna-rhel8 systemd[1]: Started Flush Journal to Persistent Storage.
Jun 07 12:26:07 abologna-rhel8 systemd[1]: Started udev Kernel Device Manager.
Jun 07 12:26:07 abologna-rhel8 systemd[1]: Started udev Coldplug all Devices.
Jun 07 12:26:07 abologna-rhel8 systemd[1]: Starting udev Wait for Complete Device Initialization...
Jun 07 12:26:07 abologna-rhel8 systemd-udevd[654]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jun 07 12:26:07 abologna-rhel8 systemd-udevd[659]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jun 07 12:26:07 abologna-rhel8 kernel: [drm] pci: virtio-gpu-pci detected at 0000:06:00.0
Jun 07 12:26:07 abologna-rhel8 kernel: [drm] virgl 3d acceleration not supported by host
Jun 07 12:26:07 abologna-rhel8 kernel: [TTM] Zone  kernel: Available graphics memory: 767168 kiB
Jun 07 12:26:07 abologna-rhel8 kernel: [TTM] Initializing pool allocator
Jun 07 12:26:07 abologna-rhel8 kernel: [TTM] Initializing DMA pool allocator
Jun 07 12:26:07 abologna-rhel8 kernel: [drm] number of scanouts: 1
Jun 07 12:26:07 abologna-rhel8 kernel: [drm] number of cap sets: 0
Jun 07 12:26:07 abologna-rhel8 kernel: Console: switching to colour frame buffer device 128x48
Jun 07 12:26:07 abologna-rhel8 kernel: virtio_gpu virtio4: fb0: virtiodrmfb frame buffer device
Jun 07 12:26:07 abologna-rhel8 kernel: [drm] Initialized virtio_gpu 0.0.1 0 for virtio4 on minor 0
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Started udev Wait for Complete Device Initialization.
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Starting Activation of LVM2 logical volumes...
Jun 07 12:26:08 abologna-rhel8 lvm[695]:   2 logical volume(s) in volume group "rhel" now active
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Started Activation of LVM2 logical volumes.
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Reached target Local Encrypted Volumes.
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Starting Activation of LVM2 logical volumes...
Jun 07 12:26:08 abologna-rhel8 lvm[697]:   2 logical volume(s) in volume group "rhel" now active
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Started Activation of LVM2 logical volumes.
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Jun 07 12:26:08 abologna-rhel8 lvm[699]:   2 logical volume(s) in volume group "rhel" monitored
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Started Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Reached target Local File Systems (Pre).
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Starting File System Check on /dev/disk/by-uuid/9A33-2763...
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Mounting /boot...
Jun 07 12:26:08 abologna-rhel8 kernel: XFS (vda2): Mounting V5 Filesystem
Jun 07 12:26:08 abologna-rhel8 systemd-fsck[701]: fsck.fat 4.1 (2017-01-24)
Jun 07 12:26:08 abologna-rhel8 systemd-fsck[701]: /dev/vda1: 14 files, 1576/153296 clusters
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Started File System Check on /dev/disk/by-uuid/9A33-2763.
Jun 07 12:26:08 abologna-rhel8 kernel: XFS (vda2): Ending clean mount
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Mounted /boot.
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Mounting /boot/efi...
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Mounted /boot/efi.
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Reached target Local File Systems.
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Starting Restore /run/initramfs on shutdown...
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Starting Import network configuration from initramfs...
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Started Restore /run/initramfs on shutdown.
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Started Import network configuration from initramfs.
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Starting Create Volatile Files and Directories...
Jun 07 12:26:08 abologna-rhel8 systemd-tmpfiles[740]: [/usr/lib/tmpfiles.d/subscription-manager.conf:1] Line references path below legacy directory /var/run/, updating /var/run/rhsm → /run/rhsm; please update the tmpfiles.d/ drop-in file accordingly.
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Started Create Volatile Files and Directories.
Jun 07 12:26:08 abologna-rhel8 systemd[1]: Starting Security Auditing Service...
Jun 07 12:26:08 abologna-rhel8 auditd[743]: No plugins found, not dispatching events
Jun 07 12:26:08 abologna-rhel8 auditd[743]: Init complete, auditd 3.0 listening for events (startup state enable)
Jun 07 12:26:09 abologna-rhel8 augenrules[746]: /sbin/augenrules: No change
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Started Security Auditing Service.
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Started Update UTMP about System Boot/Shutdown.
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Reached target System Initialization.
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Listening on SSSD Kerberos Cache Manager responder socket.
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Started dnf makecache --timer.
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Started Daily Cleanup of Temporary Directories.
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Reached target Timers.
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Listening on D-Bus System Message Bus Socket.
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Reached target Sockets.
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Reached target Basic System.
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Starting NTP client/server...
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Started D-Bus System Message Bus.
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Started /usr/lib/udev/kdump-udev-throttler.
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Starting System Security Services Daemon...
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Reached target sshd-keygen.target.
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Started irqbalance daemon.
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Started /usr/lib/udev/kdump-udev-throttler.
Jun 07 12:26:09 abologna-rhel8 chronyd[768]: chronyd version 3.3 starting (+CMDMON +NTP +REFCLOCK +RTC +PRIVDROP +SCFILTER +SIGND +ASYNCDNS +SECHASH +IPV6 +DEBUG)
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR arch_timer
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR uart-pl011
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR virtio4
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR arm-pmu
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR ACPI:Event
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Starting Authorization Manager...
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR pciehp
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR xhci_hcd
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR xhci_hcd
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR xhci_hcd
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR xhci_hcd
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR xhci_hcd
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR virtio0-config
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR virtio0-input.0
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR virtio0-output.0
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR virtio2-config
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR virtio2-virtqueues
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR virtio1-config
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR virtio1-control
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR virtio1-event
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR virtio1-request
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR virtio5-config
Jun 07 12:26:09 abologna-rhel8 /usr/sbin/irqbalance[765]: GUESSING AARCH64 CLASS FOR virtio5-req.0
Jun 07 12:26:09 abologna-rhel8 chronyd[768]: Frequency 0.000 +/- 1000000.000 ppm read from /var/lib/chrony/drift
Jun 07 12:26:09 abologna-rhel8 chronyd[768]: Using right/UTC timezone to obtain leap second data
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Started /usr/lib/udev/kdump-udev-throttler.
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Started /usr/lib/udev/kdump-udev-throttler.
Jun 07 12:26:09 abologna-rhel8 polkitd[769]: Started polkitd version 0.115
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Started NTP client/server.
Jun 07 12:26:09 abologna-rhel8 polkitd[769]: Loading rules from directory /etc/polkit-1/rules.d
Jun 07 12:26:09 abologna-rhel8 polkitd[769]: Loading rules from directory /usr/share/polkit-1/rules.d
Jun 07 12:26:09 abologna-rhel8 polkitd[769]: Finished loading, compiling and executing 2 rules
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Started Authorization Manager.
Jun 07 12:26:09 abologna-rhel8 polkitd[769]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Starting firewalld - dynamic firewall daemon...
Jun 07 12:26:09 abologna-rhel8 sssd[764]: Starting up
Jun 07 12:26:09 abologna-rhel8 sssd[be[implicit_files]][798]: Starting up
Jun 07 12:26:09 abologna-rhel8 sssd[nss][799]: Starting up
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Started System Security Services Daemon.
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Reached target User and Group Name Lookups.
Jun 07 12:26:09 abologna-rhel8 systemd[1]: Starting Login Service...
Jun 07 12:26:10 abologna-rhel8 systemd-logind[800]: New seat seat0.
Jun 07 12:26:10 abologna-rhel8 systemd-logind[800]: Watching system buttons on /dev/input/event0 (Power Button)
Jun 07 12:26:10 abologna-rhel8 systemd-logind[800]: Watching system buttons on /dev/input/event2 (QEMU QEMU USB Keyboard)
Jun 07 12:26:10 abologna-rhel8 systemd[1]: Started Login Service.
Jun 07 12:26:11 abologna-rhel8 systemd[1]: Started firewalld - dynamic firewall daemon.
Jun 07 12:26:11 abologna-rhel8 systemd[1]: Reached target Network (Pre).
Jun 07 12:26:11 abologna-rhel8 systemd[1]: Starting Network Manager...
Jun 07 12:26:11 abologna-rhel8 NetworkManager[811]: <info>  [1559903171.3607] NetworkManager (version 1.14.0-7.el8) is starting... (for the first time)
Jun 07 12:26:11 abologna-rhel8 NetworkManager[811]: <info>  [1559903171.3615] Read config: /etc/NetworkManager/NetworkManager.conf
Jun 07 12:26:11 abologna-rhel8 systemd[1]: Started Network Manager.
Jun 07 12:26:11 abologna-rhel8 NetworkManager[811]: <info>  [1559903171.3833] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Jun 07 12:26:11 abologna-rhel8 systemd[1]: Starting Network Manager Wait Online...
Jun 07 12:26:11 abologna-rhel8 NetworkManager[811]: <info>  [1559903171.3878] manager[0xaaaaf94f70b0]: monitoring kernel firmware directory '/lib/firmware'.
Jun 07 12:26:11 abologna-rhel8 systemd[1]: Reached target Network.
Jun 07 12:26:11 abologna-rhel8 dbus-daemon[761]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.7' (uid=0 pid=811 comm="/usr/sbin/NetworkManager --no-daemon " label="system_u:system_r:NetworkManager_t:s0")
Jun 07 12:26:11 abologna-rhel8 systemd[1]: Starting OpenSSH server daemon...
Jun 07 12:26:11 abologna-rhel8 systemd[1]: Starting Enable periodic update of entitlement certificates....
Jun 07 12:26:11 abologna-rhel8 systemd[1]: Starting Permit User Sessions...
Jun 07 12:26:11 abologna-rhel8 systemd[1]: Starting Dynamic System Tuning Daemon...
Jun 07 12:26:11 abologna-rhel8 systemd[1]: Started Enable periodic update of entitlement certificates..
Jun 07 12:26:11 abologna-rhel8 sshd[834]: Server listening on 0.0.0.0 port 22.
Jun 07 12:26:11 abologna-rhel8 sshd[834]: Server listening on :: port 22.
Jun 07 12:26:11 abologna-rhel8 systemd[1]: Started OpenSSH server daemon.
Jun 07 12:26:11 abologna-rhel8 systemd[1]: Starting Hostname Service...
Jun 07 12:26:11 abologna-rhel8 systemd[1]: Started Permit User Sessions.
Jun 07 12:26:11 abologna-rhel8 systemd[1]: Started Command Scheduler.
Jun 07 12:26:11 abologna-rhel8 systemd[1]: Started Getty on tty1.
Jun 07 12:26:11 abologna-rhel8 crond[854]: (CRON) STARTUP (1.5.2)
Jun 07 12:26:11 abologna-rhel8 crond[854]: (CRON) INFO (Syslog will be used instead of sendmail.)
Jun 07 12:26:11 abologna-rhel8 crond[854]: (CRON) INFO (RANDOM_DELAY will be scaled with factor 97% if used.)
Jun 07 12:26:11 abologna-rhel8 systemd[1]: Started Serial Getty on ttyAMA0.
Jun 07 12:26:11 abologna-rhel8 systemd[1]: Reached target Login Prompts.
Jun 07 12:26:11 abologna-rhel8 crond[854]: (CRON) INFO (running with inotify support)
Jun 07 12:26:12 abologna-rhel8 dbus-daemon[761]: [system] Successfully activated service 'org.freedesktop.hostname1'
Jun 07 12:26:12 abologna-rhel8 systemd[1]: Started Hostname Service.
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.0403] hostname: hostname: using hostnamed
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.0408] hostname: hostname changed from (none) to "abologna-rhel8"
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.0416] dns-mgr[0xaaaaf9501120]: init: dns=default, rc-manager=symlink
Jun 07 12:26:12 abologna-rhel8 dbus-daemon[761]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.7' (uid=0 pid=811 comm="/usr/sbin/NetworkManager --no-daemon " label="system_u:system_r:NetworkManager_t:s0")
Jun 07 12:26:12 abologna-rhel8 systemd[1]: Starting Network Manager Script Dispatcher Service...
Jun 07 12:26:12 abologna-rhel8 dbus-daemon[761]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jun 07 12:26:12 abologna-rhel8 systemd[1]: Started Network Manager Script Dispatcher Service.
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.1032] settings: Loaded settings plugin: SettingsPluginIfcfg ("/usr/lib64/NetworkManager/1.14.0-7.el8/libnm-settings-plugin-ifcfg-rh.so")
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.1043] settings: Loaded settings plugin: NMSIbftPlugin ("/usr/lib64/NetworkManager/1.14.0-7.el8/libnm-settings-plugin-ibft.so")
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.1044] settings: Loaded settings plugin: NMSKeyfilePlugin (internal)
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.1094] ifcfg-rh: new connection /etc/sysconfig/network-scripts/ifcfg-enp1s0 (42a33954-607f-48ea-8ec2-fcb58ab3f0e9,"enp1s0")
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.1149] manager: rfkill: WiFi enabled by radio killswitch; enabled by state file
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.1154] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.1157] manager: Networking is enabled by state file
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.1161] dhcp-init: Using DHCP client 'internal'
Jun 07 12:26:12 abologna-rhel8 nm-dispatcher[880]: req:1 'hostname': new request (2 scripts)
Jun 07 12:26:12 abologna-rhel8 nm-dispatcher[880]: req:1 'hostname': start running ordered scripts...
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.1262] Loaded device plugin: NMTeamFactory (/usr/lib64/NetworkManager/1.14.0-7.el8/libnm-device-plugin-team.so)
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.1288] device (lo): carrier: link connected
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.1296] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/1)
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.1334] manager: (enp1s0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.1408] device (enp1s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jun 07 12:26:12 abologna-rhel8 kernel: IPv6: ADDRCONF(NETDEV_UP): enp1s0: link is not ready
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.1543] device (enp1s0): carrier: link connected
Jun 07 12:26:12 abologna-rhel8 nm-dispatcher[880]: req:2 'connectivity-change': new request (2 scripts)
Jun 07 12:26:12 abologna-rhel8 nm-dispatcher[880]: req:2 'connectivity-change': start running ordered scripts...
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.1801] device (enp1s0): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.2025] policy: auto-activating connection 'enp1s0' (42a33954-607f-48ea-8ec2-fcb58ab3f0e9)
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.2077] device (enp1s0): Activation: starting connection 'enp1s0' (42a33954-607f-48ea-8ec2-fcb58ab3f0e9)
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.2083] device (enp1s0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.2098] manager: NetworkManager state is now CONNECTING
Jun 07 12:26:12 abologna-rhel8 NetworkManager[811]: <info>  [1559903172.2108] device (enp1s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jun 07 12:26:12 abologna-rhel8 systemd[1]: Started Dynamic System Tuning Daemon.
Jun 07 12:26:12 abologna-rhel8 systemd[1]: Reached target Multi-User System.
Jun 07 12:26:12 abologna-rhel8 systemd[1]: Starting Update UTMP about System Runlevel Changes...
Jun 07 12:26:12 abologna-rhel8 systemd[1]: Started Update UTMP about System Runlevel Changes.
Jun 07 12:26:14 abologna-rhel8 NetworkManager[811]: <info>  [1559903174.4230] device (enp1s0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Jun 07 12:26:14 abologna-rhel8 NetworkManager[811]: <info>  [1559903174.4244] dhcp4 (enp1s0): activation: beginning transaction (timeout in 45 seconds)
Jun 07 12:26:14 abologna-rhel8 NetworkManager[811]: <info>  [1559903174.4955] dhcp4 (enp1s0):   address 192.168.122.254
Jun 07 12:26:14 abologna-rhel8 NetworkManager[811]: <info>  [1559903174.4957] dhcp4 (enp1s0):   plen 24
Jun 07 12:26:14 abologna-rhel8 NetworkManager[811]: <info>  [1559903174.4957] dhcp4 (enp1s0):   expires in 3600 seconds
Jun 07 12:26:14 abologna-rhel8 NetworkManager[811]: <info>  [1559903174.4958] dhcp4 (enp1s0):   nameserver '192.168.122.1'
Jun 07 12:26:14 abologna-rhel8 NetworkManager[811]: <info>  [1559903174.4959] dhcp4 (enp1s0):   hostname 'abologna-rhel8'
Jun 07 12:26:14 abologna-rhel8 NetworkManager[811]: <info>  [1559903174.4959] dhcp4 (enp1s0):   gateway 192.168.122.1
Jun 07 12:26:14 abologna-rhel8 NetworkManager[811]: <info>  [1559903174.4965] dhcp4 (enp1s0): state changed unknown -> bound
Jun 07 12:26:14 abologna-rhel8 NetworkManager[811]: <info>  [1559903174.4998] device (enp1s0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Jun 07 12:26:14 abologna-rhel8 NetworkManager[811]: <info>  [1559903174.5026] device (enp1s0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Jun 07 12:26:14 abologna-rhel8 NetworkManager[811]: <info>  [1559903174.5035] device (enp1s0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Jun 07 12:26:14 abologna-rhel8 NetworkManager[811]: <info>  [1559903174.5052] manager: NetworkManager state is now CONNECTED_LOCAL
Jun 07 12:26:14 abologna-rhel8 NetworkManager[811]: <info>  [1559903174.5671] manager: NetworkManager state is now CONNECTED_SITE
Jun 07 12:26:14 abologna-rhel8 NetworkManager[811]: <info>  [1559903174.5676] policy: set 'enp1s0' (enp1s0) as default for IPv4 routing and DNS
Jun 07 12:26:14 abologna-rhel8 NetworkManager[811]: <info>  [1559903174.6075] device (enp1s0): Activation: successful, device activated.
Jun 07 12:26:14 abologna-rhel8 NetworkManager[811]: <info>  [1559903174.6096] manager: NetworkManager state is now CONNECTED_GLOBAL
Jun 07 12:26:14 abologna-rhel8 NetworkManager[811]: <info>  [1559903174.6109] manager: startup complete
Jun 07 12:26:14 abologna-rhel8 nm-dispatcher[880]: req:3 'up' [enp1s0]: new request (2 scripts)
Jun 07 12:26:14 abologna-rhel8 nm-dispatcher[880]: req:3 'up' [enp1s0]: start running ordered scripts...
Jun 07 12:26:14 abologna-rhel8 nm-dispatcher[880]: req:4 'connectivity-change': new request (2 scripts)
Jun 07 12:26:14 abologna-rhel8 systemd[1]: Started Network Manager Wait Online.
Jun 07 12:26:14 abologna-rhel8 systemd[1]: Reached target Network is Online.
Jun 07 12:26:14 abologna-rhel8 systemd[1]: Starting Crash recovery kernel arming...
Jun 07 12:26:14 abologna-rhel8 nm-dispatcher[880]: req:4 'connectivity-change': start running ordered scripts...
Jun 07 12:26:18 abologna-rhel8 kdumpctl[1216]: kexec: loaded kdump kernel
Jun 07 12:26:18 abologna-rhel8 kdumpctl[1216]: Starting kdump: [OK]
Jun 07 12:26:18 abologna-rhel8 systemd[1]: Started Crash recovery kernel arming.
Jun 07 12:26:18 abologna-rhel8 systemd[1]: Startup finished in 6.969s (kernel) + 3.891s (initrd) + 13.838s (userspace) = 24.700s.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] PCI(e): Documentation "io-reserve" and related properties?
  2019-06-06 18:20 ` Michael S. Tsirkin
  2019-06-07 11:43   ` Andrea Bolognani
@ 2019-06-11  7:21   ` Kashyap Chamarthy
  2019-06-11 10:19     ` Marcel Apfelbaum
  1 sibling, 1 reply; 6+ messages in thread
From: Kashyap Chamarthy @ 2019-06-11  7:21 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: qemu-devel

On Thu, Jun 06, 2019 at 02:20:18PM -0400, Michael S. Tsirkin wrote:
> On Thu, Jun 06, 2019 at 06:19:43PM +0200, Kashyap Chamarthy wrote:
> > Hi folks,
> > 
> > Today I learnt about some obscure PCIe-related properties, in context of
> > the adding PCIe root ports to a guest, namely:
> > 
> >     io-reserve
> >     mem-reserve
> >     bus-reserve
> >     pref32-reserve
> >     pref64-reserve
> > 
> > Unfortunately, the commit[*] that added them provided no documentation
> > whatsover.
> > 
> > In my scenario, I was specifically wondering about what does
> > "io-reserve" mean, in what context to use it, etc.  (But documentation
> > about other properties is also welcome.)
> > 
> > Anyone more well-versed in this area care to shed some light?
> > 
> > 
> > [*] 6755e618d0 (hw/pci: add PCI resource reserve capability to legacy
> >     PCI bridge, 2018-08-21)
> 
> So normally bios would reserve just enough io space to satisfy all
> devices behind a bridge. What if you intend to hotplug more devices?
> These properties allow you to ask bios to reserve extra space.

Thanks.  Would be useful to have them documented in the official QEMU
command-line documentation.  Otherwise, they will remain as arcane
properties that barely anyone knows about.

-- 
/kashyap


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] PCI(e): Documentation "io-reserve" and related properties?
  2019-06-07 11:43   ` Andrea Bolognani
@ 2019-06-11 10:15     ` Marcel Apfelbaum
  0 siblings, 0 replies; 6+ messages in thread
From: Marcel Apfelbaum @ 2019-06-11 10:15 UTC (permalink / raw)
  To: Andrea Bolognani, Michael S. Tsirkin, Kashyap Chamarthy
  Cc: libvir-list, qemu-devel



On 6/7/19 2:43 PM, Andrea Bolognani wrote:
> On Thu, 2019-06-06 at 14:20 -0400, Michael S. Tsirkin wrote:
>> On Thu, Jun 06, 2019 at 06:19:43PM +0200, Kashyap Chamarthy wrote:
>>> Hi folks,
>>>
>>> Today I learnt about some obscure PCIe-related properties, in context of
>>> the adding PCIe root ports to a guest, namely:
>>>
>>>      io-reserve
>>>      mem-reserve
>>>      bus-reserve
>>>      pref32-reserve
>>>      pref64-reserve
>>>
>>> Unfortunately, the commit[*] that added them provided no documentation
>>> whatsover.
>>>
>>> In my scenario, I was specifically wondering about what does
>>> "io-reserve" mean, in what context to use it, etc.  (But documentation
>>> about other properties is also welcome.)
>>>
>>> Anyone more well-versed in this area care to shed some light?
>>>
>>>
>>> [*] 6755e618d0 (hw/pci: add PCI resource reserve capability to legacy
>>>      PCI bridge, 2018-08-21)
>> So normally bios would reserve just enough io space to satisfy all
>> devices behind a bridge. What if you intend to hotplug more devices?
>> These properties allow you to ask bios to reserve extra space.
> Is it fair to say that setting io-reserve=0 for a pcie-root-port
> would be a way to implement the requirements set forth in
>
>    https://bugzilla.redhat.com/show_bug.cgi?id=1408810
>
> ? I tested this on aarch64 and it seems to work as expected, but
> then again without documentation it's hard to tell.
>
> More specifically, I created an aarch64/virt guest with several
> pcie-root-ports and it couldn't boot much further than GRUB when
> the number of ports exceeded 24, but as soon as I added the
> io-reserve=0 option I could get the same guest to boot fine with
> 32 or even 64 pcie-root-ports. I'm attaching the boot log for
> reference: there are a bunch of messages about the topic but they
> would appear to be benign.
>
> Hotplug seemed to work too: I tried with a single virtio-net-pci
> and I could access the network. My understanding is that PCIe
> devices are required to work without IO space, so this behavior
> matches my expectations.
>
> I wonder, though, what would happen if I had something like
>
>    -device pcie-root-port,io-reserve=0,id=pci.1
>    -device pcie-pci-bridge,bus=pci.1
>
> Would I be able to hotplug conventional PCI devices into the
> pcie-pci-bridge, or would the lack of IO space reservation for
> the pcie-root-port cause issues with that?
>

You would not have any IO space for a PCI device or PCIe device
that for some reason will require IO space (even if they shouldn't)
and the hotplug operation would fail.

On the other hand, if the pcie-pci-bridge device itself will require
some IO space, it will work.. it worth trying.

Thanks,
Marcel







^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] PCI(e): Documentation "io-reserve" and related properties?
  2019-06-11  7:21   ` Kashyap Chamarthy
@ 2019-06-11 10:19     ` Marcel Apfelbaum
  0 siblings, 0 replies; 6+ messages in thread
From: Marcel Apfelbaum @ 2019-06-11 10:19 UTC (permalink / raw)
  To: Kashyap Chamarthy, Michael S. Tsirkin; +Cc: qemu-devel



On 6/11/19 10:21 AM, Kashyap Chamarthy wrote:
> On Thu, Jun 06, 2019 at 02:20:18PM -0400, Michael S. Tsirkin wrote:
>> On Thu, Jun 06, 2019 at 06:19:43PM +0200, Kashyap Chamarthy wrote:
>>> Hi folks,
>>>
>>> Today I learnt about some obscure PCIe-related properties, in context of
>>> the adding PCIe root ports to a guest, namely:
>>>
>>>      io-reserve
>>>      mem-reserve
>>>      bus-reserve
>>>      pref32-reserve
>>>      pref64-reserve
>>>
>>> Unfortunately, the commit[*] that added them provided no documentation
>>> whatsover.
>>>
>>> In my scenario, I was specifically wondering about what does
>>> "io-reserve" mean, in what context to use it, etc.  (But documentation
>>> about other properties is also welcome.)
>>>
>>> Anyone more well-versed in this area care to shed some light?
>>>
>>>
>>> [*] 6755e618d0 (hw/pci: add PCI resource reserve capability to legacy
>>>      PCI bridge, 2018-08-21)
>> So normally bios would reserve just enough io space to satisfy all
>> devices behind a bridge. What if you intend to hotplug more devices?
>> These properties allow you to ask bios to reserve extra space.
> Thanks.  Would be useful to have them documented in the official QEMU
> command-line documentation.  Otherwise, they will remain as arcane
> properties that barely anyone knows about.
>

There is some documentation under qemu/docs/pcie_pci_bridge.txt.
I agree there is always room for QEMU cmd-line improvement.

Thanks,
Marcel






^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-06-11 10:21 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-06 16:19 [Qemu-devel] PCI(e): Documentation "io-reserve" and related properties? Kashyap Chamarthy
2019-06-06 18:20 ` Michael S. Tsirkin
2019-06-07 11:43   ` Andrea Bolognani
2019-06-11 10:15     ` Marcel Apfelbaum
2019-06-11  7:21   ` Kashyap Chamarthy
2019-06-11 10:19     ` Marcel Apfelbaum

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.