Bug 202187 - KVM guest VM crashes during vcpu hotplug with memoryless numa node configuration
Summary: KVM guest VM crashes during vcpu hotplug with memoryless numa node configuration
Status: NEW
Alias: None
Product: Platform Specific/Hardware
Classification: Unclassified
Component: IA-64 (show other bugs)
Hardware: x86-64 Linux
: P1 high
Assignee: platform_ia-64
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-01-09 04:58 UTC by Satheesh Rajendran
Modified: 2019-01-09 06:28 UTC (History)
1 user (show)

See Also:
Kernel Version: 5.0.0-rc1+
Subsystem:
Regression: No
Bisected commit-id:


Attachments
Guest xml(F27.xml) (3.26 KB, text/plain)
2019-01-09 04:58 UTC, Satheesh Rajendran
Details

Description Satheesh Rajendran 2019-01-09 04:58:40 UTC
Created attachment 280351 [details]
Guest xml(F27.xml)

Issue: KVM Guest VM crashes during a vcpu hotplug, online sequence with specific guest numa configuration.

Environment:
Host: 4.19.13-300.fc29.x86_64 (fedora 29)
Qemu: 3.1.50 (v3.1.0-645-gc102d9471f-dirty)
Guest Kernel: 5.0.0-rc1+ (commit 3bd6e94bec122a951d462c239b47954cf5f36e33)
$lscpu
Architecture:        x86_64
CPU op-mode(s):      32-bit, 64-bit
Byte Order:          Little Endian
CPU(s):              4
On-line CPU(s) list: 0-3
Thread(s) per core:  2
Core(s) per socket:  2
Socket(s):           1
NUMA node(s):        1
Vendor ID:           GenuineIntel
CPU family:          6
Model:               61
Model name:          Intel(R) Core(TM) i5-5300U CPU @ 2.30GHz
Stepping:            4
CPU MHz:             2693.975
CPU max MHz:         2900.0000
CPU min MHz:         500.0000
BogoMIPS:            4589.73
Virtualization:      VT-x
L1d cache:           32K
L1i cache:           32K
L2 cache:            256K
L3 cache:            3072K
NUMA node0 CPU(s):   0-3
Flags:               fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap intel_pt xsaveopt dtherm ida arat pln pts flush_l1d




Steps to reproduce:
1. Define a guest with below numa configuration( refer attachment for complete guest xml)
$sudo virsh define F27.xml

..
<vcpu placement='static' current='2'>8</vcpu>
..
 <cpu mode='host-model' check='partial'>
    <model fallback='allow'/>
    <topology sockets='1' cores='8' threads='1'/>
    <numa>
      <cell id='0' cpus='0-1' memory='0' unit='KiB'/>
      <cell id='1' cpus='2-3' memory='2097152' unit='KiB'/>
      <cell id='2' cpus='4-5' memory='0' unit='KiB'/>
      <cell id='3' cpus='6-7' memory='0' unit='KiB'/>
    </numa>
  </cpu>

2. Boot the guest and check vcpus inside guest
$sudo virsh start F27
# uname -a
Linux atest-guest 5.0.0-rc1+ #1 SMP Tue Jan 8 16:13:47 IST 2019 x86_64 x86_64 x86_64 GNU/Linux
[root@atest-guest ~]# lscpu
Architecture:        x86_64
CPU op-mode(s):      32-bit, 64-bit
Byte Order:          Little Endian
CPU(s):              2
On-line CPU(s) list: 0,1
Thread(s) per core:  1
Core(s) per socket:  2
Socket(s):           1
NUMA node(s):        2
Vendor ID:           GenuineIntel
CPU family:          6
Model:               61
Model name:          Intel Core Processor (Broadwell, IBRS)
Stepping:            2
CPU MHz:             2294.686
BogoMIPS:            4589.37
Hypervisor vendor:   KVM
Virtualization type: full
L1d cache:           32K
L1i cache:           32K
L2 cache:            4096K
L3 cache:            16384K
NUMA node0 CPU(s):   0,1
NUMA node1 CPU(s):   
Flags:               fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch cpuid_fault invpcid_single pti ssbd ibrs ibpb fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap xsaveopt arat

