linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Pingfan Liu <kernelfans@gmail.com>
To: mhocko@kernel.org
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
	Andrew Morton <akpm@linux-foundation.org>,
	Vlastimil Babka <vbabka@suse.cz>,
	Mike Rapoport <rppt@linux.vnet.ibm.com>,
	Bjorn Helgaas <bhelgaas@google.com>,
	Jonathan Cameron <Jonathan.Cameron@huawei.com>
Subject: Re: [PATCH] mm/alloc: fallback to first node if the wanted node offline
Date: Wed, 5 Dec 2018 13:38:17 +0800	[thread overview]
Message-ID: <CAFgQCTuyKBZdwWG=fOECE6J8DbZJsErJOyXTrLT0Kog3ec7vhw@mail.gmail.com> (raw)
In-Reply-To: <20181204085601.GC1286@dhcp22.suse.cz>

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

On Tue, Dec 4, 2018 at 4:56 PM Michal Hocko <mhocko@kernel.org> wrote:
>
> On Tue 04-12-18 16:20:32, Pingfan Liu wrote:
> > On Tue, Dec 4, 2018 at 3:22 PM Michal Hocko <mhocko@kernel.org> wrote:
> > >
> > > On Tue 04-12-18 11:05:57, Pingfan Liu wrote:
> > > > During my test on some AMD machine, with kexec -l nr_cpus=x option, the
> > > > kernel failed to bootup, because some node's data struct can not be allocated,
> > > > e.g, on x86, initialized by init_cpu_to_node()->init_memory_less_node(). But
> > > > device->numa_node info is used as preferred_nid param for
> > > > __alloc_pages_nodemask(), which causes NULL reference
> > > >   ac->zonelist = node_zonelist(preferred_nid, gfp_mask);
> > > > This patch tries to fix the issue by falling back to the first online node,
> > > > when encountering such corner case.
> > >
> > > We have seen similar issues already and the bug was usually that the
> > > zonelists were not initialized yet or the node is completely bogus.
> > > Zonelists should be initialized by build_all_zonelists quite early so I
> > > am wondering whether the later is the case. What is the actual node
> > > number the device is associated with?
> > >
> > The device's node num is 2. And in my case, I used nr_cpus param. Due
> > to init_cpu_to_node() initialize all the possible node.  It is hard
> > for me to figure out without this param, how zonelists is accessed
> > before page allocator works.
>
> I believe we should focus on this. Why does the node have no zonelist
> even though all zonelists should be initialized already? Maybe this is
> nr_cpus pecularity and we do not initialize all the existing numa nodes.
> Or maybe the device is associated to a non-existing node with that
> setup. A full dmesg might help us here.
>
Requiring the machine again, and I got the following without nr_cpus option
[root@dell-per7425-03 ~]# cd /sys/devices/system/node/
[root@dell-per7425-03 node]# ls
has_cpu  has_memory  has_normal_memory  node0  node1  node2  node3
node4  node5  node6  node7  online  possible  power  uevent
[root@dell-per7425-03 node]# cat has_cpu
0-7
[root@dell-per7425-03 node]# cat has_memory
1,5
[root@dell-per7425-03 node]# cat online
0-7
[root@dell-per7425-03 node]# cat possible
0-7
And lscpu shows the following numa-cpu info:
NUMA node0 CPU(s):     0,8,16,24
NUMA node1 CPU(s):     2,10,18,26
NUMA node2 CPU(s):     4,12,20,28
NUMA node3 CPU(s):     6,14,22,30
NUMA node4 CPU(s):     1,9,17,25
NUMA node5 CPU(s):     3,11,19,27
NUMA node6 CPU(s):     5,13,21,29
NUMA node7 CPU(s):     7,15,23,31

For the full panic message (I masked some hostname info with xx),
please see the attachment.
In a short word, it seems a problem with nr_cpus, if without this
option, the kernel can bootup correctly.

> > > Your patch is not correct btw, because we want to fallback into the node in
> > > the distance order rather into the first online node.
> > > --
> > What about this:
> > +extern int find_next_best_node(int node, nodemask_t *used_node_mask);
> > +
> >  /*
> >   * We get the zone list from the current node and the gfp_mask.
> >   * This zone list contains a maximum of MAXNODES*MAX_NR_ZONES zones.
> > @@ -453,6 +455,11 @@ static inline int gfp_zonelist(gfp_t flags)
> >   */
> >  static inline struct zonelist *node_zonelist(int nid, gfp_t flags)
> >  {
> > +       if (unlikely(!node_online(nid))) {
> > +               nodemask_t used_mask;
> > +               nodes_complement(used_mask, node_online_map);
> > +               nid = find_next_best_node(nid, &used_mask);
> > +       }
> >         return NODE_DATA(nid)->node_zonelists + gfp_zonelist(flags);
> >  }
> >
> > I just finished the compiling, not test it yet, since the machine is
> > not on hand yet. It needs some time to get it again.
>
> This is clearly a no-go. nodemask_t can be giant and you cannot have it
> on the stack for allocation paths which might be called from a deep

What about the static variable
static inline struct zonelist *node_zonelist(int nid, gfp_t flags)
 {
+       if (unlikely(!node_online(nid))) {
+                   WARN_ONCE(1, "Try to alloc mem from not online node\n");
+                   nid = find_best_node(nid);
+       }
        return NODE_DATA(nid)->node_zonelists + gfp_zonelist(flags);
 }

+int find_best_node(int node)
+{
+       static nodemask_t used_mask;
+       static DEFINE_SPINLOCK(lock);
+       static int best_neigh[MAX_NUMNODES] = {0};
+       int nid;
+
+       spin_lock(&lock);
+       if (likely( best_neigh[node] != 0)) {
+               nid = best_neigh[node];
+               goto unlock;
+       }
+       nodes_complement(used_mask, node_online_map);
+       nid = find_next_best_node(node, &used_mask);
+       best_neigh[node] = nid;
+
+unlock:
+       spin_unlock(&lock);
+       return nid;
+}

> stack already. Also this is called from the allocator hot paths and each
> branch counts.
>
I am puzzling about this. Does unlikely work for it?

Thanks,
Pingfan