3. hotplug vcpus from libvirt
$sudo virsh setvcpus F27 8 --live

[root@atest-guest ~]# [   36.066604] kauditd_printk_skb: 2 callbacks suppressed
[   36.066607] audit: type=1131 audit(1547008713.032:52): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  113.586301] CPU2 has been hot-added
[  113.597262] CPU3 has been hot-added
[  113.599946] CPU4 has been hot-added
[  113.609621] CPU5 has been hot-added
[  113.641969] CPU6 has been hot-added
[  113.646494] CPU7 has been hot-added

[root@atest-guest ~]# lscpu
Architecture:         x86_64
CPU op-mode(s):       32-bit, 64-bit
Byte Order:           Little Endian
CPU(s):               8
On-line CPU(s) list:  0,1
Off-line CPU(s) list: 2-7
Thread(s) per core:   1
Core(s) per socket:   2
Socket(s):            1
NUMA node(s):         2
Vendor ID:            GenuineIntel
CPU family:           6
Model:                61
Model name:           Intel Core Processor (Broadwell, IBRS)
Stepping:             2
CPU MHz:              2294.686
BogoMIPS:             4589.37
Hypervisor vendor:    KVM
Virtualization type:  full
L1d cache:            32K
L1i cache:            32K
L2 cache:             4096K
L3 cache:             16384K
NUMA node0 CPU(s):    0,1
NUMA node1 CPU(s):    

Now online vcpus inside guest
#for i in {2..7};do echo 1 > /sys/devices/system/cpu/cpu$i/online;done

[  157.748842] smpboot: Booting Node 1 Processor 2 APIC 0x2
[  157.765959] kvm-clock: cpu 2, msr 27f7e081, secondary cpu clock
[  157.772772] ------------[ cut here ]------------
[  157.779039] sched: CPU #2's llc-sibling CPU #0 is not on the same node! [node: 1 != 0]. Ignoring dependency.
[  157.781210] WARNING: CPU: 2 PID: 0 at arch/x86/kernel/smpboot.c:381 topology_sane.isra.6+0x5d/0x70
[  157.789495] Modules linked in:
[  157.797573] CPU: 2 PID: 0 Comm: swapper/2 Not tainted 5.0.0-rc1+ #1
[  157.799933] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  157.802790] RIP: 0010:topology_sane.isra.6+0x5d/0x70
[  157.808005] Code: 0f 94 c0 c3 80 3d 19 9c 4b 01 00 75 ef 89 f1 41 89 d9 89 fe 41 89 e8 48 c7 c7 b0 13 22 be c6 05 ff 9b 4b 01 01 e8 3a 25 02 00 <0f> 0b eb ce 66 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 40 00 0f b6 05
[  157.814254] RSP: 0000:ffff983fc0387ed0 EFLAGS: 00010086
[  157.815499] RAX: 0000000000000000 RBX: 0000000000000000 RCX: 0000000000000006
[  157.818185] RDX: 0000000000000007 RSI: 0000000000000082 RDI: ffff88d5bd415570
[  157.819659] RBP: 0000000000000001 R08: 00000000000006dc R09: 000000000000006f
[  157.833246] R10: 0000000000000000 R11: ffff983fc0387d80 R12: 000000000000f040
[  157.837056] R13: 0000000000000002 R14: 0000000000000001 R15: 0000000000000002
[  157.838833] FS:  0000000000000000(0000) GS:ffff88d5bd400000(0000) knlGS:0000000000000000
[  157.857073] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  157.858271] CR2: 0000000000000000 CR3: 000000002780e001 CR4: 00000000003606e0
[  157.859709] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[  157.861159] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[  157.862644] Call Trace:
[  157.863173]  set_cpu_sibling_map+0x146/0x4d0
[  157.867228]  start_secondary+0x9f/0x1b0
[  157.869339]  secondary_startup_64+0xa4/0xb0
[  157.885493] ---[ end trace 3214812b285a01b5 ]---
[  157.912262] KVM setup async PF for cpu 2
[  157.913641] kvm-stealtime: cpu 2, msr 7d415280
[  157.923468] Will online and init hotplugged CPU: 2
[  157.935641] smpboot: Booting Node 1 Processor 3 APIC 0x3
[  157.938268] kvm-clock: cpu 3, msr 27f7e0c1, secondary cpu clock
[  157.950817] KVM setup async PF for cpu 3
[  157.954588] kvm-stealtime: cpu 3, msr 7d515280
[  157.965585] Will online and init hotplugged CPU: 3
[  157.968074] BUG: unable to handle kernel paging request at 0000000000001408
[  157.975151] #PF error: [normal kernel read fault]
[  157.976756] PGD 0 P4D 0 
[  157.979417] Oops: 0000 [#1] SMP PTI
[  157.983606] CPU: 2 PID: 1960 Comm: bash Tainted: G        W         5.0.0-rc1+ #1
[  157.988903] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  157.994315] RIP: 0010:__alloc_pages_nodemask+0x10e/0x290
[  157.997276] Code: 84 c0 0f 85 da 00 00 00 89 d8 48 8b 54 24 08 8b 74 24 1c c1 e8 08 83 e0 01 88 44 24 20 48 8b 04 24 48 85 d2 0f 85 0d 01 00 00 <3b> 70 08 0f 82 04 01 00 00 48 89 44 24 10 44 89 f0 48 89 e1 89 ee
[  158.011439] RSP: 0000:ffff983fc04f3ac8 EFLAGS: 00010246
[  158.014456] RAX: 0000000000001400 RBX: 00000000006012c0 RCX: 0000000000000000
[  158.021068] RDX: 0000000000000000 RSI: 0000000000000002 RDI: 00000000006012c0
[  158.024152] RBP: 0000000000000000 R08: dead000000000100 R09: dead000000000200
[  158.027968] R10: 0000000040000000 R11: ffffbe9681f40048 R12: 0000000000000000
[  158.036846] R13: 00000000006012c0 R14: 0000000000000001 R15: 0000000000000002
[  158.043673] FS:  00007f959ec31b80(0000) GS:ffff88d5bd400000(0000) knlGS:0000000000000000
[  158.047478] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  158.052962] CR2: 0000000000001408 CR3: 00000000775f4003 CR4: 00000000003606e0
[  158.057275] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[  158.061353] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[  158.064362] Call Trace:
[  158.067739]  new_slab+0x95/0x370
[  158.071904]  ___slab_alloc+0x367/0x4e0
[  158.074377]  ? __switch_to_asm+0x40/0x70
[  158.076538]  ? __smpboot_create_thread.part.7+0x37/0xe0
[  158.078967]  ? __switch_to_asm+0x34/0x70
[  158.081353]  ? __switch_to_asm+0x40/0x70
[  158.086456]  ? reschedule_interrupt+0xa/0x20
[  158.089704]  __slab_alloc+0x9/0x10
[  158.091748]  kmem_cache_alloc_node_trace+0x13e/0x180
[  158.095075]  ? __smpboot_create_thread.part.7+0x37/0xe0
[  158.098422]  ? idle_thread_get+0x40/0x40
[  158.101228]  __smpboot_create_thread.part.7+0x37/0xe0
[  158.104600]  smpboot_create_threads+0x62/0x90
[  158.107239]  cpuhp_invoke_callback+0x8f/0x540
[  158.110588]  _cpu_up+0xa4/0x130
[  158.112647]  do_cpu_up+0x96/0xb0
[  158.114839]  cpu_subsys_online+0x31/0x80
[  158.118559]  device_online+0x59/0x80
[  158.121652]  online_store+0x7f/0x90
[  158.123487]  kernfs_fop_write+0x103/0x180
[  158.125494]  __vfs_write+0x31/0x190
[  158.132527]  ? set_close_on_exec+0x25/0x60
[  158.135349]  vfs_write+0xa0/0x1a0
[  158.138478]  ksys_write+0x4a/0xb0
[  158.140761]  do_syscall_64+0x43/0xf0
[  158.143194]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
[  158.145835] RIP: 0033:0x7f959e306ea4
[  158.147875] Code: 00 f7 d8 64 89 02 48 c7 c0 ff ff ff ff eb b7 0f 1f 80 00 00 00 00 8b 05 8a b9 2d 00 48 63 ff 85 c0 75 13 b8 01 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 54 f3 c3 66 90 55 53 48 89 d5 48 89 f3 48 83
[  158.160587] RSP: 002b:00007ffda45c1dc8 EFLAGS: 00000246 ORIG_RAX: 0000000000000001
[  158.165622] RAX: ffffffffffffffda RBX: 0000000000000002 RCX: 00007f959e306ea4
[  158.170578] RDX: 0000000000000002 RSI: 000055edcd0c55c0 RDI: 0000000000000001
[  158.173396] RBP: 000055edcd0c55c0 R08: 000000000000000a R09: 0000000000000001
[  158.176673] R10: 000000000000000a R11: 0000000000000246 R12: 0000000000000002
[  158.179320] R13: 0000000000000001 R14: 00007f959e5de720 R15: 00007f959e5d98c0
[  158.183231] Modules linked in:
[  158.185211] CR2: 0000000000001408
[  158.186622] ---[ end trace 3214812b285a01b6 ]---
[  158.188665] RIP: 0010:__alloc_pages_nodemask+0x10e/0x290
[  158.192410] Code: 84 c0 0f 85 da 00 00 00 89 d8 48 8b 54 24 08 8b 74 24 1c c1 e8 08 83 e0 01 88 44 24 20 48 8b 04 24 48 85 d2 0f 85 0d 01 00 00 <3b> 70 08 0f 82 04 01 00 00 48 89 44 24 10 44 89 f0 48 89 e1 89 ee
[  158.204433] RSP: 0000:ffff983fc04f3ac8 EFLAGS: 00010246
[  158.206816] RAX: 0000000000001400 RBX: 00000000006012c0 RCX: 0000000000000000
[  158.210397] RDX: 0000000000000000 RSI: 0000000000000002 RDI: 00000000006012c0
[  158.214155] RBP: 0000000000000000 R08: dead000000000100 R09: dead000000000200
[  158.217761] R10: 0000000040000000 R11: ffffbe9681f40048 R12: 0000000000000000
[  158.230805] R13: 00000000006012c0 R14: 0000000000000001 R15: 0000000000000002
[  158.237786] FS:  00007f959ec31b80(0000) GS:ffff88d5bd400000(0000) knlGS:0000000000000000
[  158.241872] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  158.245268] CR2: 0000000000001408 CR3: 00000000775f4003 CR4: 00000000003606e0
[  158.248684] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[  158.257863] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[  158.264512] bash (1960) used greatest stack depth: 13072 bytes left
[  158.267822] audit: type=1104 audit(1547008835.233:53): pid=1877 uid=0 auid=0 ses=1 msg='op=PAM:setcred grantors=pam_unix acct="root" exe="/usr/bin/login" hostname=atest-guest addr=? terminal=ttyS0 res=success'
[  158.280940] audit: type=1106 audit(1547008835.242:54): pid=1877 uid=0 auid=0 ses=1 msg='op=PAM:session_close grantors=pam_selinux,pam_loginuid,pam_console,pam_selinux,pam_namespace,pam_keyinit,pam_keyinit,pam_limits,pam_systemd,pam_unix,pam_lastlog acct="root" exe="/usr/bin/login" hostname=atest-guest addr=? terminal=ttyS0 res=success'
[  158.302254] audit: type=1131 audit(1547008835.268:55): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=serial-getty@ttyS0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  158.321034] systemd-journal (2051) used greatest stack depth: 12984 bytes left
[  158.355557] audit: type=1131 audit(1547008835.320:56): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  158.610934] audit: type=1130 audit(1547008835.575:57): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=serial-getty@ttyS0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  158.618314] audit: type=1131 audit(1547008835.575:58): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=serial-getty@ttyS0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  158.630163] audit: type=1130 audit(1547008835.593:59): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=serial-getty@ttyS0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'