[-- Attachment #2: nrcpus.txt --]
[-- Type: text/plain, Size: 65200 bytes --]

[ 1048.902358] kvm: exiting hardware virtualization
[ 1048.910116] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[ 1049.721572] kexec: Starting new kernel
[    0.000000] Linux version 4.20.0-rc1+
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.10.0-957.el7.x86_64 root=/dev/mapper/xxx_dell--per7425--03-root ro crashkernel=auto rd.lvm.lv=xxx_dell-per7425-03/root rd.lvm.lv=xxx_dell-per7425-03/swap console=ttyS0,115200n81 nr_cpus=4
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000100-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000005c3d6fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005c3d7000-0x00000000643defff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000643df000-0x0000000068ff7fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000068ff8000-0x000000006b4f7fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006b4f8000-0x000000006c327fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006c328000-0x000000006c527fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006c528000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000087effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000087f000000-0x000000087fffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000100-0x000000000008efff] usable
[    0.000000] reserve setup_data: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000000010006f] usable
[    0.000000] reserve setup_data: [mem 0x0000000000100070-0x000000005c3d6fff] usable
[    0.000000] reserve setup_data: [mem 0x000000005c3d7000-0x00000000643defff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000643df000-0x0000000068ff7fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000068ff8000-0x000000006b4f7fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000006b4f8000-0x000000006c327fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000006c328000-0x000000006c527fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000006c528000-0x000000006fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000087effffff] usable
[    0.000000] reserve setup_data: [mem 0x000000087f000000-0x000000087fffffff] reserved
[    0.000000] efi: EFI v2.50 by Dell Inc.
[    0.000000] efi:  ACPI=0x6c527000  ACPI 2.0=0x6c527014  SMBIOS=0x6afde000  SMBIOS 3.0=0x6afdc000 
[    0.000000] SMBIOS 3.0.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R7425/02MJ3T, BIOS 1.4.3 06/29/2018
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2095.974 MHz processor
[    0.000064] last_pfn = 0x87f000 max_arch_pfn = 0x400000000
[    0.000952] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.001463] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.006776] Using GB pages for direct mapping
[    0.007062] Secure boot could not be determined
[    0.007064] RAMDISK: [mem 0x87a118000-0x87cdfffff]
[    0.007074] ACPI: Early table checksum verification disabled
[    0.007081] ACPI: RSDP 0x000000006C527014 000024 (v02 DELL  )
[    0.007086] ACPI: XSDT 0x000000006C5260E8 0000C4 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.007094] ACPI: FACP 0x000000006C516000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.007101] ACPI: DSDT 0x000000006C505000 00D302 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.007104] ACPI: FACS 0x000000006C2F1000 000040
[    0.007107] ACPI: SSDT 0x000000006C525000 0000D2 (v02 DELL   PE_SC3   00000002 MSFT 04000000)
[    0.007110] ACPI: BERT 0x000000006C524000 000030 (v01 DELL   BERT     00000001 DELL 00000001)
[    0.007112] ACPI: HEST 0x000000006C523000 0006DC (v01 DELL   HEST     00000001 DELL 00000001)
[    0.007115] ACPI: SSDT 0x000000006C522000 0001C4 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.007118] ACPI: SRAT 0x000000006C521000 0002D0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.007121] ACPI: MSCT 0x000000006C520000 0000A6 (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.007123] ACPI: SLIT 0x000000006C51F000 00006C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.007126] ACPI: CRAT 0x000000006C51C000 002210 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.007129] ACPI: CDIT 0x000000006C51B000 000068 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.007132] ACPI: SSDT 0x000000006C51A000 0003C6 (v02 DELL   Tpm2Tabl 00001000 INTL 20170119)
[    0.007134] ACPI: TPM2 0x000000006C519000 000038 (v04 DELL   PE_SC3   00000002 DELL 00000001)
[    0.007137] ACPI: EINJ 0x000000006C518000 000150 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.007140] ACPI: SLIC 0x000000006C517000 000024 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.007142] ACPI: HPET 0x000000006C515000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.007145] ACPI: APIC 0x000000006C514000 0004B2 (v03 DELL   PE_SC3   00000002 DELL 00000001)
[    0.007148] ACPI: MCFG 0x000000006C513000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.007150] ACPI: SSDT 0x000000006C504000 0005CA (v02 DELL   xhc_port 00000001 INTL 20170119)
[    0.007153] ACPI: IVRS 0x000000006C503000 000390 (v02 DELL   PE_SC3   00000001 AMD  00000000)
[    0.007156] ACPI: SSDT 0x000000006C501000 001658 (v01 AMD    CPMCMN   00000001 INTL 20170119)
[    0.007226] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.007227] SRAT: PXM 0 -> APIC 0x01 -> Node 0
[    0.007228] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.007229] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[    0.007230] SRAT: PXM 1 -> APIC 0x10 -> Node 1
[    0.007231] SRAT: PXM 1 -> APIC 0x11 -> Node 1
[    0.007232] SRAT: PXM 1 -> APIC 0x18 -> Node 1
[    0.007233] SRAT: PXM 1 -> APIC 0x19 -> Node 1
[    0.007234] SRAT: PXM 2 -> APIC 0x20 -> Node 2
[    0.007235] SRAT: PXM 2 -> APIC 0x21 -> Node 2
[    0.007236] SRAT: PXM 2 -> APIC 0x28 -> Node 2
[    0.007237] SRAT: PXM 2 -> APIC 0x29 -> Node 2
[    0.007238] SRAT: PXM 3 -> APIC 0x30 -> Node 3
[    0.007239] SRAT: PXM 3 -> APIC 0x31 -> Node 3
[    0.007239] SRAT: PXM 3 -> APIC 0x38 -> Node 3
[    0.007240] SRAT: PXM 3 -> APIC 0x39 -> Node 3
[    0.007241] SRAT: PXM 4 -> APIC 0x40 -> Node 4
[    0.007242] SRAT: PXM 4 -> APIC 0x41 -> Node 4
[    0.007243] SRAT: PXM 4 -> APIC 0x48 -> Node 4
[    0.007244] SRAT: PXM 4 -> APIC 0x49 -> Node 4
[    0.007245] SRAT: PXM 5 -> APIC 0x50 -> Node 5
[    0.007246] SRAT: PXM 5 -> APIC 0x51 -> Node 5
[    0.007247] SRAT: PXM 5 -> APIC 0x58 -> Node 5
[    0.007247] SRAT: PXM 5 -> APIC 0x59 -> Node 5
[    0.007248] SRAT: PXM 6 -> APIC 0x60 -> Node 6
[    0.007249] SRAT: PXM 6 -> APIC 0x61 -> Node 6
[    0.007250] SRAT: PXM 6 -> APIC 0x68 -> Node 6
[    0.007251] SRAT: PXM 6 -> APIC 0x69 -> Node 6
[    0.007252] SRAT: PXM 7 -> APIC 0x70 -> Node 7
[    0.007253] SRAT: PXM 7 -> APIC 0x71 -> Node 7
[    0.007254] SRAT: PXM 7 -> APIC 0x78 -> Node 7
[    0.007254] SRAT: PXM 7 -> APIC 0x79 -> Node 7
[    0.007257] ACPI: SRAT: Node 1 PXM 1 [mem 0x00000000-0x0009ffff]
[    0.007259] ACPI: SRAT: Node 1 PXM 1 [mem 0x00100000-0x7fffffff]
[    0.007260] ACPI: SRAT: Node 1 PXM 1 [mem 0x100000000-0x47fffffff]
[    0.007261] ACPI: SRAT: Node 5 PXM 5 [mem 0x480000000-0x87fffffff]
[    0.007271] NUMA: Node 1 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0x7fffffff] -> [mem 0x00000000-0x7fffffff]
[    0.007273] NUMA: Node 1 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0x47fffffff] -> [mem 0x00000000-0x47fffffff]
[    0.007285] NODE_DATA(1) allocated [mem 0x47ffd5000-0x47fffffff]
[    0.007315] NODE_DATA(5) allocated [mem 0x87efd4000-0x87effefff]
[    0.007357] crashkernel: memory value expected
[    0.007407] Zone ranges:
[    0.007409]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.007410]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.007412]   Normal   [mem 0x0000000100000000-0x000000087effffff]
[    0.007414]   Device   empty
[    0.007415] Movable zone start for each node
[    0.007418] Early memory node ranges
[    0.007419]   node   1: [mem 0x0000000000001000-0x000000000008efff]
[    0.007420]   node   1: [mem 0x0000000000090000-0x000000000009ffff]
[    0.007422]   node   1: [mem 0x0000000000100000-0x000000005c3d6fff]
[    0.007422]   node   1: [mem 0x00000000643df000-0x0000000068ff7fff]
[    0.007423]   node   1: [mem 0x000000006c528000-0x000000006fffffff]
[    0.007424]   node   1: [mem 0x0000000100000000-0x000000047fffffff]
[    0.007425]   node   5: [mem 0x0000000480000000-0x000000087effffff]
[    0.008195] Zeroed struct page in unavailable ranges: 46490 pages
[    0.008197] Initmem setup node 1 [mem 0x0000000000001000-0x000000047fffffff]
[    0.024042] Initmem setup node 5 [mem 0x0000000480000000-0x000000087effffff]
[    0.025522] ACPI: PM-Timer IO Port: 0x408
[    0.025534] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 4/0x20 ignored.
[    0.025535] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 5/0x60 ignored.
[    0.025536] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 6/0x30 ignored.
[    0.025537] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 7/0x70 ignored.
[    0.025538] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 8/0x8 ignored.
[    0.025539] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 9/0x48 ignored.
[    0.025540] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 10/0x18 ignored.
[    0.025541] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 11/0x58 ignored.
[    0.025542] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 12/0x28 ignored.
[    0.025543] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 13/0x68 ignored.
[    0.025544] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 14/0x38 ignored.
[    0.025545] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 15/0x78 ignored.
[    0.025546] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 16/0x1 ignored.
[    0.025547] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 17/0x41 ignored.
[    0.025548] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 18/0x11 ignored.
[    0.025549] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 19/0x51 ignored.
[    0.025550] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 20/0x21 ignored.
[    0.025551] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 21/0x61 ignored.
[    0.025552] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 22/0x31 ignored.
[    0.025553] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 23/0x71 ignored.
[    0.025554] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 24/0x9 ignored.
[    0.025555] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 25/0x49 ignored.
[    0.025556] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 26/0x19 ignored.
[    0.025557] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 27/0x59 ignored.
[    0.025558] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 28/0x29 ignored.
[    0.025559] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 29/0x69 ignored.
[    0.025560] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 30/0x39 ignored.
[    0.025560] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 31/0x79 ignored.
[    0.025567] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.025596] IOAPIC[0]: apic_id 128, version 33, address 0xfec00000, GSI 0-23
[    0.025601] IOAPIC[1]: apic_id 129, version 33, address 0xfd880000, GSI 24-55
[    0.025607] IOAPIC[2]: apic_id 130, version 33, address 0xea900000, GSI 56-87
[    0.025612] IOAPIC[3]: apic_id 131, version 33, address 0xdd900000, GSI 88-119
[    0.025618] IOAPIC[4]: apic_id 132, version 33, address 0xd0900000, GSI 120-151
[    0.025624] IOAPIC[5]: apic_id 133, version 33, address 0xc3900000, GSI 152-183
[    0.025631] IOAPIC[6]: apic_id 134, version 33, address 0xb6900000, GSI 184-215
[    0.025637] IOAPIC[7]: apic_id 135, version 33, address 0xa9900000, GSI 216-247
[    0.025644] IOAPIC[8]: apic_id 136, version 33, address 0x9c900000, GSI 248-279
[    0.025647] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.025650] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.025656] Using ACPI (MADT) for SMP configuration information
[    0.025659] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.025668] smpboot: 128 Processors exceeds NR_CPUS limit of 4
[    0.025670] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.025673] NODE_DATA(0) allocated [mem 0x87efa3000-0x87efcdfff]
[    0.025674]     NODE_DATA(0) on node 5
[    0.025722] Initmem setup node 0 [mem 0x0000000000000000-0x0000000000000000]
[    0.025726] NODE_DATA(4) allocated [mem 0x87ef78000-0x87efa2fff]
[    0.025726]     NODE_DATA(4) on node 5
[    0.025761] Initmem setup node 4 [mem 0x0000000000000000-0x0000000000000000]
[    0.025785] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.025787] PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    0.025788] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.025789] PM: Registered nosave memory: [mem 0x00100000-0x00100fff]
[    0.025791] PM: Registered nosave memory: [mem 0x5c3d7000-0x643defff]
[    0.025793] PM: Registered nosave memory: [mem 0x68ff8000-0x6b4f7fff]
[    0.025794] PM: Registered nosave memory: [mem 0x6b4f8000-0x6c327fff]
[    0.025795] PM: Registered nosave memory: [mem 0x6c328000-0x6c527fff]
[    0.025796] PM: Registered nosave memory: [mem 0x70000000-0x8fffffff]
[    0.025797] PM: Registered nosave memory: [mem 0x90000000-0xfec0ffff]
[    0.025798] PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[    0.025799] PM: Registered nosave memory: [mem 0xfec11000-0xfed7ffff]
[    0.025800] PM: Registered nosave memory: [mem 0xfed80000-0xfed80fff]
[    0.025801] PM: Registered nosave memory: [mem 0xfed81000-0xffffffff]
[    0.025804] [mem 0x90000000-0xfec0ffff] available for PCI devices
[    0.025806] Booting paravirtualized kernel on bare hardware
[    0.025812] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.141589] random: get_random_bytes called from start_kernel+0x9b/0x528 with crng_init=0
[    0.141600] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:8
[    0.143537] percpu: Embedded 46 pages/cpu @(____ptrval____) s151552 r8192 d28672 u2097152
[    0.143598] Built 4 zonelists, mobility grouping on.  Total pages: 8143202
[    0.143600] Policy zone: Normal
[    0.143605] Kernel command line: BOOT_IMAGE=/vmlinuz-3.10.0-957.el7.x86_64 root=/dev/mapper/xxx_dell--per7425--03-root ro crashkernel=auto rd.lvm.lv=xxx_dell-per7425-03/root rd.lvm.lv=xxx_dell-per7425-03/swap console=ttyS0,115200n81 nr_cpus=4
[    0.166247] Memory: 1845560K/33089944K available (12293K kernel code, 2066K rwdata, 3752K rodata, 2348K init, 6532K bss, 667612K reserved, 0K cma-reserved)
[    0.166392] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=8
[    0.166403] ftrace: allocating 35639 entries in 140 pages
[    0.184002] rcu: Hierarchical RCU implementation.
[    0.184006] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.184008] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.184009] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.186336] NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 16
[    0.187054] spurious APIC interrupt through vector ff on CPU#0, should never happen.
[    0.187685] Console: colour dummy device 80x25
[    1.667868] printk: console [ttyS0] enabled
[    1.672071] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.683299] ACPI: Core revision 20181003
[    1.687482] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.696650] APIC: Switch to symmetric I/O mode setup
[    2.468804] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    2.479670] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e365567211, max_idle_ns: 440795264558 ns
[    2.490203] Calibrating delay loop (skipped), value calculated using timer frequency.. 4191.94 BogoMIPS (lpj=2095974)
[    2.491191] pid_max: default: 32768 minimum: 301
[    2.493219] LSM: Security Framework initializing
[    2.494193] Yama: becoming mindful.
[    2.495197] SELinux:  Initializing.
[    2.502765] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[    2.506886] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    2.507310] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    2.508273] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    2.509485] mce: CPU supports 23 MCE banks
[    2.510239] LVT offset 2 assigned for vector 0xf4
[    2.511201] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[    2.512190] Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
[    2.513193] Spectre V2 : Mitigation: Full AMD retpoline
[    2.514190] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    2.515190] Spectre V2 : Spectre v2 mitigation: Enabling Indirect Branch Prediction Barrier
[    2.516192] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    2.517507] Freeing SMP alternatives memory: 32K
[    2.522189] smpboot: CPU0: AMD EPYC 7251 8-Core Processor (family: 0x17, model: 0x1, stepping: 0x2)
[    2.522353] Performance Events: Fam17h core perfctr, AMD PMU driver.
[    2.523194] ... version:                0
[    2.524190] ... bit width:              48
[    2.525190] ... generic registers:      6
[    2.526190] ... value mask:             0000ffffffffffff
[    2.527190] ... max period:             00007fffffffffff
[    2.528190] ... fixed-purpose events:   0
[    2.529190] ... event mask:             000000000000003f
[    2.530238] rcu: Hierarchical SRCU implementation.
[    2.532406] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.533270] smp: Bringing up secondary CPUs ...
[    2.534386] x86: Booting SMP configuration:
[    2.535192] .... node  #4, CPUs:      #1
[    2.547192] .... node  #1, CPUs:   #2
[    2.549192] .... node  #5, CPUs:   #3
[    2.550282] smp: Brought up 4 nodes, 4 CPUs
[    2.552191] smpboot: Max logical packages: 2
[    2.553191] smpboot: Total of 4 processors activated (16739.73 BogoMIPS)
[    2.694217] node 1 initialised, 3572598 pages in 138ms
[    2.708208] node 5 initialised, 4071595 pages in 152ms
[    2.715067] devtmpfs: initialized
[    2.715263] x86/mm: Memory block size: 128MB
[    2.718668] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.719194] PM: Registering ACPI NVS region [mem 0x6b4f8000-0x6c327fff] (14876672 bytes)
[    2.720380] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    2.721207] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    2.722293] pinctrl core: initialized pinctrl subsystem
[    2.723264] RTC time:  1:48:54, date: 11/07/18
[    2.724397] NET: Registered protocol family 16
[    2.726222] audit: initializing netlink subsys (disabled)
[    2.727220] audit: type=2000 audit(1541555331.250:1): state=initialized audit_enabled=0 res=1
[    2.736198] cpuidle: using governor menu
[    2.738263] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.739192] ACPI: bus type PCI registered
[    2.740193] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.741254] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000)
[    2.742208] PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved in E820
[    2.743202] PCI: Using configuration type 1 for base access
[    2.744200] PCI: Dell System detected, enabling pci=bfsort.
[    2.746944] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    2.747194] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    2.748278] ACPI: Added _OSI(Module Device)
[    2.749195] ACPI: Added _OSI(Processor Device)
[    2.750192] ACPI: Added _OSI(3.0 _SCP Extensions)
[    2.751192] ACPI: Added _OSI(Processor Aggregator Device)
[    2.752191] ACPI: Added _OSI(Linux-Dell-Video)
[    2.753192] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    2.759056] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.761950] ACPI: Interpreter enabled
[    2.762203] ACPI: (supports S0 S5)
[    2.763192] ACPI: Using IOAPIC for interrupt routing
[    2.765276] HEST: Table parsing has been initialized.
[    2.766194] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.767805] ACPI: Enabled 2 GPEs in block 00 to 1F
[    2.778161] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
[    2.778229] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
[    2.779226] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
[    2.780225] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
[    2.781225] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
[    2.782225] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
[    2.783226] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
[    2.784225] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
[    2.785369] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-1f])
[    2.786198] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    2.787231] acpi PNP0A08:00: PCIe AER handled by firmware
[    2.788229] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR]
[    2.789258] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.790191] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.791417] PCI host bridge to bus 0000:00
[    2.792193] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.793191] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    2.794192] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    2.795192] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    2.796191] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
[    2.797191] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    2.798191] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    2.799192] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
[    2.800191] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[    2.801191] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    2.802192] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    2.803192] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[    2.804191] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[    2.805191] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    2.806191] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    2.807192] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    2.808191] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff window]
[    2.809191] pci_bus 0000:00: root bus resource [io  0x0d00-0x1fff window]
[    2.810192] pci_bus 0000:00: root bus resource [mem 0xeb000000-0xfebfffff window]
[    2.811192] pci_bus 0000:00: root bus resource [mem 0x10000000000-0x1df9fffffff window]
[    2.812191] pci_bus 0000:00: root bus resource [bus 00-1f]
[    2.817111] pci 0000:00:07.1: enabling Extended Tags
[    2.818393] pci 0000:00:08.1: enabling Extended Tags
[    2.825592] pci 0000:02:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5 GT/s x1 link at 0000:00:01.1 (capable of 15.752 Gb/s with 8 GT/s x2 link)
[    2.826549] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.828441] pci 0000:01:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5 GT/s x1 link at 0000:00:01.2 (capable of 15.752 Gb/s with 8 GT/s x2 link)
[    2.830504] pci 0000:00:01.2: PCI bridge to [bus 01]
[    2.832414] pci 0000:00:01.3: PCI bridge to [bus 03-04]
[    2.833226] pci_bus 0000:04: extended config space not accessible
[    2.834398] pci 0000:03:00.0: PCI bridge to [bus 04]
[    2.836278] pci 0000:05:00.0: enabling Extended Tags
[    2.837331] pci 0000:05:00.2: enabling Extended Tags
[    2.838335] pci 0000:05:00.3: enabling Extended Tags
[    2.839299] pci 0000:00:07.1: PCI bridge to [bus 05]
[    2.841293] pci 0000:06:00.0: enabling Extended Tags
[    2.842339] pci 0000:06:00.1: enabling Extended Tags
[    2.843352] pci 0000:06:00.2: enabling Extended Tags
[    2.844306] pci 0000:00:08.1: PCI bridge to [bus 06]
[    2.845601] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 20-3f])
[    2.846193] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    2.847227] acpi PNP0A08:01: PCIe AER handled by firmware
[    2.848228] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug LTR]
[    2.850231] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.851199] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.853278] PCI host bridge to bus 0000:20
[    2.854192] pci_bus 0000:20: root bus resource [io  0x2000-0x3fff window]
[    2.855192] pci_bus 0000:20: root bus resource [mem 0xde000000-0xeaffffff window]
[    2.856191] pci_bus 0000:20: root bus resource [mem 0x1dfa0000000-0x2bf3fffffff window]
[    2.857191] pci_bus 0000:20: root bus resource [bus 20-3f]
[    2.860141] pci 0000:20:07.1: enabling Extended Tags
[    2.861427] pci 0000:20:08.1: enabling Extended Tags
[    2.862560] pci 0000:21:00.0: enabling Extended Tags
[    2.863340] pci 0000:21:00.2: enabling Extended Tags
[    2.864354] pci 0000:21:00.3: enabling Extended Tags
[    2.865306] pci 0000:20:07.1: PCI bridge to [bus 21]
[    2.867301] pci 0000:22:00.0: enabling Extended Tags
[    2.868351] pci 0000:22:00.1: enabling Extended Tags
[    2.869307] pci 0000:20:08.1: PCI bridge to [bus 22]
[    2.870406] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 40-5f])
[    2.871193] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    2.872227] acpi PNP0A08:02: PCIe AER handled by firmware
[    2.873228] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug LTR]
[    2.874256] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.875191] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.876387] PCI host bridge to bus 0000:40
[    2.877192] pci_bus 0000:40: root bus resource [io  0x4000-0x5fff window]
[    2.878191] pci_bus 0000:40: root bus resource [mem 0xd1000000-0xddffffff window]
[    2.879191] pci_bus 0000:40: root bus resource [mem 0x2bf40000000-0x39edfffffff window]
[    2.880192] pci_bus 0000:40: root bus resource [bus 40-5f]
[    2.882669] pci 0000:40:07.1: enabling Extended Tags
[    2.883502] pci 0000:40:08.1: enabling Extended Tags
[    2.885297] pci 0000:41:00.0: enabling Extended Tags
[    2.886340] pci 0000:41:00.2: enabling Extended Tags
[    2.887301] pci 0000:40:07.1: PCI bridge to [bus 41]
[    2.888574] pci 0000:42:00.0: enabling Extended Tags
[    2.889348] pci 0000:42:00.1: enabling Extended Tags
[    2.890307] pci 0000:40:08.1: PCI bridge to [bus 42]
[    2.892202] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus 60-7f])
[    2.893195] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    2.894225] acpi PNP0A08:03: PCIe AER handled by firmware
[    2.895227] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug LTR]
[    2.896256] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.897192] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.899351] PCI host bridge to bus 0000:60
[    2.900192] pci_bus 0000:60: root bus resource [io  0x6000-0x7fff window]
[    2.901192] pci_bus 0000:60: root bus resource [mem 0xc4000000-0xd0ffffff window]
[    2.902191] pci_bus 0000:60: root bus resource [mem 0x39ee0000000-0x47e7fffffff window]
[    2.903191] pci_bus 0000:60: root bus resource [bus 60-7f]
[    2.905195] pci 0000:60:07.1: enabling Extended Tags
[    2.906503] pci 0000:60:08.1: enabling Extended Tags
[    2.908431] pci 0000:60:03.1: PCI bridge to [bus 61]
[    2.909317] pci 0000:62:00.0: enabling Extended Tags
[    2.910342] pci 0000:62:00.2: enabling Extended Tags
[    2.911303] pci 0000:60:07.1: PCI bridge to [bus 62]
[    2.912329] pci 0000:63:00.0: enabling Extended Tags
[    2.914210] pci 0000:63:00.1: enabling Extended Tags
[    2.916298] pci 0000:60:08.1: PCI bridge to [bus 63]
[    2.917380] ACPI: PCI Root Bridge [PC04] (domain 0000 [bus 80-9f])
[    2.918193] acpi PNP0A08:04: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    2.919226] acpi PNP0A08:04: PCIe AER handled by firmware
[    2.920227] acpi PNP0A08:04: _OSC: platform does not support [SHPCHotplug LTR]
[    2.921258] acpi PNP0A08:04: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.922191] acpi PNP0A08:04: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.923377] PCI host bridge to bus 0000:80
[    2.924192] pci_bus 0000:80: root bus resource [io  0x8000-0x9fff window]
[    2.925192] pci_bus 0000:80: root bus resource [mem 0xb7000000-0xc3ffffff window]
[    2.926191] pci_bus 0000:80: root bus resource [mem 0x47e80000000-0x55e1fffffff window]
[    2.927191] pci_bus 0000:80: root bus resource [bus 80-9f]
[    2.928924] pci 0000:80:07.1: enabling Extended Tags
[    2.931096] pci 0000:80:08.1: enabling Extended Tags
[    2.932468] pci 0000:81:00.0: enabling Extended Tags
[    2.933364] pci 0000:81:00.2: enabling Extended Tags
[    2.934316] pci 0000:80:07.1: PCI bridge to [bus 81]
[    2.936260] pci 0000:82:00.0: enabling Extended Tags
[    2.937373] pci 0000:82:00.1: enabling Extended Tags
[    2.938322] pci 0000:80:08.1: PCI bridge to [bus 82]
[    2.939374] ACPI: PCI Root Bridge [PC05] (domain 0000 [bus a0-bf])
[    2.940193] acpi PNP0A08:05: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    2.941227] acpi PNP0A08:05: PCIe AER handled by firmware
[    2.942227] acpi PNP0A08:05: _OSC: platform does not support [SHPCHotplug LTR]
[    2.943256] acpi PNP0A08:05: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.944191] acpi PNP0A08:05: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.945377] PCI host bridge to bus 0000:a0
[    2.946192] pci_bus 0000:a0: root bus resource [io  0xa000-0xbfff window]
[    2.947191] pci_bus 0000:a0: root bus resource [mem 0xaa000000-0xb6ffffff window]
[    2.948191] pci_bus 0000:a0: root bus resource [mem 0x55e20000000-0x63dbfffffff window]
[    2.949192] pci_bus 0000:a0: root bus resource [bus a0-bf]
[    2.951398] pci 0000:a0:07.1: enabling Extended Tags
[    2.952959] pci 0000:a0:08.1: enabling Extended Tags
[    2.954959] pci 0000:a1:00.0: enabling Extended Tags
[    2.955366] pci 0000:a1:00.2: enabling Extended Tags
[    2.957216] pci 0000:a0:07.1: PCI bridge to [bus a1]
[    2.959358] pci 0000:a2:00.0: enabling Extended Tags
[    2.960372] pci 0000:a2:00.1: enabling Extended Tags
[    2.961324] pci 0000:a0:08.1: PCI bridge to [bus a2]
[    2.962407] ACPI: PCI Root Bridge [PC06] (domain 0000 [bus c0-df])
[    2.963193] acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    2.965194] acpi PNP0A08:06: PCIe AER handled by firmware
[    2.966228] acpi PNP0A08:06: _OSC: platform does not support [SHPCHotplug LTR]
[    2.967256] acpi PNP0A08:06: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.968191] acpi PNP0A08:06: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.969376] PCI host bridge to bus 0000:c0
[    2.970193] pci_bus 0000:c0: root bus resource [io  0xc000-0xdfff window]
[    2.971191] pci_bus 0000:c0: root bus resource [mem 0x9d000000-0xa9ffffff window]
[    2.972191] pci_bus 0000:c0: root bus resource [mem 0x63dc0000000-0x71d5fffffff window]
[    2.973191] pci_bus 0000:c0: root bus resource [bus c0-df]
[    2.975736] pci 0000:c0:07.1: enabling Extended Tags
[    2.976530] pci 0000:c0:08.1: enabling Extended Tags
[    2.978855] pci 0000:c1:00.0: enabling Extended Tags
[    2.979353] pci 0000:c1:00.2: enabling Extended Tags
[    2.980308] pci 0000:c0:07.1: PCI bridge to [bus c1]
[    2.982191] pci 0000:c2:00.0: enabling Extended Tags
[    2.984334] pci 0000:c2:00.1: enabling Extended Tags
[    2.985317] pci 0000:c0:08.1: PCI bridge to [bus c2]
[    2.986380] ACPI: PCI Root Bridge [PC07] (domain 0000 [bus e0-ff])
[    2.987194] acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    2.988226] acpi PNP0A08:07: PCIe AER handled by firmware
[    2.989228] acpi PNP0A08:07: _OSC: platform does not support [SHPCHotplug LTR]
[    2.990256] acpi PNP0A08:07: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.991192] acpi PNP0A08:07: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.992328] acpi PNP0A08:07: host bridge window [mem 0x71d60000000-0xffffffffffff window] ([0x80000000000-0xffffffffffff] ignored, not CPU addressable)
[    2.993246] PCI host bridge to bus 0000:e0
[    2.994191] pci_bus 0000:e0: root bus resource [io  0xe000-0xffff window]
[    2.995192] pci_bus 0000:e0: root bus resource [mem 0x90000000-0x9cffffff window]
[    2.996191] pci_bus 0000:e0: root bus resource [mem 0x71d60000000-0x7ffffffffff window]
[    2.997196] pci_bus 0000:e0: root bus resource [bus e0-ff]
[    3.000196] pci 0000:e0:07.1: enabling Extended Tags
[    3.001531] pci 0000:e0:08.1: enabling Extended Tags
[    3.003296] pci 0000:e1:00.0: enabling Extended Tags
[    3.004362] pci 0000:e1:00.2: enabling Extended Tags
[    3.005314] pci 0000:e0:07.1: PCI bridge to [bus e1]
[    3.006364] pci 0000:e2:00.0: enabling Extended Tags
[    3.007369] pci 0000:e2:00.1: enabling Extended Tags
[    3.008324] pci 0000:e0:08.1: PCI bridge to [bus e2]
[    3.013216] pci 0000:04:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    3.014205] pci 0000:04:00.0: vgaarb: bridge control possible
[    3.015193] pci 0000:04:00.0: vgaarb: setting as boot device (VGA legacy resources not available)
[    3.016192] vgaarb: loaded
[    3.017299] SCSI subsystem initialized
[    3.018214] ACPI: bus type USB registered
[    3.019207] usbcore: registered new interface driver usbfs
[    3.020197] usbcore: registered new interface driver hub
[    3.021210] usbcore: registered new device driver usb
[    3.022212] pps_core: LinuxPPS API ver. 1 registered
[    3.023190] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    3.024193] PTP clock support registered
[    3.025230] EDAC MC: Ver: 3.0.0
[    3.027299] Registered efivars operations
[    3.217225] PCI: Using ACPI for IRQ routing
[    3.238515] NetLabel: Initializing
[    3.239191] NetLabel:  domain hash size = 128
[    3.240190] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    3.241207] NetLabel:  unlabeled traffic allowed by default
[    3.242286] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    3.243193] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    3.246273] clocksource: Switched to clocksource tsc-early
[    3.261402] VFS: Disk quotas dquot_6.6.0
[    3.265359] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    3.272339] pnp: PnP ACPI init
[    3.275723] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    3.283023] pnp: PnP ACPI: found 4 devices
[    3.292620] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    3.301495] pci 0000:02:00.0: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[    3.311405] pci 0000:02:00.1: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[    3.321314] pci 0000:01:00.0: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[    3.331228] pci 0000:01:00.1: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[    3.341155] pci 0000:61:00.0: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
[    3.351117] pci 0000:02:00.0: BAR 6: assigned [mem 0xec200000-0xec23ffff pref]
[    3.358339] pci 0000:02:00.1: BAR 6: assigned [mem 0xec240000-0xec27ffff pref]
[    3.365565] pci 0000:00:01.1: PCI bridge to [bus 02]
[    3.370532] pci 0000:00:01.1:   bridge window [mem 0xec200000-0xec2fffff]
[    3.377326] pci 0000:00:01.1:   bridge window [mem 0xec100000-0xec1fffff 64bit pref]
[    3.385069] pci 0000:01:00.0: BAR 6: assigned [mem 0xec300000-0xec33ffff pref]
[    3.392294] pci 0000:01:00.1: BAR 6: assigned [mem 0xec340000-0xec37ffff pref]
[    3.399512] pci 0000:00:01.2: PCI bridge to [bus 01]
[    3.404482] pci 0000:00:01.2:   bridge window [mem 0xec300000-0xec3fffff]
[    3.411276] pci 0000:00:01.2:   bridge window [mem 0xec000000-0xec0fffff 64bit pref]
[    3.419026] pci 0000:04:00.0: BAR 6: assigned [mem 0xf9810000-0xf981ffff pref]
[    3.426250] pci 0000:03:00.0: PCI bridge to [bus 04]
[    3.431220] pci 0000:03:00.0:   bridge window [mem 0xf9000000-0xf98fffff]
[    3.438016] pci 0000:03:00.0:   bridge window [mem 0xeb000000-0xebffffff 64bit pref]
[    3.445763] pci 0000:00:01.3: PCI bridge to [bus 03-04]
[    3.450996] pci 0000:00:01.3:   bridge window [mem 0xf9000000-0xf98fffff]
[    3.457784] pci 0000:00:01.3:   bridge window [mem 0xeb000000-0xebffffff 64bit pref]
[    3.465535] pci 0000:00:07.1: PCI bridge to [bus 05]
[    3.470506] pci 0000:00:07.1:   bridge window [mem 0xf9b00000-0xf9dfffff]
[    3.477294] pci 0000:00:08.1: PCI bridge to [bus 06]
[    3.482268] pci 0000:00:08.1:   bridge window [mem 0xf9900000-0xf9afffff]
[    3.489148] pci 0000:20:07.1: PCI bridge to [bus 21]
[    3.494116] pci 0000:20:07.1:   bridge window [mem 0xe8200000-0xe84fffff]
[    3.500912] pci 0000:20:08.1: PCI bridge to [bus 22]
[    3.505885] pci 0000:20:08.1:   bridge window [mem 0xe8000000-0xe81fffff]
[    3.512717] pci 0000:40:07.1: PCI bridge to [bus 41]
[    3.517690] pci 0000:40:07.1:   bridge window [mem 0xdb200000-0xdb3fffff]
[    3.524485] pci 0000:40:08.1: PCI bridge to [bus 42]
[    3.529460] pci 0000:40:08.1:   bridge window [mem 0xdb000000-0xdb1fffff]
[    3.536284] pci 0000:61:00.0: BAR 6: no space for [mem size 0x00100000 pref]
[    3.543335] pci 0000:61:00.0: BAR 6: failed to assign [mem size 0x00100000 pref]
[    3.550726] pci 0000:60:03.1: PCI bridge to [bus 61]
[    3.555696] pci 0000:60:03.1:   bridge window [io  0x6000-0x6fff]
[    3.561798] pci 0000:60:03.1:   bridge window [mem 0xce400000-0xce5fffff]
[    3.568593] pci 0000:60:07.1: PCI bridge to [bus 62]
[    3.573566] pci 0000:60:07.1:   bridge window [mem 0xce200000-0xce3fffff]
[    3.580363] pci 0000:60:08.1: PCI bridge to [bus 63]
[    3.585338] pci 0000:60:08.1:   bridge window [mem 0xce000000-0xce1fffff]
[    3.592157] pci 0000:80:07.1: PCI bridge to [bus 81]
[    3.597134] pci 0000:80:07.1:   bridge window [mem 0xc1200000-0xc13fffff]
[    3.603930] pci 0000:80:08.1: PCI bridge to [bus 82]
[    3.608904] pci 0000:80:08.1:   bridge window [mem 0xc1000000-0xc11fffff]
[    3.615722] pci 0000:a0:07.1: PCI bridge to [bus a1]
[    3.620690] pci 0000:a0:07.1:   bridge window [mem 0xb4200000-0xb43fffff]
[    3.627484] pci 0000:a0:08.1: PCI bridge to [bus a2]
[    3.632460] pci 0000:a0:08.1:   bridge window [mem 0xb4000000-0xb41fffff]
[    3.639286] pci 0000:c0:07.1: PCI bridge to [bus c1]
[    3.644256] pci 0000:c0:07.1:   bridge window [mem 0xa7200000-0xa73fffff]
[    3.651052] pci 0000:c0:08.1: PCI bridge to [bus c2]
[    3.656024] pci 0000:c0:08.1:   bridge window [mem 0xa7000000-0xa71fffff]
[    3.662846] pci 0000:e0:07.1: PCI bridge to [bus e1]
[    3.667820] pci 0000:e0:07.1:   bridge window [mem 0x9a200000-0x9a3fffff]
[    3.674618] pci 0000:e0:08.1: PCI bridge to [bus e2]
[    3.679590] pci 0000:e0:08.1:   bridge window [mem 0x9a000000-0x9a1fffff]
[    3.686444] NET: Registered protocol family 2
[    3.691063] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes)
[    3.699181] TCP established hash table entries: 262144 (order: 9, 2097152 bytes)
[    3.707061] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    3.713995] TCP: Hash tables configured (established 262144 bind 65536)
[    3.720671] UDP hash table entries: 16384 (order: 7, 524288 bytes)
[    3.727018] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes)
[    3.733814] NET: Registered protocol family 1
[    3.738943] Unpacking initramfs...
[    4.384141] Freeing initrd memory: 45984K
[    4.388246] AMD-Vi: IOMMU performance counters supported
[    4.393652] AMD-Vi: IOMMU performance counters supported
[    4.399003] AMD-Vi: IOMMU performance counters supported
[    4.404345] AMD-Vi: IOMMU performance counters supported
[    4.409696] AMD-Vi: IOMMU performance counters supported
[    4.415047] AMD-Vi: IOMMU performance counters supported
[    4.420399] AMD-Vi: IOMMU performance counters supported
[    4.425752] AMD-Vi: IOMMU performance counters supported
[    4.431301] iommu: Adding device 0000:00:01.0 to group 0
[    4.436684] iommu: Adding device 0000:00:01.1 to group 1
[    4.442068] iommu: Adding device 0000:00:01.2 to group 2
[    4.447457] iommu: Adding device 0000:00:01.3 to group 3
[    4.452856] iommu: Adding device 0000:00:02.0 to group 4
[    4.458260] iommu: Adding device 0000:00:03.0 to group 5
[    4.463661] iommu: Adding device 0000:00:04.0 to group 6
[    4.469070] iommu: Adding device 0000:00:07.0 to group 7
[    4.474449] iommu: Adding device 0000:00:07.1 to group 8
[    4.479853] iommu: Adding device 0000:00:08.0 to group 9
[    4.485237] iommu: Adding device 0000:00:08.1 to group 10
[    4.490746] iommu: Adding device 0000:00:14.0 to group 11
[    4.496183] iommu: Adding device 0000:00:14.3 to group 11
[    4.501786] iommu: Adding device 0000:00:18.0 to group 12
[    4.507221] iommu: Adding device 0000:00:18.1 to group 12
[    4.512653] iommu: Adding device 0000:00:18.2 to group 12
[    4.518077] iommu: Adding device 0000:00:18.3 to group 12
[    4.523505] iommu: Adding device 0000:00:18.4 to group 12
[    4.528930] iommu: Adding device 0000:00:18.5 to group 12
[    4.534355] iommu: Adding device 0000:00:18.6 to group 12
[    4.539781] iommu: Adding device 0000:00:18.7 to group 12
[    4.545393] iommu: Adding device 0000:00:19.0 to group 13
[    4.550824] iommu: Adding device 0000:00:19.1 to group 13
[    4.556258] iommu: Adding device 0000:00:19.2 to group 13
[    4.561684] iommu: Adding device 0000:00:19.3 to group 13
[    4.567119] iommu: Adding device 0000:00:19.4 to group 13
[    4.572552] iommu: Adding device 0000:00:19.5 to group 13
[    4.577988] iommu: Adding device 0000:00:19.6 to group 13
[    4.583424] iommu: Adding device 0000:00:19.7 to group 13
[    4.589026] iommu: Adding device 0000:00:1a.0 to group 14
[    4.594455] iommu: Adding device 0000:00:1a.1 to group 14
[    4.599888] iommu: Adding device 0000:00:1a.2 to group 14
[    4.605322] iommu: Adding device 0000:00:1a.3 to group 14
[    4.610754] iommu: Adding device 0000:00:1a.4 to group 14
[    4.616180] iommu: Adding device 0000:00:1a.5 to group 14
[    4.621605] iommu: Adding device 0000:00:1a.6 to group 14
[    4.627031] iommu: Adding device 0000:00:1a.7 to group 14
[    4.632638] iommu: Adding device 0000:00:1b.0 to group 15
[    4.638070] iommu: Adding device 0000:00:1b.1 to group 15
[    4.643499] iommu: Adding device 0000:00:1b.2 to group 15
[    4.648925] iommu: Adding device 0000:00:1b.3 to group 15
[    4.654353] iommu: Adding device 0000:00:1b.4 to group 15
[    4.659786] iommu: Adding device 0000:00:1b.5 to group 15
[    4.665221] iommu: Adding device 0000:00:1b.6 to group 15
[    4.670656] iommu: Adding device 0000:00:1b.7 to group 15
[    4.676261] iommu: Adding device 0000:00:1c.0 to group 16
[    4.681688] iommu: Adding device 0000:00:1c.1 to group 16
[    4.687121] iommu: Adding device 0000:00:1c.2 to group 16
[    4.692547] iommu: Adding device 0000:00:1c.3 to group 16
[    4.697980] iommu: Adding device 0000:00:1c.4 to group 16
[    4.703408] iommu: Adding device 0000:00:1c.5 to group 16
[    4.708843] iommu: Adding device 0000:00:1c.6 to group 16
[    4.714277] iommu: Adding device 0000:00:1c.7 to group 16
[    4.719890] iommu: Adding device 0000:00:1d.0 to group 17
[    4.725320] iommu: Adding device 0000:00:1d.1 to group 17
[    4.730751] iommu: Adding device 0000:00:1d.2 to group 17
[    4.736177] iommu: Adding device 0000:00:1d.3 to group 17
[    4.741611] iommu: Adding device 0000:00:1d.4 to group 17
[    4.747037] iommu: Adding device 0000:00:1d.5 to group 17
[    4.752472] iommu: Adding device 0000:00:1d.6 to group 17
[    4.757905] iommu: Adding device 0000:00:1d.7 to group 17
[    4.763506] iommu: Adding device 0000:00:1e.0 to group 18
[    4.768940] iommu: Adding device 0000:00:1e.1 to group 18
[    4.774372] iommu: Adding device 0000:00:1e.2 to group 18
[    4.779812] iommu: Adding device 0000:00:1e.3 to group 18
[    4.785244] iommu: Adding device 0000:00:1e.4 to group 18
[    4.790679] iommu: Adding device 0000:00:1e.5 to group 18
[    4.796113] iommu: Adding device 0000:00:1e.6 to group 18
[    4.801548] iommu: Adding device 0000:00:1e.7 to group 18
[    4.807161] iommu: Adding device 0000:00:1f.0 to group 19
[    4.812598] iommu: Adding device 0000:00:1f.1 to group 19
[    4.818032] iommu: Adding device 0000:00:1f.2 to group 19
[    4.823466] iommu: Adding device 0000:00:1f.3 to group 19
[    4.828899] iommu: Adding device 0000:00:1f.4 to group 19
[    4.834334] iommu: Adding device 0000:00:1f.5 to group 19
[    4.839771] iommu: Adding device 0000:00:1f.6 to group 19
[    4.845207] iommu: Adding device 0000:00:1f.7 to group 19
[    4.850721] iommu: Adding device 0000:01:00.0 to group 20
[    4.856176] iommu: Adding device 0000:01:00.1 to group 20
[    4.861702] iommu: Adding device 0000:02:00.0 to group 21
[    4.867160] iommu: Adding device 0000:02:00.1 to group 21
[    4.872627] iommu: Adding device 0000:03:00.0 to group 22
[    4.878038] iommu: Adding device 0000:04:00.0 to group 22
[    4.883504] iommu: Adding device 0000:05:00.0 to group 23
[    4.888985] iommu: Adding device 0000:05:00.2 to group 24
[    4.894469] iommu: Adding device 0000:05:00.3 to group 25
[    4.899939] iommu: Adding device 0000:06:00.0 to group 26
[    4.905413] iommu: Adding device 0000:06:00.1 to group 27
[    4.910887] iommu: Adding device 0000:06:00.2 to group 28
[    4.916385] iommu: Adding device 0000:20:01.0 to group 29
[    4.921873] iommu: Adding device 0000:20:02.0 to group 30
[    4.927361] iommu: Adding device 0000:20:03.0 to group 31
[    4.932847] iommu: Adding device 0000:20:04.0 to group 32
[    4.938337] iommu: Adding device 0000:20:07.0 to group 33
[    4.943811] iommu: Adding device 0000:20:07.1 to group 34
[    4.949304] iommu: Adding device 0000:20:08.0 to group 35
[    4.954775] iommu: Adding device 0000:20:08.1 to group 36
[    4.960256] iommu: Adding device 0000:21:00.0 to group 37
[    4.965727] iommu: Adding device 0000:21:00.2 to group 38
[    4.971211] iommu: Adding device 0000:21:00.3 to group 39
[    4.976688] iommu: Adding device 0000:22:00.0 to group 40
[    4.982171] iommu: Adding device 0000:22:00.1 to group 41
[    4.987655] iommu: Adding device 0000:40:01.0 to group 42
[    4.993153] iommu: Adding device 0000:40:02.0 to group 43
[    4.998645] iommu: Adding device 0000:40:03.0 to group 44
[    5.004136] iommu: Adding device 0000:40:04.0 to group 45
[    5.009630] iommu: Adding device 0000:40:07.0 to group 46
[    5.015111] iommu: Adding device 0000:40:07.1 to group 47
[    5.020606] iommu: Adding device 0000:40:08.0 to group 48
[    5.026084] iommu: Adding device 0000:40:08.1 to group 49
[    5.031563] iommu: Adding device 0000:41:00.0 to group 50
[    5.037042] iommu: Adding device 0000:41:00.2 to group 51
[    5.042520] iommu: Adding device 0000:42:00.0 to group 52
[    5.047998] iommu: Adding device 0000:42:00.1 to group 53
[    5.053486] iommu: Adding device 0000:60:01.0 to group 54
[    5.058985] iommu: Adding device 0000:60:02.0 to group 55
[    5.064473] iommu: Adding device 0000:60:03.0 to group 56
[    5.069956] iommu: Adding device 0000:60:03.1 to group 57
[    5.075441] iommu: Adding device 0000:60:04.0 to group 58
[    5.080939] iommu: Adding device 0000:60:07.0 to group 59
[    5.086408] iommu: Adding device 0000:60:07.1 to group 60
[    5.091908] iommu: Adding device 0000:60:08.0 to group 61
[    5.097383] iommu: Adding device 0000:60:08.1 to group 62
[    5.102873] iommu: Adding device 0000:61:00.0 to group 63
[    5.108357] iommu: Adding device 0000:62:00.0 to group 64
[    5.113846] iommu: Adding device 0000:62:00.2 to group 65
[    5.119329] iommu: Adding device 0000:63:00.0 to group 66
[    5.124817] iommu: Adding device 0000:63:00.1 to group 67
[    5.130312] iommu: Adding device 0000:80:01.0 to group 68
[    5.135804] iommu: Adding device 0000:80:02.0 to group 69
[    5.141292] iommu: Adding device 0000:80:03.0 to group 70
[    5.146790] iommu: Adding device 0000:80:04.0 to group 71
[    5.152287] iommu: Adding device 0000:80:07.0 to group 72
[    5.157767] iommu: Adding device 0000:80:07.1 to group 73
[    5.163267] iommu: Adding device 0000:80:08.0 to group 74
[    5.168752] iommu: Adding device 0000:80:08.1 to group 75
[    5.174238] iommu: Adding device 0000:81:00.0 to group 76
[    5.179728] iommu: Adding device 0000:81:00.2 to group 77
[    5.185206] iommu: Adding device 0000:82:00.0 to group 78
[    5.190700] iommu: Adding device 0000:82:00.1 to group 79
[    5.196193] iommu: Adding device 0000:a0:01.0 to group 80
[    5.201705] iommu: Adding device 0000:a0:02.0 to group 81
[    5.207195] iommu: Adding device 0000:a0:03.0 to group 82
[    5.212697] iommu: Adding device 0000:a0:04.0 to group 83
[    5.218186] iommu: Adding device 0000:a0:07.0 to group 84
[    5.223677] iommu: Adding device 0000:a0:07.1 to group 85
[    5.229169] iommu: Adding device 0000:a0:08.0 to group 86
[    5.234661] iommu: Adding device 0000:a0:08.1 to group 87
[    5.240158] iommu: Adding device 0000:a1:00.0 to group 88
[    5.245646] iommu: Adding device 0000:a1:00.2 to group 89
[    5.251131] iommu: Adding device 0000:a2:00.0 to group 90
[    5.256621] iommu: Adding device 0000:a2:00.1 to group 91
[    5.262118] iommu: Adding device 0000:c0:01.0 to group 92
[    5.267619] iommu: Adding device 0000:c0:02.0 to group 93
[    5.273112] iommu: Adding device 0000:c0:03.0 to group 94
[    5.278608] iommu: Adding device 0000:c0:04.0 to group 95
[    5.284112] iommu: Adding device 0000:c0:07.0 to group 96
[    5.289596] iommu: Adding device 0000:c0:07.1 to group 97
[    5.295094] iommu: Adding device 0000:c0:08.0 to group 98
[    5.300587] iommu: Adding device 0000:c0:08.1 to group 99
[    5.306073] iommu: Adding device 0000:c1:00.0 to group 100
[    5.311656] iommu: Adding device 0000:c1:00.2 to group 101
[    5.317227] iommu: Adding device 0000:c2:00.0 to group 102
[    5.322809] iommu: Adding device 0000:c2:00.1 to group 103
[    5.328394] iommu: Adding device 0000:e0:01.0 to group 104
[    5.333978] iommu: Adding device 0000:e0:02.0 to group 105
[    5.339559] iommu: Adding device 0000:e0:03.0 to group 106
[    5.345150] iommu: Adding device 0000:e0:04.0 to group 107
[    5.350739] iommu: Adding device 0000:e0:07.0 to group 108
[    5.356306] iommu: Adding device 0000:e0:07.1 to group 109
[    5.361900] iommu: Adding device 0000:e0:08.0 to group 110
[    5.367469] iommu: Adding device 0000:e0:08.1 to group 111
[    5.373052] iommu: Adding device 0000:e1:00.0 to group 112
[    5.378619] iommu: Adding device 0000:e1:00.2 to group 113
[    5.384204] iommu: Adding device 0000:e2:00.0 to group 114
[    5.389779] iommu: Adding device 0000:e2:00.1 to group 115
[    5.395500] AMD-Vi: Found IOMMU at 0000:00:00.2 cap 0x40
[    5.400813] AMD-Vi: Extended features (0xf77ef22294ada):
[    5.406124]  PPR NX GT IA GA PC GA_vAPIC
[    5.410054] AMD-Vi: Found IOMMU at 0000:20:00.2 cap 0x40
[    5.415364] AMD-Vi: Extended features (0xf77ef22294ada):
[    5.420677]  PPR NX GT IA GA PC GA_vAPIC
[    5.424603] AMD-Vi: Found IOMMU at 0000:40:00.2 cap 0x40
[    5.429916] AMD-Vi: Extended features (0xf77ef22294ada):
[    5.435228]  PPR NX GT IA GA PC GA_vAPIC
[    5.439154] AMD-Vi: Found IOMMU at 0000:60:00.2 cap 0x40
[    5.444468] AMD-Vi: Extended features (0xf77ef22294ada):
[    5.449780]  PPR NX GT IA GA PC GA_vAPIC
[    5.453708] AMD-Vi: Found IOMMU at 0000:80:00.2 cap 0x40
[    5.459019] AMD-Vi: Extended features (0xf77ef22294ada):
[    5.464331]  PPR NX GT IA GA PC GA_vAPIC
[    5.468258] AMD-Vi: Found IOMMU at 0000:a0:00.2 cap 0x40
[    5.473572] AMD-Vi: Extended features (0xf77ef22294ada):
[    5.478885]  PPR NX GT IA GA PC GA_vAPIC
[    5.482812] AMD-Vi: Found IOMMU at 0000:c0:00.2 cap 0x40
[    5.488122] AMD-Vi: Extended features (0xf77ef22294ada):
[    5.493439]  PPR NX GT IA GA PC GA_vAPIC
[    5.497365] AMD-Vi: Found IOMMU at 0000:e0:00.2 cap 0x40
[    5.502675] AMD-Vi: Extended features (0xf77ef22294ada):
[    5.507989]  PPR NX GT IA GA PC GA_vAPIC
[    5.511913] AMD-Vi: Interrupt remapping enabled
[    5.516447] AMD-Vi: virtual APIC enabled
[    5.521109] AMD-Vi: Lazy IO/TLB flushing enabled
[    5.527025] amd_uncore: AMD NB counters detected
[    5.531646] amd_uncore: AMD LLC counters detected
[    5.536489] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    5.543629] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    5.550771] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    5.557910] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    5.565049] perf/amd_iommu: Detected AMD IOMMU #4 (2 banks, 4 counters/bank).
[    5.572192] perf/amd_iommu: Detected AMD IOMMU #5 (2 banks, 4 counters/bank).
[    5.579331] perf/amd_iommu: Detected AMD IOMMU #6 (2 banks, 4 counters/bank).
[    5.586472] perf/amd_iommu: Detected AMD IOMMU #7 (2 banks, 4 counters/bank).
[    5.603124] Initialise system trusted keyrings
[    5.607587] Key type blacklist registered
[    5.611704] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[    5.619189] zbud: loaded
[    5.677994] NET: Registered protocol family 38
[    5.682506] Key type asymmetric registered
[    5.686639] Asymmetric key parser 'x509' registered
[    5.691573] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    5.699044] io scheduler noop registered
[    5.702979] io scheduler deadline registered (default)
[    5.708173] io scheduler cfq registered
[    5.712015] io scheduler mq-deadline registered (default)
[    5.717425] io scheduler kyber registered
[    5.721547] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    5.729187] pcieport 0000:00:01.1: Signaling PME with IRQ 34
[    5.735187] pcieport 0000:00:01.2: Signaling PME with IRQ 35
[    5.741168] pcieport 0000:00:01.3: Signaling PME with IRQ 36
[    5.747189] pcieport 0000:00:07.1: Signaling PME with IRQ 37
[    5.754061] pcieport 0000:00:08.1: Signaling PME with IRQ 39
[    5.760727] pcieport 0000:20:07.1: Signaling PME with IRQ 40
[    5.766955] pcieport 0000:20:08.1: Signaling PME with IRQ 42
[    5.772742] BUG: unable to handle kernel paging request at 0000000000002088
[    5.773618] PGD 0 P4D 0 
[    5.773618] Oops: 0000 [#1] SMP NOPTI
[    5.773618] CPU: 2 PID: 1 Comm: swapper/0 Not tainted 4.20.0-rc1+ #3
[    5.773618] Hardware name: Dell Inc. PowerEdge R7425/02MJ3T, BIOS 1.4.3 06/29/2018
[    5.773618] RIP: 0010:__alloc_pages_nodemask+0xe2/0x2a0
[    5.773618] Code: 00 00 44 89 ea 80 ca 80 41 83 f8 01 44 0f 44 ea 89 da c1 ea 08 83 e2 01 88 54 24 20 48 8b 54 24 08 48 85 d2 0f 85 46 01 00 00 <3b> 77 08 0f 82 3d 01 00 00 48 89 f8 44 89 ea 48 89 e1 44 89 e6 89
[    5.773618] RSP: 0018:ffffaa600005fb20 EFLAGS: 00010246
[    5.773618] RAX: 0000000000000000 RBX: 00000000006012c0 RCX: 0000000000000000
[    5.773618] RDX: 0000000000000000 RSI: 0000000000000002 RDI: 0000000000002080
[    5.773618] RBP: 00000000006012c0 R08: 0000000000000000 R09: 0000000000000002
[    5.773618] R10: 00000000006080c0 R11: 0000000000000002 R12: 0000000000000000
[    5.773618] R13: 0000000000000001 R14: 0000000000000000 R15: 0000000000000002
[    5.773618] FS:  0000000000000000(0000) GS:ffff8c69afe00000(0000) knlGS:0000000000000000
[    5.773618] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    5.773618] CR2: 0000000000002088 CR3: 000000087e00a000 CR4: 00000000003406e0
[    5.773618] Call Trace:
[    5.773618]  new_slab+0xa9/0x570
[    5.773618]  ___slab_alloc+0x375/0x540
[    5.773618]  ? pinctrl_bind_pins+0x2b/0x2a0
[    5.773618]  __slab_alloc+0x1c/0x38
[    5.773618]  __kmalloc_node_track_caller+0xc8/0x270
[    5.773618]  ? pinctrl_bind_pins+0x2b/0x2a0
[    5.773618]  devm_kmalloc+0x28/0x60
[    5.773618]  pinctrl_bind_pins+0x2b/0x2a0
[    5.773618]  really_probe+0x73/0x420
[    5.773618]  driver_probe_device+0x115/0x130
[    5.773618]  __driver_attach+0x103/0x110
[    5.773618]  ? driver_probe_device+0x130/0x130
[    5.773618]  bus_for_each_dev+0x67/0xc0
[    5.773618]  ? klist_add_tail+0x3b/0x70
[    5.773618]  bus_add_driver+0x41/0x260
[    5.773618]  ? pcie_port_setup+0x4d/0x4d
[    5.773618]  driver_register+0x5b/0xe0
[    5.773618]  ? pcie_port_setup+0x4d/0x4d
[    5.773618]  do_one_initcall+0x4e/0x1d4
[    5.773618]  ? init_setup+0x25/0x28
[    5.773618]  kernel_init_freeable+0x1c1/0x26e
[    5.773618]  ? loglevel+0x5b/0x5b
[    5.773618]  ? rest_init+0xb0/0xb0
[    5.773618]  kernel_init+0xa/0x110
[    5.773618]  ret_from_fork+0x22/0x40
[    5.773618] Modules linked in:
[    5.773618] CR2: 0000000000002088
[    5.773618] ---[ end trace 1030c9120a03d081 ]---
[    5.773618] RIP: 0010:__alloc_pages_nodemask+0xe2/0x2a0
[    5.773618] Code: 00 00 44 89 ea 80 ca 80 41 83 f8 01 44 0f 44 ea 89 da c1 ea 08 83 e2 01 88 54 24 20 48 8b 54 24 08 48 85 d2 0f 85 46 01 00 00 <3b> 77 08 0f 82 3d 01 00 00 48 89 f8 44 89 ea 48 89 e1 44 89 e6 89
[    5.773618] RSP: 0018:ffffaa600005fb20 EFLAGS: 00010246
[    5.773618] RAX: 0000000000000000 RBX: 00000000006012c0 RCX: 0000000000000000
[    5.773618] RDX: 0000000000000000 RSI: 0000000000000002 RDI: 0000000000002080
[    5.773618] RBP: 00000000006012c0 R08: 0000000000000000 R09: 0000000000000002
[    5.773618] R10: 00000000006080c0 R11: 0000000000000002 R12: 0000000000000000
[    5.773618] R13: 0000000000000001 R14: 0000000000000000 R15: 0000000000000002
[    5.773618] FS:  0000000000000000(0000) GS:ffff8c69afe00000(0000) knlGS:0000000000000000
[    5.773618] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    5.773618] CR2: 0000000000002088 CR3: 000000087e00a000 CR4: 00000000003406e0
[    5.773618] Kernel panic - not syncing: Fatal exception
[    5.773618] Kernel Offset: 0x23a00000 from 0xffffffff81000000 (relocation range: 0xffffffff80000000-0xffffffffbfffffff)
[    5.773618] ---[ end Kernel panic - not syncing: Fatal exception ]---
[    6.103338] ------------[ cut here ]------------
[    6.104337] sched: Unexpected reschedule of offline CPU#0!
[    6.104337] WARNING: CPU: 2 PID: 1 at arch/x86/kernel/smp.c:128 native_smp_send_reschedule+0x39/0x40
[    6.104337] Modules linked in:
[    6.104337] CPU: 2 PID: 1 Comm: swapper/0 Tainted: G      D           4.20.0-rc1+ #3
[    6.104337] Hardware name: Dell Inc. PowerEdge R7425/02MJ3T, BIOS 1.4.3 06/29/2018
[    6.104337] RIP: 0010:native_smp_send_reschedule+0x39/0x40
[    6.104337] Code: 0f 92 c0 84 c0 74 15 48 8b 05 e3 a6 0e 01 be fd 00 00 00 48 8b 40 30 e9 e5 5a ba 00 89 fe 48 c7 c7 58 84 a7 a5 e8 67 e9 03 00 <0f> 0b c3 0f 1f 40 00 0f 1f 44 00 00 53 48 83 ec 20 65 48 8b 04 25
[    6.104337] RSP: 0018:ffff8c69afe03ee0 EFLAGS: 00010082
[    6.104337] RAX: 0000000000000000 RBX: ffff8c66462a0000 RCX: ffffffffa5c644c8
[    6.104337] RDX: 0000000000000001 RSI: 0000000000000092 RDI: 0000000000000046
[    6.104337] RBP: 0000000000000000 R08: 0000022b3208548f R09: 0000000000000531
[    6.104337] R10: 0000000000000000 R11: ffff8c69afe03c50 R12: ffffaa600005f8a8
[    6.104337] R13: ffffffffa4b2f720 R14: 0000000000000002 R15: ffff8c69afe1ceb8
[    6.104337] FS:  0000000000000000(0000) GS:ffff8c69afe00000(0000) knlGS:0000000000000000
[    6.104337] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    6.104337] CR2: 0000000000002088 CR3: 000000087e00a000 CR4: 00000000003406e0
[    6.104337] Call Trace:
[    6.104337]  <IRQ>
[    6.104337]  update_process_times+0x40/0x50
[    6.104337]  tick_sched_handle+0x25/0x60
[    6.104337]  tick_sched_timer+0x37/0x70
[    6.104337]  __hrtimer_run_queues+0xfb/0x270
[    6.104337]  hrtimer_interrupt+0x122/0x270
[    6.104337]  smp_apic_timer_interrupt+0x6a/0x140
[    6.104337]  apic_timer_interrupt+0xf/0x20
[    6.104337]  </IRQ>
[    6.104337] RIP: 0010:panic+0x220/0x26c
[    6.104337] Code: 83 3d 9f d9 96 01 00 74 05 e8 78 5b 02 00 48 c7 c6 80 82 40 a6 48 c7 c7 d8 36 a8 a5 31 c0 e8 d7 60 06 00 fb 66 0f 1f 44 00 00 <45> 31 e4 e8 14 5a 0d 00 4d 39 ec 7c 1e 41 83 f6 01 48 8b 05 44 d9
[    6.104337] RSP: 0018:ffffaa600005f958 EFLAGS: 00000246 ORIG_RAX: ffffffffffffff13
[    6.104337] RAX: 0000000000000039 RBX: 0000000000000000 RCX: ffffffffa5c644c8
[    6.104337] RDX: 0000000000000000 RSI: 0000000000000096 RDI: 0000000000000046
[    6.104337] RBP: ffffaa600005f9c8 R08: 0000022b30c5221e R09: 000000000000052f
[    6.104337] R10: 0000000000000000 R11: ffffaa600005f6d0 R12: ffffffffa5a6fa51
[    6.104337] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000001
[    6.104337]  ? panic+0x219/0x26c
[    6.104337]  oops_end+0xc3/0xe0
[    6.104337]  no_context+0x1b2/0x3e0
[    6.104337]  ? __switch_to_asm+0x40/0x70
[    6.104337]  ? __switch_to_asm+0x34/0x70
[    6.104337]  do_page_fault+0x32/0x140
[    6.104337]  ? __switch_to_asm+0x40/0x70
[    6.104337]  page_fault+0x1e/0x30
[    6.104337] RIP: 0010:__alloc_pages_nodemask+0xe2/0x2a0
[    6.104337] Code: 00 00 44 89 ea 80 ca 80 41 83 f8 01 44 0f 44 ea 89 da c1 ea 08 83 e2 01 88 54 24 20 48 8b 54 24 08 48 85 d2 0f 85 46 01 00 00 <3b> 77 08 0f 82 3d 01 00 00 48 89 f8 44 89 ea 48 89 e1 44 89 e6 89
[    6.104337] RSP: 0018:ffffaa600005fb20 EFLAGS: 00010246
[    6.104337] RAX: 0000000000000000 RBX: 00000000006012c0 RCX: 0000000000000000
[    6.104337] RDX: 0000000000000000 RSI: 0000000000000002 RDI: 0000000000002080
[    6.104337] RBP: 00000000006012c0 R08: 0000000000000000 R09: 0000000000000002
[    6.104337] R10: 00000000006080c0 R11: 0000000000000002 R12: 0000000000000000
[    6.104337] R13: 0000000000000001 R14: 0000000000000000 R15: 0000000000000002
[    6.104337]  new_slab+0xa9/0x570
[    6.104337]  ___slab_alloc+0x375/0x540
[    6.104337]  ? pinctrl_bind_pins+0x2b/0x2a0
[    6.104337]  __slab_alloc+0x1c/0x38
[    6.104337]  __kmalloc_node_track_caller+0xc8/0x270
[    6.104337]  ? pinctrl_bind_pins+0x2b/0x2a0
[    6.104337]  devm_kmalloc+0x28/0x60
[    6.104337]  pinctrl_bind_pins+0x2b/0x2a0
[    6.104337]  really_probe+0x73/0x420
[    6.104337]  driver_probe_device+0x115/0x130
[    6.104337]  __driver_attach+0x103/0x110
[    6.104337]  ? driver_probe_device+0x130/0x130
[    6.104337]  bus_for_each_dev+0x67/0xc0
[    6.104337]  ? klist_add_tail+0x3b/0x70
[    6.104337]  bus_add_driver+0x41/0x260
[    6.104337]  ? pcie_port_setup+0x4d/0x4d
[    6.104337]  driver_register+0x5b/0xe0
[    6.104337]  ? pcie_port_setup+0x4d/0x4d
[    6.104337]  do_one_initcall+0x4e/0x1d4
[    6.104337]  ? init_setup+0x25/0x28
[    6.104337]  kernel_init_freeable+0x1c1/0x26e
[    6.104337]  ? loglevel+0x5b/0x5b
[    6.104337]  ? rest_init+0xb0/0xb0
[    6.104337]  kernel_init+0xa/0x110
[    6.104337]  ret_from_fork+0x22/0x40
[    6.104337] ---[ end trace 1030c9120a03d082 ]---

  parent reply	other threads:[~2018-12-05  5:38 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-04  3:05 [PATCH] mm/alloc: fallback to first node if the wanted node offline Pingfan Liu
2018-12-04  3:53 ` David Rientjes
2018-12-04  7:16   ` Pingfan Liu
2018-12-05  5:49     ` Pingfan Liu
2018-12-05 19:00       ` David Rientjes
2018-12-04  6:54 ` Wei Yang
2018-12-04  7:20   ` Pingfan Liu
2018-12-04  8:34     ` Wei Yang
2018-12-04  8:52       ` Pingfan Liu
2018-12-04  9:09         ` Wei Yang
2018-12-05  5:50           ` Pingfan Liu
2018-12-04  7:22 ` Michal Hocko
2018-12-04  8:20   ` Pingfan Liu
2018-12-04  8:40     ` Wei Yang
2018-12-04  8:56       ` Pingfan Liu
2018-12-04  8:56     ` Michal Hocko
2018-12-04 14:42       ` Vlastimil Babka
2018-12-05  5:38       ` Pingfan Liu [this message]
2018-12-05  9:21         ` Michal Hocko
2018-12-05  9:29           ` Pingfan Liu
2018-12-05  9:40             ` Vlastimil Babka
2018-12-06  3:07               ` Pingfan Liu
2018-12-06  8:28                 ` Michal Hocko
2018-12-06 10:03                   ` Pingfan Liu
2018-12-06 10:44                     ` Pingfan Liu
2018-12-06 12:11                       ` Michal Hocko
2018-12-07  2:56                         ` Pingfan Liu
2018-12-07  7:53                           ` Michal Hocko
2018-12-07  9:40                             ` Pingfan Liu
2018-12-07 11:30                               ` Michal Hocko
2018-12-07 13:20                                 ` Pingfan Liu
2018-12-07 14:22                                   ` Michal Hocko
2018-12-07 14:27                                     ` Pingfan Liu
2018-12-07 14:50                                       ` Michal Hocko
2018-12-07 15:56                                       ` Michal Hocko
2018-12-10  4:00                                         ` Pingfan Liu
2018-12-10  7:57                                           ` Pingfan Liu
2018-12-10 12:37                                         ` Michal Hocko
2018-12-11  8:05                                           ` Pingfan Liu
2018-12-11  9:44                                             ` Michal Hocko
2018-12-12  8:33                                               ` Pingfan Liu
2018-12-12  8:31                                           ` Pingfan Liu
2018-12-12 11:53                                             ` Michal Hocko
2018-12-13  8:37                                               ` Pingfan Liu
2018-12-13  9:04                                                 ` Pingfan Liu
2018-12-17 13:29                                                   ` Michal Hocko
2018-12-20  7:19                                                     ` Pingfan Liu
2018-12-20  9:19                                                       ` Michal Hocko
2019-01-08 14:34                                                         ` Michal Hocko
2019-01-09  3:13                                                           ` Pingfan Liu
2019-01-11  3:12                                                           ` Pingfan Liu
2019-01-11  9:23                                                             ` Michal Hocko
2018-12-17 12:57                                                 ` Michal Hocko
2018-12-05  9:43             ` Michal Hocko
2018-12-06  3:34               ` Pingfan Liu
2018-12-06  7:23                 ` Michal Hocko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAFgQCTuyKBZdwWG=fOECE6J8DbZJsErJOyXTrLT0Kog3ec7vhw@mail.gmail.com' \
    --to=kernelfans@gmail.com \
    --cc=Jonathan.Cameron@huawei.com \
    --cc=akpm@linux-foundation.org \
    --cc=bhelgaas@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mhocko@kernel.org \
    --cc=rppt@linux.vnet.ibm.com \
    --cc=vbabka@suse.cz \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).