Fedora 27 (Twenty Seven)
Kernel 5.0.0-rc1+ on an x86_64 (ttyS0)

atest-guest login: root
Password: 
[  164.291034] audit: type=1100 audit(1547008841.254:60): pid=2055 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_unix acct="root" exe="/usr/bin/login" hostname=atest-guest addr=? terminal=ttyS0 res=success'
[  164.307155] audit: type=1101 audit(1547008841.268:61): pid=2055 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_unix acct="root" exe="/usr/bin/login" hostname=atest-guest addr=? terminal=ttyS0 res=success'
[  164.320395] audit: type=1103 audit(1547008841.268:62): pid=2055 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_unix acct="root" exe="/usr/bin/login" hostname=atest-guest addr=? terminal=ttyS0 res=success'
[  164.328871] BUG: unable to handle kernel paging request at 0000000000001408
[  164.330222] audit: type=1006 audit(1547008841.268:63): pid=2055 uid=0 old-auid=4294967295 auid=0 tty=ttyS0 old-ses=4294967295 ses=3 res=1
[  164.382870] #PF error: [normal kernel read fault]
[  164.389654] PGD 0 P4D 0 
[  164.395954] Oops: 0000 [#2] SMP PTI
[  164.399105] CPU: 3 PID: 1 Comm: systemd Tainted: G      D W         5.0.0-rc1+ #1
[  164.403590] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  164.412375] RIP: 0010:__alloc_pages_nodemask+0x10e/0x290
[  164.417333] Code: 84 c0 0f 85 da 00 00 00 89 d8 48 8b 54 24 08 8b 74 24 1c c1 e8 08 83 e0 01 88 44 24 20 48 8b 04 24 48 85 d2 0f 85 0d 01 00 00 <3b> 70 08 0f 82 04 01 00 00 48 89 44 24 10 44 89 f0 48 89 e1 89 ee
[  164.426254] RSP: 0018:ffff983fc031fbe8 EFLAGS: 00010246
[  164.431784] RAX: 0000000000001400 RBX: 00000000000152c0 RCX: 0000000000000000
[  164.441058] RDX: 0000000000000000 RSI: 0000000000000002 RDI: 00000000000152c0
[  164.444578] RBP: 0000000000000002 R08: dead000000000100 R09: dead000000000200
[  164.448261] R10: 0000000040000000 R11: ffffbe9681dd5808 R12: 0000000000000000
[  164.453537] R13: 00000000000152c0 R14: 0000000000000001 R15: 0000000000000002
[  164.457043] FS:  00007f908ba70a40(0000) GS:ffff88d5bd500000(0000) knlGS:0000000000000000
[  164.460765] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  164.464433] CR2: 0000000000001408 CR3: 000000007cb18001 CR4: 00000000003606e0
[  164.470406] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[  164.475949] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[  164.482617] Call Trace:
[  164.486834]  new_slab+0x95/0x370
[  164.496125]  ___slab_alloc+0x367/0x4e0
[  164.503380]  ? alloc_fair_sched_group+0xb3/0x1d0
[  164.506356]  ? sched_create_group+0x1d/0x60
[  164.509198]  __slab_alloc+0x9/0x10
[  164.520193]  kmem_cache_alloc_node_trace+0x13e/0x180
[  164.533374]  ? alloc_fair_sched_group+0xb3/0x1d0
[  164.538942]  alloc_fair_sched_group+0xb3/0x1d0
[  164.542690]  sched_create_group+0x30/0x60
[  164.545267]  cpu_cgroup_css_alloc+0x11/0x30
[  164.553885]  cgroup_apply_control_enable+0x124/0x2e0
[  164.556854]  cgroup_mkdir+0x38b/0x440
[  164.569767]  kernfs_iop_mkdir+0x55/0x90
[  164.572508]  vfs_mkdir+0xd7/0x180
[  164.574549]  do_mkdirat+0x78/0xf0
[  164.577137]  do_syscall_64+0x43/0xf0
[  164.579403]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
[  164.582350] RIP: 0033:0x7f908b365a77
[  164.588904] Code: 00 b8 ff ff ff ff c3 0f 1f 40 00 48 8b 05 21 64 2d 00 64 c7 00 5f 00 00 00 b8 ff ff ff ff c3 0f 1f 40 00 b8 53 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d f9 63 2d 00 f7 d8 64 89 01 48
[  164.604179] RSP: 002b:00007ffd18338c18 EFLAGS: 00000246 ORIG_RAX: 0000000000000053
[  164.609148] RAX: ffffffffffffffda RBX: 00005608d8e5bd62 RCX: 00007f908b365a77
[  164.619746] RDX: 00007ffd18338ae0 RSI: 00000000000001ed RDI: 00005608d979e3c0
[  164.627872] RBP: 00007ffd18338c50 R08: 0000000000000012 R09: 006563696c732e2d
[  164.631527] R10: 0000000000000100 R11: 0000000000000246 R12: 00005608d9719b78
[  164.639227] R13: 00005608d9747850 R14: 00005608d9747850 R15: 0000000000000003
[  164.645150] Modules linked in:
[  164.648939] CR2: 0000000000001408
[  164.658858] ---[ end trace 3214812b285a01b7 ]---
[  164.661685] RIP: 0010:__alloc_pages_nodemask+0x10e/0x290
[  164.671486] Code: 84 c0 0f 85 da 00 00 00 89 d8 48 8b 54 24 08 8b 74 24 1c c1 e8 08 83 e0 01 88 44 24 20 48 8b 04 24 48 85 d2 0f 85 0d 01 00 00 <3b> 70 08 0f 82 04 01 00 00 48 89 44 24 10 44 89 f0 48 89 e1 89 ee
[  164.692498] RSP: 0000:ffff983fc04f3ac8 EFLAGS: 00010246
[  164.695645] RAX: 0000000000001400 RBX: 00000000006012c0 RCX: 0000000000000000
[  164.699307] RDX: 0000000000000000 RSI: 0000000000000002 RDI: 00000000006012c0
[  164.703136] RBP: 0000000000000000 R08: dead000000000100 R09: dead000000000200
[  164.710381] R10: 0000000040000000 R11: ffffbe9681f40048 R12: 0000000000000000
[  164.712973] R13: 00000000006012c0 R14: 0000000000000001 R15: 0000000000000002
[  164.715470] FS:  00007f908ba70a40(0000) GS:ffff88d5bd500000(0000) knlGS:0000000000000000
[  164.719772] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  164.729776] CR2: 0000000000001408 CR3: 000000007cb18001 CR4: 00000000003606e0
[  164.736035] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[  164.742560] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[  164.769888] audit: type=1105 audit(1547008841.735:64): pid=2055 uid=0 auid=0 ses=3 msg='op=PAM:session_open grantors=pam_selinux,pam_loginuid,pam_console,pam_selinux,pam_namespace,pam_keyinit,pam_keyinit,pam_limits,pam_unix,pam_lastlog acct="root" exe="/usr/bin/login" hostname=atest-guest addr=? terminal=ttyS0 res=success'
Last login: Tue Jan  8 23:38:09 on ttyS0
[  164.806838] audit: type=1110 audit(1547008841.735:65): pid=2055 uid=0 auid=0 ses=3 msg='op=PAM:setcred grantors=pam_unix acct="root" exe="/usr/bin/login" hostname=atest-guest addr=? terminal=ttyS0 res=success'
[  164.812585] printk: systemd: 30 output lines suppressed due to ratelimiting
[  164.865899] audit: type=1112 audit(1547008841.735:66): pid=2055 uid=0 auid=0 ses=3 msg='op=login id=0 exe="/usr/bin/login" hostname=atest-guest addr=? terminal=ttyS0 res=success'
[  164.895457] Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000009
[  164.953091] Kernel Offset: 0x3c000000 from 0xffffffff81000000 (relocation range: 0xffffffff80000000-0xffffffffbfffffff)
[  164.967796] ---[ end Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000009 ]---

Note You need to log in before you can comment on or make changes to this bug.