From 3a1fadcc2eaabb1bf8265276612ab15efead557b Mon Sep 17 00:00:00 2001 From: Serapheim Dimitropoulos Date: Tue, 22 Aug 2023 11:56:54 -0700 Subject: [PATCH] DLPX-87560 sdb: dmesg broken for 5.15 kernels (#340) This patch replaces our hand-written implementation of dmesg which doesn't work for most vanilla kernel versions after 5.10 with the drgn helper which stays up to date more often. In order for this to work I had to change the type of our dmesg command from a Locator+PrettyPrinter to a standard command. This is not a big deal as the only reason we would ever walk and filter dmesg would be to filter the kernel logs by level. I've added this as an argument to the command. = Github Issue Tracker Automation Closes #336 --- sdb/commands/linux/dmesg.py | 73 +- .../dump.201912060006/linux/dmesg | 2532 ++++++++--------- .../dump.201912060006/linux/dmesg -l 3 | 9 + .../dmesg | filter 'obj.level == 3' | dmesg | 8 - .../dump.201912060006/linux/dmesg | pp | 1269 --------- .../dump.202303131823/linux/dmesg | 1225 ++++---- .../dump.202303131823/linux/dmesg -l 3 | 5 + .../dmesg | filter 'obj.level == 3' | dmesg | 4 - .../dump.202303131823/linux/dmesg | pp | 616 ---- tests/integration/test_linux_generic.py | 3 +- 10 files changed, 1938 insertions(+), 3806 deletions(-) create mode 100644 tests/integration/data/regression_output/dump.201912060006/linux/dmesg -l 3 delete mode 100644 tests/integration/data/regression_output/dump.201912060006/linux/dmesg | filter 'obj.level == 3' | dmesg delete mode 100644 tests/integration/data/regression_output/dump.201912060006/linux/dmesg | pp create mode 100644 tests/integration/data/regression_output/dump.202303131823/linux/dmesg -l 3 delete mode 100644 tests/integration/data/regression_output/dump.202303131823/linux/dmesg | filter 'obj.level == 3' | dmesg delete mode 100644 tests/integration/data/regression_output/dump.202303131823/linux/dmesg | pp diff --git a/sdb/commands/linux/dmesg.py b/sdb/commands/linux/dmesg.py index 3135ac9..77ecd99 100644 --- a/sdb/commands/linux/dmesg.py +++ b/sdb/commands/linux/dmesg.py @@ -16,43 +16,64 @@ # pylint: disable=missing-docstring +import argparse from typing import Iterable import drgn +from drgn.helpers.linux.printk import get_printk_records import sdb +# pylint: disable=line-too-long -class DMesg(sdb.Locator, sdb.PrettyPrinter): - names = ["dmesg"] - load_on = [sdb.Kernel()] - - input_type = "struct printk_log *" - output_type = "struct printk_log *" +class DMesg(sdb.Command): + """ + DESCRIPTION - def no_input(self) -> Iterable[drgn.Object]: - log_idx = sdb.get_object("log_first_idx") - log_seq = sdb.get_object("clear_seq") - log_end = sdb.get_object("log_next_seq") - log_buf = sdb.get_object("log_buf") + Get contents from kernel log buffer formatted like dmesg(1). - while log_seq < log_end: - entry = drgn.cast('struct printk_log *', log_buf + log_idx) + EXAMPLES - yield entry + sdb> dmesg ! tail + [ 30.544756] AVX2 version of gcm_enc/dec engaged. + [ 30.545019] AES CTR mode by8 optimization enabled + [ 38.855043] Rounding down aligned max_sectors from 4294967295 to 4294967288 + [ 38.863427] db_root: cannot open: /etc/target + [ 39.822443] aufs 5.15.5-20211129 + [ 40.344495] NFSD: Using UMH upcall client tracking operations. + [ 40.344501] NFSD: starting 20-second grace period (net f0000000) + [ 40.978893] EXT4-fs (zd0): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. + [ 176.825888] bpfilter: Loaded bpfilter_umh pid 4662 + [ 176.826272] Started bpfilter - if entry.len == 0: - log_idx = 0 - else: - log_idx += entry.len - log_seq += 1 + sdb> dmesg -l 3 + [ 38.863427] db_root: cannot open: /etc/target + """ - def pretty_print(self, objs: Iterable[drgn.Object]) -> None: - for obj in objs: - secs = int(obj.ts_nsec.value_() / 1000000000) - usecs = int((obj.ts_nsec.value_() % 1000000000) / 1000) + names = ["dmesg"] + # input_type = None + load_on = [sdb.Kernel()] - message = drgn.cast("char *", obj) + obj.type_.type.size - text = message.string_().decode('utf-8', 'ignore') + @classmethod + def _init_parser(cls, name: str) -> argparse.ArgumentParser: + parser = super()._init_parser(name) + # + # #define KERN_EMERG KERN_SOH "0" /* system is unusable */ + # #define KERN_ALERT KERN_SOH "1" /* action must be taken immediately */ + # #define KERN_CRIT KERN_SOH "2" /* critical conditions */ + # #define KERN_ERR KERN_SOH "3" /* error conditions */ + # #define KERN_WARNING KERN_SOH "4" /* warning conditions */ + # #define KERN_NOTICE KERN_SOH "5" /* normal but significant condition */ + # #define KERN_INFO KERN_SOH "6" /* informational */ + # #define KERN_DEBUG KERN_SOH "7" /* debug-level messages */ + # + parser.add_argument('--level', '-l', nargs="?", type=int, default=7) + return parser - print(f"[{secs:5d}.{usecs:06d}]: {text}") + def _call(self, objs: Iterable[drgn.Object]) -> None: + for record in get_printk_records(sdb.get_prog()): + if self.args.level >= record.level: + secs = record.timestamp // 1000000000 + sub_secs = record.timestamp % 1000000000 // 1000 + msg = record.text.decode('utf-8') + print(f"[{secs: 5d}.{sub_secs:06d}] {msg}") diff --git a/tests/integration/data/regression_output/dump.201912060006/linux/dmesg b/tests/integration/data/regression_output/dump.201912060006/linux/dmesg index 90a198e..54f387c 100644 --- a/tests/integration/data/regression_output/dump.201912060006/linux/dmesg +++ b/tests/integration/data/regression_output/dump.201912060006/linux/dmesg @@ -1,1269 +1,1267 @@ -[ 0.000000]: Linux version 5.0.0-36-generic (buildd@lgw01-amd64-060) (gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)) #39~18.04.1-Ubuntu SMP Tue Nov 12 11:09:50 UTC 2019 (Ubuntu 5.0.0-36.39~18.04.1-generic 5.0.21) -[ 0.000000]: Command line: BOOT_IMAGE=/ROOT/delphix.gX9jjSh/root@/boot/vmlinuz-5.0.0-36-generic root=ZFS=rpool/ROOT/delphix.gX9jjSh/root ro console=tty0 console=ttyS0,38400n8 mitigations=off ipv6.disable=1 elevator=noop crashkernel=256M,high crashkernel=256M,low -[ 0.000000]: KERNEL supported cpus: -[ 0.000000]: Intel GenuineIntel -[ 0.000000]: AMD AuthenticAMD -[ 0.000000]: Hygon HygonGenuine -[ 0.000000]: Centaur CentaurHauls -[ 0.000000]: Disabled fast string operations -[ 0.000000]: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' -[ 0.000000]: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' -[ 0.000000]: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' -[ 0.000000]: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 -[ 0.000000]: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. -[ 0.000000]: BIOS-provided physical RAM map: -[ 0.000000]: BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable -[ 0.000000]: BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x00000000000ca000-0x00000000000cbfff] reserved -[ 0.000000]: BIOS-e820: [mem 0x00000000000dc000-0x00000000000fffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x0000000000100000-0x00000000bfeeffff] usable -[ 0.000000]: BIOS-e820: [mem 0x00000000bfef0000-0x00000000bfefefff] ACPI data -[ 0.000000]: BIOS-e820: [mem 0x00000000bfeff000-0x00000000bfefffff] ACPI NVS -[ 0.000000]: BIOS-e820: [mem 0x00000000bff00000-0x00000000bfffffff] usable -[ 0.000000]: BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved -[ 0.000000]: BIOS-e820: [mem 0x00000000fffe0000-0x00000000ffffffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable -[ 0.000000]: NX (Execute Disable) protection: active -[ 0.000000]: SMBIOS 2.4 present. -[ 0.000000]: DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 04/14/2014 -[ 0.000000]: Hypervisor detected: VMware -[ 0.000000]: vmware: TSC freq read from hypervisor : 2400.000 MHz -[ 0.000000]: vmware: Host bus clock speed read from hypervisor : 66000000 Hz -[ 0.000000]: vmware: using sched offset of 19312235313 ns -[ 0.000002]: tsc: Detected 2400.000 MHz processor?K -[ 0.004973]: e820: update [mem 0x00000000-0x00000fff] usable ==> reservedK -[ 0.004975]: e820: remove [mem 0x000a0000-0x000fffff] usable -[ 0.004980]: last_pfn = 0x240000 max_arch_pfn = 0x400000000 -[ 0.005032]: MTRR default type: uncachable -[ 0.005033]: MTRR fixed ranges enabled: -[ 0.005034]: 00000-9FFFF write-backcL -[ 0.005034]: A0000-BFFFF uncachableL -[ 0.005035]: C0000-CBFFF write-protect -[ 0.005036]: CC000-EFFFF uncachableBL -[ 0.005036]: F0000-FFFFF write-protect -[ 0.005037]: MTRR variable ranges enabled: -[ 0.005038]: 0 base 00C0000000 mask FFC0000000 uncachable -[ 0.005039]: 1 base 0000000000 mask FE00000000 write-back -[ 0.005040]: 2 base 0200000000 mask FFC0000000 write-back -[ 0.005040]: 3 disabledL -[ 0.005041]: 4 disabledL -[ 0.005041]: 5 disabledL -[ 0.005042]: 6 disabledL -[ 0.005042]: 7 disabledOM -[ 0.005066]: x86/PAT: PAT MSR is 0, disabled.CM -[ 0.005090]: total RAM covered: 8192MPU -[ 0.005591]: Found optimal setting for mtrr clean up -[ 0.005592]: gran_size: 64K chunk_size: 64K num_reg: 4 lose cover RAM: 0G -[ 0.005664]: e820: update [mem 0xc0000000-0xffffffff] usable ==> reservedyV -[ 0.005667]: x86/PAT: Configuration [0-7]: WB WT UC- UC WB WT UC- UC -[ 0.005676]: last_pfn = 0xc0000 max_arch_pfn = 0x400000000 -[ 0.021509]: found SMP MP-table at [mem 0x000f6bf0-0x000f6bff] -[ 0.021704]: check: Scanning 1 areas for low memory corruption -[ 0.021762]: Kernel/User page tables isolation: disabled on command line.L -[ 0.021791]: BRK [0x11f802000, 0x11f802fff] PGTABLE -[ 0.021794]: BRK [0x11f803000, 0x11f803fff] PGTABLE -[ 0.021795]: BRK [0x11f804000, 0x11f804fff] PGTABLE -[ 0.021844]: BRK [0x11f805000, 0x11f805fff] PGTABLE -[ 0.021846]: BRK [0x11f806000, 0x11f806fff] PGTABLE -[ 0.021960]: BRK [0x11f807000, 0x11f807fff] PGTABLE -[ 0.021971]: BRK [0x11f808000, 0x11f808fff] PGTABLE -[ 0.022006]: BRK [0x11f809000, 0x11f809fff] PGTABLE -[ 0.022199]: RAMDISK: [mem 0x2ef4b000-0x3379cfff]rS -[ 0.022245]: ACPI: Early table checksum verification disabledT -[ 0.022324]: ACPI: RSDP 0x00000000000F6B80 000024 (v02 PTLTD ) -[ 0.022329]: ACPI: XSDT 0x00000000BFEF1152 00005C (v01 INTEL 440BX 06040000 VMW 01324272) -[ 0.022337]: ACPI: FACP 0x00000000BFEFEE73 0000F4 (v04 INTEL 440BX 06040000 PTL 000F4240) -[ 0.022346]: ACPI: DSDT 0x00000000BFEF1400 00DA73 (v01 PTLTD Custom 06040000 MSFT 03000001) -[ 0.022352]: ACPI: FACS 0x00000000BFEFFFC0 000040E#U -[ 0.022356]: ACPI: FACS 0x00000000BFEFFFC0 0000405U -[ 0.022361]: ACPI: BOOT 0x00000000BFEF13D8 000028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) -[ 0.022366]: ACPI: APIC 0x00000000BFEF137A 00005E (v01 PTLTD ? APIC 06040000 LTP 00000000) -[ 0.022371]: ACPI: MCFG 0x00000000BFEF133E 00003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001) -[ 0.022376]: ACPI: SRAT 0x00000000BFEF124E 0000F0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001) -[ 0.022381]: ACPI: HPET 0x00000000BFEF1216 000038 (v01 VMWARE VMW HPET 06040000 VMW 00000001) -[ 0.022386]: ACPI: WAET 0x00000000BFEF11EE 000028 (v01 VMWARE VMW WAET 06040000 VMW 00000001) -[ 0.022402]: ACPI: Local APIC address 0xfee00000 -[ 0.022487]: SRAT: PXM 0 -> APIC 0x00 -> Node 0 -[ 0.022488]: SRAT: PXM 0 -> APIC 0x02 -> Node 0 -[ 0.022493]: ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]>W -[ 0.022494]: ACPI: SRAT: Node 0 PXM 0 [mem 0x00100000-0x0fffffff]AW -[ 0.022495]: ACPI: SRAT: Node 0 PXM 0 [mem 0x10000000-0xbfffffff]EW -[ 0.022496]: ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x23fffffff] -[ 0.022500]: NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0x0fffffff] -> [mem 0x00000000-0x0fffffff] -[ 0.022501]: NUMA: Node 0 [mem 0x00000000-0x0fffffff] + [mem 0x10000000-0xbfffffff] -> [mem 0x00000000-0xbfffffff] -[ 0.022503]: NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x23fffffff] -> [mem 0x00000000-0x23fffffff]aW -[ 0.022513]: NODE_DATA(0) allocated [mem 0x23ffd1000-0x23fffbfff] -[ 0.023003]: Reserving 256MB of low memory at 2800MB for crashkernel (System low RAM: 3071MB)_ -[ 0.023005]: Reserving 256MB of memory at 8944MB for crashkernel (System RAM: 8191MB))_ -[ 0.023068]: Zone ranges:` -[ 0.023069]: DMA [mem 0x0000000000001000-0x0000000000ffffff] -[ 0.023071]: DMA32 [mem 0x0000000001000000-0x00000000ffffffff] -[ 0.023072]: Normal [mem 0x0000000100000000-0x000000023fffffff] -[ 0.023073]: Device empty ` -[ 0.023074]: Movable zone start for each node"` -[ 0.023077]: Early memory node rangesD&` -[ 0.023078]: node 0: [mem 0x0000000000001000-0x000000000009efff] -[ 0.023079]: node 0: [mem 0x0000000000100000-0x00000000bfeeffff] -[ 0.023080]: node 0: [mem 0x00000000bff00000-0x00000000bfffffff] -[ 0.023081]: node 0: [mem 0x0000000100000000-0x000000023fffffff] -[ 0.023123]: Zeroed struct page in unavailable ranges: 114 pages -[ 0.023124]: Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff] -` -[ 0.023126]: On node 0 totalpages: 2097038 -[ 0.023127]: DMA zone: 64 pages used for memmap` -[ 0.023128]: DMA zone: 21 pages reserved -[ 0.023129]: DMA zone: 3998 pages, LIFO batch:0͖h -[ 0.023631]: DMA32 zone: 12224 pages used for memmap -[ 0.023632]: DMA32 zone: 782320 pages, LIFO batch:63 -[ 0.107637]: Normal zone: 20480 pages used for memmap -[ 0.107640]: Normal zone: 1310720 pages, LIFO batch:63 -[ 0.255769]: ACPI: PM-Timer IO Port: 0x1008 -[ 0.255776]: ACPI: Local APIC address 0xfee00000 -[ 0.255794]: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) -[ 0.255795]: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -[ 0.255867]: IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23 -[ 0.255872]: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) -[ 0.255876]: ACPI: IRQ0 used by override._@ -[ 0.255877]: ACPI: IRQ9 used by override.%m@ -[ 0.255880]: Using ACPI (MADT) for SMP configuration information -[ 0.255883]: ACPI: HPET id: 0x8086af01 base: 0xfed00000 -[ 0.255906]: smpboot: Allowing 2 CPUs, 0 hotplug CPUsZA -[ 0.255941]: PM: Registered nosave memory: [mem 0x00000000-0x00000fff] -[ 0.255943]: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff] -[ 0.255943]: PM: Registered nosave memory: [mem 0x000a0000-0x000c9fff] -[ 0.255944]: PM: Registered nosave memory: [mem 0x000ca000-0x000cbfff] -[ 0.255945]: PM: Registered nosave memory: [mem 0x000cc000-0x000dbfff] -[ 0.255946]: PM: Registered nosave memory: [mem 0x000dc000-0x000fffff] -[ 0.255947]: PM: Registered nosave memory: [mem 0xbfef0000-0xbfefefff] -[ 0.255948]: PM: Registered nosave memory: [mem 0xbfeff000-0xbfefffff] -[ 0.255949]: PM: Registered nosave memory: [mem 0xc0000000-0xefffffff] -[ 0.255950]: PM: Registered nosave memory: [mem 0xf0000000-0xf7ffffff] -[ 0.255951]: PM: Registered nosave memory: [mem 0xf8000000-0xfebfffff] -[ 0.255951]: PM: Registered nosave memory: [mem 0xfec00000-0xfec0ffff] -[ 0.255952]: PM: Registered nosave memory: [mem 0xfec10000-0xfedfffff] -[ 0.255953]: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff] -[ 0.255954]: PM: Registered nosave memory: [mem 0xfee01000-0xfffdffff] -[ 0.255954]: PM: Registered nosave memory: [mem 0xfffe0000-0xffffffff] -[ 0.255957]: [mem 0xc0000000-0xefffffff] available for PCI devices -[ 0.255958]: Booting paravirtualized kernel on VMware hypervisor -[ 0.255962]: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns -[ 0.255977]: random: get_random_bytes called from start_kernel+0x97/0x516 with crng_init=0 -[ 0.255984]: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -[ 0.258647]: percpu: Embedded 46 pages/cpu s151552 r8192 d28672 u1048576 -[ 0.258654]: pcpu-alloc: s151552 r8192 d28672 u1048576 alloc=1*2097152 -[ 0.258655]: pcpu-alloc: [0] 0 1 TEk -[ 0.258688]: Built 1 zonelists, mobility grouping on. Total pages: 2064249 -[ 0.258689]: Policy zone: Normal -[ 0.258691]: Kernel command line: BOOT_IMAGE=/ROOT/delphix.gX9jjSh/root@/boot/vmlinuz-5.0.0-36-generic root=ZFS=rpool/ROOT/delphix.gX9jjSh/root ro console=tty0 console=ttyS0,38400n8 mitigations=off ipv6.disable=1 elevator=noop crashkernel=256M,high crashkernel=256M,lowP -[ 0.345968]: Calgary: detecting Calgary via BIOS EBDA area -[ 0.345971]: Calgary: Unable to locate Rio Grande table in EBDA - bailing! -[ 0.370032]: Memory: 7559300K/8388152K available (14339K kernel code, 2336K rwdata, 4416K rodata, 2588K init, 5192K bss, 828852K reserved, 0K cma-reserved) -[ 0.370419]: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 -[ 0.370440]: ftrace: allocating 41686 entries in 163 pages -[ 0.388619]: rcu: Hierarchical RCU implementation. -[ 0.388622]: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=2. -[ 0.388624]: Tasks RCU enabled. -[ 0.388625]: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. -[ 0.388626]: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2ta -[ 0.392274]: NR_IRQS: 524544, nr_irqs: 440, preallocated irqs: 16|{ -[ 0.393995]: Console: colour VGA+ 80x25 -[ 0.402530]: printk: console [tty0] enabled -[ 0.564180]: printk: console [ttyS0] enabled -[ 0.565139]: ACPI: Core revision 20181213! -[ 0.566409]: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns ! -[ 0.568260]: hpet clockevent registered -[ 0.568320]: APIC: Switch to symmetric I/O mode setup! -[ 0.569368]: x2apic: IRQ remapping doesn't support X2APIC mode -[ 0.571275]: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1A!" -[ 0.572620]: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22983777dd9, max_idle_ns: 440795300422 nsD" -[ 0.574925]: Calibrating delay loop (skipped) preset value.. 4800.00 BogoMIPS (lpj=9600000) -[ 0.578906]: pid_max: default: 32768 minimum: 301I" -[ 0.580012]: LSM: Security Framework initializing" -[ 0.580956]: Yama: becoming mindful. -[ 0.581765]: AppArmor: AppArmor initialized -[ 0.595393]: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes) -[ 0.603245]: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes) -[ 0.604771]: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes) -[ 0.606207]: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes) -[ 0.607340]: Disabled fast string operations -[ 0.608189]: Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8 -[ 0.609204]: Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4 -[ 0.610905]: Speculative Store Bypass: VulnerableB#y$ -[ 0.611918]: Freeing SMP alternatives memory: 36K>$ -[ 0.615333]: smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2695 v2 @ 2.40GHz (family: 0x6, model: 0x3e, stepping: 0x4) -[ 0.619285]: Performance Events: IvyBridge events, core PMU driver. -[ 0.620495]: core: CPUID marked event: 'cpu cycles' unavailable -[ 0.621570]: core: CPUID marked event: 'instructions' unavailableu % -[ 0.622903]: core: CPUID marked event: 'bus cycles' unavailable -[ 0.624076]: core: CPUID marked event: 'cache references' unavailableeD% -[ 0.625271]: core: CPUID marked event: 'cache misses' unavailable׬U% -[ 0.626371]: core: CPUID marked event: 'branch instructions' unavailable -[ 0.626903]: core: CPUID marked event: 'branch misses' unavailable -[ 0.628051]: ... version: 1 -[ 0.628795]: ... bit width: 48 -[ 0.629608]: ... generic registers: 4 -[ 0.630903]: ... value mask: 0000ffffffffffff+% -[ 0.631909]: ... max period: 000000007fffffffۺ% -[ 0.633002]: ... fixed-purpose events: 0 -[ 0.633790]: ... event mask: 000000000000000fy/% -[ 0.635055]: rcu: Hierarchical SRCU implementation. -[ 0.637022]: random: crng done (trusting CPU's manufacturer) -[ 0.638310]: NMI watchdog: Perf NMI watchdog permanently disabledw& -[ 0.639072]: smp: Bringing up secondary CPUs ... -[ 0.640458]: x86: Booting SMP configuration: -[ 0.641257]: .... node #0, CPUs: #1zN - -[ 0.182210]: Disabled fast string operations -[ 0.182210]: smpboot: CPU 1 Converting physical 2 to logical package 1 -[ 0.647525]: smp: Brought up 1 node, 2 CPUs -[ 0.647686]: smpboot: Max logical packages: 2Y& -[ 0.648544]: smpboot: Total of 2 processors activated (9600.00 BogoMIPS) -[ 0.651550]: devtmpfs: initialized -[ 0.651712]: x86/mm: Memory block size: 128MB' -[ 0.655268]: PM: Registering ACPI NVS region [mem 0xbfeff000-0xbfefffff] (4096 bytes)"' -[ 0.656604]: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns -[ 0.656764]: futex hash table entries: 512 (order: 3, 32768 bytes) -[ 0.660234]: pinctrl core: initialized pinctrl subsystem -[ 0.661551]: RTC time: 00:00:48, date: 2019-12-06Ă' -[ 0.662733]: NET: Registered protocol family 16 -[ 0.663061]: audit: initializing netlink subsys (disabled) -[ 0.664236]: audit: type=2000 audit(1575590448.092:1): state=initialized audit_enabled=0 res=1 -[ 0.664236]: EISA bus registered -[ 0.667583]: cpuidle: using governor ladder -[ 0.668366]: cpuidle: using governor menu' -[ 0.669193]: Simple Boot Flag at 0x36 set to 0x80' -[ 0.670087]: ACPI: bus type PCI registered -[ 0.670905]: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -[ 0.672578]: PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) -[ 0.674319]: PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820 -[ 0.674917]: PCI: Using configuration type 1 for base access -[ 0.676049]: core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off( -[ 0.680303]: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages( -[ 0.680303]: ACPI: Added _OSI(Module Device) -[ 0.683717]: ACPI: Added _OSI(Processor Device) -[ 0.684590]: ACPI: Added _OSI(3.0 _SCP Extensions) -[ 0.685456]: ACPI: Added _OSI(Processor Aggregator Device) -[ 0.686448]: ACPI: Added _OSI(Linux-Dell-Video) -[ 0.686906]: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)1 -[ 0.687878]: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) -[ 0.702147]: ACPI: 1 ACPI AML tables successfully acquired and loaded^= * -[ 0.705510]: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored"* -[ 0.706918]: ACPI: BIOS _OSI(Darwin) query ignored -[ 0.709865]: ACPI: Interpreter enabled -[ 0.710926]: ACPI: (supports S0 S1 S4 S5)k* -[ 0.711691]: ACPI: Using IOAPIC for interrupt routing0{* -[ 0.712716]: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug* -[ 0.715262]: ACPI: Enabled 4 GPEs in block 00 to 0F -[ 0.776784]: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f]) -[ 0.777951]: acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]SUBSYSTEM=acpi -[ 0.779208]: acpi PNP0A03:00: _OSC: platform does not support [AER LTR]SUBSYSTEM=acpi -[ 0.780742]: acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]SUBSYSTEM=acpi -[ 0.785282]: PCI host bridge to bus 0000:00 -[ 0.786046]: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]SUBSYSTEM=pci_bus -[ 0.786904]: pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]SUBSYSTEM=pci_bus -[ 0.788344]: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]SUBSYSTEM=pci_bus -[ 0.789686]: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]SUBSYSTEM=pci_bus -[ 0.790905]: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]SUBSYSTEM=pci_bus -[ 0.792253]: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]SUBSYSTEM=pci_bus -[ 0.793631]: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]SUBSYSTEM=pci_bus -[ 0.794904]: pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff window]SUBSYSTEM=pci_bus -[ 0.796126]: pci_bus 0000:00: root bus resource [bus 00-7f]SUBSYSTEM=pci_bus -[ 0.797229]: pci 0000:00:00.0: [8086:7190] type 00 class 0x060000SUBSYSTEM=pci -[ 0.798950]: pci 0000:00:01.0: [8086:7191] type 01 class 0x060400SUBSYSTEM=pci -[ 0.800398]: pci 0000:00:07.0: [8086:7110] type 00 class 0x060100SUBSYSTEM=pci -[ 0.801472]: pci 0000:00:07.1: [8086:7111] type 00 class 0x01018aSUBSYSTEM=pci -[ 0.802907]: pci 0000:00:07.1: reg 0x20: [io 0x1060-0x106f]SUBSYSTEM=pci -[ 0.803483]: pci 0000:00:07.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]SUBSYSTEM=pci -[ 0.804765]: pci 0000:00:07.1: legacy IDE quirk: reg 0x14: [io 0x03f6]SUBSYSTEM=pci -[ 0.805940]: pci 0000:00:07.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]SUBSYSTEM=pci -[ 0.806903]: pci 0000:00:07.1: legacy IDE quirk: reg 0x1c: [io 0x0376]SUBSYSTEM=pci -[ 0.808511]: pci 0000:00:07.3: [8086:7113] type 00 class 0x068000SUBSYSTEM=pci -[ 0.810238]: pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPISUBSYSTEM=pci -[ 0.810920]: pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMBSUBSYSTEM=pci -[ 0.812663]: pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000SUBSYSTEM=pci -[ 0.813371]: pci 0000:00:07.7: reg 0x10: [io 0x1080-0x10bf]SUBSYSTEM=pci -[ 0.814906]: pci 0000:00:07.7: reg 0x14: [mem 0xfebfe000-0xfebfffff 64bit]SUBSYSTEM=pci -[ 0.818526]: pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000SUBSYSTEM=pci -[ 0.819484]: pci 0000:00:0f.0: reg 0x10: [io 0x1070-0x107f]SUBSYSTEM=pci -[ 0.820710]: pci 0000:00:0f.0: reg 0x14: [mem 0xec000000-0xefffffff pref]SUBSYSTEM=pci -[ 0.821734]: pci 0000:00:0f.0: reg 0x18: [mem 0xfe000000-0xfe7fffff]SUBSYSTEM=pci -[ 0.826326]: pci 0000:00:0f.0: reg 0x30: [mem 0x00000000-0x00007fff pref]SUBSYSTEM=pci -[ 0.827431]: pci 0000:00:10.0: [1000:0030] type 00 class 0x010000SUBSYSTEM=pci -[ 0.828363]: pci 0000:00:10.0: reg 0x10: [io 0x1400-0x14ff]SUBSYSTEM=pci -[ 0.829131]: pci 0000:00:10.0: reg 0x14: [mem 0xfeba0000-0xfebbffff 64bit]SUBSYSTEM=pci -[ 0.830161]: pci 0000:00:10.0: reg 0x1c: [mem 0xfebc0000-0xfebdffff 64bit]SUBSYSTEM=pci -[ 0.831568]: pci 0000:00:10.0: reg 0x30: [mem 0x00000000-0x00003fff pref]SUBSYSTEM=pci -[ 0.832036]: pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401SUBSYSTEM=pci -[ 0.833449]: pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.834335]: pci 0000:00:15.0: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.835196]: pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.836066]: pci 0000:00:15.1: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.836516]: pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.837374]: pci 0000:00:15.2: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.837895]: pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.838762]: pci 0000:00:15.3: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.839273]: pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.840160]: pci 0000:00:15.4: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.840636]: pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.841510]: pci 0000:00:15.5: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.841968]: pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.842859]: pci 0000:00:15.6: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.843326]: pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.844200]: pci 0000:00:15.7: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.844816]: pci 0000:00:16.0: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.845685]: pci 0000:00:16.0: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.846153]: pci 0000:00:16.1: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.847023]: pci 0000:00:16.1: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.847482]: pci 0000:00:16.2: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.848330]: pci 0000:00:16.2: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.848797]: pci 0000:00:16.3: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.849683]: pci 0000:00:16.3: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.850171]: pci 0000:00:16.4: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.851050]: pci 0000:00:16.4: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.851549]: pci 0000:00:16.5: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.852504]: pci 0000:00:16.5: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.853021]: pci 0000:00:16.6: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.853896]: pci 0000:00:16.6: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.854355]: pci 0000:00:16.7: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.855218]: pci 0000:00:16.7: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.855820]: pci 0000:00:17.0: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.856665]: pci 0000:00:17.0: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.857116]: pci 0000:00:17.1: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.857960]: pci 0000:00:17.1: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.858413]: pci 0000:00:17.2: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.859270]: pci 0000:00:17.2: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.859726]: pci 0000:00:17.3: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.860568]: pci 0000:00:17.3: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.861058]: pci 0000:00:17.4: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.861926]: pci 0000:00:17.4: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.862377]: pci 0000:00:17.5: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.863226]: pci 0000:00:17.5: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.863669]: pci 0000:00:17.6: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.864510]: pci 0000:00:17.6: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.864961]: pci 0000:00:17.7: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.865805]: pci 0000:00:17.7: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.866424]: pci 0000:00:18.0: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.867289]: pci 0000:00:18.0: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.867738]: pci 0000:00:18.1: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.868584]: pci 0000:00:18.1: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.869031]: pci 0000:00:18.2: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.869898]: pci 0000:00:18.2: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.870342]: pci 0000:00:18.3: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.871281]: pci 0000:00:18.3: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.871814]: pci 0000:00:18.4: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.872660]: pci 0000:00:18.4: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.873109]: pci 0000:00:18.5: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.873973]: pci 0000:00:18.5: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.874439]: pci 0000:00:18.6: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.875298]: pci 0000:00:18.6: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.875739]: pci 0000:00:18.7: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.876677]: pci 0000:00:18.7: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.878302]: pci_bus 0000:01: extended config space not accessibleSUBSYSTEM=pci_bus -[ 0.884373]: pci 0000:00:01.0: PCI bridge to [bus 01]SUBSYSTEM=pci -[ 0.885508]: pci_bus 0000:02: extended config space not accessibleSUBSYSTEM=pci_bus -[ 0.887019]: acpiphp: Slot [32] registered -[ 0.887815]: acpiphp: Slot [33] registered -[ 0.888618]: acpiphp: Slot [34] registered -[ 0.889384]: acpiphp: Slot [35] registered -[ 0.890166]: acpiphp: Slot [36] registered -[ 0.890932]: acpiphp: Slot [37] registered -[ 0.891697]: acpiphp: Slot [38] registered -[ 0.892499]: acpiphp: Slot [39] registered -[ 0.893292]: acpiphp: Slot [40] registered -[ 0.894058]: acpiphp: Slot [41] registered -[ 0.894837]: acpiphp: Slot [42] registered -[ 0.894934]: acpiphp: Slot [43] registered -[ 0.895784]: acpiphp: Slot [44] registered -[ 0.896578]: acpiphp: Slot [45] registered -[ 0.897367]: acpiphp: Slot [46] registered -[ 0.898153]: acpiphp: Slot [47] registered -[ 0.898945]: acpiphp: Slot [48] registered -[ 0.899714]: acpiphp: Slot [49] registered -[ 0.900892]: acpiphp: Slot [50] registered -[ 0.901790]: acpiphp: Slot [51] registered -[ 0.902937]: acpiphp: Slot [52] registered -[ 0.903752]: acpiphp: Slot [53] registered -[ 0.904566]: acpiphp: Slot [54] registered -[ 0.905335]: acpiphp: Slot [55] registered -[ 0.906102]: acpiphp: Slot [56] registered -[ 0.906935]: acpiphp: Slot [57] registered -[ 0.907705]: acpiphp: Slot [58] registered -[ 0.908475]: acpiphp: Slot [59] registered -[ 0.909262]: acpiphp: Slot [60] registered -[ 0.910081]: acpiphp: Slot [61] registered -[ 0.910933]: acpiphp: Slot [62] registered -[ 0.911796]: acpiphp: Slot [63] registered -[ 0.917916]: pci 0000:00:11.0: PCI bridge to [bus 02] (subtractive decode)SUBSYSTEM=pci -[ 0.918927]: pci 0000:00:11.0: bridge window [io 0x2000-0x3fff]SUBSYSTEM=pci -[ 0.918957]: pci 0000:00:11.0: bridge window [mem 0xfd600000-0xfdffffff]SUBSYSTEM=pci -[ 0.919008]: pci 0000:00:11.0: bridge window [mem 0xebb00000-0xebffffff 64bit pref]SUBSYSTEM=pci -[ 0.919011]: pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)SUBSYSTEM=pci -[ 0.919012]: pci 0000:00:11.0: bridge window [mem 0x000cc000-0x000cffff window] (subtractive decode)SUBSYSTEM=pci -[ 0.919013]: pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff window] (subtractive decode)SUBSYSTEM=pci -[ 0.919014]: pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)SUBSYSTEM=pci -[ 0.919015]: pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)SUBSYSTEM=pci -[ 0.919016]: pci 0000:00:11.0: bridge window [mem 0xc0000000-0xfebfffff window] (subtractive decode)SUBSYSTEM=pci -[ 0.919017]: pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7 window] (subtractive decode)SUBSYSTEM=pci -[ 0.919018]: pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff window] (subtractive decode)SUBSYSTEM=pci -[ 0.919548]: pci 0000:03:00.0: [15ad:07b0] type 00 class 0x020000SUBSYSTEM=pci -[ 0.920696]: pci 0000:03:00.0: reg 0x10: [mem 0xfd5fb000-0xfd5fbfff]SUBSYSTEM=pci -[ 0.921798]: pci 0000:03:00.0: reg 0x14: [mem 0xfd5fc000-0xfd5fcfff]SUBSYSTEM=pci -[ 0.922907]: pci 0000:03:00.0: reg 0x18: [mem 0xfd5fe000-0xfd5fffff]SUBSYSTEM=pci -[ 0.923968]: pci 0000:03:00.0: reg 0x1c: [io 0x4000-0x400f]SUBSYSTEM=pci -[ 0.926906]: pci 0000:03:00.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]SUBSYSTEM=pci -[ 0.927418]: pci 0000:03:00.0: supports D1 D2SUBSYSTEM=pci -[ 0.927419]: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3coldSUBSYSTEM=pci -[ 0.927852]: pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'SUBSYSTEM=pci -[ 0.934981]: pci 0000:00:15.0: PCI bridge to [bus 03]SUBSYSTEM=pci -[ 0.935928]: pci 0000:00:15.0: bridge window [io 0x4000-0x4fff]SUBSYSTEM=pci -[ 0.935960]: pci 0000:00:15.0: bridge window [mem 0xfd500000-0xfd5fffff]SUBSYSTEM=pci -[ 0.936003]: pci 0000:00:15.0: bridge window [mem 0xeba00000-0xebafffff 64bit pref]SUBSYSTEM=pci -[ 0.941032]: pci 0000:00:15.1: PCI bridge to [bus 04]SUBSYSTEM=pci -[ 0.942007]: pci 0000:00:15.1: bridge window [io 0x8000-0x8fff]SUBSYSTEM=pci -[ 0.942027]: pci 0000:00:15.1: bridge window [mem 0xfd100000-0xfd1fffff]SUBSYSTEM=pci -[ 0.942065]: pci 0000:00:15.1: bridge window [mem 0xeb600000-0xeb6fffff 64bit pref]SUBSYSTEM=pci -[ 0.947075]: pci 0000:00:15.2: PCI bridge to [bus 05]SUBSYSTEM=pci -[ 0.948050]: pci 0000:00:15.2: bridge window [io 0xc000-0xcfff]SUBSYSTEM=pci -[ 0.948071]: pci 0000:00:15.2: bridge window [mem 0xfcd00000-0xfcdfffff]SUBSYSTEM=pci -[ 0.948108]: pci 0000:00:15.2: bridge window [mem 0xeb200000-0xeb2fffff 64bit pref]SUBSYSTEM=pci -[ 0.953089]: pci 0000:00:15.3: PCI bridge to [bus 06]SUBSYSTEM=pci -[ 0.954126]: pci 0000:00:15.3: bridge window [mem 0xfc900000-0xfc9fffff]SUBSYSTEM=pci -[ 0.954165]: pci 0000:00:15.3: bridge window [mem 0xeae00000-0xeaefffff 64bit pref]SUBSYSTEM=pci -[ 0.959123]: pci 0000:00:15.4: PCI bridge to [bus 07]SUBSYSTEM=pci -[ 0.960143]: pci 0000:00:15.4: bridge window [mem 0xfc500000-0xfc5fffff]SUBSYSTEM=pci -[ 0.960182]: pci 0000:00:15.4: bridge window [mem 0xeaa00000-0xeaafffff 64bit pref]SUBSYSTEM=pci -[ 0.965049]: pci 0000:00:15.5: PCI bridge to [bus 08]SUBSYSTEM=pci -[ 0.966028]: pci 0000:00:15.5: bridge window [mem 0xfc100000-0xfc1fffff]SUBSYSTEM=pci -[ 0.966066]: pci 0000:00:15.5: bridge window [mem 0xea600000-0xea6fffff 64bit pref]SUBSYSTEM=pci -[ 0.971018]: pci 0000:00:15.6: PCI bridge to [bus 09]SUBSYSTEM=pci -[ 0.971970]: pci 0000:00:15.6: bridge window [mem 0xfbd00000-0xfbdfffff]SUBSYSTEM=pci -[ 0.972008]: pci 0000:00:15.6: bridge window [mem 0xea200000-0xea2fffff 64bit pref]SUBSYSTEM=pci -[ 0.976929]: pci 0000:00:15.7: PCI bridge to [bus 0a]SUBSYSTEM=pci -[ 0.977912]: pci 0000:00:15.7: bridge window [mem 0xfb900000-0xfb9fffff]SUBSYSTEM=pci -[ 0.977956]: pci 0000:00:15.7: bridge window [mem 0xe9e00000-0xe9efffff 64bit pref]SUBSYSTEM=pci -[ 0.982952]: pci 0000:00:16.0: PCI bridge to [bus 0b]SUBSYSTEM=pci -[ 0.983913]: pci 0000:00:16.0: bridge window [io 0x5000-0x5fff]SUBSYSTEM=pci -[ 0.983934]: pci 0000:00:16.0: bridge window [mem 0xfd400000-0xfd4fffff]SUBSYSTEM=pci -[ 0.983972]: pci 0000:00:16.0: bridge window [mem 0xeb900000-0xeb9fffff 64bit pref]SUBSYSTEM=pci -[ 0.988836]: pci 0000:00:16.1: PCI bridge to [bus 0c]SUBSYSTEM=pci -[ 0.989790]: pci 0000:00:16.1: bridge window [io 0x9000-0x9fff]SUBSYSTEM=pci -[ 0.989810]: pci 0000:00:16.1: bridge window [mem 0xfd000000-0xfd0fffff]SUBSYSTEM=pci -[ 0.989848]: pci 0000:00:16.1: bridge window [mem 0xeb500000-0xeb5fffff 64bit pref]SUBSYSTEM=pci -[ 0.994758]: pci 0000:00:16.2: PCI bridge to [bus 0d]SUBSYSTEM=pci -[ 0.994926]: pci 0000:00:16.2: bridge window [io 0xd000-0xdfff]SUBSYSTEM=pci -[ 0.994946]: pci 0000:00:16.2: bridge window [mem 0xfcc00000-0xfccfffff]SUBSYSTEM=pci -[ 0.994984]: pci 0000:00:16.2: bridge window [mem 0xeb100000-0xeb1fffff 64bit pref]SUBSYSTEM=pci -[ 1.001048]: pci 0000:00:16.3: PCI bridge to [bus 0e]SUBSYSTEM=pci -[ 1.002028]: pci 0000:00:16.3: bridge window [mem 0xfc800000-0xfc8fffff]SUBSYSTEM=pci -[ 1.002066]: pci 0000:00:16.3: bridge window [mem 0xead00000-0xeadfffff 64bit pref]SUBSYSTEM=pci -[ 1.006940]: pci 0000:00:16.4: PCI bridge to [bus 0f]SUBSYSTEM=pci -[ 1.007931]: pci 0000:00:16.4: bridge window [mem 0xfc400000-0xfc4fffff]SUBSYSTEM=pci -[ 1.007969]: pci 0000:00:16.4: bridge window [mem 0xea900000-0xea9fffff 64bit pref]SUBSYSTEM=pci -[ 1.012894]: pci 0000:00:16.5: PCI bridge to [bus 10]SUBSYSTEM=pci -[ 1.013899]: pci 0000:00:16.5: bridge window [mem 0xfc000000-0xfc0fffff]SUBSYSTEM=pci -[ 1.013940]: pci 0000:00:16.5: bridge window [mem 0xea500000-0xea5fffff 64bit pref]SUBSYSTEM=pci -[ 1.018815]: pci 0000:00:16.6: PCI bridge to [bus 11]SUBSYSTEM=pci -[ 1.018968]: pci 0000:00:16.6: bridge window [mem 0xfbc00000-0xfbcfffff]SUBSYSTEM=pci -[ 1.019029]: pci 0000:00:16.6: bridge window [mem 0xea100000-0xea1fffff 64bit pref]SUBSYSTEM=pci -[ 1.025388]: pci 0000:00:16.7: PCI bridge to [bus 12]SUBSYSTEM=pci -[ 1.026435]: pci 0000:00:16.7: bridge window [mem 0xfb800000-0xfb8fffff]SUBSYSTEM=pci -[ 1.026481]: pci 0000:00:16.7: bridge window [mem 0xe9d00000-0xe9dfffff 64bit pref]SUBSYSTEM=pci -[ 1.031580]: pci 0000:00:17.0: PCI bridge to [bus 13]SUBSYSTEM=pci -[ 1.032549]: pci 0000:00:17.0: bridge window [io 0x6000-0x6fff]SUBSYSTEM=pci -[ 1.032570]: pci 0000:00:17.0: bridge window [mem 0xfd300000-0xfd3fffff]SUBSYSTEM=pci -[ 1.032609]: pci 0000:00:17.0: bridge window [mem 0xeb800000-0xeb8fffff 64bit pref]SUBSYSTEM=pci -[ 1.037560]: pci 0000:00:17.1: PCI bridge to [bus 14]SUBSYSTEM=pci -[ 1.038496]: pci 0000:00:17.1: bridge window [io 0xa000-0xafff]SUBSYSTEM=pci -[ 1.038516]: pci 0000:00:17.1: bridge window [mem 0xfcf00000-0xfcffffff]SUBSYSTEM=pci -[ 1.038554]: pci 0000:00:17.1: bridge window [mem 0xeb400000-0xeb4fffff 64bit pref]SUBSYSTEM=pci -[ 1.043484]: pci 0000:00:17.2: PCI bridge to [bus 15]SUBSYSTEM=pci -[ 1.044420]: pci 0000:00:17.2: bridge window [io 0xe000-0xefff]SUBSYSTEM=pci -[ 1.044440]: pci 0000:00:17.2: bridge window [mem 0xfcb00000-0xfcbfffff]SUBSYSTEM=pci -[ 1.044478]: pci 0000:00:17.2: bridge window [mem 0xeb000000-0xeb0fffff 64bit pref]SUBSYSTEM=pci -[ 1.049420]: pci 0000:00:17.3: PCI bridge to [bus 16]SUBSYSTEM=pci -[ 1.050452]: pci 0000:00:17.3: bridge window [mem 0xfc700000-0xfc7fffff]SUBSYSTEM=pci -[ 1.050512]: pci 0000:00:17.3: bridge window [mem 0xeac00000-0xeacfffff 64bit pref]SUBSYSTEM=pci -[ 1.055428]: pci 0000:00:17.4: PCI bridge to [bus 17]SUBSYSTEM=pci -[ 1.056382]: pci 0000:00:17.4: bridge window [mem 0xfc300000-0xfc3fffff]SUBSYSTEM=pci -[ 1.056420]: pci 0000:00:17.4: bridge window [mem 0xea800000-0xea8fffff 64bit pref]SUBSYSTEM=pci -[ 1.061327]: pci 0000:00:17.5: PCI bridge to [bus 18]SUBSYSTEM=pci -[ 1.062304]: pci 0000:00:17.5: bridge window [mem 0xfbf00000-0xfbffffff]SUBSYSTEM=pci -[ 1.062342]: pci 0000:00:17.5: bridge window [mem 0xea400000-0xea4fffff 64bit pref]SUBSYSTEM=pci -[ 1.067329]: pci 0000:00:17.6: PCI bridge to [bus 19]SUBSYSTEM=pci -[ 1.068288]: pci 0000:00:17.6: bridge window [mem 0xfbb00000-0xfbbfffff]SUBSYSTEM=pci -[ 1.068327]: pci 0000:00:17.6: bridge window [mem 0xea000000-0xea0fffff 64bit pref]SUBSYSTEM=pci -[ 1.073178]: pci 0000:00:17.7: PCI bridge to [bus 1a]SUBSYSTEM=pci -[ 1.074157]: pci 0000:00:17.7: bridge window [mem 0xfb700000-0xfb7fffff]SUBSYSTEM=pci -[ 1.074196]: pci 0000:00:17.7: bridge window [mem 0xe9c00000-0xe9cfffff 64bit pref]SUBSYSTEM=pci -[ 1.079224]: pci 0000:00:18.0: PCI bridge to [bus 1b]SUBSYSTEM=pci -[ 1.080204]: pci 0000:00:18.0: bridge window [io 0x7000-0x7fff]SUBSYSTEM=pci -[ 1.080240]: pci 0000:00:18.0: bridge window [mem 0xfd200000-0xfd2fffff]SUBSYSTEM=pci -[ 1.080300]: pci 0000:00:18.0: bridge window [mem 0xeb700000-0xeb7fffff 64bit pref]SUBSYSTEM=pci -[ 1.085394]: pci 0000:00:18.1: PCI bridge to [bus 1c]SUBSYSTEM=pci -[ 1.086388]: pci 0000:00:18.1: bridge window [io 0xb000-0xbfff]SUBSYSTEM=pci -[ 1.086409]: pci 0000:00:18.1: bridge window [mem 0xfce00000-0xfcefffff]SUBSYSTEM=pci -[ 1.086448]: pci 0000:00:18.1: bridge window [mem 0xeb300000-0xeb3fffff 64bit pref]SUBSYSTEM=pci -[ 1.091442]: pci 0000:00:18.2: PCI bridge to [bus 1d]SUBSYSTEM=pci -[ 1.092439]: pci 0000:00:18.2: bridge window [mem 0xfca00000-0xfcafffff]SUBSYSTEM=pci -[ 1.092477]: pci 0000:00:18.2: bridge window [mem 0xeaf00000-0xeaffffff 64bit pref]SUBSYSTEM=pci -[ 1.097414]: pci 0000:00:18.3: PCI bridge to [bus 1e]SUBSYSTEM=pci -[ 1.098452]: pci 0000:00:18.3: bridge window [mem 0xfc600000-0xfc6fffff]SUBSYSTEM=pci -[ 1.098491]: pci 0000:00:18.3: bridge window [mem 0xeab00000-0xeabfffff 64bit pref]SUBSYSTEM=pci -[ 1.103589]: pci 0000:00:18.4: PCI bridge to [bus 1f]SUBSYSTEM=pci -[ 1.104581]: pci 0000:00:18.4: bridge window [mem 0xfc200000-0xfc2fffff]SUBSYSTEM=pci -[ 1.104620]: pci 0000:00:18.4: bridge window [mem 0xea700000-0xea7fffff 64bit pref]SUBSYSTEM=pci -[ 1.109710]: pci 0000:00:18.5: PCI bridge to [bus 20]SUBSYSTEM=pci -[ 1.110767]: pci 0000:00:18.5: bridge window [mem 0xfbe00000-0xfbefffff]SUBSYSTEM=pci -[ 1.110806]: pci 0000:00:18.5: bridge window [mem 0xea300000-0xea3fffff 64bit pref]SUBSYSTEM=pci -[ 1.115840]: pci 0000:00:18.6: PCI bridge to [bus 21]SUBSYSTEM=pci -[ 1.116894]: pci 0000:00:18.6: bridge window [mem 0xfba00000-0xfbafffff]SUBSYSTEM=pci -[ 1.116937]: pci 0000:00:18.6: bridge window [mem 0xe9f00000-0xe9ffffff 64bit pref]SUBSYSTEM=pci -[ 1.121980]: pci 0000:00:18.7: PCI bridge to [bus 22]SUBSYSTEM=pci -[ 1.122944]: pci 0000:00:18.7: bridge window [mem 0xfb600000-0xfb6fffff]SUBSYSTEM=pci -[ 1.122982]: pci 0000:00:18.7: bridge window [mem 0xe9b00000-0xe9bfffff 64bit pref]SUBSYSTEM=pci -[ 1.125513]: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) -[ 1.126923]: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) -[ 1.128298]: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) -[ 1.129671]: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.D -[ 1.142142]: SCSI subsystem initialized -[ 1.143044]: libata version 3.00 loaded. -[ 1.143044]: pci 0000:00:0f.0: vgaarb: setting as boot VGA deviceSUBSYSTEM=pci -[ 1.144053]: pci 0000:00:0f.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=noneSUBSYSTEM=pci -[ 1.145589]: pci 0000:00:0f.0: vgaarb: bridge control possibleSUBSYSTEM=pci -[ 1.146906]: vgaarb: loaded -[ 1.147528]: ACPI: bus type USB registered -[ 1.148327]: usbcore: registered new interface driver usbfs -[ 1.149371]: usbcore: registered new interface driver hub0D -[ 1.150431]: usbcore: registered new device driver usb -[ 1.150942]: pps_core: LinuxPPS API ver. 1 registered D -[ 1.151854]: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti \D -[ 1.153522]: PTP clock support registered$/D -[ 1.155018]: EDAC MC: Ver: 3.0.0 -[ 1.156759]: PCI: Using ACPI for IRQ routing -[ 1.203668]: PCI: pci_cache_line_size set to 64 bytesG -[ 1.204539]: e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]G -[ 1.204543]: e820: reserve RAM buffer [mem 0xbfef0000-0xbfffffff](3302884855, -3634996) -[ 3.301554]: registered taskstats version 1 -[ 3.302385]: Loading compiled-in X.509 certificates -[ 3.306442]: Loaded X.509 cert 'Build time autogenerated kernel key: 74e800c0955dd062b621f2c2b30b90827e35b348' -[ 3.308549]: zswap: loaded using pool lzo/zbud -[ 3.317820]: Key type big_key registered -[ 3.322887]: Key type trusted registered -[ 3.327029]: Key type encrypted registered -[ 3.327995]: AppArmor: AppArmor sha1 policy hashing enabled -[ 3.329054]: ima: No TPM chip found, activating TPM-bypass! -[ 3.330112]: ima: Allocated hash algorithm: sha1 -[ 3.331033]: No architecture policies found -[ 3.331850]: evm: Initialising EVM extended attributes: -[ 3.332818]: evm: security.selinux -[ 3.333450]: evm: security.SMACK64 -[ 3.334096]: evm: security.SMACK64EXEC -[ 3.334791]: evm: security.SMACK64TRANSMUTE -[ 3.335603]: evm: security.SMACK64MMAP -[ 3.336296]: evm: security.apparmor -[ 3.336939]: evm: security.ima -[ 3.337502]: evm: security.capabilityb -[ 3.338175]: evm: HMAC attrs: 0x1 -[ 3.339902]: Magic number: 15:444:0Lb -[ 3.340722]: memory memory48: hash matchesSUBSYSTEM=memory -[ 3.341691]: rtc_cmos 00:01: setting system clock to 2019-12-06T00:00:51 UTC (1575590451)SUBSYSTEM=pnp -[ 3.398624]: ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 -[ 3.404121]: scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5SUBSYSTEM=scsi -[ 3.435569]: sr 1:0:0:0: [sr0] scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda traySUBSYSTEM=scsi -[ 3.437309]: cdrom: Uniform CD-ROM driver Revision: 3.20 -[ 3.438961]: sr 1:0:0:0: Attached scsi CD-ROM sr0SUBSYSTEM=scsi -[ 3.439207]: sr 1:0:0:0: Attached scsi generic sg0 type 5SUBSYSTEM=scsi -[ 3.442386]: Freeing unused decrypted memory: 2040K -[ 3.444498]: Freeing unused kernel image memory: 2588K -[ 3.458967]: Write protecting the kernel read-only data: 22528k -[ 3.461021]: Freeing unused kernel image memory: 2016K -[ 3.462581]: Freeing unused kernel image memory: 1728K -[ 3.475820]: x86/mm: Checked W+X mappings: passed, no W+X pages found. -[ 3.477308]: Run /init as init process -[ 3.683425]: VMware vmxnet3 virtual NIC driver - version 1.4.16.0-k-NAPI -[ 3.685278]: piix4_smbus 0000:00:07.3: SMBus Host Controller not enabled!SUBSYSTEM=pci -[ 3.688143]: vmxnet3 0000:03:00.0: # of Tx queues : 2, # of Rx queues : 2SUBSYSTEM=pci -[ 3.691155]: Fusion MPT base driver 3.04.20 -[ 3.692240]: Copyright (c) 1999-2008 LSI Corporation -[ 3.708492]: Fusion MPT SPI Host driver 3.04.20 -[ 3.713130]: input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4Z -[ 3.713713]: vmxnet3 0000:03:00.0 eth0: NIC Link is Up 10000 MbpsSUBSYSTEM=pci -[ 3.716255]: input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3 -[ 3.718374]: mptbase: ioc0: Initiating bringup -[ 3.760237]: vmxnet3 0000:03:00.0 ens160: renamed from eth0SUBSYSTEM=pci -[ 3.827392]: ioc0: LSI53C1030 B0: Capabilities={Initiator} -[ 3.931026]: tsc: Refined TSC clocksource calibration: 2399.993 MHz -[ 3.932288]: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2298310a4a1, max_idle_ns: 440795325953 ns -[ 3.934299]: clocksource: Switched to clocksource tscw -[ 4.067918]: scsi host2: ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17SUBSYSTEM=scsi -[ 4.237443]: scsi 2:0:0:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2SUBSYSTEM=scsi -[ 4.250978]: scsi target2:0:0: Beginning Domain ValidationSUBSYSTEM=scsi -[ 4.253222]: scsi target2:0:0: Domain Validation skipping write testsSUBSYSTEM=scsi -[ 4.254479]: scsi target2:0:0: Ending Domain ValidationSUBSYSTEM=scsi -[ 4.255587]: scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127)SUBSYSTEM=scsi -[ 4.259385]: scsi 2:0:1:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2SUBSYSTEM=scsi -[ 4.271076]: scsi target2:0:1: Beginning Domain ValidationSUBSYSTEM=scsi -[ 4.273418]: scsi target2:0:1: Domain Validation skipping write testsSUBSYSTEM=scsi -[ 4.274740]: scsi target2:0:1: Ending Domain ValidationSUBSYSTEM=scsi -[ 4.275856]: scsi target2:0:1: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127)SUBSYSTEM=scsi -[ 4.279534]: scsi 2:0:2:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2SUBSYSTEM=scsi -[ 4.299046]: scsi target2:0:2: Beginning Domain ValidationSUBSYSTEM=scsi -[ 4.301827]: scsi target2:0:2: Domain Validation skipping write testsSUBSYSTEM=scsi -[ 4.303615]: scsi target2:0:2: Ending Domain ValidationSUBSYSTEM=scsi -[ 4.305152]: scsi target2:0:2: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127)SUBSYSTEM=scsi -[ 4.310452]: scsi 2:0:3:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2SUBSYSTEM=scsi -[ 4.330965]: scsi target2:0:3: Beginning Domain ValidationSUBSYSTEM=scsi -[ 4.332948]: scsi target2:0:3: Domain Validation skipping write testsSUBSYSTEM=scsi -[ 4.334144]: scsi target2:0:3: Ending Domain ValidationSUBSYSTEM=scsi -[ 4.335214]: scsi target2:0:3: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127)SUBSYSTEM=scsi -[ 4.342339]: sd 2:0:0:0: [sda] 146800640 512-byte logical blocks: (75.2 GB/70.0 GiB)SUBSYSTEM=scsi -[ 4.344160]: sd 2:0:0:0: [sda] Write Protect is offSUBSYSTEM=scsi -[ 4.345054]: sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00SUBSYSTEM=scsi -[ 4.345091]: sd 2:0:0:0: [sda] Cache data unavailableSUBSYSTEM=scsi -[ 4.346112]: sd 2:0:0:0: [sda] Assuming drive cache: write throughSUBSYSTEM=scsi -[ 4.347527]: sd 2:0:0:0: Attached scsi generic sg1 type 0SUBSYSTEM=scsi -[ 4.349235]: sd 2:0:1:0: [sdb] 16777216 512-byte logical blocks: (8.59 GB/8.00 GiB)SUBSYSTEM=scsi -[ 4.349842]: sd 2:0:1:0: Attached scsi generic sg2 type 0SUBSYSTEM=scsi -[ 4.351896]: sd 2:0:1:0: [sdb] Write Protect is offSUBSYSTEM=scsi -[ 4.352132]: sd 2:0:2:0: Attached scsi generic sg3 type 0SUBSYSTEM=scsi -[ 4.352865]: sd 2:0:1:0: [sdb] Mode Sense: 61 00 00 00SUBSYSTEM=scsi -[ 4.354072]: sd 2:0:3:0: Attached scsi generic sg4 type 0SUBSYSTEM=scsi -[ 4.355123]: sd 2:0:1:0: [sdb] Cache data unavailableSUBSYSTEM=scsi -[ 4.355210]: sd 2:0:2:0: [sdc] 16777216 512-byte logical blocks: (8.59 GB/8.00 GiB)SUBSYSTEM=scsi -[ 4.356113]: sd 2:0:1:0: [sdb] Assuming drive cache: write throughSUBSYSTEM=scsi -[ 4.357571]: sd 2:0:3:0: [sdd] 16777216 512-byte logical blocks: (8.59 GB/8.00 GiB)SUBSYSTEM=scsi -[ 4.358655]: sd 2:0:2:0: [sdc] Write Protect is offSUBSYSTEM=scsi -[ 4.361514]: sd 2:0:2:0: [sdc] Mode Sense: 61 00 00 00SUBSYSTEM=scsi -[ 4.361558]: sd 2:0:3:0: [sdd] Write Protect is offSUBSYSTEM=scsi -[ 4.361571]: sd 2:0:2:0: [sdc] Cache data unavailableSUBSYSTEM=scsi -[ 4.362485]: sd 2:0:3:0: [sdd] Mode Sense: 61 00 00 00SUBSYSTEM=scsi -[ 4.363435]: sd 2:0:2:0: [sdc] Assuming drive cache: write throughSUBSYSTEM=scsi -[ 4.365134]: sd 2:0:3:0: [sdd] Cache data unavailableSUBSYSTEM=scsi -[ 4.366085]: sd 2:0:3:0: [sdd] Assuming drive cache: write throughSUBSYSTEM=scsi -[ 4.372930]: sda: sda1 sda2 -[ 4.374758]: sd 2:0:0:0: [sda] Attached SCSI diskSUBSYSTEM=scsi -[ 4.378031]: sdb: sdb1 sdb9 -[ 4.379257]: sd 2:0:1:0: [sdb] Attached SCSI diskSUBSYSTEM=scsi -[ 4.384398]: sdc: sdc1 sdc9 -[ 4.386065]: sd 2:0:2:0: [sdc] Attached SCSI diskSUBSYSTEM=scsi -[ 4.407890]: sdd: sdd1 sdd9 -[ 4.409417]: sd 2:0:3:0: [sdd] Attached SCSI diskSUBSYSTEM=scsi -[ 4.610938]: raid6: sse2x4 gen() 11161 MB/s@ -[ 4.658927]: raid6: sse2x4 xor() 7609 MB/sq= -[ 4.706942]: raid6: sse2x2 gen() 9259 MB/stnj -[ 4.754927]: raid6: sse2x2 xor() 4612 MB/s7F -[ 4.802927]: raid6: sse2x1 gen() 4862 MB/s6#! -[ 4.850947]: raid6: sse2x1 xor() 5321 MB/sC0! -[ 4.851778]: raid6: using algorithm sse2x4 gen() 11161 MB/s -[ 4.852791]: raid6: .... xor() 7609 MB/s, rmw enabledSN! -[ 4.853748]: raid6: using ssse3x2 recovery algorithm -[ 4.856594]: xor: automatically using best checksumming function avx ! -[ 4.859698]: async_tx: api initialized (async) -[ 4.907876]: Btrfs loaded, crc32c=crc32c-intel -[ 5.207610]: spl: loading out-of-tree module taints kernel. -[ 5.209040]: spl: module verification failed: signature and/or required key missing - tainting kernel6 -[ 5.213457]: znvpair: module license 'CDDL' taints kernel. -[ 5.214601]: Disabling lock debugging due to kernel taint  -[ 6.957304]: ZFS: Loaded module v0.8.0-delphix+2019.12.03.23-5827876, ZFS pool version 5000, ZFS filesystem version 5zx -[ 23.504452]: systemd[1]: systemd 237 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) +Wy -[ 23.510592]: systemd[1]: Detected virtualization vmware. -[ 23.512238]: systemd[1]: Detected architecture x86-64. -[ 23.548139]: systemd[1]: Set hostname to .}_ -[ 25.211920]: systemd[1]: Reached target Swap.G -[ 25.213749]: systemd[1]: Started Forward Password Requests to Wall Directory Watch. -[ 25.216761]: systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. -[ 25.219965]: systemd[1]: Started Dispatch Password Requests to Console Directory Watch. -[ 25.223174]: systemd[1]: Reached target Paths. -[ 25.224882]: systemd[1]: Reached target Local Encrypted Volumes. -[ 25.395004]: RPC: Registered named UNIX socket transport module. -[ 25.396231]: RPC: Registered udp transport module. -[ 25.396232]: RPC: Registered tcp transport module. -[ 25.396233]: RPC: Registered tcp NFSv4.1 backchannel transport module. -[ 25.471312]: Installing knfsd (copyright (C) 1996 okir@monad.swb.de).I" -[ 26.345068]: vmw_vmci 0000:00:07.7: Found VMCI PCI device at 0x11080, irq 16SUBSYSTEM=pci -[ 26.345182]: vmw_vmci 0000:00:07.7: Using capabilities 0xcSUBSYSTEM=pci -[ 26.345958]: Guest personality initialized and is active -[ 26.346054]: VMCI host device registered (name=vmci, major=10, minor=54) -[ 26.346054]: Initialized host personality{% -[ 26.392296]: parport_pc 00:05: reported by Plug and Play ACPISUBSYSTEM=pnp -[ 26.392523]: parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE] -[ 26.570698]: [drm] DMA map mode: Using physical TTM page addresses. -[ 26.570809]: [drm] Capabilities: -[ 26.570810]: [drm] Rect copy. -[ 26.570810]: [drm] Cursor. -[ 26.570811]: [drm] Cursor bypass. -[ 26.570811]: [drm] Cursor bypass 2.sj/ -[ 26.570812]: [drm] 8bit emulation. -[ 26.570812]: [drm] Alpha cursor. -[ 26.570812]: [drm] Extended Fifo. -[ 26.570812]: [drm] Multimon. -[ 26.570813]: [drm] Pitchlock. -[ 26.570813]: [drm] Irq mask. -[ 26.570813]: [drm] Display Topology. -[ 26.570814]: [drm] GMR.s/ -[ 26.570814]: [drm] Traces. -[ 26.570814]: [drm] GMR2. -[ 26.570815]: [drm] Screen Object 2.w/ -[ 26.570815]: [drm] Command Buffers.\~/ -[ 26.570817]: [drm] Max GMR ids is 64 -[ 26.570817]: [drm] Max number of GMR pages is 65536 -[ 26.570818]: [drm] Max dedicated hypervisor surface memory is 163840 kiB -[ 26.570819]: [drm] Maximum display memory size is 4096 kiB -[ 26.570819]: [drm] VRAM at 0xec000000 size is 4096 kiB -[ 26.570820]: [drm] MMIO at 0xfe000000 size is 256 kiBC60 -[ 26.578666]: [TTM] Zone kernel: Available graphics memory: 3820882 kiB -[ 26.578667]: [TTM] Zone dma32: Available graphics memory: 2097152 kiB -[ 26.578668]: [TTM] Initializing pool allocator -[ 26.578673]: [TTM] Initializing DMA pool allocator -[ 26.578724]: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). -[ 26.578725]: [drm] No driver support for vblank timestamp query. -[ 26.579697]: [drm] Screen Objects Display Unit initialized -[ 26.579773]: [drm] width 800 -[ 26.579783]: [drm] height 480$wG0 -[ 26.579793]: [drm] bpp 320 -[ 26.588992]: [drm] Fifo max 0x00040000 min 0x00001000 cap 0x0000077f -[ 26.601047]: [drm] Using command buffers with DMA pool. -[ 26.601098]: [drm] DX: no. -[ 26.601099]: [drm] Atomic: yes. -[ 26.601099]: [drm] SM4_1: no.R82 -[ 26.612355]: fbcon: svgadrmfb (fb0) is primary devicea2 -[ 26.618913]: Console: switching to colour frame buffer device 100x37 -[ 26.624044]: [drm] Initialized vmwgfx 2.15.0 20180704 for 0000:00:0f.0 on minor 0bB -[ 26.883529]: systemd-journald[743]: Received request to flush runtime journal from PID 1 -[ 26.974338]: RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 10737418240 ms ovfl timer -[ 26.974340]: RAPL PMU: hw unit of domain pp0-core 2^-0 JoulesEG -[ 26.974340]: RAPL PMU: hw unit of domain package 2^-0 Joules -[ 26.974341]: RAPL PMU: hw unit of domain dram 2^-0 JoulesvK -[ 27.030156]: cryptd: max_cpu_qlen set to 1000qMM -[ 27.066751]: AVX version of gcm_enc/dec engaged. -[ 27.066752]: AES CTR mode by8 optimization enabled -[ 27.092199]: ppdev: user-space parallel port driver -[ 27.107466]: systemd-journald[743]: File /var/log/journal/0ed34a0b1ea542ee9183d0310f77479a/system.journal corrupted or uncleanly shut down, renaming and replacing. -[ 27.314691]: EDAC sbridge: Seeking for: PCI ID 8086:0ea0 -[ 27.314708]: EDAC sbridge: Ver: 1.1.2 -[ 28.049671]: NET: Registered protocol family 40 -[ 33.281872]: vmxnet3 0000:03:00.0 ens160: intr type 3, mode 0, 3 vectors allocatedSUBSYSTEM=pci -[ 33.283970]: vmxnet3 0000:03:00.0 ens160: NIC Link is Up 10000 MbpsSUBSYSTEM=pci -[ 37.341904]: NFSD: starting 20-second grace period (net f0000098)kB -[ 48.367758]: Rounding down aligned max_sectors from 4294967295 to 4294967288 -[ 48.368009]: db_root: cannot open: /etc/target -[ 305.339527]: sysrq: SysRq : Trigger a crash -[ 305.340853]: Kernel panic - not syncing: sysrq triggered crash -[ 305.342494]: CPU: 0 PID: 6029 Comm: bash Kdump: loaded Tainted: P OE 5.0.0-36-generic #39~18.04.1-Ubuntu -[ 305.345365]: Hardware name: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 04/14/2014 -[ 305.348417]: Call Trace: -[ 305.349419]: dump_stack+0x63/0x85 -[ 305.350547]: panic+0xfe/0x2a4 -[ 305.351630]: sysrq_handle_crash+0x15/0x20 -[ 305.352892]: __handle_sysrq+0x9f/0x170 -[ 305.354091]: write_sysrq_trigger+0x34/0x40 -[ 305.355360]: proc_reg_write+0x3e/0x60 -[ 305.356526]: __vfs_write+0x1b/0x40 -[ 305.357632]: vfs_write+0xb1/0x1a0 -[ 305.358756]: ksys_write+0x5c/0xe0 -[ 305.359959]: __x64_sys_write+0x1a/0x20 -[ 305.361167]: do_syscall_64+0x5a/0x120 -[ 305.362284]: entry_SYSCALL_64_after_hwframe+0x44/0xa9 -[ 305.363691]: RIP: 0033:0x7faa4ea10154)G -[ 305.364797]: Code: 89 02 48 c7 c0 ff ff ff ff c3 66 2e 0f 1f 84 00 00 00 00 00 66 90 48 8d 05 b1 07 2e 00 8b 00 85 c0 75 13 b8 01 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 54 f3 c3 66 90 41 54 55 49 89 d4 53 48 89 f5 -[ 305.369413]: RSP: 002b:00007ffdad43be68 EFLAGS: 00000246 ORIG_RAX: 0000000000000001 -[ 305.371235]: RAX: ffffffffffffffda RBX: 0000000000000002 RCX: 00007faa4ea10154 -[ 305.372968]: RDX: 0000000000000002 RSI: 000055e5f13d2a20 RDI: 0000000000000001 -[ 305.374703]: RBP: 000055e5f13d2a20 R08: 000000000000000a R09: 0000000000000001 -[ 305.376456]: R10: 000000000000000a R11: 0000000000000246 R12: 00007faa4ecec760 -[ 305.378189]: R13: 0000000000000002 R14: 00007faa4ece82a0 R15: 00007faa4ece7760 +[ 0.000000] Linux version 5.0.0-36-generic (buildd@lgw01-amd64-060) (gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)) #39~18.04.1-Ubuntu SMP Tue Nov 12 11:09:50 UTC 2019 (Ubuntu 5.0.0-36.39~18.04.1-generic 5.0.21) +[ 0.000000] Command line: BOOT_IMAGE=/ROOT/delphix.gX9jjSh/root@/boot/vmlinuz-5.0.0-36-generic root=ZFS=rpool/ROOT/delphix.gX9jjSh/root ro console=tty0 console=ttyS0,38400n8 mitigations=off ipv6.disable=1 elevator=noop crashkernel=256M,high crashkernel=256M,low +[ 0.000000] KERNEL supported cpus: +[ 0.000000] Intel GenuineIntel +[ 0.000000] AMD AuthenticAMD +[ 0.000000] Hygon HygonGenuine +[ 0.000000] Centaur CentaurHauls +[ 0.000000] Disabled fast string operations +[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' +[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' +[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' +[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 +[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable +[ 0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved +[ 0.000000] BIOS-e820: [mem 0x00000000000ca000-0x00000000000cbfff] reserved +[ 0.000000] BIOS-e820: [mem 0x00000000000dc000-0x00000000000fffff] reserved +[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bfeeffff] usable +[ 0.000000] BIOS-e820: [mem 0x00000000bfef0000-0x00000000bfefefff] ACPI data +[ 0.000000] BIOS-e820: [mem 0x00000000bfeff000-0x00000000bfefffff] ACPI NVS +[ 0.000000] BIOS-e820: [mem 0x00000000bff00000-0x00000000bfffffff] usable +[ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved +[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved +[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved +[ 0.000000] BIOS-e820: [mem 0x00000000fffe0000-0x00000000ffffffff] reserved +[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] SMBIOS 2.4 present. +[ 0.000000] DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 04/14/2014 +[ 0.000000] Hypervisor detected: VMware +[ 0.000000] vmware: TSC freq read from hypervisor : 2400.000 MHz +[ 0.000000] vmware: Host bus clock speed read from hypervisor : 66000000 Hz +[ 0.000000] vmware: using sched offset of 19312235313 ns +[ 0.000002] tsc: Detected 2400.000 MHz processor +[ 0.004973] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved +[ 0.004975] e820: remove [mem 0x000a0000-0x000fffff] usable +[ 0.004980] last_pfn = 0x240000 max_arch_pfn = 0x400000000 +[ 0.005032] MTRR default type: uncachable +[ 0.005033] MTRR fixed ranges enabled: +[ 0.005034] 00000-9FFFF write-back +[ 0.005034] A0000-BFFFF uncachable +[ 0.005035] C0000-CBFFF write-protect +[ 0.005036] CC000-EFFFF uncachable +[ 0.005036] F0000-FFFFF write-protect +[ 0.005037] MTRR variable ranges enabled: +[ 0.005038] 0 base 00C0000000 mask FFC0000000 uncachable +[ 0.005039] 1 base 0000000000 mask FE00000000 write-back +[ 0.005040] 2 base 0200000000 mask FFC0000000 write-back +[ 0.005040] 3 disabled +[ 0.005041] 4 disabled +[ 0.005041] 5 disabled +[ 0.005042] 6 disabled +[ 0.005042] 7 disabled +[ 0.005066] x86/PAT: PAT MSR is 0, disabled. +[ 0.005090] total RAM covered: 8192M +[ 0.005591] Found optimal setting for mtrr clean up +[ 0.005592] gran_size: 64K chunk_size: 64K num_reg: 4 lose cover RAM: 0G +[ 0.005664] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved +[ 0.005667] x86/PAT: Configuration [0-7]: WB WT UC- UC WB WT UC- UC +[ 0.005676] last_pfn = 0xc0000 max_arch_pfn = 0x400000000 +[ 0.021509] found SMP MP-table at [mem 0x000f6bf0-0x000f6bff] +[ 0.021704] check: Scanning 1 areas for low memory corruption +[ 0.021762] Kernel/User page tables isolation: disabled on command line. +[ 0.021791] BRK [0x11f802000, 0x11f802fff] PGTABLE +[ 0.021794] BRK [0x11f803000, 0x11f803fff] PGTABLE +[ 0.021795] BRK [0x11f804000, 0x11f804fff] PGTABLE +[ 0.021844] BRK [0x11f805000, 0x11f805fff] PGTABLE +[ 0.021846] BRK [0x11f806000, 0x11f806fff] PGTABLE +[ 0.021960] BRK [0x11f807000, 0x11f807fff] PGTABLE +[ 0.021971] BRK [0x11f808000, 0x11f808fff] PGTABLE +[ 0.022006] BRK [0x11f809000, 0x11f809fff] PGTABLE +[ 0.022199] RAMDISK: [mem 0x2ef4b000-0x3379cfff] +[ 0.022245] ACPI: Early table checksum verification disabled +[ 0.022324] ACPI: RSDP 0x00000000000F6B80 000024 (v02 PTLTD ) +[ 0.022329] ACPI: XSDT 0x00000000BFEF1152 00005C (v01 INTEL 440BX 06040000 VMW 01324272) +[ 0.022337] ACPI: FACP 0x00000000BFEFEE73 0000F4 (v04 INTEL 440BX 06040000 PTL 000F4240) +[ 0.022346] ACPI: DSDT 0x00000000BFEF1400 00DA73 (v01 PTLTD Custom 06040000 MSFT 03000001) +[ 0.022352] ACPI: FACS 0x00000000BFEFFFC0 000040 +[ 0.022356] ACPI: FACS 0x00000000BFEFFFC0 000040 +[ 0.022361] ACPI: BOOT 0x00000000BFEF13D8 000028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) +[ 0.022366] ACPI: APIC 0x00000000BFEF137A 00005E (v01 PTLTD ? APIC 06040000 LTP 00000000) +[ 0.022371] ACPI: MCFG 0x00000000BFEF133E 00003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001) +[ 0.022376] ACPI: SRAT 0x00000000BFEF124E 0000F0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001) +[ 0.022381] ACPI: HPET 0x00000000BFEF1216 000038 (v01 VMWARE VMW HPET 06040000 VMW 00000001) +[ 0.022386] ACPI: WAET 0x00000000BFEF11EE 000028 (v01 VMWARE VMW WAET 06040000 VMW 00000001) +[ 0.022402] ACPI: Local APIC address 0xfee00000 +[ 0.022487] SRAT: PXM 0 -> APIC 0x00 -> Node 0 +[ 0.022488] SRAT: PXM 0 -> APIC 0x02 -> Node 0 +[ 0.022493] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff] +[ 0.022494] ACPI: SRAT: Node 0 PXM 0 [mem 0x00100000-0x0fffffff] +[ 0.022495] ACPI: SRAT: Node 0 PXM 0 [mem 0x10000000-0xbfffffff] +[ 0.022496] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x23fffffff] +[ 0.022500] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0x0fffffff] -> [mem 0x00000000-0x0fffffff] +[ 0.022501] NUMA: Node 0 [mem 0x00000000-0x0fffffff] + [mem 0x10000000-0xbfffffff] -> [mem 0x00000000-0xbfffffff] +[ 0.022503] NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x23fffffff] -> [mem 0x00000000-0x23fffffff] +[ 0.022513] NODE_DATA(0) allocated [mem 0x23ffd1000-0x23fffbfff] +[ 0.023003] Reserving 256MB of low memory at 2800MB for crashkernel (System low RAM: 3071MB) +[ 0.023005] Reserving 256MB of memory at 8944MB for crashkernel (System RAM: 8191MB) +[ 0.023068] Zone ranges: +[ 0.023069] DMA [mem 0x0000000000001000-0x0000000000ffffff] +[ 0.023071] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] +[ 0.023072] Normal [mem 0x0000000100000000-0x000000023fffffff] +[ 0.023073] Device empty +[ 0.023074] Movable zone start for each node +[ 0.023077] Early memory node ranges +[ 0.023078] node 0: [mem 0x0000000000001000-0x000000000009efff] +[ 0.023079] node 0: [mem 0x0000000000100000-0x00000000bfeeffff] +[ 0.023080] node 0: [mem 0x00000000bff00000-0x00000000bfffffff] +[ 0.023081] node 0: [mem 0x0000000100000000-0x000000023fffffff] +[ 0.023123] Zeroed struct page in unavailable ranges: 114 pages +[ 0.023124] Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff] +[ 0.023126] On node 0 totalpages: 2097038 +[ 0.023127] DMA zone: 64 pages used for memmap +[ 0.023128] DMA zone: 21 pages reserved +[ 0.023129] DMA zone: 3998 pages, LIFO batch:0 +[ 0.023631] DMA32 zone: 12224 pages used for memmap +[ 0.023632] DMA32 zone: 782320 pages, LIFO batch:63 +[ 0.107637] Normal zone: 20480 pages used for memmap +[ 0.107640] Normal zone: 1310720 pages, LIFO batch:63 +[ 0.255769] ACPI: PM-Timer IO Port: 0x1008 +[ 0.255776] ACPI: Local APIC address 0xfee00000 +[ 0.255794] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) +[ 0.255795] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.255867] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23 +[ 0.255872] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) +[ 0.255876] ACPI: IRQ0 used by override. +[ 0.255877] ACPI: IRQ9 used by override. +[ 0.255880] Using ACPI (MADT) for SMP configuration information +[ 0.255883] ACPI: HPET id: 0x8086af01 base: 0xfed00000 +[ 0.255906] smpboot: Allowing 2 CPUs, 0 hotplug CPUs +[ 0.255941] PM: Registered nosave memory: [mem 0x00000000-0x00000fff] +[ 0.255943] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff] +[ 0.255943] PM: Registered nosave memory: [mem 0x000a0000-0x000c9fff] +[ 0.255944] PM: Registered nosave memory: [mem 0x000ca000-0x000cbfff] +[ 0.255945] PM: Registered nosave memory: [mem 0x000cc000-0x000dbfff] +[ 0.255946] PM: Registered nosave memory: [mem 0x000dc000-0x000fffff] +[ 0.255947] PM: Registered nosave memory: [mem 0xbfef0000-0xbfefefff] +[ 0.255948] PM: Registered nosave memory: [mem 0xbfeff000-0xbfefffff] +[ 0.255949] PM: Registered nosave memory: [mem 0xc0000000-0xefffffff] +[ 0.255950] PM: Registered nosave memory: [mem 0xf0000000-0xf7ffffff] +[ 0.255951] PM: Registered nosave memory: [mem 0xf8000000-0xfebfffff] +[ 0.255951] PM: Registered nosave memory: [mem 0xfec00000-0xfec0ffff] +[ 0.255952] PM: Registered nosave memory: [mem 0xfec10000-0xfedfffff] +[ 0.255953] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff] +[ 0.255954] PM: Registered nosave memory: [mem 0xfee01000-0xfffdffff] +[ 0.255954] PM: Registered nosave memory: [mem 0xfffe0000-0xffffffff] +[ 0.255957] [mem 0xc0000000-0xefffffff] available for PCI devices +[ 0.255958] Booting paravirtualized kernel on VMware hypervisor +[ 0.255962] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns +[ 0.255977] random: get_random_bytes called from start_kernel+0x97/0x516 with crng_init=0 +[ 0.255984] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 +[ 0.258647] percpu: Embedded 46 pages/cpu s151552 r8192 d28672 u1048576 +[ 0.258654] pcpu-alloc: s151552 r8192 d28672 u1048576 alloc=1*2097152 +[ 0.258655] pcpu-alloc: [0] 0 1 +[ 0.258688] Built 1 zonelists, mobility grouping on. Total pages: 2064249 +[ 0.258689] Policy zone: Normal +[ 0.258691] Kernel command line: BOOT_IMAGE=/ROOT/delphix.gX9jjSh/root@/boot/vmlinuz-5.0.0-36-generic root=ZFS=rpool/ROOT/delphix.gX9jjSh/root ro console=tty0 console=ttyS0,38400n8 mitigations=off ipv6.disable=1 elevator=noop crashkernel=256M,high crashkernel=256M,low +[ 0.345968] Calgary: detecting Calgary via BIOS EBDA area +[ 0.345971] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.370032] Memory: 7559300K/8388152K available (14339K kernel code, 2336K rwdata, 4416K rodata, 2588K init, 5192K bss, 828852K reserved, 0K cma-reserved) +[ 0.370419] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +[ 0.370440] ftrace: allocating 41686 entries in 163 pages +[ 0.388619] rcu: Hierarchical RCU implementation. +[ 0.388622] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=2. +[ 0.388624] Tasks RCU enabled. +[ 0.388625] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. +[ 0.388626] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 +[ 0.392274] NR_IRQS: 524544, nr_irqs: 440, preallocated irqs: 16 +[ 0.393995] Console: colour VGA+ 80x25 +[ 0.402530] printk: console [tty0] enabled +[ 0.564180] printk: console [ttyS0] enabled +[ 0.565139] ACPI: Core revision 20181213 +[ 0.566409] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns +[ 0.568260] hpet clockevent registered +[ 0.568320] APIC: Switch to symmetric I/O mode setup +[ 0.569368] x2apic: IRQ remapping doesn't support X2APIC mode +[ 0.571275] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.572620] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22983777dd9, max_idle_ns: 440795300422 ns +[ 0.574925] Calibrating delay loop (skipped) preset value.. 4800.00 BogoMIPS (lpj=9600000) +[ 0.578906] pid_max: default: 32768 minimum: 301 +[ 0.580012] LSM: Security Framework initializing +[ 0.580956] Yama: becoming mindful. +[ 0.581765] AppArmor: AppArmor initialized +[ 0.595393] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes) +[ 0.603245] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 0.604771] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes) +[ 0.606207] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes) +[ 0.607340] Disabled fast string operations +[ 0.608189] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8 +[ 0.609204] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4 +[ 0.610905] Speculative Store Bypass: Vulnerable +[ 0.611918] Freeing SMP alternatives memory: 36K +[ 0.615333] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2695 v2 @ 2.40GHz (family: 0x6, model: 0x3e, stepping: 0x4) +[ 0.619285] Performance Events: IvyBridge events, core PMU driver. +[ 0.620495] core: CPUID marked event: 'cpu cycles' unavailable +[ 0.621570] core: CPUID marked event: 'instructions' unavailable +[ 0.622903] core: CPUID marked event: 'bus cycles' unavailable +[ 0.624076] core: CPUID marked event: 'cache references' unavailable +[ 0.625271] core: CPUID marked event: 'cache misses' unavailable +[ 0.626371] core: CPUID marked event: 'branch instructions' unavailable +[ 0.626903] core: CPUID marked event: 'branch misses' unavailable +[ 0.628051] ... version: 1 +[ 0.628795] ... bit width: 48 +[ 0.629608] ... generic registers: 4 +[ 0.630903] ... value mask: 0000ffffffffffff +[ 0.631909] ... max period: 000000007fffffff +[ 0.633002] ... fixed-purpose events: 0 +[ 0.633790] ... event mask: 000000000000000f +[ 0.635055] rcu: Hierarchical SRCU implementation. +[ 0.637022] random: crng done (trusting CPU's manufacturer) +[ 0.638310] NMI watchdog: Perf NMI watchdog permanently disabled +[ 0.639072] smp: Bringing up secondary CPUs ... +[ 0.640458] x86: Booting SMP configuration: +[ 0.641257] .... node #0, CPUs: #1 +[ 0.182210] Disabled fast string operations +[ 0.182210] smpboot: CPU 1 Converting physical 2 to logical package 1 +[ 0.647525] smp: Brought up 1 node, 2 CPUs +[ 0.647686] smpboot: Max logical packages: 2 +[ 0.648544] smpboot: Total of 2 processors activated (9600.00 BogoMIPS) +[ 0.651550] devtmpfs: initialized +[ 0.651712] x86/mm: Memory block size: 128MB +[ 0.655268] PM: Registering ACPI NVS region [mem 0xbfeff000-0xbfefffff] (4096 bytes) +[ 0.656604] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns +[ 0.656764] futex hash table entries: 512 (order: 3, 32768 bytes) +[ 0.660234] pinctrl core: initialized pinctrl subsystem +[ 0.661551] RTC time: 00:00:48, date: 2019-12-06 +[ 0.662733] NET: Registered protocol family 16 +[ 0.663061] audit: initializing netlink subsys (disabled) +[ 0.664236] audit: type=2000 audit(1575590448.092:1): state=initialized audit_enabled=0 res=1 +[ 0.664236] EISA bus registered +[ 0.667583] cpuidle: using governor ladder +[ 0.668366] cpuidle: using governor menu +[ 0.669193] Simple Boot Flag at 0x36 set to 0x80 +[ 0.670087] ACPI: bus type PCI registered +[ 0.670905] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 +[ 0.672578] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) +[ 0.674319] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820 +[ 0.674917] PCI: Using configuration type 1 for base access +[ 0.676049] core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off +[ 0.680303] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages +[ 0.680303] ACPI: Added _OSI(Module Device) +[ 0.683717] ACPI: Added _OSI(Processor Device) +[ 0.684590] ACPI: Added _OSI(3.0 _SCP Extensions) +[ 0.685456] ACPI: Added _OSI(Processor Aggregator Device) +[ 0.686448] ACPI: Added _OSI(Linux-Dell-Video) +[ 0.686906] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) +[ 0.687878] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) +[ 0.702147] ACPI: 1 ACPI AML tables successfully acquired and loaded +[ 0.705510] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored +[ 0.706918] ACPI: BIOS _OSI(Darwin) query ignored +[ 0.709865] ACPI: Interpreter enabled +[ 0.710926] ACPI: (supports S0 S1 S4 S5) +[ 0.711691] ACPI: Using IOAPIC for interrupt routing +[ 0.712716] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 0.715262] ACPI: Enabled 4 GPEs in block 00 to 0F +[ 0.776784] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f]) +[ 0.777951] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] +[ 0.779208] acpi PNP0A03:00: _OSC: platform does not support [AER LTR] +[ 0.780742] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability] +[ 0.785282] PCI host bridge to bus 0000:00 +[ 0.786046] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] +[ 0.786904] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window] +[ 0.788344] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window] +[ 0.789686] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window] +[ 0.790905] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window] +[ 0.792253] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] +[ 0.793631] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] +[ 0.794904] pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff window] +[ 0.796126] pci_bus 0000:00: root bus resource [bus 00-7f] +[ 0.797229] pci 0000:00:00.0: [8086:7190] type 00 class 0x060000 +[ 0.798950] pci 0000:00:01.0: [8086:7191] type 01 class 0x060400 +[ 0.800398] pci 0000:00:07.0: [8086:7110] type 00 class 0x060100 +[ 0.801472] pci 0000:00:07.1: [8086:7111] type 00 class 0x01018a +[ 0.802907] pci 0000:00:07.1: reg 0x20: [io 0x1060-0x106f] +[ 0.803483] pci 0000:00:07.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] +[ 0.804765] pci 0000:00:07.1: legacy IDE quirk: reg 0x14: [io 0x03f6] +[ 0.805940] pci 0000:00:07.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] +[ 0.806903] pci 0000:00:07.1: legacy IDE quirk: reg 0x1c: [io 0x0376] +[ 0.808511] pci 0000:00:07.3: [8086:7113] type 00 class 0x068000 +[ 0.810238] pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI +[ 0.810920] pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB +[ 0.812663] pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000 +[ 0.813371] pci 0000:00:07.7: reg 0x10: [io 0x1080-0x10bf] +[ 0.814906] pci 0000:00:07.7: reg 0x14: [mem 0xfebfe000-0xfebfffff 64bit] +[ 0.818526] pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000 +[ 0.819484] pci 0000:00:0f.0: reg 0x10: [io 0x1070-0x107f] +[ 0.820710] pci 0000:00:0f.0: reg 0x14: [mem 0xec000000-0xefffffff pref] +[ 0.821734] pci 0000:00:0f.0: reg 0x18: [mem 0xfe000000-0xfe7fffff] +[ 0.826326] pci 0000:00:0f.0: reg 0x30: [mem 0x00000000-0x00007fff pref] +[ 0.827431] pci 0000:00:10.0: [1000:0030] type 00 class 0x010000 +[ 0.828363] pci 0000:00:10.0: reg 0x10: [io 0x1400-0x14ff] +[ 0.829131] pci 0000:00:10.0: reg 0x14: [mem 0xfeba0000-0xfebbffff 64bit] +[ 0.830161] pci 0000:00:10.0: reg 0x1c: [mem 0xfebc0000-0xfebdffff 64bit] +[ 0.831568] pci 0000:00:10.0: reg 0x30: [mem 0x00000000-0x00003fff pref] +[ 0.832036] pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401 +[ 0.833449] pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400 +[ 0.834335] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold +[ 0.835196] pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400 +[ 0.836066] pci 0000:00:15.1: PME# supported from D0 D3hot D3cold +[ 0.836516] pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400 +[ 0.837374] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold +[ 0.837895] pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400 +[ 0.838762] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold +[ 0.839273] pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400 +[ 0.840160] pci 0000:00:15.4: PME# supported from D0 D3hot D3cold +[ 0.840636] pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400 +[ 0.841510] pci 0000:00:15.5: PME# supported from D0 D3hot D3cold +[ 0.841968] pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400 +[ 0.842859] pci 0000:00:15.6: PME# supported from D0 D3hot D3cold +[ 0.843326] pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400 +[ 0.844200] pci 0000:00:15.7: PME# supported from D0 D3hot D3cold +[ 0.844816] pci 0000:00:16.0: [15ad:07a0] type 01 class 0x060400 +[ 0.845685] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold +[ 0.846153] pci 0000:00:16.1: [15ad:07a0] type 01 class 0x060400 +[ 0.847023] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold +[ 0.847482] pci 0000:00:16.2: [15ad:07a0] type 01 class 0x060400 +[ 0.848330] pci 0000:00:16.2: PME# supported from D0 D3hot D3cold +[ 0.848797] pci 0000:00:16.3: [15ad:07a0] type 01 class 0x060400 +[ 0.849683] pci 0000:00:16.3: PME# supported from D0 D3hot D3cold +[ 0.850171] pci 0000:00:16.4: [15ad:07a0] type 01 class 0x060400 +[ 0.851050] pci 0000:00:16.4: PME# supported from D0 D3hot D3cold +[ 0.851549] pci 0000:00:16.5: [15ad:07a0] type 01 class 0x060400 +[ 0.852504] pci 0000:00:16.5: PME# supported from D0 D3hot D3cold +[ 0.853021] pci 0000:00:16.6: [15ad:07a0] type 01 class 0x060400 +[ 0.853896] pci 0000:00:16.6: PME# supported from D0 D3hot D3cold +[ 0.854355] pci 0000:00:16.7: [15ad:07a0] type 01 class 0x060400 +[ 0.855218] pci 0000:00:16.7: PME# supported from D0 D3hot D3cold +[ 0.855820] pci 0000:00:17.0: [15ad:07a0] type 01 class 0x060400 +[ 0.856665] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold +[ 0.857116] pci 0000:00:17.1: [15ad:07a0] type 01 class 0x060400 +[ 0.857960] pci 0000:00:17.1: PME# supported from D0 D3hot D3cold +[ 0.858413] pci 0000:00:17.2: [15ad:07a0] type 01 class 0x060400 +[ 0.859270] pci 0000:00:17.2: PME# supported from D0 D3hot D3cold +[ 0.859726] pci 0000:00:17.3: [15ad:07a0] type 01 class 0x060400 +[ 0.860568] pci 0000:00:17.3: PME# supported from D0 D3hot D3cold +[ 0.861058] pci 0000:00:17.4: [15ad:07a0] type 01 class 0x060400 +[ 0.861926] pci 0000:00:17.4: PME# supported from D0 D3hot D3cold +[ 0.862377] pci 0000:00:17.5: [15ad:07a0] type 01 class 0x060400 +[ 0.863226] pci 0000:00:17.5: PME# supported from D0 D3hot D3cold +[ 0.863669] pci 0000:00:17.6: [15ad:07a0] type 01 class 0x060400 +[ 0.864510] pci 0000:00:17.6: PME# supported from D0 D3hot D3cold +[ 0.864961] pci 0000:00:17.7: [15ad:07a0] type 01 class 0x060400 +[ 0.865805] pci 0000:00:17.7: PME# supported from D0 D3hot D3cold +[ 0.866424] pci 0000:00:18.0: [15ad:07a0] type 01 class 0x060400 +[ 0.867289] pci 0000:00:18.0: PME# supported from D0 D3hot D3cold +[ 0.867738] pci 0000:00:18.1: [15ad:07a0] type 01 class 0x060400 +[ 0.868584] pci 0000:00:18.1: PME# supported from D0 D3hot D3cold +[ 0.869031] pci 0000:00:18.2: [15ad:07a0] type 01 class 0x060400 +[ 0.869898] pci 0000:00:18.2: PME# supported from D0 D3hot D3cold +[ 0.870342] pci 0000:00:18.3: [15ad:07a0] type 01 class 0x060400 +[ 0.871281] pci 0000:00:18.3: PME# supported from D0 D3hot D3cold +[ 0.871814] pci 0000:00:18.4: [15ad:07a0] type 01 class 0x060400 +[ 0.872660] pci 0000:00:18.4: PME# supported from D0 D3hot D3cold +[ 0.873109] pci 0000:00:18.5: [15ad:07a0] type 01 class 0x060400 +[ 0.873973] pci 0000:00:18.5: PME# supported from D0 D3hot D3cold +[ 0.874439] pci 0000:00:18.6: [15ad:07a0] type 01 class 0x060400 +[ 0.875298] pci 0000:00:18.6: PME# supported from D0 D3hot D3cold +[ 0.875739] pci 0000:00:18.7: [15ad:07a0] type 01 class 0x060400 +[ 0.876677] pci 0000:00:18.7: PME# supported from D0 D3hot D3cold +[ 0.878302] pci_bus 0000:01: extended config space not accessible +[ 0.884373] pci 0000:00:01.0: PCI bridge to [bus 01] +[ 0.885508] pci_bus 0000:02: extended config space not accessible +[ 0.887019] acpiphp: Slot [32] registered +[ 0.887815] acpiphp: Slot [33] registered +[ 0.888618] acpiphp: Slot [34] registered +[ 0.889384] acpiphp: Slot [35] registered +[ 0.890166] acpiphp: Slot [36] registered +[ 0.890932] acpiphp: Slot [37] registered +[ 0.891697] acpiphp: Slot [38] registered +[ 0.892499] acpiphp: Slot [39] registered +[ 0.893292] acpiphp: Slot [40] registered +[ 0.894058] acpiphp: Slot [41] registered +[ 0.894837] acpiphp: Slot [42] registered +[ 0.894934] acpiphp: Slot [43] registered +[ 0.895784] acpiphp: Slot [44] registered +[ 0.896578] acpiphp: Slot [45] registered +[ 0.897367] acpiphp: Slot [46] registered +[ 0.898153] acpiphp: Slot [47] registered +[ 0.898945] acpiphp: Slot [48] registered +[ 0.899714] acpiphp: Slot [49] registered +[ 0.900892] acpiphp: Slot [50] registered +[ 0.901790] acpiphp: Slot [51] registered +[ 0.902937] acpiphp: Slot [52] registered +[ 0.903752] acpiphp: Slot [53] registered +[ 0.904566] acpiphp: Slot [54] registered +[ 0.905335] acpiphp: Slot [55] registered +[ 0.906102] acpiphp: Slot [56] registered +[ 0.906935] acpiphp: Slot [57] registered +[ 0.907705] acpiphp: Slot [58] registered +[ 0.908475] acpiphp: Slot [59] registered +[ 0.909262] acpiphp: Slot [60] registered +[ 0.910081] acpiphp: Slot [61] registered +[ 0.910933] acpiphp: Slot [62] registered +[ 0.911796] acpiphp: Slot [63] registered +[ 0.917916] pci 0000:00:11.0: PCI bridge to [bus 02] (subtractive decode) +[ 0.918927] pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] +[ 0.918957] pci 0000:00:11.0: bridge window [mem 0xfd600000-0xfdffffff] +[ 0.919008] pci 0000:00:11.0: bridge window [mem 0xebb00000-0xebffffff 64bit pref] +[ 0.919011] pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode) +[ 0.919012] pci 0000:00:11.0: bridge window [mem 0x000cc000-0x000cffff window] (subtractive decode) +[ 0.919013] pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff window] (subtractive decode) +[ 0.919014] pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode) +[ 0.919015] pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode) +[ 0.919016] pci 0000:00:11.0: bridge window [mem 0xc0000000-0xfebfffff window] (subtractive decode) +[ 0.919017] pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7 window] (subtractive decode) +[ 0.919018] pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff window] (subtractive decode) +[ 0.919548] pci 0000:03:00.0: [15ad:07b0] type 00 class 0x020000 +[ 0.920696] pci 0000:03:00.0: reg 0x10: [mem 0xfd5fb000-0xfd5fbfff] +[ 0.921798] pci 0000:03:00.0: reg 0x14: [mem 0xfd5fc000-0xfd5fcfff] +[ 0.922907] pci 0000:03:00.0: reg 0x18: [mem 0xfd5fe000-0xfd5fffff] +[ 0.923968] pci 0000:03:00.0: reg 0x1c: [io 0x4000-0x400f] +[ 0.926906] pci 0000:03:00.0: reg 0x30: [mem 0x00000000-0x0000ffff pref] +[ 0.927418] pci 0000:03:00.0: supports D1 D2 +[ 0.927419] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.927852] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' +[ 0.934981] pci 0000:00:15.0: PCI bridge to [bus 03] +[ 0.935928] pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] +[ 0.935960] pci 0000:00:15.0: bridge window [mem 0xfd500000-0xfd5fffff] +[ 0.936003] pci 0000:00:15.0: bridge window [mem 0xeba00000-0xebafffff 64bit pref] +[ 0.941032] pci 0000:00:15.1: PCI bridge to [bus 04] +[ 0.942007] pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] +[ 0.942027] pci 0000:00:15.1: bridge window [mem 0xfd100000-0xfd1fffff] +[ 0.942065] pci 0000:00:15.1: bridge window [mem 0xeb600000-0xeb6fffff 64bit pref] +[ 0.947075] pci 0000:00:15.2: PCI bridge to [bus 05] +[ 0.948050] pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] +[ 0.948071] pci 0000:00:15.2: bridge window [mem 0xfcd00000-0xfcdfffff] +[ 0.948108] pci 0000:00:15.2: bridge window [mem 0xeb200000-0xeb2fffff 64bit pref] +[ 0.953089] pci 0000:00:15.3: PCI bridge to [bus 06] +[ 0.954126] pci 0000:00:15.3: bridge window [mem 0xfc900000-0xfc9fffff] +[ 0.954165] pci 0000:00:15.3: bridge window [mem 0xeae00000-0xeaefffff 64bit pref] +[ 0.959123] pci 0000:00:15.4: PCI bridge to [bus 07] +[ 0.960143] pci 0000:00:15.4: bridge window [mem 0xfc500000-0xfc5fffff] +[ 0.960182] pci 0000:00:15.4: bridge window [mem 0xeaa00000-0xeaafffff 64bit pref] +[ 0.965049] pci 0000:00:15.5: PCI bridge to [bus 08] +[ 0.966028] pci 0000:00:15.5: bridge window [mem 0xfc100000-0xfc1fffff] +[ 0.966066] pci 0000:00:15.5: bridge window [mem 0xea600000-0xea6fffff 64bit pref] +[ 0.971018] pci 0000:00:15.6: PCI bridge to [bus 09] +[ 0.971970] pci 0000:00:15.6: bridge window [mem 0xfbd00000-0xfbdfffff] +[ 0.972008] pci 0000:00:15.6: bridge window [mem 0xea200000-0xea2fffff 64bit pref] +[ 0.976929] pci 0000:00:15.7: PCI bridge to [bus 0a] +[ 0.977912] pci 0000:00:15.7: bridge window [mem 0xfb900000-0xfb9fffff] +[ 0.977956] pci 0000:00:15.7: bridge window [mem 0xe9e00000-0xe9efffff 64bit pref] +[ 0.982952] pci 0000:00:16.0: PCI bridge to [bus 0b] +[ 0.983913] pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] +[ 0.983934] pci 0000:00:16.0: bridge window [mem 0xfd400000-0xfd4fffff] +[ 0.983972] pci 0000:00:16.0: bridge window [mem 0xeb900000-0xeb9fffff 64bit pref] +[ 0.988836] pci 0000:00:16.1: PCI bridge to [bus 0c] +[ 0.989790] pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] +[ 0.989810] pci 0000:00:16.1: bridge window [mem 0xfd000000-0xfd0fffff] +[ 0.989848] pci 0000:00:16.1: bridge window [mem 0xeb500000-0xeb5fffff 64bit pref] +[ 0.994758] pci 0000:00:16.2: PCI bridge to [bus 0d] +[ 0.994926] pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] +[ 0.994946] pci 0000:00:16.2: bridge window [mem 0xfcc00000-0xfccfffff] +[ 0.994984] pci 0000:00:16.2: bridge window [mem 0xeb100000-0xeb1fffff 64bit pref] +[ 1.001048] pci 0000:00:16.3: PCI bridge to [bus 0e] +[ 1.002028] pci 0000:00:16.3: bridge window [mem 0xfc800000-0xfc8fffff] +[ 1.002066] pci 0000:00:16.3: bridge window [mem 0xead00000-0xeadfffff 64bit pref] +[ 1.006940] pci 0000:00:16.4: PCI bridge to [bus 0f] +[ 1.007931] pci 0000:00:16.4: bridge window [mem 0xfc400000-0xfc4fffff] +[ 1.007969] pci 0000:00:16.4: bridge window [mem 0xea900000-0xea9fffff 64bit pref] +[ 1.012894] pci 0000:00:16.5: PCI bridge to [bus 10] +[ 1.013899] pci 0000:00:16.5: bridge window [mem 0xfc000000-0xfc0fffff] +[ 1.013940] pci 0000:00:16.5: bridge window [mem 0xea500000-0xea5fffff 64bit pref] +[ 1.018815] pci 0000:00:16.6: PCI bridge to [bus 11] +[ 1.018968] pci 0000:00:16.6: bridge window [mem 0xfbc00000-0xfbcfffff] +[ 1.019029] pci 0000:00:16.6: bridge window [mem 0xea100000-0xea1fffff 64bit pref] +[ 1.025388] pci 0000:00:16.7: PCI bridge to [bus 12] +[ 1.026435] pci 0000:00:16.7: bridge window [mem 0xfb800000-0xfb8fffff] +[ 1.026481] pci 0000:00:16.7: bridge window [mem 0xe9d00000-0xe9dfffff 64bit pref] +[ 1.031580] pci 0000:00:17.0: PCI bridge to [bus 13] +[ 1.032549] pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] +[ 1.032570] pci 0000:00:17.0: bridge window [mem 0xfd300000-0xfd3fffff] +[ 1.032609] pci 0000:00:17.0: bridge window [mem 0xeb800000-0xeb8fffff 64bit pref] +[ 1.037560] pci 0000:00:17.1: PCI bridge to [bus 14] +[ 1.038496] pci 0000:00:17.1: bridge window [io 0xa000-0xafff] +[ 1.038516] pci 0000:00:17.1: bridge window [mem 0xfcf00000-0xfcffffff] +[ 1.038554] pci 0000:00:17.1: bridge window [mem 0xeb400000-0xeb4fffff 64bit pref] +[ 1.043484] pci 0000:00:17.2: PCI bridge to [bus 15] +[ 1.044420] pci 0000:00:17.2: bridge window [io 0xe000-0xefff] +[ 1.044440] pci 0000:00:17.2: bridge window [mem 0xfcb00000-0xfcbfffff] +[ 1.044478] pci 0000:00:17.2: bridge window [mem 0xeb000000-0xeb0fffff 64bit pref] +[ 1.049420] pci 0000:00:17.3: PCI bridge to [bus 16] +[ 1.050452] pci 0000:00:17.3: bridge window [mem 0xfc700000-0xfc7fffff] +[ 1.050512] pci 0000:00:17.3: bridge window [mem 0xeac00000-0xeacfffff 64bit pref] +[ 1.055428] pci 0000:00:17.4: PCI bridge to [bus 17] +[ 1.056382] pci 0000:00:17.4: bridge window [mem 0xfc300000-0xfc3fffff] +[ 1.056420] pci 0000:00:17.4: bridge window [mem 0xea800000-0xea8fffff 64bit pref] +[ 1.061327] pci 0000:00:17.5: PCI bridge to [bus 18] +[ 1.062304] pci 0000:00:17.5: bridge window [mem 0xfbf00000-0xfbffffff] +[ 1.062342] pci 0000:00:17.5: bridge window [mem 0xea400000-0xea4fffff 64bit pref] +[ 1.067329] pci 0000:00:17.6: PCI bridge to [bus 19] +[ 1.068288] pci 0000:00:17.6: bridge window [mem 0xfbb00000-0xfbbfffff] +[ 1.068327] pci 0000:00:17.6: bridge window [mem 0xea000000-0xea0fffff 64bit pref] +[ 1.073178] pci 0000:00:17.7: PCI bridge to [bus 1a] +[ 1.074157] pci 0000:00:17.7: bridge window [mem 0xfb700000-0xfb7fffff] +[ 1.074196] pci 0000:00:17.7: bridge window [mem 0xe9c00000-0xe9cfffff 64bit pref] +[ 1.079224] pci 0000:00:18.0: PCI bridge to [bus 1b] +[ 1.080204] pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] +[ 1.080240] pci 0000:00:18.0: bridge window [mem 0xfd200000-0xfd2fffff] +[ 1.080300] pci 0000:00:18.0: bridge window [mem 0xeb700000-0xeb7fffff 64bit pref] +[ 1.085394] pci 0000:00:18.1: PCI bridge to [bus 1c] +[ 1.086388] pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] +[ 1.086409] pci 0000:00:18.1: bridge window [mem 0xfce00000-0xfcefffff] +[ 1.086448] pci 0000:00:18.1: bridge window [mem 0xeb300000-0xeb3fffff 64bit pref] +[ 1.091442] pci 0000:00:18.2: PCI bridge to [bus 1d] +[ 1.092439] pci 0000:00:18.2: bridge window [mem 0xfca00000-0xfcafffff] +[ 1.092477] pci 0000:00:18.2: bridge window [mem 0xeaf00000-0xeaffffff 64bit pref] +[ 1.097414] pci 0000:00:18.3: PCI bridge to [bus 1e] +[ 1.098452] pci 0000:00:18.3: bridge window [mem 0xfc600000-0xfc6fffff] +[ 1.098491] pci 0000:00:18.3: bridge window [mem 0xeab00000-0xeabfffff 64bit pref] +[ 1.103589] pci 0000:00:18.4: PCI bridge to [bus 1f] +[ 1.104581] pci 0000:00:18.4: bridge window [mem 0xfc200000-0xfc2fffff] +[ 1.104620] pci 0000:00:18.4: bridge window [mem 0xea700000-0xea7fffff 64bit pref] +[ 1.109710] pci 0000:00:18.5: PCI bridge to [bus 20] +[ 1.110767] pci 0000:00:18.5: bridge window [mem 0xfbe00000-0xfbefffff] +[ 1.110806] pci 0000:00:18.5: bridge window [mem 0xea300000-0xea3fffff 64bit pref] +[ 1.115840] pci 0000:00:18.6: PCI bridge to [bus 21] +[ 1.116894] pci 0000:00:18.6: bridge window [mem 0xfba00000-0xfbafffff] +[ 1.116937] pci 0000:00:18.6: bridge window [mem 0xe9f00000-0xe9ffffff 64bit pref] +[ 1.121980] pci 0000:00:18.7: PCI bridge to [bus 22] +[ 1.122944] pci 0000:00:18.7: bridge window [mem 0xfb600000-0xfb6fffff] +[ 1.122982] pci 0000:00:18.7: bridge window [mem 0xe9b00000-0xe9bfffff 64bit pref] +[ 1.125513] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) +[ 1.126923] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) +[ 1.128298] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) +[ 1.129671] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled. +[ 1.142142] SCSI subsystem initialized +[ 1.143044] libata version 3.00 loaded. +[ 1.143044] pci 0000:00:0f.0: vgaarb: setting as boot VGA device +[ 1.144053] pci 0000:00:0f.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none +[ 1.145589] pci 0000:00:0f.0: vgaarb: bridge control possible +[ 1.146906] vgaarb: loaded +[ 1.147528] ACPI: bus type USB registered +[ 1.148327] usbcore: registered new interface driver usbfs +[ 1.149371] usbcore: registered new interface driver hub +[ 1.150431] usbcore: registered new device driver usb +[ 1.150942] pps_core: LinuxPPS API ver. 1 registered +[ 1.151854] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti +[ 1.153522] PTP clock support registered +[ 1.155018] EDAC MC: Ver: 3.0.0 +[ 1.156759] PCI: Using ACPI for IRQ routing +[ 1.203668] PCI: pci_cache_line_size set to 64 bytes +[ 1.204539] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff] +[ 1.204543] e820: reserve RAM buffer [mem 0xbfef0000-0xbfffffff] +[ 1.204829] NetLabel: Initializing +[ 1.205545] NetLabel: domain hash size = 128 +[ 1.206406] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO +[ 1.206941] NetLabel: unlabeled traffic allowed by default +[ 1.211158] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 +[ 1.212776] hpet0: 16 comparators, 64-bit 14.318180 MHz counter +[ 1.217041] clocksource: Switched to clocksource tsc-early +[ 1.242394] VFS: Disk quotas dquot_6.6.0 +[ 1.243263] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 1.244865] AppArmor: AppArmor Filesystem Enabled +[ 1.245781] pnp: PnP ACPI init +[ 1.246858] system 00:00: [io 0x1000-0x103f] has been reserved +[ 1.248007] system 00:00: [io 0x1040-0x104f] has been reserved +[ 1.249162] system 00:00: [io 0x0cf0-0x0cf1] has been reserved +[ 1.250288] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 1.250355] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active) +[ 1.250404] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active) +[ 1.250435] pnp 00:03: Plug and Play ACPI device, IDs PNP0f13 (active) +[ 1.250740] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved +[ 1.251985] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) +[ 1.255161] pnp 00:05: Plug and Play ACPI device, IDs PNP0400 (active) +[ 1.255469] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active) +[ 1.255804] pnp 00:07: Plug and Play ACPI device, IDs PNP0501 (active) +[ 1.256054] pnp 00:08: [dma 2] +[ 1.256126] pnp 00:08: Plug and Play ACPI device, IDs PNP0700 (active) +[ 1.256440] system 00:09: [io 0xfce0-0xfcff] has been reserved +[ 1.257572] system 00:09: [mem 0xf0000000-0xf7ffffff] has been reserved +[ 1.258812] system 00:09: [mem 0xfe800000-0xfe9fffff] has been reserved +[ 1.260030] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 1.266958] pnp: PnP ACPI: found 10 devices +[ 1.279112] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns +[ 1.281214] pci 0000:00:15.3: bridge window [io 0x1000-0x0fff] to [bus 06] add_size 1000 +[ 1.281272] pci 0000:00:15.4: bridge window [io 0x1000-0x0fff] to [bus 07] add_size 1000 +[ 1.281331] pci 0000:00:15.5: bridge window [io 0x1000-0x0fff] to [bus 08] add_size 1000 +[ 1.281389] pci 0000:00:15.6: bridge window [io 0x1000-0x0fff] to [bus 09] add_size 1000 +[ 1.281446] pci 0000:00:15.7: bridge window [io 0x1000-0x0fff] to [bus 0a] add_size 1000 +[ 1.281667] pci 0000:00:16.3: bridge window [io 0x1000-0x0fff] to [bus 0e] add_size 1000 +[ 1.281725] pci 0000:00:16.4: bridge window [io 0x1000-0x0fff] to [bus 0f] add_size 1000 +[ 1.281783] pci 0000:00:16.5: bridge window [io 0x1000-0x0fff] to [bus 10] add_size 1000 +[ 1.281840] pci 0000:00:16.6: bridge window [io 0x1000-0x0fff] to [bus 11] add_size 1000 +[ 1.281898] pci 0000:00:16.7: bridge window [io 0x1000-0x0fff] to [bus 12] add_size 1000 +[ 1.282121] pci 0000:00:17.3: bridge window [io 0x1000-0x0fff] to [bus 16] add_size 1000 +[ 1.282179] pci 0000:00:17.4: bridge window [io 0x1000-0x0fff] to [bus 17] add_size 1000 +[ 1.282236] pci 0000:00:17.5: bridge window [io 0x1000-0x0fff] to [bus 18] add_size 1000 +[ 1.282327] pci 0000:00:17.6: bridge window [io 0x1000-0x0fff] to [bus 19] add_size 1000 +[ 1.282387] pci 0000:00:17.7: bridge window [io 0x1000-0x0fff] to [bus 1a] add_size 1000 +[ 1.282555] pci 0000:00:18.2: bridge window [io 0x1000-0x0fff] to [bus 1d] add_size 1000 +[ 1.282613] pci 0000:00:18.3: bridge window [io 0x1000-0x0fff] to [bus 1e] add_size 1000 +[ 1.282671] pci 0000:00:18.4: bridge window [io 0x1000-0x0fff] to [bus 1f] add_size 1000 +[ 1.282729] pci 0000:00:18.5: bridge window [io 0x1000-0x0fff] to [bus 20] add_size 1000 +[ 1.282787] pci 0000:00:18.6: bridge window [io 0x1000-0x0fff] to [bus 21] add_size 1000 +[ 1.282844] pci 0000:00:18.7: bridge window [io 0x1000-0x0fff] to [bus 22] add_size 1000 +[ 1.282874] pci 0000:00:0f.0: BAR 6: assigned [mem 0xc0000000-0xc0007fff pref] +[ 1.284184] pci 0000:00:10.0: BAR 6: assigned [mem 0xc0008000-0xc000bfff pref] +[ 1.285534] pci 0000:00:15.3: BAR 13: no space for [io size 0x1000] +[ 1.286682] pci 0000:00:15.3: BAR 13: failed to assign [io size 0x1000] +[ 1.287930] pci 0000:00:15.4: BAR 13: no space for [io size 0x1000] +[ 1.289150] pci 0000:00:15.4: BAR 13: failed to assign [io size 0x1000] +[ 1.290413] pci 0000:00:15.5: BAR 13: no space for [io size 0x1000] +[ 1.291576] pci 0000:00:15.5: BAR 13: failed to assign [io size 0x1000] +[ 1.292872] pci 0000:00:15.6: BAR 13: no space for [io size 0x1000] +[ 1.294055] pci 0000:00:15.6: BAR 13: failed to assign [io size 0x1000] +[ 1.295291] pci 0000:00:15.7: BAR 13: no space for [io size 0x1000] +[ 1.296437] pci 0000:00:15.7: BAR 13: failed to assign [io size 0x1000] +[ 1.297700] pci 0000:00:16.3: BAR 13: no space for [io size 0x1000] +[ 1.298862] pci 0000:00:16.3: BAR 13: failed to assign [io size 0x1000] +[ 1.300125] pci 0000:00:16.4: BAR 13: no space for [io size 0x1000] +[ 1.301300] pci 0000:00:16.4: BAR 13: failed to assign [io size 0x1000] +[ 1.302545] pci 0000:00:16.5: BAR 13: no space for [io size 0x1000] +[ 1.303712] pci 0000:00:16.5: BAR 13: failed to assign [io size 0x1000] +[ 1.304977] pci 0000:00:16.6: BAR 13: no space for [io size 0x1000] +[ 1.306123] pci 0000:00:16.6: BAR 13: failed to assign [io size 0x1000] +[ 1.307383] pci 0000:00:16.7: BAR 13: no space for [io size 0x1000] +[ 1.308532] pci 0000:00:16.7: BAR 13: failed to assign [io size 0x1000] +[ 1.309804] pci 0000:00:17.3: BAR 13: no space for [io size 0x1000] +[ 1.310970] pci 0000:00:17.3: BAR 13: failed to assign [io size 0x1000] +[ 1.312203] pci 0000:00:17.4: BAR 13: no space for [io size 0x1000] +[ 1.313388] pci 0000:00:17.4: BAR 13: failed to assign [io size 0x1000] +[ 1.314600] pci 0000:00:17.5: BAR 13: no space for [io size 0x1000] +[ 1.315785] pci 0000:00:17.5: BAR 13: failed to assign [io size 0x1000] +[ 1.317032] pci 0000:00:17.6: BAR 13: no space for [io size 0x1000] +[ 1.318202] pci 0000:00:17.6: BAR 13: failed to assign [io size 0x1000] +[ 1.319453] pci 0000:00:17.7: BAR 13: no space for [io size 0x1000] +[ 1.320749] pci 0000:00:17.7: BAR 13: failed to assign [io size 0x1000] +[ 1.321997] pci 0000:00:18.2: BAR 13: no space for [io size 0x1000] +[ 1.323193] pci 0000:00:18.2: BAR 13: failed to assign [io size 0x1000] +[ 1.324437] pci 0000:00:18.3: BAR 13: no space for [io size 0x1000] +[ 1.325634] pci 0000:00:18.3: BAR 13: failed to assign [io size 0x1000] +[ 1.326888] pci 0000:00:18.4: BAR 13: no space for [io size 0x1000] +[ 1.328044] pci 0000:00:18.4: BAR 13: failed to assign [io size 0x1000] +[ 1.329286] pci 0000:00:18.5: BAR 13: no space for [io size 0x1000] +[ 1.330459] pci 0000:00:18.5: BAR 13: failed to assign [io size 0x1000] +[ 1.331740] pci 0000:00:18.6: BAR 13: no space for [io size 0x1000] +[ 1.333118] pci 0000:00:18.6: BAR 13: failed to assign [io size 0x1000] +[ 1.334368] pci 0000:00:18.7: BAR 13: no space for [io size 0x1000] +[ 1.335551] pci 0000:00:18.7: BAR 13: failed to assign [io size 0x1000] +[ 1.336899] pci 0000:00:18.7: BAR 13: no space for [io size 0x1000] +[ 1.338508] pci 0000:00:18.7: BAR 13: failed to assign [io size 0x1000] +[ 1.340273] pci 0000:00:18.6: BAR 13: no space for [io size 0x1000] +[ 1.341999] pci 0000:00:18.6: BAR 13: failed to assign [io size 0x1000] +[ 1.343739] pci 0000:00:18.5: BAR 13: no space for [io size 0x1000] +[ 1.345420] pci 0000:00:18.5: BAR 13: failed to assign [io size 0x1000] +[ 1.346753] pci 0000:00:18.4: BAR 13: no space for [io size 0x1000] +[ 1.347901] pci 0000:00:18.4: BAR 13: failed to assign [io size 0x1000] +[ 1.349129] pci 0000:00:18.3: BAR 13: no space for [io size 0x1000] +[ 1.350277] pci 0000:00:18.3: BAR 13: failed to assign [io size 0x1000] +[ 1.351486] pci 0000:00:18.2: BAR 13: no space for [io size 0x1000] +[ 1.352686] pci 0000:00:18.2: BAR 13: failed to assign [io size 0x1000] +[ 1.353893] pci 0000:00:17.7: BAR 13: no space for [io size 0x1000] +[ 1.355054] pci 0000:00:17.7: BAR 13: failed to assign [io size 0x1000] +[ 1.356264] pci 0000:00:17.6: BAR 13: no space for [io size 0x1000] +[ 1.357429] pci 0000:00:17.6: BAR 13: failed to assign [io size 0x1000] +[ 1.358651] pci 0000:00:17.5: BAR 13: no space for [io size 0x1000] +[ 1.359797] pci 0000:00:17.5: BAR 13: failed to assign [io size 0x1000] +[ 1.361045] pci 0000:00:17.4: BAR 13: no space for [io size 0x1000] +[ 1.362269] pci 0000:00:17.4: BAR 13: failed to assign [io size 0x1000] +[ 1.363521] pci 0000:00:17.3: BAR 13: no space for [io size 0x1000] +[ 1.364789] pci 0000:00:17.3: BAR 13: failed to assign [io size 0x1000] +[ 1.366043] pci 0000:00:16.7: BAR 13: no space for [io size 0x1000] +[ 1.367189] pci 0000:00:16.7: BAR 13: failed to assign [io size 0x1000] +[ 1.368446] pci 0000:00:16.6: BAR 13: no space for [io size 0x1000] +[ 1.369658] pci 0000:00:16.6: BAR 13: failed to assign [io size 0x1000] +[ 1.370958] pci 0000:00:16.5: BAR 13: no space for [io size 0x1000] +[ 1.372126] pci 0000:00:16.5: BAR 13: failed to assign [io size 0x1000] +[ 1.373354] pci 0000:00:16.4: BAR 13: no space for [io size 0x1000] +[ 1.374503] pci 0000:00:16.4: BAR 13: failed to assign [io size 0x1000] +[ 1.375816] pci 0000:00:16.3: BAR 13: no space for [io size 0x1000] +[ 1.377134] pci 0000:00:16.3: BAR 13: failed to assign [io size 0x1000] +[ 1.378469] pci 0000:00:15.7: BAR 13: no space for [io size 0x1000] +[ 1.379761] pci 0000:00:15.7: BAR 13: failed to assign [io size 0x1000] +[ 1.381005] pci 0000:00:15.6: BAR 13: no space for [io size 0x1000] +[ 1.382153] pci 0000:00:15.6: BAR 13: failed to assign [io size 0x1000] +[ 1.383406] pci 0000:00:15.5: BAR 13: no space for [io size 0x1000] +[ 1.384547] pci 0000:00:15.5: BAR 13: failed to assign [io size 0x1000] +[ 1.385785] pci 0000:00:15.4: BAR 13: no space for [io size 0x1000] +[ 1.386932] pci 0000:00:15.4: BAR 13: failed to assign [io size 0x1000] +[ 1.388134] pci 0000:00:15.3: BAR 13: no space for [io size 0x1000] +[ 1.389330] pci 0000:00:15.3: BAR 13: failed to assign [io size 0x1000] +[ 1.390544] pci 0000:00:01.0: PCI bridge to [bus 01] +[ 1.391592] pci 0000:00:11.0: PCI bridge to [bus 02] +[ 1.392531] pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] +[ 1.393676] pci 0000:00:11.0: bridge window [mem 0xfd600000-0xfdffffff] +[ 1.394969] pci 0000:00:11.0: bridge window [mem 0xebb00000-0xebffffff 64bit pref] +[ 1.396420] pci 0000:03:00.0: BAR 6: assigned [mem 0xfd500000-0xfd50ffff pref] +[ 1.397746] pci 0000:00:15.0: PCI bridge to [bus 03] +[ 1.398672] pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] +[ 1.399802] pci 0000:00:15.0: bridge window [mem 0xfd500000-0xfd5fffff] +[ 1.401061] pci 0000:00:15.0: bridge window [mem 0xeba00000-0xebafffff 64bit pref] +[ 1.402569] pci 0000:00:15.1: PCI bridge to [bus 04] +[ 1.403486] pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] +[ 1.404626] pci 0000:00:15.1: bridge window [mem 0xfd100000-0xfd1fffff] +[ 1.405864] pci 0000:00:15.1: bridge window [mem 0xeb600000-0xeb6fffff 64bit pref] +[ 1.407304] pci 0000:00:15.2: PCI bridge to [bus 05] +[ 1.408416] pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] +[ 1.409593] pci 0000:00:15.2: bridge window [mem 0xfcd00000-0xfcdfffff] +[ 1.410879] pci 0000:00:15.2: bridge window [mem 0xeb200000-0xeb2fffff 64bit pref] +[ 1.412397] pci 0000:00:15.3: PCI bridge to [bus 06] +[ 1.413402] pci 0000:00:15.3: bridge window [mem 0xfc900000-0xfc9fffff] +[ 1.414640] pci 0000:00:15.3: bridge window [mem 0xeae00000-0xeaefffff 64bit pref] +[ 1.416177] pci 0000:00:15.4: PCI bridge to [bus 07] +[ 1.417163] pci 0000:00:15.4: bridge window [mem 0xfc500000-0xfc5fffff] +[ 1.418488] pci 0000:00:15.4: bridge window [mem 0xeaa00000-0xeaafffff 64bit pref] +[ 1.420181] pci 0000:00:15.5: PCI bridge to [bus 08] +[ 1.421182] pci 0000:00:15.5: bridge window [mem 0xfc100000-0xfc1fffff] +[ 1.422481] pci 0000:00:15.5: bridge window [mem 0xea600000-0xea6fffff 64bit pref] +[ 1.423995] pci 0000:00:15.6: PCI bridge to [bus 09] +[ 1.425075] pci 0000:00:15.6: bridge window [mem 0xfbd00000-0xfbdfffff] +[ 1.426336] pci 0000:00:15.6: bridge window [mem 0xea200000-0xea2fffff 64bit pref] +[ 1.427808] pci 0000:00:15.7: PCI bridge to [bus 0a] +[ 1.428858] pci 0000:00:15.7: bridge window [mem 0xfb900000-0xfb9fffff] +[ 1.430189] pci 0000:00:15.7: bridge window [mem 0xe9e00000-0xe9efffff 64bit pref] +[ 1.431714] pci 0000:00:16.0: PCI bridge to [bus 0b] +[ 1.432677] pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] +[ 1.433806] pci 0000:00:16.0: bridge window [mem 0xfd400000-0xfd4fffff] +[ 1.435043] pci 0000:00:16.0: bridge window [mem 0xeb900000-0xeb9fffff 64bit pref] +[ 1.436568] pci 0000:00:16.1: PCI bridge to [bus 0c] +[ 1.437501] pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] +[ 1.438771] pci 0000:00:16.1: bridge window [mem 0xfd000000-0xfd0fffff] +[ 1.440058] pci 0000:00:16.1: bridge window [mem 0xeb500000-0xeb5fffff 64bit pref] +[ 1.441610] pci 0000:00:16.2: PCI bridge to [bus 0d] +[ 1.442669] pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] +[ 1.443984] pci 0000:00:16.2: bridge window [mem 0xfcc00000-0xfccfffff] +[ 1.445318] pci 0000:00:16.2: bridge window [mem 0xeb100000-0xeb1fffff 64bit pref] +[ 1.446890] pci 0000:00:16.3: PCI bridge to [bus 0e] +[ 1.447847] pci 0000:00:16.3: bridge window [mem 0xfc800000-0xfc8fffff] +[ 1.449146] pci 0000:00:16.3: bridge window [mem 0xead00000-0xeadfffff 64bit pref] +[ 1.450602] pci 0000:00:16.4: PCI bridge to [bus 0f] +[ 1.451561] pci 0000:00:16.4: bridge window [mem 0xfc400000-0xfc4fffff] +[ 1.452846] pci 0000:00:16.4: bridge window [mem 0xea900000-0xea9fffff 64bit pref] +[ 1.454293] pci 0000:00:16.5: PCI bridge to [bus 10] +[ 1.455250] pci 0000:00:16.5: bridge window [mem 0xfc000000-0xfc0fffff] +[ 1.456515] pci 0000:00:16.5: bridge window [mem 0xea500000-0xea5fffff 64bit pref] +[ 1.457974] pci 0000:00:16.6: PCI bridge to [bus 11] +[ 1.458926] pci 0000:00:16.6: bridge window [mem 0xfbc00000-0xfbcfffff] +[ 1.460198] pci 0000:00:16.6: bridge window [mem 0xea100000-0xea1fffff 64bit pref] +[ 1.461661] pci 0000:00:16.7: PCI bridge to [bus 12] +[ 1.462600] pci 0000:00:16.7: bridge window [mem 0xfb800000-0xfb8fffff] +[ 1.463838] pci 0000:00:16.7: bridge window [mem 0xe9d00000-0xe9dfffff 64bit pref] +[ 1.465414] pci 0000:00:17.0: PCI bridge to [bus 13] +[ 1.466353] pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] +[ 1.467486] pci 0000:00:17.0: bridge window [mem 0xfd300000-0xfd3fffff] +[ 1.468752] pci 0000:00:17.0: bridge window [mem 0xeb800000-0xeb8fffff 64bit pref] +[ 1.470397] pci 0000:00:17.1: PCI bridge to [bus 14] +[ 1.471326] pci 0000:00:17.1: bridge window [io 0xa000-0xafff] +[ 1.472449] pci 0000:00:17.1: bridge window [mem 0xfcf00000-0xfcffffff] +[ 1.473706] pci 0000:00:17.1: bridge window [mem 0xeb400000-0xeb4fffff 64bit pref] +[ 1.475144] pci 0000:00:17.2: PCI bridge to [bus 15] +[ 1.476061] pci 0000:00:17.2: bridge window [io 0xe000-0xefff] +[ 1.477205] pci 0000:00:17.2: bridge window [mem 0xfcb00000-0xfcbfffff] +[ 1.478466] pci 0000:00:17.2: bridge window [mem 0xeb000000-0xeb0fffff 64bit pref] +[ 1.479920] pci 0000:00:17.3: PCI bridge to [bus 16] +[ 1.480875] pci 0000:00:17.3: bridge window [mem 0xfc700000-0xfc7fffff] +[ 1.482156] pci 0000:00:17.3: bridge window [mem 0xeac00000-0xeacfffff 64bit pref] +[ 1.483632] pci 0000:00:17.4: PCI bridge to [bus 17] +[ 1.484840] pci 0000:00:17.4: bridge window [mem 0xfc300000-0xfc3fffff] +[ 1.486103] pci 0000:00:17.4: bridge window [mem 0xea800000-0xea8fffff 64bit pref] +[ 1.487558] pci 0000:00:17.5: PCI bridge to [bus 18] +[ 1.488534] pci 0000:00:17.5: bridge window [mem 0xfbf00000-0xfbffffff] +[ 1.489858] pci 0000:00:17.5: bridge window [mem 0xea400000-0xea4fffff 64bit pref] +[ 1.491314] pci 0000:00:17.6: PCI bridge to [bus 19] +[ 1.492330] pci 0000:00:17.6: bridge window [mem 0xfbb00000-0xfbbfffff] +[ 1.493622] pci 0000:00:17.6: bridge window [mem 0xea000000-0xea0fffff 64bit pref] +[ 1.495063] pci 0000:00:17.7: PCI bridge to [bus 1a] +[ 1.496001] pci 0000:00:17.7: bridge window [mem 0xfb700000-0xfb7fffff] +[ 1.497283] pci 0000:00:17.7: bridge window [mem 0xe9c00000-0xe9cfffff 64bit pref] +[ 1.498753] pci 0000:00:18.0: PCI bridge to [bus 1b] +[ 1.499674] pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] +[ 1.500838] pci 0000:00:18.0: bridge window [mem 0xfd200000-0xfd2fffff] +[ 1.502077] pci 0000:00:18.0: bridge window [mem 0xeb700000-0xeb7fffff 64bit pref] +[ 1.503516] pci 0000:00:18.1: PCI bridge to [bus 1c] +[ 1.504433] pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] +[ 1.505578] pci 0000:00:18.1: bridge window [mem 0xfce00000-0xfcefffff] +[ 1.506815] pci 0000:00:18.1: bridge window [mem 0xeb300000-0xeb3fffff 64bit pref] +[ 1.508292] pci 0000:00:18.2: PCI bridge to [bus 1d] +[ 1.509295] pci 0000:00:18.2: bridge window [mem 0xfca00000-0xfcafffff] +[ 1.510539] pci 0000:00:18.2: bridge window [mem 0xeaf00000-0xeaffffff 64bit pref] +[ 1.511996] pci 0000:00:18.3: PCI bridge to [bus 1e] +[ 1.512995] pci 0000:00:18.3: bridge window [mem 0xfc600000-0xfc6fffff] +[ 1.514247] pci 0000:00:18.3: bridge window [mem 0xeab00000-0xeabfffff 64bit pref] +[ 1.515709] pci 0000:00:18.4: PCI bridge to [bus 1f] +[ 1.516657] pci 0000:00:18.4: bridge window [mem 0xfc200000-0xfc2fffff] +[ 1.517895] pci 0000:00:18.4: bridge window [mem 0xea700000-0xea7fffff 64bit pref] +[ 1.519349] pci 0000:00:18.5: PCI bridge to [bus 20] +[ 1.520277] pci 0000:00:18.5: bridge window [mem 0xfbe00000-0xfbefffff] +[ 1.521587] pci 0000:00:18.5: bridge window [mem 0xea300000-0xea3fffff 64bit pref] +[ 1.523092] pci 0000:00:18.6: PCI bridge to [bus 21] +[ 1.524114] pci 0000:00:18.6: bridge window [mem 0xfba00000-0xfbafffff] +[ 1.525455] pci 0000:00:18.6: bridge window [mem 0xe9f00000-0xe9ffffff 64bit pref] +[ 1.526998] pci 0000:00:18.7: PCI bridge to [bus 22] +[ 1.527962] pci 0000:00:18.7: bridge window [mem 0xfb600000-0xfb6fffff] +[ 1.529255] pci 0000:00:18.7: bridge window [mem 0xe9b00000-0xe9bfffff 64bit pref] +[ 1.530747] pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff window] +[ 1.530749] pci_bus 0000:00: resource 5 [mem 0x000cc000-0x000cffff window] +[ 1.530750] pci_bus 0000:00: resource 6 [mem 0x000d0000-0x000d3fff window] +[ 1.530751] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff window] +[ 1.530752] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff window] +[ 1.530753] pci_bus 0000:00: resource 9 [mem 0xc0000000-0xfebfffff window] +[ 1.530754] pci_bus 0000:00: resource 10 [io 0x0000-0x0cf7 window] +[ 1.530755] pci_bus 0000:00: resource 11 [io 0x0d00-0xfeff window] +[ 1.530758] pci_bus 0000:02: resource 0 [io 0x2000-0x3fff] +[ 1.530759] pci_bus 0000:02: resource 1 [mem 0xfd600000-0xfdffffff] +[ 1.530760] pci_bus 0000:02: resource 2 [mem 0xebb00000-0xebffffff 64bit pref] +[ 1.530761] pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff window] +[ 1.530761] pci_bus 0000:02: resource 5 [mem 0x000cc000-0x000cffff window] +[ 1.530762] pci_bus 0000:02: resource 6 [mem 0x000d0000-0x000d3fff window] +[ 1.530763] pci_bus 0000:02: resource 7 [mem 0x000d4000-0x000d7fff window] +[ 1.530764] pci_bus 0000:02: resource 8 [mem 0x000d8000-0x000dbfff window] +[ 1.530765] pci_bus 0000:02: resource 9 [mem 0xc0000000-0xfebfffff window] +[ 1.530766] pci_bus 0000:02: resource 10 [io 0x0000-0x0cf7 window] +[ 1.530767] pci_bus 0000:02: resource 11 [io 0x0d00-0xfeff window] +[ 1.530768] pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] +[ 1.530769] pci_bus 0000:03: resource 1 [mem 0xfd500000-0xfd5fffff] +[ 1.530770] pci_bus 0000:03: resource 2 [mem 0xeba00000-0xebafffff 64bit pref] +[ 1.530772] pci_bus 0000:04: resource 0 [io 0x8000-0x8fff] +[ 1.530773] pci_bus 0000:04: resource 1 [mem 0xfd100000-0xfd1fffff] +[ 1.530774] pci_bus 0000:04: resource 2 [mem 0xeb600000-0xeb6fffff 64bit pref] +[ 1.530775] pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] +[ 1.530776] pci_bus 0000:05: resource 1 [mem 0xfcd00000-0xfcdfffff] +[ 1.530777] pci_bus 0000:05: resource 2 [mem 0xeb200000-0xeb2fffff 64bit pref] +[ 1.530779] pci_bus 0000:06: resource 1 [mem 0xfc900000-0xfc9fffff] +[ 1.530779] pci_bus 0000:06: resource 2 [mem 0xeae00000-0xeaefffff 64bit pref] +[ 1.530781] pci_bus 0000:07: resource 1 [mem 0xfc500000-0xfc5fffff] +[ 1.530782] pci_bus 0000:07: resource 2 [mem 0xeaa00000-0xeaafffff 64bit pref] +[ 1.530783] pci_bus 0000:08: resource 1 [mem 0xfc100000-0xfc1fffff] +[ 1.530784] pci_bus 0000:08: resource 2 [mem 0xea600000-0xea6fffff 64bit pref] +[ 1.530785] pci_bus 0000:09: resource 1 [mem 0xfbd00000-0xfbdfffff] +[ 1.530786] pci_bus 0000:09: resource 2 [mem 0xea200000-0xea2fffff 64bit pref] +[ 1.530787] pci_bus 0000:0a: resource 1 [mem 0xfb900000-0xfb9fffff] +[ 1.530788] pci_bus 0000:0a: resource 2 [mem 0xe9e00000-0xe9efffff 64bit pref] +[ 1.530789] pci_bus 0000:0b: resource 0 [io 0x5000-0x5fff] +[ 1.530790] pci_bus 0000:0b: resource 1 [mem 0xfd400000-0xfd4fffff] +[ 1.530791] pci_bus 0000:0b: resource 2 [mem 0xeb900000-0xeb9fffff 64bit pref] +[ 1.530792] pci_bus 0000:0c: resource 0 [io 0x9000-0x9fff] +[ 1.530793] pci_bus 0000:0c: resource 1 [mem 0xfd000000-0xfd0fffff] +[ 1.530794] pci_bus 0000:0c: resource 2 [mem 0xeb500000-0xeb5fffff 64bit pref] +[ 1.530795] pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff] +[ 1.530796] pci_bus 0000:0d: resource 1 [mem 0xfcc00000-0xfccfffff] +[ 1.530797] pci_bus 0000:0d: resource 2 [mem 0xeb100000-0xeb1fffff 64bit pref] +[ 1.530798] pci_bus 0000:0e: resource 1 [mem 0xfc800000-0xfc8fffff] +[ 1.530799] pci_bus 0000:0e: resource 2 [mem 0xead00000-0xeadfffff 64bit pref] +[ 1.530800] pci_bus 0000:0f: resource 1 [mem 0xfc400000-0xfc4fffff] +[ 1.530801] pci_bus 0000:0f: resource 2 [mem 0xea900000-0xea9fffff 64bit pref] +[ 1.530802] pci_bus 0000:10: resource 1 [mem 0xfc000000-0xfc0fffff] +[ 1.530803] pci_bus 0000:10: resource 2 [mem 0xea500000-0xea5fffff 64bit pref] +[ 1.530804] pci_bus 0000:11: resource 1 [mem 0xfbc00000-0xfbcfffff] +[ 1.530805] pci_bus 0000:11: resource 2 [mem 0xea100000-0xea1fffff 64bit pref] +[ 1.530806] pci_bus 0000:12: resource 1 [mem 0xfb800000-0xfb8fffff] +[ 1.530807] pci_bus 0000:12: resource 2 [mem 0xe9d00000-0xe9dfffff 64bit pref] +[ 1.530808] pci_bus 0000:13: resource 0 [io 0x6000-0x6fff] +[ 1.530809] pci_bus 0000:13: resource 1 [mem 0xfd300000-0xfd3fffff] +[ 1.530810] pci_bus 0000:13: resource 2 [mem 0xeb800000-0xeb8fffff 64bit pref] +[ 1.530811] pci_bus 0000:14: resource 0 [io 0xa000-0xafff] +[ 1.530812] pci_bus 0000:14: resource 1 [mem 0xfcf00000-0xfcffffff] +[ 1.530813] pci_bus 0000:14: resource 2 [mem 0xeb400000-0xeb4fffff 64bit pref] +[ 1.530815] pci_bus 0000:15: resource 0 [io 0xe000-0xefff] +[ 1.530815] pci_bus 0000:15: resource 1 [mem 0xfcb00000-0xfcbfffff] +[ 1.530816] pci_bus 0000:15: resource 2 [mem 0xeb000000-0xeb0fffff 64bit pref] +[ 1.530817] pci_bus 0000:16: resource 1 [mem 0xfc700000-0xfc7fffff] +[ 1.530818] pci_bus 0000:16: resource 2 [mem 0xeac00000-0xeacfffff 64bit pref] +[ 1.530820] pci_bus 0000:17: resource 1 [mem 0xfc300000-0xfc3fffff] +[ 1.530820] pci_bus 0000:17: resource 2 [mem 0xea800000-0xea8fffff 64bit pref] +[ 1.530822] pci_bus 0000:18: resource 1 [mem 0xfbf00000-0xfbffffff] +[ 1.530823] pci_bus 0000:18: resource 2 [mem 0xea400000-0xea4fffff 64bit pref] +[ 1.530824] pci_bus 0000:19: resource 1 [mem 0xfbb00000-0xfbbfffff] +[ 1.530825] pci_bus 0000:19: resource 2 [mem 0xea000000-0xea0fffff 64bit pref] +[ 1.530826] pci_bus 0000:1a: resource 1 [mem 0xfb700000-0xfb7fffff] +[ 1.530827] pci_bus 0000:1a: resource 2 [mem 0xe9c00000-0xe9cfffff 64bit pref] +[ 1.530828] pci_bus 0000:1b: resource 0 [io 0x7000-0x7fff] +[ 1.530829] pci_bus 0000:1b: resource 1 [mem 0xfd200000-0xfd2fffff] +[ 1.530830] pci_bus 0000:1b: resource 2 [mem 0xeb700000-0xeb7fffff 64bit pref] +[ 1.530831] pci_bus 0000:1c: resource 0 [io 0xb000-0xbfff] +[ 1.530831] pci_bus 0000:1c: resource 1 [mem 0xfce00000-0xfcefffff] +[ 1.530832] pci_bus 0000:1c: resource 2 [mem 0xeb300000-0xeb3fffff 64bit pref] +[ 1.530833] pci_bus 0000:1d: resource 1 [mem 0xfca00000-0xfcafffff] +[ 1.530834] pci_bus 0000:1d: resource 2 [mem 0xeaf00000-0xeaffffff 64bit pref] +[ 1.530835] pci_bus 0000:1e: resource 1 [mem 0xfc600000-0xfc6fffff] +[ 1.530836] pci_bus 0000:1e: resource 2 [mem 0xeab00000-0xeabfffff 64bit pref] +[ 1.530837] pci_bus 0000:1f: resource 1 [mem 0xfc200000-0xfc2fffff] +[ 1.530838] pci_bus 0000:1f: resource 2 [mem 0xea700000-0xea7fffff 64bit pref] +[ 1.530839] pci_bus 0000:20: resource 1 [mem 0xfbe00000-0xfbefffff] +[ 1.530840] pci_bus 0000:20: resource 2 [mem 0xea300000-0xea3fffff 64bit pref] +[ 1.530841] pci_bus 0000:21: resource 1 [mem 0xfba00000-0xfbafffff] +[ 1.530842] pci_bus 0000:21: resource 2 [mem 0xe9f00000-0xe9ffffff 64bit pref] +[ 1.530843] pci_bus 0000:22: resource 1 [mem 0xfb600000-0xfb6fffff] +[ 1.530844] pci_bus 0000:22: resource 2 [mem 0xe9b00000-0xe9bfffff 64bit pref] +[ 1.531468] NET: Registered protocol family 2 +[ 1.533103] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes) +[ 1.535004] TCP established hash table entries: 65536 (order: 7, 524288 bytes) +[ 1.537179] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 1.539996] TCP: Hash tables configured (established 65536 bind 65536) +[ 1.541504] UDP hash table entries: 4096 (order: 5, 131072 bytes) +[ 1.542947] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes) +[ 1.544589] NET: Registered protocol family 1 +[ 1.545487] NET: Registered protocol family 44 +[ 1.546359] pci 0000:00:00.0: Limiting direct PCI/PCI transfers +[ 1.547670] pci 0000:00:0f.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] +[ 1.549670] PCI: CLS 32 bytes, default 64 +[ 1.549789] Unpacking initramfs... +[ 2.920731] Freeing initrd memory: 74056K +[ 2.921660] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) +[ 2.923099] software IO TLB: mapped [mem 0xab000000-0xaf000000] (64MB) +[ 2.924806] check: Scanning for low memory corruption every 60 seconds +[ 2.929245] Initialise system trusted keyrings +[ 2.930242] Key type blacklist registered +[ 2.931267] workingset: timestamp_bits=36 max_order=21 bucket_order=0 +[ 2.935673] zbud: loaded +[ 2.937182] squashfs: version 4.0 (2009/01/31) Phillip Lougher +[ 2.939050] fuse init (API version 7.28) +[ 2.993973] Key type asymmetric registered +[ 2.994904] Asymmetric key parser 'x509' registered +[ 2.996084] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243) +[ 2.997671] io scheduler mq-deadline registered +[ 2.999571] pcieport 0000:00:15.0: Signaling PME with IRQ 24 +[ 3.000730] pciehp 0000:00:15.0:pcie004: Slot #160 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.004173] pcieport 0000:00:15.1: Signaling PME with IRQ 25 +[ 3.005469] pciehp 0000:00:15.1:pcie004: Slot #161 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.008722] pcieport 0000:00:15.2: Signaling PME with IRQ 26 +[ 3.009851] pciehp 0000:00:15.2:pcie004: Slot #162 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.013191] pcieport 0000:00:15.3: Signaling PME with IRQ 27 +[ 3.014353] pciehp 0000:00:15.3:pcie004: Slot #163 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.017717] pcieport 0000:00:15.4: Signaling PME with IRQ 28 +[ 3.018883] pciehp 0000:00:15.4:pcie004: Slot #164 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.022210] pcieport 0000:00:15.5: Signaling PME with IRQ 29 +[ 3.023385] pciehp 0000:00:15.5:pcie004: Slot #165 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.026827] pcieport 0000:00:15.6: Signaling PME with IRQ 30 +[ 3.028055] pciehp 0000:00:15.6:pcie004: Slot #166 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.031555] pcieport 0000:00:15.7: Signaling PME with IRQ 31 +[ 3.032801] pciehp 0000:00:15.7:pcie004: Slot #167 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.036271] pcieport 0000:00:16.0: Signaling PME with IRQ 32 +[ 3.037442] pciehp 0000:00:16.0:pcie004: Slot #192 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.040993] pcieport 0000:00:16.1: Signaling PME with IRQ 33 +[ 3.042202] pciehp 0000:00:16.1:pcie004: Slot #193 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.045567] pcieport 0000:00:16.2: Signaling PME with IRQ 34 +[ 3.046699] pciehp 0000:00:16.2:pcie004: Slot #194 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.050108] pcieport 0000:00:16.3: Signaling PME with IRQ 35 +[ 3.051250] pciehp 0000:00:16.3:pcie004: Slot #195 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.054673] pcieport 0000:00:16.4: Signaling PME with IRQ 36 +[ 3.055954] pciehp 0000:00:16.4:pcie004: Slot #196 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.059402] pcieport 0000:00:16.5: Signaling PME with IRQ 37 +[ 3.060558] pciehp 0000:00:16.5:pcie004: Slot #197 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.064056] pcieport 0000:00:16.6: Signaling PME with IRQ 38 +[ 3.065237] pciehp 0000:00:16.6:pcie004: Slot #198 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.068626] pcieport 0000:00:16.7: Signaling PME with IRQ 39 +[ 3.069845] pciehp 0000:00:16.7:pcie004: Slot #199 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.073164] pcieport 0000:00:17.0: Signaling PME with IRQ 40 +[ 3.074419] pciehp 0000:00:17.0:pcie004: Slot #224 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.078122] pcieport 0000:00:17.1: Signaling PME with IRQ 41 +[ 3.079305] pciehp 0000:00:17.1:pcie004: Slot #225 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.082648] pcieport 0000:00:17.2: Signaling PME with IRQ 42 +[ 3.083858] pciehp 0000:00:17.2:pcie004: Slot #226 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.087304] pcieport 0000:00:17.3: Signaling PME with IRQ 43 +[ 3.088440] pciehp 0000:00:17.3:pcie004: Slot #227 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.091801] pcieport 0000:00:17.4: Signaling PME with IRQ 44 +[ 3.093017] pciehp 0000:00:17.4:pcie004: Slot #228 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.096460] pcieport 0000:00:17.5: Signaling PME with IRQ 45 +[ 3.097623] pciehp 0000:00:17.5:pcie004: Slot #229 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.101040] pcieport 0000:00:17.6: Signaling PME with IRQ 46 +[ 3.102174] pciehp 0000:00:17.6:pcie004: Slot #230 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.105429] pcieport 0000:00:17.7: Signaling PME with IRQ 47 +[ 3.106558] pciehp 0000:00:17.7:pcie004: Slot #231 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.109814] pcieport 0000:00:18.0: Signaling PME with IRQ 48 +[ 3.110933] pciehp 0000:00:18.0:pcie004: Slot #256 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.114181] pcieport 0000:00:18.1: Signaling PME with IRQ 49 +[ 3.115320] pciehp 0000:00:18.1:pcie004: Slot #257 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.118731] pcieport 0000:00:18.2: Signaling PME with IRQ 50 +[ 3.119963] pciehp 0000:00:18.2:pcie004: Slot #258 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.123407] pcieport 0000:00:18.3: Signaling PME with IRQ 51 +[ 3.124733] pciehp 0000:00:18.3:pcie004: Slot #259 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.128492] pcieport 0000:00:18.4: Signaling PME with IRQ 52 +[ 3.130052] pciehp 0000:00:18.4:pcie004: Slot #260 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.133424] pcieport 0000:00:18.5: Signaling PME with IRQ 53 +[ 3.134657] pciehp 0000:00:18.5:pcie004: Slot #261 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.138097] pcieport 0000:00:18.6: Signaling PME with IRQ 54 +[ 3.139330] pciehp 0000:00:18.6:pcie004: Slot #262 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.142785] pcieport 0000:00:18.7: Signaling PME with IRQ 55 +[ 3.144014] pciehp 0000:00:18.7:pcie004: Slot #263 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ +[ 3.147054] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +[ 3.148488] intel_idle: Please enable MWAIT in BIOS SETUP +[ 3.148855] ACPI: AC Adapter [ACAD] (on-line) +[ 3.149786] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 +[ 3.151283] ACPI: Power Button [PWRF] +[ 3.153045] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled +[ 3.179964] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A +[ 3.206549] 00:07: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A +[ 3.212644] Linux agpgart interface v0.103 +[ 3.213653] agpgart-intel 0000:00:00.0: Intel 440BX Chipset +[ 3.215999] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0 +[ 3.223373] loop: module loaded +[ 3.224324] ata_piix 0000:00:07.1: version 2.13 +[ 3.225189] scsi host0: ata_piix +[ 3.226177] scsi host1: ata_piix +[ 3.226951] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x1060 irq 14 +[ 3.228272] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x1068 irq 15 +[ 3.229872] libphy: Fixed MDIO Bus: probed +[ 3.230701] tun: Universal TUN/TAP device driver, 1.6 +[ 3.231892] PPP generic driver version 2.4.2 +[ 3.232876] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 3.234258] ehci-pci: EHCI PCI platform driver +[ 3.235288] ehci-platform: EHCI generic platform driver +[ 3.236300] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 3.237584] ohci-pci: OHCI PCI platform driver +[ 3.238522] ohci-platform: OHCI generic platform driver +[ 3.239527] uhci_hcd: USB Universal Host Controller Interface driver +[ 3.240898] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12 +[ 3.243377] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 3.244365] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 3.245706] mousedev: PS/2 mouse device common for all mice +[ 3.267624] rtc_cmos 00:01: registered as rtc0 +[ 3.268674] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs +[ 3.270264] i2c /dev entries driver +[ 3.271182] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 +[ 3.271238] device-mapper: uevent: version 1.0.3 +[ 3.274343] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel@redhat.com +[ 3.276822] platform eisa.0: Probing EISA bus 0 +[ 3.278141] platform eisa.0: EISA: Cannot allocate resource for mainboard +[ 3.280085] platform eisa.0: Cannot allocate resource for EISA slot 1 +[ 3.281929] platform eisa.0: Cannot allocate resource for EISA slot 2 +[ 3.283343] platform eisa.0: Cannot allocate resource for EISA slot 3 +[ 3.284984] platform eisa.0: Cannot allocate resource for EISA slot 4 +[ 3.286393] platform eisa.0: Cannot allocate resource for EISA slot 5 +[ 3.287838] platform eisa.0: Cannot allocate resource for EISA slot 6 +[ 3.289077] platform eisa.0: Cannot allocate resource for EISA slot 7 +[ 3.290323] platform eisa.0: Cannot allocate resource for EISA slot 8 +[ 3.291503] platform eisa.0: EISA: Detected 0 cards +[ 3.292487] ledtrig-cpu: registered to indicate activity on CPUs +[ 3.293824] IPv6: Loaded, but administratively disabled, reboot required to enable +[ 3.295288] NET: Registered protocol family 17 +[ 3.296259] Key type dns_resolver registered +[ 3.297395] mce: Using 0 MCE banks +[ 3.298117] RAS: Correctable Errors collector initialized. +[ 3.299289] sched_clock: Marking stable (3121039689, 178210170)->(3302884855, -3634996) +[ 3.301554] registered taskstats version 1 +[ 3.302385] Loading compiled-in X.509 certificates +[ 3.306442] Loaded X.509 cert 'Build time autogenerated kernel key: 74e800c0955dd062b621f2c2b30b90827e35b348' +[ 3.308549] zswap: loaded using pool lzo/zbud +[ 3.317820] Key type big_key registered +[ 3.322887] Key type trusted registered +[ 3.327029] Key type encrypted registered +[ 3.327995] AppArmor: AppArmor sha1 policy hashing enabled +[ 3.329054] ima: No TPM chip found, activating TPM-bypass! +[ 3.330112] ima: Allocated hash algorithm: sha1 +[ 3.331033] No architecture policies found +[ 3.331850] evm: Initialising EVM extended attributes: +[ 3.332818] evm: security.selinux +[ 3.333450] evm: security.SMACK64 +[ 3.334096] evm: security.SMACK64EXEC +[ 3.334791] evm: security.SMACK64TRANSMUTE +[ 3.335603] evm: security.SMACK64MMAP +[ 3.336296] evm: security.apparmor +[ 3.336939] evm: security.ima +[ 3.337502] evm: security.capability +[ 3.338175] evm: HMAC attrs: 0x1 +[ 3.339902] Magic number: 15:444:0 +[ 3.340722] memory memory48: hash matches +[ 3.341691] rtc_cmos 00:01: setting system clock to 2019-12-06T00:00:51 UTC (1575590451) +[ 3.398624] ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 +[ 3.404121] scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5 +[ 3.435569] sr 1:0:0:0: [sr0] scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray +[ 3.437309] cdrom: Uniform CD-ROM driver Revision: 3.20 +[ 3.438961] sr 1:0:0:0: Attached scsi CD-ROM sr0 +[ 3.439207] sr 1:0:0:0: Attached scsi generic sg0 type 5 +[ 3.442386] Freeing unused decrypted memory: 2040K +[ 3.444498] Freeing unused kernel image memory: 2588K +[ 3.458967] Write protecting the kernel read-only data: 22528k +[ 3.461021] Freeing unused kernel image memory: 2016K +[ 3.462581] Freeing unused kernel image memory: 1728K +[ 3.475820] x86/mm: Checked W+X mappings: passed, no W+X pages found. +[ 3.477308] Run /init as init process +[ 3.683425] VMware vmxnet3 virtual NIC driver - version 1.4.16.0-k-NAPI +[ 3.685278] piix4_smbus 0000:00:07.3: SMBus Host Controller not enabled! +[ 3.688143] vmxnet3 0000:03:00.0: # of Tx queues : 2, # of Rx queues : 2 +[ 3.691155] Fusion MPT base driver 3.04.20 +[ 3.692240] Copyright (c) 1999-2008 LSI Corporation +[ 3.708492] Fusion MPT SPI Host driver 3.04.20 +[ 3.713130] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4 +[ 3.713713] vmxnet3 0000:03:00.0 eth0: NIC Link is Up 10000 Mbps +[ 3.716255] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3 +[ 3.718374] mptbase: ioc0: Initiating bringup +[ 3.760237] vmxnet3 0000:03:00.0 ens160: renamed from eth0 +[ 3.827392] ioc0: LSI53C1030 B0: Capabilities={Initiator} +[ 3.931026] tsc: Refined TSC clocksource calibration: 2399.993 MHz +[ 3.932288] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2298310a4a1, max_idle_ns: 440795325953 ns +[ 3.934299] clocksource: Switched to clocksource tsc +[ 4.067918] scsi host2: ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17 +[ 4.237443] scsi 2:0:0:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 +[ 4.250978] scsi target2:0:0: Beginning Domain Validation +[ 4.253222] scsi target2:0:0: Domain Validation skipping write tests +[ 4.254479] scsi target2:0:0: Ending Domain Validation +[ 4.255587] scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) +[ 4.259385] scsi 2:0:1:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 +[ 4.271076] scsi target2:0:1: Beginning Domain Validation +[ 4.273418] scsi target2:0:1: Domain Validation skipping write tests +[ 4.274740] scsi target2:0:1: Ending Domain Validation +[ 4.275856] scsi target2:0:1: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) +[ 4.279534] scsi 2:0:2:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 +[ 4.299046] scsi target2:0:2: Beginning Domain Validation +[ 4.301827] scsi target2:0:2: Domain Validation skipping write tests +[ 4.303615] scsi target2:0:2: Ending Domain Validation +[ 4.305152] scsi target2:0:2: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) +[ 4.310452] scsi 2:0:3:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 +[ 4.330965] scsi target2:0:3: Beginning Domain Validation +[ 4.332948] scsi target2:0:3: Domain Validation skipping write tests +[ 4.334144] scsi target2:0:3: Ending Domain Validation +[ 4.335214] scsi target2:0:3: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) +[ 4.342339] sd 2:0:0:0: [sda] 146800640 512-byte logical blocks: (75.2 GB/70.0 GiB) +[ 4.344160] sd 2:0:0:0: [sda] Write Protect is off +[ 4.345054] sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00 +[ 4.345091] sd 2:0:0:0: [sda] Cache data unavailable +[ 4.346112] sd 2:0:0:0: [sda] Assuming drive cache: write through +[ 4.347527] sd 2:0:0:0: Attached scsi generic sg1 type 0 +[ 4.349235] sd 2:0:1:0: [sdb] 16777216 512-byte logical blocks: (8.59 GB/8.00 GiB) +[ 4.349842] sd 2:0:1:0: Attached scsi generic sg2 type 0 +[ 4.351896] sd 2:0:1:0: [sdb] Write Protect is off +[ 4.352132] sd 2:0:2:0: Attached scsi generic sg3 type 0 +[ 4.352865] sd 2:0:1:0: [sdb] Mode Sense: 61 00 00 00 +[ 4.354072] sd 2:0:3:0: Attached scsi generic sg4 type 0 +[ 4.355123] sd 2:0:1:0: [sdb] Cache data unavailable +[ 4.355210] sd 2:0:2:0: [sdc] 16777216 512-byte logical blocks: (8.59 GB/8.00 GiB) +[ 4.356113] sd 2:0:1:0: [sdb] Assuming drive cache: write through +[ 4.357571] sd 2:0:3:0: [sdd] 16777216 512-byte logical blocks: (8.59 GB/8.00 GiB) +[ 4.358655] sd 2:0:2:0: [sdc] Write Protect is off +[ 4.361514] sd 2:0:2:0: [sdc] Mode Sense: 61 00 00 00 +[ 4.361558] sd 2:0:3:0: [sdd] Write Protect is off +[ 4.361571] sd 2:0:2:0: [sdc] Cache data unavailable +[ 4.362485] sd 2:0:3:0: [sdd] Mode Sense: 61 00 00 00 +[ 4.363435] sd 2:0:2:0: [sdc] Assuming drive cache: write through +[ 4.365134] sd 2:0:3:0: [sdd] Cache data unavailable +[ 4.366085] sd 2:0:3:0: [sdd] Assuming drive cache: write through +[ 4.372930] sda: sda1 sda2 +[ 4.374758] sd 2:0:0:0: [sda] Attached SCSI disk +[ 4.378031] sdb: sdb1 sdb9 +[ 4.379257] sd 2:0:1:0: [sdb] Attached SCSI disk +[ 4.384398] sdc: sdc1 sdc9 +[ 4.386065] sd 2:0:2:0: [sdc] Attached SCSI disk +[ 4.407890] sdd: sdd1 sdd9 +[ 4.409417] sd 2:0:3:0: [sdd] Attached SCSI disk +[ 4.610938] raid6: sse2x4 gen() 11161 MB/s +[ 4.658927] raid6: sse2x4 xor() 7609 MB/s +[ 4.706942] raid6: sse2x2 gen() 9259 MB/s +[ 4.754927] raid6: sse2x2 xor() 4612 MB/s +[ 4.802927] raid6: sse2x1 gen() 4862 MB/s +[ 4.850947] raid6: sse2x1 xor() 5321 MB/s +[ 4.851778] raid6: using algorithm sse2x4 gen() 11161 MB/s +[ 4.852791] raid6: .... xor() 7609 MB/s, rmw enabled +[ 4.853748] raid6: using ssse3x2 recovery algorithm +[ 4.856594] xor: automatically using best checksumming function avx +[ 4.859698] async_tx: api initialized (async) +[ 4.907876] Btrfs loaded, crc32c=crc32c-intel +[ 5.207610] spl: loading out-of-tree module taints kernel. +[ 5.209040] spl: module verification failed: signature and/or required key missing - tainting kernel +[ 5.213457] znvpair: module license 'CDDL' taints kernel. +[ 5.214601] Disabling lock debugging due to kernel taint +[ 6.957304] ZFS: Loaded module v0.8.0-delphix+2019.12.03.23-5827876, ZFS pool version 5000, ZFS filesystem version 5 +[ 23.504452] systemd[1]: systemd 237 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) +[ 23.510592] systemd[1]: Detected virtualization vmware. +[ 23.512238] systemd[1]: Detected architecture x86-64. +[ 23.548139] systemd[1]: Set hostname to . +[ 25.211920] systemd[1]: Reached target Swap. +[ 25.213749] systemd[1]: Started Forward Password Requests to Wall Directory Watch. +[ 25.216761] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. +[ 25.219965] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. +[ 25.223174] systemd[1]: Reached target Paths. +[ 25.224882] systemd[1]: Reached target Local Encrypted Volumes. +[ 25.395004] RPC: Registered named UNIX socket transport module. +[ 25.396231] RPC: Registered udp transport module. +[ 25.396232] RPC: Registered tcp transport module. +[ 25.396233] RPC: Registered tcp NFSv4.1 backchannel transport module. +[ 25.471312] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). +[ 26.345068] vmw_vmci 0000:00:07.7: Found VMCI PCI device at 0x11080, irq 16 +[ 26.345182] vmw_vmci 0000:00:07.7: Using capabilities 0xc +[ 26.345958] Guest personality initialized and is active +[ 26.346054] VMCI host device registered (name=vmci, major=10, minor=54) +[ 26.346054] Initialized host personality +[ 26.392296] parport_pc 00:05: reported by Plug and Play ACPI +[ 26.392523] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE] +[ 26.570698] [drm] DMA map mode: Using physical TTM page addresses. +[ 26.570809] [drm] Capabilities: +[ 26.570810] [drm] Rect copy. +[ 26.570810] [drm] Cursor. +[ 26.570811] [drm] Cursor bypass. +[ 26.570811] [drm] Cursor bypass 2. +[ 26.570812] [drm] 8bit emulation. +[ 26.570812] [drm] Alpha cursor. +[ 26.570812] [drm] Extended Fifo. +[ 26.570812] [drm] Multimon. +[ 26.570813] [drm] Pitchlock. +[ 26.570813] [drm] Irq mask. +[ 26.570813] [drm] Display Topology. +[ 26.570814] [drm] GMR. +[ 26.570814] [drm] Traces. +[ 26.570814] [drm] GMR2. +[ 26.570815] [drm] Screen Object 2. +[ 26.570815] [drm] Command Buffers. +[ 26.570817] [drm] Max GMR ids is 64 +[ 26.570817] [drm] Max number of GMR pages is 65536 +[ 26.570818] [drm] Max dedicated hypervisor surface memory is 163840 kiB +[ 26.570819] [drm] Maximum display memory size is 4096 kiB +[ 26.570819] [drm] VRAM at 0xec000000 size is 4096 kiB +[ 26.570820] [drm] MMIO at 0xfe000000 size is 256 kiB +[ 26.578666] [TTM] Zone kernel: Available graphics memory: 3820882 kiB +[ 26.578667] [TTM] Zone dma32: Available graphics memory: 2097152 kiB +[ 26.578668] [TTM] Initializing pool allocator +[ 26.578673] [TTM] Initializing DMA pool allocator +[ 26.578724] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). +[ 26.578725] [drm] No driver support for vblank timestamp query. +[ 26.579697] [drm] Screen Objects Display Unit initialized +[ 26.579773] [drm] width 800 +[ 26.579783] [drm] height 480 +[ 26.579793] [drm] bpp 32 +[ 26.588992] [drm] Fifo max 0x00040000 min 0x00001000 cap 0x0000077f +[ 26.601047] [drm] Using command buffers with DMA pool. +[ 26.601098] [drm] DX: no. +[ 26.601099] [drm] Atomic: yes. +[ 26.601099] [drm] SM4_1: no. +[ 26.612355] fbcon: svgadrmfb (fb0) is primary device +[ 26.618913] Console: switching to colour frame buffer device 100x37 +[ 26.624044] [drm] Initialized vmwgfx 2.15.0 20180704 for 0000:00:0f.0 on minor 0 +[ 26.883529] systemd-journald[743]: Received request to flush runtime journal from PID 1 +[ 26.974338] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 10737418240 ms ovfl timer +[ 26.974340] RAPL PMU: hw unit of domain pp0-core 2^-0 Joules +[ 26.974340] RAPL PMU: hw unit of domain package 2^-0 Joules +[ 26.974341] RAPL PMU: hw unit of domain dram 2^-0 Joules +[ 27.030156] cryptd: max_cpu_qlen set to 1000 +[ 27.066751] AVX version of gcm_enc/dec engaged. +[ 27.066752] AES CTR mode by8 optimization enabled +[ 27.092199] ppdev: user-space parallel port driver +[ 27.107466] systemd-journald[743]: File /var/log/journal/0ed34a0b1ea542ee9183d0310f77479a/system.journal corrupted or uncleanly shut down, renaming and replacing. +[ 27.314691] EDAC sbridge: Seeking for: PCI ID 8086:0ea0 +[ 27.314708] EDAC sbridge: Ver: 1.1.2 +[ 28.049671] NET: Registered protocol family 40 +[ 33.281872] vmxnet3 0000:03:00.0 ens160: intr type 3, mode 0, 3 vectors allocated +[ 33.283970] vmxnet3 0000:03:00.0 ens160: NIC Link is Up 10000 Mbps +[ 37.341904] NFSD: starting 20-second grace period (net f0000098) +[ 48.367758] Rounding down aligned max_sectors from 4294967295 to 4294967288 +[ 48.368009] db_root: cannot open: /etc/target +[ 305.339527] sysrq: SysRq : Trigger a crash +[ 305.340853] Kernel panic - not syncing: sysrq triggered crash +[ 305.342494] CPU: 0 PID: 6029 Comm: bash Kdump: loaded Tainted: P OE 5.0.0-36-generic #39~18.04.1-Ubuntu +[ 305.345365] Hardware name: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 04/14/2014 +[ 305.348417] Call Trace: +[ 305.349419] dump_stack+0x63/0x85 +[ 305.350547] panic+0xfe/0x2a4 +[ 305.351630] sysrq_handle_crash+0x15/0x20 +[ 305.352892] __handle_sysrq+0x9f/0x170 +[ 305.354091] write_sysrq_trigger+0x34/0x40 +[ 305.355360] proc_reg_write+0x3e/0x60 +[ 305.356526] __vfs_write+0x1b/0x40 +[ 305.357632] vfs_write+0xb1/0x1a0 +[ 305.358756] ksys_write+0x5c/0xe0 +[ 305.359959] __x64_sys_write+0x1a/0x20 +[ 305.361167] do_syscall_64+0x5a/0x120 +[ 305.362284] entry_SYSCALL_64_after_hwframe+0x44/0xa9 +[ 305.363691] RIP: 0033:0x7faa4ea10154 +[ 305.364797] Code: 89 02 48 c7 c0 ff ff ff ff c3 66 2e 0f 1f 84 00 00 00 00 00 66 90 48 8d 05 b1 07 2e 00 8b 00 85 c0 75 13 b8 01 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 54 f3 c3 66 90 41 54 55 49 89 d4 53 48 89 f5 +[ 305.369413] RSP: 002b:00007ffdad43be68 EFLAGS: 00000246 ORIG_RAX: 0000000000000001 +[ 305.371235] RAX: ffffffffffffffda RBX: 0000000000000002 RCX: 00007faa4ea10154 +[ 305.372968] RDX: 0000000000000002 RSI: 000055e5f13d2a20 RDI: 0000000000000001 +[ 305.374703] RBP: 000055e5f13d2a20 R08: 000000000000000a R09: 0000000000000001 +[ 305.376456] R10: 000000000000000a R11: 0000000000000246 R12: 00007faa4ecec760 +[ 305.378189] R13: 0000000000000002 R14: 00007faa4ece82a0 R15: 00007faa4ece7760 @#$ EXIT CODE $#@ 0 diff --git a/tests/integration/data/regression_output/dump.201912060006/linux/dmesg -l 3 b/tests/integration/data/regression_output/dump.201912060006/linux/dmesg -l 3 new file mode 100644 index 0000000..bfadae9 --- /dev/null +++ b/tests/integration/data/regression_output/dump.201912060006/linux/dmesg -l 3 @@ -0,0 +1,9 @@ +[ 3.685278] piix4_smbus 0000:00:07.3: SMBus Host Controller not enabled! +[ 4.346112] sd 2:0:0:0: [sda] Assuming drive cache: write through +[ 4.356113] sd 2:0:1:0: [sdb] Assuming drive cache: write through +[ 4.363435] sd 2:0:2:0: [sdc] Assuming drive cache: write through +[ 4.366085] sd 2:0:3:0: [sdd] Assuming drive cache: write through +[ 48.368009] db_root: cannot open: /etc/target +[ 305.340853] Kernel panic - not syncing: sysrq triggered crash +@#$ EXIT CODE $#@ +0 diff --git a/tests/integration/data/regression_output/dump.201912060006/linux/dmesg | filter 'obj.level == 3' | dmesg b/tests/integration/data/regression_output/dump.201912060006/linux/dmesg | filter 'obj.level == 3' | dmesg deleted file mode 100644 index 0a8cf7b..0000000 --- a/tests/integration/data/regression_output/dump.201912060006/linux/dmesg | filter 'obj.level == 3' | dmesg +++ /dev/null @@ -1,8 +0,0 @@ -[ 3.685278]: piix4_smbus 0000:00:07.3: SMBus Host Controller not enabled!SUBSYSTEM=pci -[ 4.346112]: sd 2:0:0:0: [sda] Assuming drive cache: write throughSUBSYSTEM=scsi -[ 4.356113]: sd 2:0:1:0: [sdb] Assuming drive cache: write throughSUBSYSTEM=scsi -[ 4.363435]: sd 2:0:2:0: [sdc] Assuming drive cache: write throughSUBSYSTEM=scsi -[ 4.366085]: sd 2:0:3:0: [sdd] Assuming drive cache: write throughSUBSYSTEM=scsi -[ 48.368009]: db_root: cannot open: /etc/target -@#$ EXIT CODE $#@ -0 diff --git a/tests/integration/data/regression_output/dump.201912060006/linux/dmesg | pp b/tests/integration/data/regression_output/dump.201912060006/linux/dmesg | pp deleted file mode 100644 index 90a198e..0000000 --- a/tests/integration/data/regression_output/dump.201912060006/linux/dmesg | pp +++ /dev/null @@ -1,1269 +0,0 @@ -[ 0.000000]: Linux version 5.0.0-36-generic (buildd@lgw01-amd64-060) (gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)) #39~18.04.1-Ubuntu SMP Tue Nov 12 11:09:50 UTC 2019 (Ubuntu 5.0.0-36.39~18.04.1-generic 5.0.21) -[ 0.000000]: Command line: BOOT_IMAGE=/ROOT/delphix.gX9jjSh/root@/boot/vmlinuz-5.0.0-36-generic root=ZFS=rpool/ROOT/delphix.gX9jjSh/root ro console=tty0 console=ttyS0,38400n8 mitigations=off ipv6.disable=1 elevator=noop crashkernel=256M,high crashkernel=256M,low -[ 0.000000]: KERNEL supported cpus: -[ 0.000000]: Intel GenuineIntel -[ 0.000000]: AMD AuthenticAMD -[ 0.000000]: Hygon HygonGenuine -[ 0.000000]: Centaur CentaurHauls -[ 0.000000]: Disabled fast string operations -[ 0.000000]: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' -[ 0.000000]: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' -[ 0.000000]: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' -[ 0.000000]: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 -[ 0.000000]: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. -[ 0.000000]: BIOS-provided physical RAM map: -[ 0.000000]: BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable -[ 0.000000]: BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x00000000000ca000-0x00000000000cbfff] reserved -[ 0.000000]: BIOS-e820: [mem 0x00000000000dc000-0x00000000000fffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x0000000000100000-0x00000000bfeeffff] usable -[ 0.000000]: BIOS-e820: [mem 0x00000000bfef0000-0x00000000bfefefff] ACPI data -[ 0.000000]: BIOS-e820: [mem 0x00000000bfeff000-0x00000000bfefffff] ACPI NVS -[ 0.000000]: BIOS-e820: [mem 0x00000000bff00000-0x00000000bfffffff] usable -[ 0.000000]: BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved -[ 0.000000]: BIOS-e820: [mem 0x00000000fffe0000-0x00000000ffffffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable -[ 0.000000]: NX (Execute Disable) protection: active -[ 0.000000]: SMBIOS 2.4 present. -[ 0.000000]: DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 04/14/2014 -[ 0.000000]: Hypervisor detected: VMware -[ 0.000000]: vmware: TSC freq read from hypervisor : 2400.000 MHz -[ 0.000000]: vmware: Host bus clock speed read from hypervisor : 66000000 Hz -[ 0.000000]: vmware: using sched offset of 19312235313 ns -[ 0.000002]: tsc: Detected 2400.000 MHz processor?K -[ 0.004973]: e820: update [mem 0x00000000-0x00000fff] usable ==> reservedK -[ 0.004975]: e820: remove [mem 0x000a0000-0x000fffff] usable -[ 0.004980]: last_pfn = 0x240000 max_arch_pfn = 0x400000000 -[ 0.005032]: MTRR default type: uncachable -[ 0.005033]: MTRR fixed ranges enabled: -[ 0.005034]: 00000-9FFFF write-backcL -[ 0.005034]: A0000-BFFFF uncachableL -[ 0.005035]: C0000-CBFFF write-protect -[ 0.005036]: CC000-EFFFF uncachableBL -[ 0.005036]: F0000-FFFFF write-protect -[ 0.005037]: MTRR variable ranges enabled: -[ 0.005038]: 0 base 00C0000000 mask FFC0000000 uncachable -[ 0.005039]: 1 base 0000000000 mask FE00000000 write-back -[ 0.005040]: 2 base 0200000000 mask FFC0000000 write-back -[ 0.005040]: 3 disabledL -[ 0.005041]: 4 disabledL -[ 0.005041]: 5 disabledL -[ 0.005042]: 6 disabledL -[ 0.005042]: 7 disabledOM -[ 0.005066]: x86/PAT: PAT MSR is 0, disabled.CM -[ 0.005090]: total RAM covered: 8192MPU -[ 0.005591]: Found optimal setting for mtrr clean up -[ 0.005592]: gran_size: 64K chunk_size: 64K num_reg: 4 lose cover RAM: 0G -[ 0.005664]: e820: update [mem 0xc0000000-0xffffffff] usable ==> reservedyV -[ 0.005667]: x86/PAT: Configuration [0-7]: WB WT UC- UC WB WT UC- UC -[ 0.005676]: last_pfn = 0xc0000 max_arch_pfn = 0x400000000 -[ 0.021509]: found SMP MP-table at [mem 0x000f6bf0-0x000f6bff] -[ 0.021704]: check: Scanning 1 areas for low memory corruption -[ 0.021762]: Kernel/User page tables isolation: disabled on command line.L -[ 0.021791]: BRK [0x11f802000, 0x11f802fff] PGTABLE -[ 0.021794]: BRK [0x11f803000, 0x11f803fff] PGTABLE -[ 0.021795]: BRK [0x11f804000, 0x11f804fff] PGTABLE -[ 0.021844]: BRK [0x11f805000, 0x11f805fff] PGTABLE -[ 0.021846]: BRK [0x11f806000, 0x11f806fff] PGTABLE -[ 0.021960]: BRK [0x11f807000, 0x11f807fff] PGTABLE -[ 0.021971]: BRK [0x11f808000, 0x11f808fff] PGTABLE -[ 0.022006]: BRK [0x11f809000, 0x11f809fff] PGTABLE -[ 0.022199]: RAMDISK: [mem 0x2ef4b000-0x3379cfff]rS -[ 0.022245]: ACPI: Early table checksum verification disabledT -[ 0.022324]: ACPI: RSDP 0x00000000000F6B80 000024 (v02 PTLTD ) -[ 0.022329]: ACPI: XSDT 0x00000000BFEF1152 00005C (v01 INTEL 440BX 06040000 VMW 01324272) -[ 0.022337]: ACPI: FACP 0x00000000BFEFEE73 0000F4 (v04 INTEL 440BX 06040000 PTL 000F4240) -[ 0.022346]: ACPI: DSDT 0x00000000BFEF1400 00DA73 (v01 PTLTD Custom 06040000 MSFT 03000001) -[ 0.022352]: ACPI: FACS 0x00000000BFEFFFC0 000040E#U -[ 0.022356]: ACPI: FACS 0x00000000BFEFFFC0 0000405U -[ 0.022361]: ACPI: BOOT 0x00000000BFEF13D8 000028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) -[ 0.022366]: ACPI: APIC 0x00000000BFEF137A 00005E (v01 PTLTD ? APIC 06040000 LTP 00000000) -[ 0.022371]: ACPI: MCFG 0x00000000BFEF133E 00003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001) -[ 0.022376]: ACPI: SRAT 0x00000000BFEF124E 0000F0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001) -[ 0.022381]: ACPI: HPET 0x00000000BFEF1216 000038 (v01 VMWARE VMW HPET 06040000 VMW 00000001) -[ 0.022386]: ACPI: WAET 0x00000000BFEF11EE 000028 (v01 VMWARE VMW WAET 06040000 VMW 00000001) -[ 0.022402]: ACPI: Local APIC address 0xfee00000 -[ 0.022487]: SRAT: PXM 0 -> APIC 0x00 -> Node 0 -[ 0.022488]: SRAT: PXM 0 -> APIC 0x02 -> Node 0 -[ 0.022493]: ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]>W -[ 0.022494]: ACPI: SRAT: Node 0 PXM 0 [mem 0x00100000-0x0fffffff]AW -[ 0.022495]: ACPI: SRAT: Node 0 PXM 0 [mem 0x10000000-0xbfffffff]EW -[ 0.022496]: ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x23fffffff] -[ 0.022500]: NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0x0fffffff] -> [mem 0x00000000-0x0fffffff] -[ 0.022501]: NUMA: Node 0 [mem 0x00000000-0x0fffffff] + [mem 0x10000000-0xbfffffff] -> [mem 0x00000000-0xbfffffff] -[ 0.022503]: NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x23fffffff] -> [mem 0x00000000-0x23fffffff]aW -[ 0.022513]: NODE_DATA(0) allocated [mem 0x23ffd1000-0x23fffbfff] -[ 0.023003]: Reserving 256MB of low memory at 2800MB for crashkernel (System low RAM: 3071MB)_ -[ 0.023005]: Reserving 256MB of memory at 8944MB for crashkernel (System RAM: 8191MB))_ -[ 0.023068]: Zone ranges:` -[ 0.023069]: DMA [mem 0x0000000000001000-0x0000000000ffffff] -[ 0.023071]: DMA32 [mem 0x0000000001000000-0x00000000ffffffff] -[ 0.023072]: Normal [mem 0x0000000100000000-0x000000023fffffff] -[ 0.023073]: Device empty ` -[ 0.023074]: Movable zone start for each node"` -[ 0.023077]: Early memory node rangesD&` -[ 0.023078]: node 0: [mem 0x0000000000001000-0x000000000009efff] -[ 0.023079]: node 0: [mem 0x0000000000100000-0x00000000bfeeffff] -[ 0.023080]: node 0: [mem 0x00000000bff00000-0x00000000bfffffff] -[ 0.023081]: node 0: [mem 0x0000000100000000-0x000000023fffffff] -[ 0.023123]: Zeroed struct page in unavailable ranges: 114 pages -[ 0.023124]: Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff] -` -[ 0.023126]: On node 0 totalpages: 2097038 -[ 0.023127]: DMA zone: 64 pages used for memmap` -[ 0.023128]: DMA zone: 21 pages reserved -[ 0.023129]: DMA zone: 3998 pages, LIFO batch:0͖h -[ 0.023631]: DMA32 zone: 12224 pages used for memmap -[ 0.023632]: DMA32 zone: 782320 pages, LIFO batch:63 -[ 0.107637]: Normal zone: 20480 pages used for memmap -[ 0.107640]: Normal zone: 1310720 pages, LIFO batch:63 -[ 0.255769]: ACPI: PM-Timer IO Port: 0x1008 -[ 0.255776]: ACPI: Local APIC address 0xfee00000 -[ 0.255794]: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) -[ 0.255795]: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -[ 0.255867]: IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23 -[ 0.255872]: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) -[ 0.255876]: ACPI: IRQ0 used by override._@ -[ 0.255877]: ACPI: IRQ9 used by override.%m@ -[ 0.255880]: Using ACPI (MADT) for SMP configuration information -[ 0.255883]: ACPI: HPET id: 0x8086af01 base: 0xfed00000 -[ 0.255906]: smpboot: Allowing 2 CPUs, 0 hotplug CPUsZA -[ 0.255941]: PM: Registered nosave memory: [mem 0x00000000-0x00000fff] -[ 0.255943]: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff] -[ 0.255943]: PM: Registered nosave memory: [mem 0x000a0000-0x000c9fff] -[ 0.255944]: PM: Registered nosave memory: [mem 0x000ca000-0x000cbfff] -[ 0.255945]: PM: Registered nosave memory: [mem 0x000cc000-0x000dbfff] -[ 0.255946]: PM: Registered nosave memory: [mem 0x000dc000-0x000fffff] -[ 0.255947]: PM: Registered nosave memory: [mem 0xbfef0000-0xbfefefff] -[ 0.255948]: PM: Registered nosave memory: [mem 0xbfeff000-0xbfefffff] -[ 0.255949]: PM: Registered nosave memory: [mem 0xc0000000-0xefffffff] -[ 0.255950]: PM: Registered nosave memory: [mem 0xf0000000-0xf7ffffff] -[ 0.255951]: PM: Registered nosave memory: [mem 0xf8000000-0xfebfffff] -[ 0.255951]: PM: Registered nosave memory: [mem 0xfec00000-0xfec0ffff] -[ 0.255952]: PM: Registered nosave memory: [mem 0xfec10000-0xfedfffff] -[ 0.255953]: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff] -[ 0.255954]: PM: Registered nosave memory: [mem 0xfee01000-0xfffdffff] -[ 0.255954]: PM: Registered nosave memory: [mem 0xfffe0000-0xffffffff] -[ 0.255957]: [mem 0xc0000000-0xefffffff] available for PCI devices -[ 0.255958]: Booting paravirtualized kernel on VMware hypervisor -[ 0.255962]: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns -[ 0.255977]: random: get_random_bytes called from start_kernel+0x97/0x516 with crng_init=0 -[ 0.255984]: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -[ 0.258647]: percpu: Embedded 46 pages/cpu s151552 r8192 d28672 u1048576 -[ 0.258654]: pcpu-alloc: s151552 r8192 d28672 u1048576 alloc=1*2097152 -[ 0.258655]: pcpu-alloc: [0] 0 1 TEk -[ 0.258688]: Built 1 zonelists, mobility grouping on. Total pages: 2064249 -[ 0.258689]: Policy zone: Normal -[ 0.258691]: Kernel command line: BOOT_IMAGE=/ROOT/delphix.gX9jjSh/root@/boot/vmlinuz-5.0.0-36-generic root=ZFS=rpool/ROOT/delphix.gX9jjSh/root ro console=tty0 console=ttyS0,38400n8 mitigations=off ipv6.disable=1 elevator=noop crashkernel=256M,high crashkernel=256M,lowP -[ 0.345968]: Calgary: detecting Calgary via BIOS EBDA area -[ 0.345971]: Calgary: Unable to locate Rio Grande table in EBDA - bailing! -[ 0.370032]: Memory: 7559300K/8388152K available (14339K kernel code, 2336K rwdata, 4416K rodata, 2588K init, 5192K bss, 828852K reserved, 0K cma-reserved) -[ 0.370419]: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 -[ 0.370440]: ftrace: allocating 41686 entries in 163 pages -[ 0.388619]: rcu: Hierarchical RCU implementation. -[ 0.388622]: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=2. -[ 0.388624]: Tasks RCU enabled. -[ 0.388625]: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. -[ 0.388626]: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2ta -[ 0.392274]: NR_IRQS: 524544, nr_irqs: 440, preallocated irqs: 16|{ -[ 0.393995]: Console: colour VGA+ 80x25 -[ 0.402530]: printk: console [tty0] enabled -[ 0.564180]: printk: console [ttyS0] enabled -[ 0.565139]: ACPI: Core revision 20181213! -[ 0.566409]: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns ! -[ 0.568260]: hpet clockevent registered -[ 0.568320]: APIC: Switch to symmetric I/O mode setup! -[ 0.569368]: x2apic: IRQ remapping doesn't support X2APIC mode -[ 0.571275]: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1A!" -[ 0.572620]: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22983777dd9, max_idle_ns: 440795300422 nsD" -[ 0.574925]: Calibrating delay loop (skipped) preset value.. 4800.00 BogoMIPS (lpj=9600000) -[ 0.578906]: pid_max: default: 32768 minimum: 301I" -[ 0.580012]: LSM: Security Framework initializing" -[ 0.580956]: Yama: becoming mindful. -[ 0.581765]: AppArmor: AppArmor initialized -[ 0.595393]: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes) -[ 0.603245]: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes) -[ 0.604771]: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes) -[ 0.606207]: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes) -[ 0.607340]: Disabled fast string operations -[ 0.608189]: Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8 -[ 0.609204]: Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4 -[ 0.610905]: Speculative Store Bypass: VulnerableB#y$ -[ 0.611918]: Freeing SMP alternatives memory: 36K>$ -[ 0.615333]: smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2695 v2 @ 2.40GHz (family: 0x6, model: 0x3e, stepping: 0x4) -[ 0.619285]: Performance Events: IvyBridge events, core PMU driver. -[ 0.620495]: core: CPUID marked event: 'cpu cycles' unavailable -[ 0.621570]: core: CPUID marked event: 'instructions' unavailableu % -[ 0.622903]: core: CPUID marked event: 'bus cycles' unavailable -[ 0.624076]: core: CPUID marked event: 'cache references' unavailableeD% -[ 0.625271]: core: CPUID marked event: 'cache misses' unavailable׬U% -[ 0.626371]: core: CPUID marked event: 'branch instructions' unavailable -[ 0.626903]: core: CPUID marked event: 'branch misses' unavailable -[ 0.628051]: ... version: 1 -[ 0.628795]: ... bit width: 48 -[ 0.629608]: ... generic registers: 4 -[ 0.630903]: ... value mask: 0000ffffffffffff+% -[ 0.631909]: ... max period: 000000007fffffffۺ% -[ 0.633002]: ... fixed-purpose events: 0 -[ 0.633790]: ... event mask: 000000000000000fy/% -[ 0.635055]: rcu: Hierarchical SRCU implementation. -[ 0.637022]: random: crng done (trusting CPU's manufacturer) -[ 0.638310]: NMI watchdog: Perf NMI watchdog permanently disabledw& -[ 0.639072]: smp: Bringing up secondary CPUs ... -[ 0.640458]: x86: Booting SMP configuration: -[ 0.641257]: .... node #0, CPUs: #1zN - -[ 0.182210]: Disabled fast string operations -[ 0.182210]: smpboot: CPU 1 Converting physical 2 to logical package 1 -[ 0.647525]: smp: Brought up 1 node, 2 CPUs -[ 0.647686]: smpboot: Max logical packages: 2Y& -[ 0.648544]: smpboot: Total of 2 processors activated (9600.00 BogoMIPS) -[ 0.651550]: devtmpfs: initialized -[ 0.651712]: x86/mm: Memory block size: 128MB' -[ 0.655268]: PM: Registering ACPI NVS region [mem 0xbfeff000-0xbfefffff] (4096 bytes)"' -[ 0.656604]: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns -[ 0.656764]: futex hash table entries: 512 (order: 3, 32768 bytes) -[ 0.660234]: pinctrl core: initialized pinctrl subsystem -[ 0.661551]: RTC time: 00:00:48, date: 2019-12-06Ă' -[ 0.662733]: NET: Registered protocol family 16 -[ 0.663061]: audit: initializing netlink subsys (disabled) -[ 0.664236]: audit: type=2000 audit(1575590448.092:1): state=initialized audit_enabled=0 res=1 -[ 0.664236]: EISA bus registered -[ 0.667583]: cpuidle: using governor ladder -[ 0.668366]: cpuidle: using governor menu' -[ 0.669193]: Simple Boot Flag at 0x36 set to 0x80' -[ 0.670087]: ACPI: bus type PCI registered -[ 0.670905]: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -[ 0.672578]: PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) -[ 0.674319]: PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820 -[ 0.674917]: PCI: Using configuration type 1 for base access -[ 0.676049]: core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off( -[ 0.680303]: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages( -[ 0.680303]: ACPI: Added _OSI(Module Device) -[ 0.683717]: ACPI: Added _OSI(Processor Device) -[ 0.684590]: ACPI: Added _OSI(3.0 _SCP Extensions) -[ 0.685456]: ACPI: Added _OSI(Processor Aggregator Device) -[ 0.686448]: ACPI: Added _OSI(Linux-Dell-Video) -[ 0.686906]: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)1 -[ 0.687878]: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) -[ 0.702147]: ACPI: 1 ACPI AML tables successfully acquired and loaded^= * -[ 0.705510]: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored"* -[ 0.706918]: ACPI: BIOS _OSI(Darwin) query ignored -[ 0.709865]: ACPI: Interpreter enabled -[ 0.710926]: ACPI: (supports S0 S1 S4 S5)k* -[ 0.711691]: ACPI: Using IOAPIC for interrupt routing0{* -[ 0.712716]: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug* -[ 0.715262]: ACPI: Enabled 4 GPEs in block 00 to 0F -[ 0.776784]: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f]) -[ 0.777951]: acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]SUBSYSTEM=acpi -[ 0.779208]: acpi PNP0A03:00: _OSC: platform does not support [AER LTR]SUBSYSTEM=acpi -[ 0.780742]: acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]SUBSYSTEM=acpi -[ 0.785282]: PCI host bridge to bus 0000:00 -[ 0.786046]: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]SUBSYSTEM=pci_bus -[ 0.786904]: pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]SUBSYSTEM=pci_bus -[ 0.788344]: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]SUBSYSTEM=pci_bus -[ 0.789686]: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]SUBSYSTEM=pci_bus -[ 0.790905]: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]SUBSYSTEM=pci_bus -[ 0.792253]: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]SUBSYSTEM=pci_bus -[ 0.793631]: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]SUBSYSTEM=pci_bus -[ 0.794904]: pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff window]SUBSYSTEM=pci_bus -[ 0.796126]: pci_bus 0000:00: root bus resource [bus 00-7f]SUBSYSTEM=pci_bus -[ 0.797229]: pci 0000:00:00.0: [8086:7190] type 00 class 0x060000SUBSYSTEM=pci -[ 0.798950]: pci 0000:00:01.0: [8086:7191] type 01 class 0x060400SUBSYSTEM=pci -[ 0.800398]: pci 0000:00:07.0: [8086:7110] type 00 class 0x060100SUBSYSTEM=pci -[ 0.801472]: pci 0000:00:07.1: [8086:7111] type 00 class 0x01018aSUBSYSTEM=pci -[ 0.802907]: pci 0000:00:07.1: reg 0x20: [io 0x1060-0x106f]SUBSYSTEM=pci -[ 0.803483]: pci 0000:00:07.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]SUBSYSTEM=pci -[ 0.804765]: pci 0000:00:07.1: legacy IDE quirk: reg 0x14: [io 0x03f6]SUBSYSTEM=pci -[ 0.805940]: pci 0000:00:07.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]SUBSYSTEM=pci -[ 0.806903]: pci 0000:00:07.1: legacy IDE quirk: reg 0x1c: [io 0x0376]SUBSYSTEM=pci -[ 0.808511]: pci 0000:00:07.3: [8086:7113] type 00 class 0x068000SUBSYSTEM=pci -[ 0.810238]: pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPISUBSYSTEM=pci -[ 0.810920]: pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMBSUBSYSTEM=pci -[ 0.812663]: pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000SUBSYSTEM=pci -[ 0.813371]: pci 0000:00:07.7: reg 0x10: [io 0x1080-0x10bf]SUBSYSTEM=pci -[ 0.814906]: pci 0000:00:07.7: reg 0x14: [mem 0xfebfe000-0xfebfffff 64bit]SUBSYSTEM=pci -[ 0.818526]: pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000SUBSYSTEM=pci -[ 0.819484]: pci 0000:00:0f.0: reg 0x10: [io 0x1070-0x107f]SUBSYSTEM=pci -[ 0.820710]: pci 0000:00:0f.0: reg 0x14: [mem 0xec000000-0xefffffff pref]SUBSYSTEM=pci -[ 0.821734]: pci 0000:00:0f.0: reg 0x18: [mem 0xfe000000-0xfe7fffff]SUBSYSTEM=pci -[ 0.826326]: pci 0000:00:0f.0: reg 0x30: [mem 0x00000000-0x00007fff pref]SUBSYSTEM=pci -[ 0.827431]: pci 0000:00:10.0: [1000:0030] type 00 class 0x010000SUBSYSTEM=pci -[ 0.828363]: pci 0000:00:10.0: reg 0x10: [io 0x1400-0x14ff]SUBSYSTEM=pci -[ 0.829131]: pci 0000:00:10.0: reg 0x14: [mem 0xfeba0000-0xfebbffff 64bit]SUBSYSTEM=pci -[ 0.830161]: pci 0000:00:10.0: reg 0x1c: [mem 0xfebc0000-0xfebdffff 64bit]SUBSYSTEM=pci -[ 0.831568]: pci 0000:00:10.0: reg 0x30: [mem 0x00000000-0x00003fff pref]SUBSYSTEM=pci -[ 0.832036]: pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401SUBSYSTEM=pci -[ 0.833449]: pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.834335]: pci 0000:00:15.0: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.835196]: pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.836066]: pci 0000:00:15.1: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.836516]: pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.837374]: pci 0000:00:15.2: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.837895]: pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.838762]: pci 0000:00:15.3: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.839273]: pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.840160]: pci 0000:00:15.4: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.840636]: pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.841510]: pci 0000:00:15.5: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.841968]: pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.842859]: pci 0000:00:15.6: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.843326]: pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.844200]: pci 0000:00:15.7: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.844816]: pci 0000:00:16.0: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.845685]: pci 0000:00:16.0: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.846153]: pci 0000:00:16.1: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.847023]: pci 0000:00:16.1: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.847482]: pci 0000:00:16.2: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.848330]: pci 0000:00:16.2: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.848797]: pci 0000:00:16.3: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.849683]: pci 0000:00:16.3: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.850171]: pci 0000:00:16.4: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.851050]: pci 0000:00:16.4: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.851549]: pci 0000:00:16.5: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.852504]: pci 0000:00:16.5: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.853021]: pci 0000:00:16.6: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.853896]: pci 0000:00:16.6: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.854355]: pci 0000:00:16.7: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.855218]: pci 0000:00:16.7: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.855820]: pci 0000:00:17.0: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.856665]: pci 0000:00:17.0: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.857116]: pci 0000:00:17.1: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.857960]: pci 0000:00:17.1: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.858413]: pci 0000:00:17.2: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.859270]: pci 0000:00:17.2: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.859726]: pci 0000:00:17.3: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.860568]: pci 0000:00:17.3: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.861058]: pci 0000:00:17.4: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.861926]: pci 0000:00:17.4: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.862377]: pci 0000:00:17.5: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.863226]: pci 0000:00:17.5: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.863669]: pci 0000:00:17.6: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.864510]: pci 0000:00:17.6: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.864961]: pci 0000:00:17.7: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.865805]: pci 0000:00:17.7: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.866424]: pci 0000:00:18.0: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.867289]: pci 0000:00:18.0: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.867738]: pci 0000:00:18.1: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.868584]: pci 0000:00:18.1: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.869031]: pci 0000:00:18.2: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.869898]: pci 0000:00:18.2: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.870342]: pci 0000:00:18.3: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.871281]: pci 0000:00:18.3: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.871814]: pci 0000:00:18.4: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.872660]: pci 0000:00:18.4: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.873109]: pci 0000:00:18.5: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.873973]: pci 0000:00:18.5: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.874439]: pci 0000:00:18.6: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.875298]: pci 0000:00:18.6: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.875739]: pci 0000:00:18.7: [15ad:07a0] type 01 class 0x060400SUBSYSTEM=pci -[ 0.876677]: pci 0000:00:18.7: PME# supported from D0 D3hot D3coldSUBSYSTEM=pci -[ 0.878302]: pci_bus 0000:01: extended config space not accessibleSUBSYSTEM=pci_bus -[ 0.884373]: pci 0000:00:01.0: PCI bridge to [bus 01]SUBSYSTEM=pci -[ 0.885508]: pci_bus 0000:02: extended config space not accessibleSUBSYSTEM=pci_bus -[ 0.887019]: acpiphp: Slot [32] registered -[ 0.887815]: acpiphp: Slot [33] registered -[ 0.888618]: acpiphp: Slot [34] registered -[ 0.889384]: acpiphp: Slot [35] registered -[ 0.890166]: acpiphp: Slot [36] registered -[ 0.890932]: acpiphp: Slot [37] registered -[ 0.891697]: acpiphp: Slot [38] registered -[ 0.892499]: acpiphp: Slot [39] registered -[ 0.893292]: acpiphp: Slot [40] registered -[ 0.894058]: acpiphp: Slot [41] registered -[ 0.894837]: acpiphp: Slot [42] registered -[ 0.894934]: acpiphp: Slot [43] registered -[ 0.895784]: acpiphp: Slot [44] registered -[ 0.896578]: acpiphp: Slot [45] registered -[ 0.897367]: acpiphp: Slot [46] registered -[ 0.898153]: acpiphp: Slot [47] registered -[ 0.898945]: acpiphp: Slot [48] registered -[ 0.899714]: acpiphp: Slot [49] registered -[ 0.900892]: acpiphp: Slot [50] registered -[ 0.901790]: acpiphp: Slot [51] registered -[ 0.902937]: acpiphp: Slot [52] registered -[ 0.903752]: acpiphp: Slot [53] registered -[ 0.904566]: acpiphp: Slot [54] registered -[ 0.905335]: acpiphp: Slot [55] registered -[ 0.906102]: acpiphp: Slot [56] registered -[ 0.906935]: acpiphp: Slot [57] registered -[ 0.907705]: acpiphp: Slot [58] registered -[ 0.908475]: acpiphp: Slot [59] registered -[ 0.909262]: acpiphp: Slot [60] registered -[ 0.910081]: acpiphp: Slot [61] registered -[ 0.910933]: acpiphp: Slot [62] registered -[ 0.911796]: acpiphp: Slot [63] registered -[ 0.917916]: pci 0000:00:11.0: PCI bridge to [bus 02] (subtractive decode)SUBSYSTEM=pci -[ 0.918927]: pci 0000:00:11.0: bridge window [io 0x2000-0x3fff]SUBSYSTEM=pci -[ 0.918957]: pci 0000:00:11.0: bridge window [mem 0xfd600000-0xfdffffff]SUBSYSTEM=pci -[ 0.919008]: pci 0000:00:11.0: bridge window [mem 0xebb00000-0xebffffff 64bit pref]SUBSYSTEM=pci -[ 0.919011]: pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)SUBSYSTEM=pci -[ 0.919012]: pci 0000:00:11.0: bridge window [mem 0x000cc000-0x000cffff window] (subtractive decode)SUBSYSTEM=pci -[ 0.919013]: pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff window] (subtractive decode)SUBSYSTEM=pci -[ 0.919014]: pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)SUBSYSTEM=pci -[ 0.919015]: pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)SUBSYSTEM=pci -[ 0.919016]: pci 0000:00:11.0: bridge window [mem 0xc0000000-0xfebfffff window] (subtractive decode)SUBSYSTEM=pci -[ 0.919017]: pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7 window] (subtractive decode)SUBSYSTEM=pci -[ 0.919018]: pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff window] (subtractive decode)SUBSYSTEM=pci -[ 0.919548]: pci 0000:03:00.0: [15ad:07b0] type 00 class 0x020000SUBSYSTEM=pci -[ 0.920696]: pci 0000:03:00.0: reg 0x10: [mem 0xfd5fb000-0xfd5fbfff]SUBSYSTEM=pci -[ 0.921798]: pci 0000:03:00.0: reg 0x14: [mem 0xfd5fc000-0xfd5fcfff]SUBSYSTEM=pci -[ 0.922907]: pci 0000:03:00.0: reg 0x18: [mem 0xfd5fe000-0xfd5fffff]SUBSYSTEM=pci -[ 0.923968]: pci 0000:03:00.0: reg 0x1c: [io 0x4000-0x400f]SUBSYSTEM=pci -[ 0.926906]: pci 0000:03:00.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]SUBSYSTEM=pci -[ 0.927418]: pci 0000:03:00.0: supports D1 D2SUBSYSTEM=pci -[ 0.927419]: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3coldSUBSYSTEM=pci -[ 0.927852]: pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'SUBSYSTEM=pci -[ 0.934981]: pci 0000:00:15.0: PCI bridge to [bus 03]SUBSYSTEM=pci -[ 0.935928]: pci 0000:00:15.0: bridge window [io 0x4000-0x4fff]SUBSYSTEM=pci -[ 0.935960]: pci 0000:00:15.0: bridge window [mem 0xfd500000-0xfd5fffff]SUBSYSTEM=pci -[ 0.936003]: pci 0000:00:15.0: bridge window [mem 0xeba00000-0xebafffff 64bit pref]SUBSYSTEM=pci -[ 0.941032]: pci 0000:00:15.1: PCI bridge to [bus 04]SUBSYSTEM=pci -[ 0.942007]: pci 0000:00:15.1: bridge window [io 0x8000-0x8fff]SUBSYSTEM=pci -[ 0.942027]: pci 0000:00:15.1: bridge window [mem 0xfd100000-0xfd1fffff]SUBSYSTEM=pci -[ 0.942065]: pci 0000:00:15.1: bridge window [mem 0xeb600000-0xeb6fffff 64bit pref]SUBSYSTEM=pci -[ 0.947075]: pci 0000:00:15.2: PCI bridge to [bus 05]SUBSYSTEM=pci -[ 0.948050]: pci 0000:00:15.2: bridge window [io 0xc000-0xcfff]SUBSYSTEM=pci -[ 0.948071]: pci 0000:00:15.2: bridge window [mem 0xfcd00000-0xfcdfffff]SUBSYSTEM=pci -[ 0.948108]: pci 0000:00:15.2: bridge window [mem 0xeb200000-0xeb2fffff 64bit pref]SUBSYSTEM=pci -[ 0.953089]: pci 0000:00:15.3: PCI bridge to [bus 06]SUBSYSTEM=pci -[ 0.954126]: pci 0000:00:15.3: bridge window [mem 0xfc900000-0xfc9fffff]SUBSYSTEM=pci -[ 0.954165]: pci 0000:00:15.3: bridge window [mem 0xeae00000-0xeaefffff 64bit pref]SUBSYSTEM=pci -[ 0.959123]: pci 0000:00:15.4: PCI bridge to [bus 07]SUBSYSTEM=pci -[ 0.960143]: pci 0000:00:15.4: bridge window [mem 0xfc500000-0xfc5fffff]SUBSYSTEM=pci -[ 0.960182]: pci 0000:00:15.4: bridge window [mem 0xeaa00000-0xeaafffff 64bit pref]SUBSYSTEM=pci -[ 0.965049]: pci 0000:00:15.5: PCI bridge to [bus 08]SUBSYSTEM=pci -[ 0.966028]: pci 0000:00:15.5: bridge window [mem 0xfc100000-0xfc1fffff]SUBSYSTEM=pci -[ 0.966066]: pci 0000:00:15.5: bridge window [mem 0xea600000-0xea6fffff 64bit pref]SUBSYSTEM=pci -[ 0.971018]: pci 0000:00:15.6: PCI bridge to [bus 09]SUBSYSTEM=pci -[ 0.971970]: pci 0000:00:15.6: bridge window [mem 0xfbd00000-0xfbdfffff]SUBSYSTEM=pci -[ 0.972008]: pci 0000:00:15.6: bridge window [mem 0xea200000-0xea2fffff 64bit pref]SUBSYSTEM=pci -[ 0.976929]: pci 0000:00:15.7: PCI bridge to [bus 0a]SUBSYSTEM=pci -[ 0.977912]: pci 0000:00:15.7: bridge window [mem 0xfb900000-0xfb9fffff]SUBSYSTEM=pci -[ 0.977956]: pci 0000:00:15.7: bridge window [mem 0xe9e00000-0xe9efffff 64bit pref]SUBSYSTEM=pci -[ 0.982952]: pci 0000:00:16.0: PCI bridge to [bus 0b]SUBSYSTEM=pci -[ 0.983913]: pci 0000:00:16.0: bridge window [io 0x5000-0x5fff]SUBSYSTEM=pci -[ 0.983934]: pci 0000:00:16.0: bridge window [mem 0xfd400000-0xfd4fffff]SUBSYSTEM=pci -[ 0.983972]: pci 0000:00:16.0: bridge window [mem 0xeb900000-0xeb9fffff 64bit pref]SUBSYSTEM=pci -[ 0.988836]: pci 0000:00:16.1: PCI bridge to [bus 0c]SUBSYSTEM=pci -[ 0.989790]: pci 0000:00:16.1: bridge window [io 0x9000-0x9fff]SUBSYSTEM=pci -[ 0.989810]: pci 0000:00:16.1: bridge window [mem 0xfd000000-0xfd0fffff]SUBSYSTEM=pci -[ 0.989848]: pci 0000:00:16.1: bridge window [mem 0xeb500000-0xeb5fffff 64bit pref]SUBSYSTEM=pci -[ 0.994758]: pci 0000:00:16.2: PCI bridge to [bus 0d]SUBSYSTEM=pci -[ 0.994926]: pci 0000:00:16.2: bridge window [io 0xd000-0xdfff]SUBSYSTEM=pci -[ 0.994946]: pci 0000:00:16.2: bridge window [mem 0xfcc00000-0xfccfffff]SUBSYSTEM=pci -[ 0.994984]: pci 0000:00:16.2: bridge window [mem 0xeb100000-0xeb1fffff 64bit pref]SUBSYSTEM=pci -[ 1.001048]: pci 0000:00:16.3: PCI bridge to [bus 0e]SUBSYSTEM=pci -[ 1.002028]: pci 0000:00:16.3: bridge window [mem 0xfc800000-0xfc8fffff]SUBSYSTEM=pci -[ 1.002066]: pci 0000:00:16.3: bridge window [mem 0xead00000-0xeadfffff 64bit pref]SUBSYSTEM=pci -[ 1.006940]: pci 0000:00:16.4: PCI bridge to [bus 0f]SUBSYSTEM=pci -[ 1.007931]: pci 0000:00:16.4: bridge window [mem 0xfc400000-0xfc4fffff]SUBSYSTEM=pci -[ 1.007969]: pci 0000:00:16.4: bridge window [mem 0xea900000-0xea9fffff 64bit pref]SUBSYSTEM=pci -[ 1.012894]: pci 0000:00:16.5: PCI bridge to [bus 10]SUBSYSTEM=pci -[ 1.013899]: pci 0000:00:16.5: bridge window [mem 0xfc000000-0xfc0fffff]SUBSYSTEM=pci -[ 1.013940]: pci 0000:00:16.5: bridge window [mem 0xea500000-0xea5fffff 64bit pref]SUBSYSTEM=pci -[ 1.018815]: pci 0000:00:16.6: PCI bridge to [bus 11]SUBSYSTEM=pci -[ 1.018968]: pci 0000:00:16.6: bridge window [mem 0xfbc00000-0xfbcfffff]SUBSYSTEM=pci -[ 1.019029]: pci 0000:00:16.6: bridge window [mem 0xea100000-0xea1fffff 64bit pref]SUBSYSTEM=pci -[ 1.025388]: pci 0000:00:16.7: PCI bridge to [bus 12]SUBSYSTEM=pci -[ 1.026435]: pci 0000:00:16.7: bridge window [mem 0xfb800000-0xfb8fffff]SUBSYSTEM=pci -[ 1.026481]: pci 0000:00:16.7: bridge window [mem 0xe9d00000-0xe9dfffff 64bit pref]SUBSYSTEM=pci -[ 1.031580]: pci 0000:00:17.0: PCI bridge to [bus 13]SUBSYSTEM=pci -[ 1.032549]: pci 0000:00:17.0: bridge window [io 0x6000-0x6fff]SUBSYSTEM=pci -[ 1.032570]: pci 0000:00:17.0: bridge window [mem 0xfd300000-0xfd3fffff]SUBSYSTEM=pci -[ 1.032609]: pci 0000:00:17.0: bridge window [mem 0xeb800000-0xeb8fffff 64bit pref]SUBSYSTEM=pci -[ 1.037560]: pci 0000:00:17.1: PCI bridge to [bus 14]SUBSYSTEM=pci -[ 1.038496]: pci 0000:00:17.1: bridge window [io 0xa000-0xafff]SUBSYSTEM=pci -[ 1.038516]: pci 0000:00:17.1: bridge window [mem 0xfcf00000-0xfcffffff]SUBSYSTEM=pci -[ 1.038554]: pci 0000:00:17.1: bridge window [mem 0xeb400000-0xeb4fffff 64bit pref]SUBSYSTEM=pci -[ 1.043484]: pci 0000:00:17.2: PCI bridge to [bus 15]SUBSYSTEM=pci -[ 1.044420]: pci 0000:00:17.2: bridge window [io 0xe000-0xefff]SUBSYSTEM=pci -[ 1.044440]: pci 0000:00:17.2: bridge window [mem 0xfcb00000-0xfcbfffff]SUBSYSTEM=pci -[ 1.044478]: pci 0000:00:17.2: bridge window [mem 0xeb000000-0xeb0fffff 64bit pref]SUBSYSTEM=pci -[ 1.049420]: pci 0000:00:17.3: PCI bridge to [bus 16]SUBSYSTEM=pci -[ 1.050452]: pci 0000:00:17.3: bridge window [mem 0xfc700000-0xfc7fffff]SUBSYSTEM=pci -[ 1.050512]: pci 0000:00:17.3: bridge window [mem 0xeac00000-0xeacfffff 64bit pref]SUBSYSTEM=pci -[ 1.055428]: pci 0000:00:17.4: PCI bridge to [bus 17]SUBSYSTEM=pci -[ 1.056382]: pci 0000:00:17.4: bridge window [mem 0xfc300000-0xfc3fffff]SUBSYSTEM=pci -[ 1.056420]: pci 0000:00:17.4: bridge window [mem 0xea800000-0xea8fffff 64bit pref]SUBSYSTEM=pci -[ 1.061327]: pci 0000:00:17.5: PCI bridge to [bus 18]SUBSYSTEM=pci -[ 1.062304]: pci 0000:00:17.5: bridge window [mem 0xfbf00000-0xfbffffff]SUBSYSTEM=pci -[ 1.062342]: pci 0000:00:17.5: bridge window [mem 0xea400000-0xea4fffff 64bit pref]SUBSYSTEM=pci -[ 1.067329]: pci 0000:00:17.6: PCI bridge to [bus 19]SUBSYSTEM=pci -[ 1.068288]: pci 0000:00:17.6: bridge window [mem 0xfbb00000-0xfbbfffff]SUBSYSTEM=pci -[ 1.068327]: pci 0000:00:17.6: bridge window [mem 0xea000000-0xea0fffff 64bit pref]SUBSYSTEM=pci -[ 1.073178]: pci 0000:00:17.7: PCI bridge to [bus 1a]SUBSYSTEM=pci -[ 1.074157]: pci 0000:00:17.7: bridge window [mem 0xfb700000-0xfb7fffff]SUBSYSTEM=pci -[ 1.074196]: pci 0000:00:17.7: bridge window [mem 0xe9c00000-0xe9cfffff 64bit pref]SUBSYSTEM=pci -[ 1.079224]: pci 0000:00:18.0: PCI bridge to [bus 1b]SUBSYSTEM=pci -[ 1.080204]: pci 0000:00:18.0: bridge window [io 0x7000-0x7fff]SUBSYSTEM=pci -[ 1.080240]: pci 0000:00:18.0: bridge window [mem 0xfd200000-0xfd2fffff]SUBSYSTEM=pci -[ 1.080300]: pci 0000:00:18.0: bridge window [mem 0xeb700000-0xeb7fffff 64bit pref]SUBSYSTEM=pci -[ 1.085394]: pci 0000:00:18.1: PCI bridge to [bus 1c]SUBSYSTEM=pci -[ 1.086388]: pci 0000:00:18.1: bridge window [io 0xb000-0xbfff]SUBSYSTEM=pci -[ 1.086409]: pci 0000:00:18.1: bridge window [mem 0xfce00000-0xfcefffff]SUBSYSTEM=pci -[ 1.086448]: pci 0000:00:18.1: bridge window [mem 0xeb300000-0xeb3fffff 64bit pref]SUBSYSTEM=pci -[ 1.091442]: pci 0000:00:18.2: PCI bridge to [bus 1d]SUBSYSTEM=pci -[ 1.092439]: pci 0000:00:18.2: bridge window [mem 0xfca00000-0xfcafffff]SUBSYSTEM=pci -[ 1.092477]: pci 0000:00:18.2: bridge window [mem 0xeaf00000-0xeaffffff 64bit pref]SUBSYSTEM=pci -[ 1.097414]: pci 0000:00:18.3: PCI bridge to [bus 1e]SUBSYSTEM=pci -[ 1.098452]: pci 0000:00:18.3: bridge window [mem 0xfc600000-0xfc6fffff]SUBSYSTEM=pci -[ 1.098491]: pci 0000:00:18.3: bridge window [mem 0xeab00000-0xeabfffff 64bit pref]SUBSYSTEM=pci -[ 1.103589]: pci 0000:00:18.4: PCI bridge to [bus 1f]SUBSYSTEM=pci -[ 1.104581]: pci 0000:00:18.4: bridge window [mem 0xfc200000-0xfc2fffff]SUBSYSTEM=pci -[ 1.104620]: pci 0000:00:18.4: bridge window [mem 0xea700000-0xea7fffff 64bit pref]SUBSYSTEM=pci -[ 1.109710]: pci 0000:00:18.5: PCI bridge to [bus 20]SUBSYSTEM=pci -[ 1.110767]: pci 0000:00:18.5: bridge window [mem 0xfbe00000-0xfbefffff]SUBSYSTEM=pci -[ 1.110806]: pci 0000:00:18.5: bridge window [mem 0xea300000-0xea3fffff 64bit pref]SUBSYSTEM=pci -[ 1.115840]: pci 0000:00:18.6: PCI bridge to [bus 21]SUBSYSTEM=pci -[ 1.116894]: pci 0000:00:18.6: bridge window [mem 0xfba00000-0xfbafffff]SUBSYSTEM=pci -[ 1.116937]: pci 0000:00:18.6: bridge window [mem 0xe9f00000-0xe9ffffff 64bit pref]SUBSYSTEM=pci -[ 1.121980]: pci 0000:00:18.7: PCI bridge to [bus 22]SUBSYSTEM=pci -[ 1.122944]: pci 0000:00:18.7: bridge window [mem 0xfb600000-0xfb6fffff]SUBSYSTEM=pci -[ 1.122982]: pci 0000:00:18.7: bridge window [mem 0xe9b00000-0xe9bfffff 64bit pref]SUBSYSTEM=pci -[ 1.125513]: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) -[ 1.126923]: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) -[ 1.128298]: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) -[ 1.129671]: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.D -[ 1.142142]: SCSI subsystem initialized -[ 1.143044]: libata version 3.00 loaded. -[ 1.143044]: pci 0000:00:0f.0: vgaarb: setting as boot VGA deviceSUBSYSTEM=pci -[ 1.144053]: pci 0000:00:0f.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=noneSUBSYSTEM=pci -[ 1.145589]: pci 0000:00:0f.0: vgaarb: bridge control possibleSUBSYSTEM=pci -[ 1.146906]: vgaarb: loaded -[ 1.147528]: ACPI: bus type USB registered -[ 1.148327]: usbcore: registered new interface driver usbfs -[ 1.149371]: usbcore: registered new interface driver hub0D -[ 1.150431]: usbcore: registered new device driver usb -[ 1.150942]: pps_core: LinuxPPS API ver. 1 registered D -[ 1.151854]: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti \D -[ 1.153522]: PTP clock support registered$/D -[ 1.155018]: EDAC MC: Ver: 3.0.0 -[ 1.156759]: PCI: Using ACPI for IRQ routing -[ 1.203668]: PCI: pci_cache_line_size set to 64 bytesG -[ 1.204539]: e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]G -[ 1.204543]: e820: reserve RAM buffer [mem 0xbfef0000-0xbfffffff](3302884855, -3634996) -[ 3.301554]: registered taskstats version 1 -[ 3.302385]: Loading compiled-in X.509 certificates -[ 3.306442]: Loaded X.509 cert 'Build time autogenerated kernel key: 74e800c0955dd062b621f2c2b30b90827e35b348' -[ 3.308549]: zswap: loaded using pool lzo/zbud -[ 3.317820]: Key type big_key registered -[ 3.322887]: Key type trusted registered -[ 3.327029]: Key type encrypted registered -[ 3.327995]: AppArmor: AppArmor sha1 policy hashing enabled -[ 3.329054]: ima: No TPM chip found, activating TPM-bypass! -[ 3.330112]: ima: Allocated hash algorithm: sha1 -[ 3.331033]: No architecture policies found -[ 3.331850]: evm: Initialising EVM extended attributes: -[ 3.332818]: evm: security.selinux -[ 3.333450]: evm: security.SMACK64 -[ 3.334096]: evm: security.SMACK64EXEC -[ 3.334791]: evm: security.SMACK64TRANSMUTE -[ 3.335603]: evm: security.SMACK64MMAP -[ 3.336296]: evm: security.apparmor -[ 3.336939]: evm: security.ima -[ 3.337502]: evm: security.capabilityb -[ 3.338175]: evm: HMAC attrs: 0x1 -[ 3.339902]: Magic number: 15:444:0Lb -[ 3.340722]: memory memory48: hash matchesSUBSYSTEM=memory -[ 3.341691]: rtc_cmos 00:01: setting system clock to 2019-12-06T00:00:51 UTC (1575590451)SUBSYSTEM=pnp -[ 3.398624]: ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 -[ 3.404121]: scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5SUBSYSTEM=scsi -[ 3.435569]: sr 1:0:0:0: [sr0] scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda traySUBSYSTEM=scsi -[ 3.437309]: cdrom: Uniform CD-ROM driver Revision: 3.20 -[ 3.438961]: sr 1:0:0:0: Attached scsi CD-ROM sr0SUBSYSTEM=scsi -[ 3.439207]: sr 1:0:0:0: Attached scsi generic sg0 type 5SUBSYSTEM=scsi -[ 3.442386]: Freeing unused decrypted memory: 2040K -[ 3.444498]: Freeing unused kernel image memory: 2588K -[ 3.458967]: Write protecting the kernel read-only data: 22528k -[ 3.461021]: Freeing unused kernel image memory: 2016K -[ 3.462581]: Freeing unused kernel image memory: 1728K -[ 3.475820]: x86/mm: Checked W+X mappings: passed, no W+X pages found. -[ 3.477308]: Run /init as init process -[ 3.683425]: VMware vmxnet3 virtual NIC driver - version 1.4.16.0-k-NAPI -[ 3.685278]: piix4_smbus 0000:00:07.3: SMBus Host Controller not enabled!SUBSYSTEM=pci -[ 3.688143]: vmxnet3 0000:03:00.0: # of Tx queues : 2, # of Rx queues : 2SUBSYSTEM=pci -[ 3.691155]: Fusion MPT base driver 3.04.20 -[ 3.692240]: Copyright (c) 1999-2008 LSI Corporation -[ 3.708492]: Fusion MPT SPI Host driver 3.04.20 -[ 3.713130]: input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4Z -[ 3.713713]: vmxnet3 0000:03:00.0 eth0: NIC Link is Up 10000 MbpsSUBSYSTEM=pci -[ 3.716255]: input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3 -[ 3.718374]: mptbase: ioc0: Initiating bringup -[ 3.760237]: vmxnet3 0000:03:00.0 ens160: renamed from eth0SUBSYSTEM=pci -[ 3.827392]: ioc0: LSI53C1030 B0: Capabilities={Initiator} -[ 3.931026]: tsc: Refined TSC clocksource calibration: 2399.993 MHz -[ 3.932288]: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2298310a4a1, max_idle_ns: 440795325953 ns -[ 3.934299]: clocksource: Switched to clocksource tscw -[ 4.067918]: scsi host2: ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17SUBSYSTEM=scsi -[ 4.237443]: scsi 2:0:0:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2SUBSYSTEM=scsi -[ 4.250978]: scsi target2:0:0: Beginning Domain ValidationSUBSYSTEM=scsi -[ 4.253222]: scsi target2:0:0: Domain Validation skipping write testsSUBSYSTEM=scsi -[ 4.254479]: scsi target2:0:0: Ending Domain ValidationSUBSYSTEM=scsi -[ 4.255587]: scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127)SUBSYSTEM=scsi -[ 4.259385]: scsi 2:0:1:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2SUBSYSTEM=scsi -[ 4.271076]: scsi target2:0:1: Beginning Domain ValidationSUBSYSTEM=scsi -[ 4.273418]: scsi target2:0:1: Domain Validation skipping write testsSUBSYSTEM=scsi -[ 4.274740]: scsi target2:0:1: Ending Domain ValidationSUBSYSTEM=scsi -[ 4.275856]: scsi target2:0:1: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127)SUBSYSTEM=scsi -[ 4.279534]: scsi 2:0:2:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2SUBSYSTEM=scsi -[ 4.299046]: scsi target2:0:2: Beginning Domain ValidationSUBSYSTEM=scsi -[ 4.301827]: scsi target2:0:2: Domain Validation skipping write testsSUBSYSTEM=scsi -[ 4.303615]: scsi target2:0:2: Ending Domain ValidationSUBSYSTEM=scsi -[ 4.305152]: scsi target2:0:2: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127)SUBSYSTEM=scsi -[ 4.310452]: scsi 2:0:3:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2SUBSYSTEM=scsi -[ 4.330965]: scsi target2:0:3: Beginning Domain ValidationSUBSYSTEM=scsi -[ 4.332948]: scsi target2:0:3: Domain Validation skipping write testsSUBSYSTEM=scsi -[ 4.334144]: scsi target2:0:3: Ending Domain ValidationSUBSYSTEM=scsi -[ 4.335214]: scsi target2:0:3: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127)SUBSYSTEM=scsi -[ 4.342339]: sd 2:0:0:0: [sda] 146800640 512-byte logical blocks: (75.2 GB/70.0 GiB)SUBSYSTEM=scsi -[ 4.344160]: sd 2:0:0:0: [sda] Write Protect is offSUBSYSTEM=scsi -[ 4.345054]: sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00SUBSYSTEM=scsi -[ 4.345091]: sd 2:0:0:0: [sda] Cache data unavailableSUBSYSTEM=scsi -[ 4.346112]: sd 2:0:0:0: [sda] Assuming drive cache: write throughSUBSYSTEM=scsi -[ 4.347527]: sd 2:0:0:0: Attached scsi generic sg1 type 0SUBSYSTEM=scsi -[ 4.349235]: sd 2:0:1:0: [sdb] 16777216 512-byte logical blocks: (8.59 GB/8.00 GiB)SUBSYSTEM=scsi -[ 4.349842]: sd 2:0:1:0: Attached scsi generic sg2 type 0SUBSYSTEM=scsi -[ 4.351896]: sd 2:0:1:0: [sdb] Write Protect is offSUBSYSTEM=scsi -[ 4.352132]: sd 2:0:2:0: Attached scsi generic sg3 type 0SUBSYSTEM=scsi -[ 4.352865]: sd 2:0:1:0: [sdb] Mode Sense: 61 00 00 00SUBSYSTEM=scsi -[ 4.354072]: sd 2:0:3:0: Attached scsi generic sg4 type 0SUBSYSTEM=scsi -[ 4.355123]: sd 2:0:1:0: [sdb] Cache data unavailableSUBSYSTEM=scsi -[ 4.355210]: sd 2:0:2:0: [sdc] 16777216 512-byte logical blocks: (8.59 GB/8.00 GiB)SUBSYSTEM=scsi -[ 4.356113]: sd 2:0:1:0: [sdb] Assuming drive cache: write throughSUBSYSTEM=scsi -[ 4.357571]: sd 2:0:3:0: [sdd] 16777216 512-byte logical blocks: (8.59 GB/8.00 GiB)SUBSYSTEM=scsi -[ 4.358655]: sd 2:0:2:0: [sdc] Write Protect is offSUBSYSTEM=scsi -[ 4.361514]: sd 2:0:2:0: [sdc] Mode Sense: 61 00 00 00SUBSYSTEM=scsi -[ 4.361558]: sd 2:0:3:0: [sdd] Write Protect is offSUBSYSTEM=scsi -[ 4.361571]: sd 2:0:2:0: [sdc] Cache data unavailableSUBSYSTEM=scsi -[ 4.362485]: sd 2:0:3:0: [sdd] Mode Sense: 61 00 00 00SUBSYSTEM=scsi -[ 4.363435]: sd 2:0:2:0: [sdc] Assuming drive cache: write throughSUBSYSTEM=scsi -[ 4.365134]: sd 2:0:3:0: [sdd] Cache data unavailableSUBSYSTEM=scsi -[ 4.366085]: sd 2:0:3:0: [sdd] Assuming drive cache: write throughSUBSYSTEM=scsi -[ 4.372930]: sda: sda1 sda2 -[ 4.374758]: sd 2:0:0:0: [sda] Attached SCSI diskSUBSYSTEM=scsi -[ 4.378031]: sdb: sdb1 sdb9 -[ 4.379257]: sd 2:0:1:0: [sdb] Attached SCSI diskSUBSYSTEM=scsi -[ 4.384398]: sdc: sdc1 sdc9 -[ 4.386065]: sd 2:0:2:0: [sdc] Attached SCSI diskSUBSYSTEM=scsi -[ 4.407890]: sdd: sdd1 sdd9 -[ 4.409417]: sd 2:0:3:0: [sdd] Attached SCSI diskSUBSYSTEM=scsi -[ 4.610938]: raid6: sse2x4 gen() 11161 MB/s@ -[ 4.658927]: raid6: sse2x4 xor() 7609 MB/sq= -[ 4.706942]: raid6: sse2x2 gen() 9259 MB/stnj -[ 4.754927]: raid6: sse2x2 xor() 4612 MB/s7F -[ 4.802927]: raid6: sse2x1 gen() 4862 MB/s6#! -[ 4.850947]: raid6: sse2x1 xor() 5321 MB/sC0! -[ 4.851778]: raid6: using algorithm sse2x4 gen() 11161 MB/s -[ 4.852791]: raid6: .... xor() 7609 MB/s, rmw enabledSN! -[ 4.853748]: raid6: using ssse3x2 recovery algorithm -[ 4.856594]: xor: automatically using best checksumming function avx ! -[ 4.859698]: async_tx: api initialized (async) -[ 4.907876]: Btrfs loaded, crc32c=crc32c-intel -[ 5.207610]: spl: loading out-of-tree module taints kernel. -[ 5.209040]: spl: module verification failed: signature and/or required key missing - tainting kernel6 -[ 5.213457]: znvpair: module license 'CDDL' taints kernel. -[ 5.214601]: Disabling lock debugging due to kernel taint  -[ 6.957304]: ZFS: Loaded module v0.8.0-delphix+2019.12.03.23-5827876, ZFS pool version 5000, ZFS filesystem version 5zx -[ 23.504452]: systemd[1]: systemd 237 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) +Wy -[ 23.510592]: systemd[1]: Detected virtualization vmware. -[ 23.512238]: systemd[1]: Detected architecture x86-64. -[ 23.548139]: systemd[1]: Set hostname to .}_ -[ 25.211920]: systemd[1]: Reached target Swap.G -[ 25.213749]: systemd[1]: Started Forward Password Requests to Wall Directory Watch. -[ 25.216761]: systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. -[ 25.219965]: systemd[1]: Started Dispatch Password Requests to Console Directory Watch. -[ 25.223174]: systemd[1]: Reached target Paths. -[ 25.224882]: systemd[1]: Reached target Local Encrypted Volumes. -[ 25.395004]: RPC: Registered named UNIX socket transport module. -[ 25.396231]: RPC: Registered udp transport module. -[ 25.396232]: RPC: Registered tcp transport module. -[ 25.396233]: RPC: Registered tcp NFSv4.1 backchannel transport module. -[ 25.471312]: Installing knfsd (copyright (C) 1996 okir@monad.swb.de).I" -[ 26.345068]: vmw_vmci 0000:00:07.7: Found VMCI PCI device at 0x11080, irq 16SUBSYSTEM=pci -[ 26.345182]: vmw_vmci 0000:00:07.7: Using capabilities 0xcSUBSYSTEM=pci -[ 26.345958]: Guest personality initialized and is active -[ 26.346054]: VMCI host device registered (name=vmci, major=10, minor=54) -[ 26.346054]: Initialized host personality{% -[ 26.392296]: parport_pc 00:05: reported by Plug and Play ACPISUBSYSTEM=pnp -[ 26.392523]: parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE] -[ 26.570698]: [drm] DMA map mode: Using physical TTM page addresses. -[ 26.570809]: [drm] Capabilities: -[ 26.570810]: [drm] Rect copy. -[ 26.570810]: [drm] Cursor. -[ 26.570811]: [drm] Cursor bypass. -[ 26.570811]: [drm] Cursor bypass 2.sj/ -[ 26.570812]: [drm] 8bit emulation. -[ 26.570812]: [drm] Alpha cursor. -[ 26.570812]: [drm] Extended Fifo. -[ 26.570812]: [drm] Multimon. -[ 26.570813]: [drm] Pitchlock. -[ 26.570813]: [drm] Irq mask. -[ 26.570813]: [drm] Display Topology. -[ 26.570814]: [drm] GMR.s/ -[ 26.570814]: [drm] Traces. -[ 26.570814]: [drm] GMR2. -[ 26.570815]: [drm] Screen Object 2.w/ -[ 26.570815]: [drm] Command Buffers.\~/ -[ 26.570817]: [drm] Max GMR ids is 64 -[ 26.570817]: [drm] Max number of GMR pages is 65536 -[ 26.570818]: [drm] Max dedicated hypervisor surface memory is 163840 kiB -[ 26.570819]: [drm] Maximum display memory size is 4096 kiB -[ 26.570819]: [drm] VRAM at 0xec000000 size is 4096 kiB -[ 26.570820]: [drm] MMIO at 0xfe000000 size is 256 kiBC60 -[ 26.578666]: [TTM] Zone kernel: Available graphics memory: 3820882 kiB -[ 26.578667]: [TTM] Zone dma32: Available graphics memory: 2097152 kiB -[ 26.578668]: [TTM] Initializing pool allocator -[ 26.578673]: [TTM] Initializing DMA pool allocator -[ 26.578724]: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). -[ 26.578725]: [drm] No driver support for vblank timestamp query. -[ 26.579697]: [drm] Screen Objects Display Unit initialized -[ 26.579773]: [drm] width 800 -[ 26.579783]: [drm] height 480$wG0 -[ 26.579793]: [drm] bpp 320 -[ 26.588992]: [drm] Fifo max 0x00040000 min 0x00001000 cap 0x0000077f -[ 26.601047]: [drm] Using command buffers with DMA pool. -[ 26.601098]: [drm] DX: no. -[ 26.601099]: [drm] Atomic: yes. -[ 26.601099]: [drm] SM4_1: no.R82 -[ 26.612355]: fbcon: svgadrmfb (fb0) is primary devicea2 -[ 26.618913]: Console: switching to colour frame buffer device 100x37 -[ 26.624044]: [drm] Initialized vmwgfx 2.15.0 20180704 for 0000:00:0f.0 on minor 0bB -[ 26.883529]: systemd-journald[743]: Received request to flush runtime journal from PID 1 -[ 26.974338]: RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 10737418240 ms ovfl timer -[ 26.974340]: RAPL PMU: hw unit of domain pp0-core 2^-0 JoulesEG -[ 26.974340]: RAPL PMU: hw unit of domain package 2^-0 Joules -[ 26.974341]: RAPL PMU: hw unit of domain dram 2^-0 JoulesvK -[ 27.030156]: cryptd: max_cpu_qlen set to 1000qMM -[ 27.066751]: AVX version of gcm_enc/dec engaged. -[ 27.066752]: AES CTR mode by8 optimization enabled -[ 27.092199]: ppdev: user-space parallel port driver -[ 27.107466]: systemd-journald[743]: File /var/log/journal/0ed34a0b1ea542ee9183d0310f77479a/system.journal corrupted or uncleanly shut down, renaming and replacing. -[ 27.314691]: EDAC sbridge: Seeking for: PCI ID 8086:0ea0 -[ 27.314708]: EDAC sbridge: Ver: 1.1.2 -[ 28.049671]: NET: Registered protocol family 40 -[ 33.281872]: vmxnet3 0000:03:00.0 ens160: intr type 3, mode 0, 3 vectors allocatedSUBSYSTEM=pci -[ 33.283970]: vmxnet3 0000:03:00.0 ens160: NIC Link is Up 10000 MbpsSUBSYSTEM=pci -[ 37.341904]: NFSD: starting 20-second grace period (net f0000098)kB -[ 48.367758]: Rounding down aligned max_sectors from 4294967295 to 4294967288 -[ 48.368009]: db_root: cannot open: /etc/target -[ 305.339527]: sysrq: SysRq : Trigger a crash -[ 305.340853]: Kernel panic - not syncing: sysrq triggered crash -[ 305.342494]: CPU: 0 PID: 6029 Comm: bash Kdump: loaded Tainted: P OE 5.0.0-36-generic #39~18.04.1-Ubuntu -[ 305.345365]: Hardware name: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 04/14/2014 -[ 305.348417]: Call Trace: -[ 305.349419]: dump_stack+0x63/0x85 -[ 305.350547]: panic+0xfe/0x2a4 -[ 305.351630]: sysrq_handle_crash+0x15/0x20 -[ 305.352892]: __handle_sysrq+0x9f/0x170 -[ 305.354091]: write_sysrq_trigger+0x34/0x40 -[ 305.355360]: proc_reg_write+0x3e/0x60 -[ 305.356526]: __vfs_write+0x1b/0x40 -[ 305.357632]: vfs_write+0xb1/0x1a0 -[ 305.358756]: ksys_write+0x5c/0xe0 -[ 305.359959]: __x64_sys_write+0x1a/0x20 -[ 305.361167]: do_syscall_64+0x5a/0x120 -[ 305.362284]: entry_SYSCALL_64_after_hwframe+0x44/0xa9 -[ 305.363691]: RIP: 0033:0x7faa4ea10154)G -[ 305.364797]: Code: 89 02 48 c7 c0 ff ff ff ff c3 66 2e 0f 1f 84 00 00 00 00 00 66 90 48 8d 05 b1 07 2e 00 8b 00 85 c0 75 13 b8 01 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 54 f3 c3 66 90 41 54 55 49 89 d4 53 48 89 f5 -[ 305.369413]: RSP: 002b:00007ffdad43be68 EFLAGS: 00000246 ORIG_RAX: 0000000000000001 -[ 305.371235]: RAX: ffffffffffffffda RBX: 0000000000000002 RCX: 00007faa4ea10154 -[ 305.372968]: RDX: 0000000000000002 RSI: 000055e5f13d2a20 RDI: 0000000000000001 -[ 305.374703]: RBP: 000055e5f13d2a20 R08: 000000000000000a R09: 0000000000000001 -[ 305.376456]: R10: 000000000000000a R11: 0000000000000246 R12: 00007faa4ecec760 -[ 305.378189]: R13: 0000000000000002 R14: 00007faa4ece82a0 R15: 00007faa4ece7760 -@#$ EXIT CODE $#@ -0 diff --git a/tests/integration/data/regression_output/dump.202303131823/linux/dmesg b/tests/integration/data/regression_output/dump.202303131823/linux/dmesg index 531837c..40a6a51 100644 --- a/tests/integration/data/regression_output/dump.202303131823/linux/dmesg +++ b/tests/integration/data/regression_output/dump.202303131823/linux/dmesg @@ -1,616 +1,613 @@ -[ 0.000000]: Linux version 5.4.0-1097-dx2023030807-1b2b35b91-aws (root@ip-10-110-254-131) (gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)) #105 SMP Wed Mar 8 07:04:20 UTC 2023 (Ubuntu 5.4.0-1097.105-aws 5.4.229) -[ 0.000000]: Command line: BOOT_IMAGE=/ROOT/delphix.i4TlGPg/root@/boot/vmlinuz-5.4.0-1097-dx2023030807-1b2b35b91-aws root=ZFS=rpool/ROOT/delphix.i4TlGPg/root ro console=tty0 console=ttyS0,38400n8 mitigations=off ipv6.disable=1 elevator=noop crashkernel=256M,high crashkernel=256M,low init_on_alloc=0 usbcore.nousb=1 nvme_core.io_timeout=4294967295 earlyprintk=ttyS0,38400n8 rootdelay=300 -[ 0.000000]: KERNEL supported cpus: -[ 0.000000]: Intel GenuineIntel -[ 0.000000]: AMD AuthenticAMD -[ 0.000000]: Hygon HygonGenuine -[ 0.000000]: Centaur CentaurHauls -[ 0.000000]: zhaoxin Shanghai -[ 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: Supporting XSAVE feature 0x008: 'MPX bounds registers' -[ 0.000000]: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR' -[ 0.000000]: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask' -[ 0.000000]: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256' -[ 0.000000]: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256' -[ 0.000000]: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers' -[ 0.000000]: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 -[ 0.000000]: x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64 -[ 0.000000]: x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64 -[ 0.000000]: x86/fpu: xstate_offset[5]: 960, xstate_sizes[5]: 64 -[ 0.000000]: x86/fpu: xstate_offset[6]: 1024, xstate_sizes[6]: 512 -[ 0.000000]: x86/fpu: xstate_offset[7]: 1536, xstate_sizes[7]: 1024 -[ 0.000000]: x86/fpu: xstate_offset[9]: 2560, xstate_sizes[9]: 8 -[ 0.000000]: x86/fpu: Enabled xstate features 0x2ff, context size is 2568 bytes, using 'compacted' format. -[ 0.000000]: BIOS-provided physical RAM map: -[ 0.000000]: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable -[ 0.000000]: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x0000000000100000-0x00000000bffe9fff] usable -[ 0.000000]: BIOS-e820: [mem 0x00000000bffea000-0x00000000bfffffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x00000000e0000000-0x00000000e03fffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x0000000100000000-0x00000002399fffff] usable -[ 0.000000]: BIOS-e820: [mem 0x0000000239a00000-0x000000023fffffff] reserved -[ 0.000000]: printk: bootconsole [earlyser0] enabled -[ 0.000000]: NX (Execute Disable) protection: active -[ 0.000000]: SMBIOS 2.7 present. -[ 0.000000]: DMI: Amazon EC2 t3.large/, BIOS 1.0 10/16/2017 -[ 0.000000]: Hypervisor detected: KVM -[ 0.000000]: kvm-clock: Using msrs 4b564d01 and 4b564d00 -[ 0.000000]: kvm-clock: cpu 0, msr 16a601001, primary cpu clock -[ 0.000000]: kvm-clock: using sched offset of 13651928761 cycles -[ 0.001119]: clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 nsa2A -[ 0.004272]: tsc: Detected 2499.996 MHz processoru_ -[ 0.006256]: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved}_ -[ 0.006258]: e820: remove [mem 0x000a0000-0x000fffff] usable -[ 0.006263]: last_pfn = 0x239a00 max_arch_pfn = 0x400000000 -[ 0.007344]: MTRR default type: write-back -[ 0.007345]: MTRR fixed ranges enabled: -[ 0.007346]: 00000-9FFFF write-back/p -[ 0.007346]: A0000-BFFFF uncachablep -[ 0.007347]: C0000-FFFFF write-protect -[ 0.007348]: MTRR variable ranges enabled: -[ 0.007349]: 0 base 0000C0000000 mask 3FFFC0000000 uncachable -[ 0.007350]: 1 disabled)p -[ 0.007350]: 2 disabled+p -[ 0.007351]: 3 disabled,p -[ 0.007351]: 4 disabled".p -[ 0.007351]: 5 disabled/p -[ 0.007352]: 6 disabled71p -[ 0.007352]: 7 disabled-Tp -[ 0.007361]: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT -[ 0.009294]: last_pfn = 0xbffea max_arch_pfn = 0x400000000 -[ 0.017323]: check: Scanning 1 areas for low memory corruption -[ 0.018427]: kexec: Reserving the low 1M of memory for crashkernel -[ 0.019598]: Kernel/User page tables isolation: disabled on command line.g? -[ 0.020932]: Using GB pages for direct mapping -[ 0.021939]: RAMDISK: [mem 0x35063000-0x36828fff]$L\ -[ 0.022826]: ACPI: Early table checksum verification disabledl -[ 0.023909]: ACPI: RSDP 0x00000000000F8F40 000014 (v00 AMAZON) -[ 0.025017]: ACPI: RSDT 0x00000000BFFEE350 000044 (v01 AMAZON AMZNRSDT 00000001 AMZN 00000001) -[ 0.026643]: ACPI: FACP 0x00000000BFFEFF80 000074 (v01 AMAZON AMZNFACP 00000001 AMZN 00000001) -[ 0.028264]: ACPI: DSDT 0x00000000BFFEE3A0 0010E9 (v01 AMAZON AMZNDSDT 00000001 AMZN 00000001) -[ 0.029872]: ACPI: FACS 0x00000000BFFEFF40 000040$ -[ 0.030742]: ACPI: SSDT 0x00000000BFFEF6C0 00087A (v01 AMAZON AMZNSSDT 00000001 AMZN 00000001) -[ 0.032356]: ACPI: APIC 0x00000000BFFEF5D0 000076 (v01 AMAZON AMZNAPIC 00000001 AMZN 00000001) -[ 0.033967]: ACPI: SRAT 0x00000000BFFEF530 0000A0 (v01 AMAZON AMZNSRAT 00000001 AMZN 00000001) -[ 0.035587]: ACPI: SLIT 0x00000000BFFEF4C0 00006C (v01 AMAZON AMZNSLIT 00000001 AMZN 00000001) -[ 0.037212]: ACPI: WAET 0x00000000BFFEF490 000028 (v01 AMAZON AMZNWAET 00000001 AMZN 00000001) -[ 0.038827]: ACPI: HPET 0x00000000000C9000 000038 (v01 AMAZON AMZNHPET 00000001 AMZN 00000001) -[ 0.040460]: ACPI: SSDT 0x00000000000C9040 00007B (v01 AMAZON AMZNSSDT 00000001 AMZN 00000001) -[ 0.042222]: ACPI: Reserving FACP table memory at [mem 0xbffeff80-0xbffefff3] -[ 0.043565]: ACPI: Reserving DSDT table memory at [mem 0xbffee3a0-0xbffef488]%> -[ 0.044908]: ACPI: Reserving FACS table memory at [mem 0xbffeff40-0xbffeff7f]`a -[ 0.046293]: ACPI: Reserving SSDT table memory at [mem 0xbffef6c0-0xbffeff39] -[ 0.047651]: ACPI: Reserving APIC table memory at [mem 0xbffef5d0-0xbffef645]s -[ 0.049050]: ACPI: Reserving SRAT table memory at [mem 0xbffef530-0xbffef5cf]?Y -[ 0.050420]: ACPI: Reserving SLIT table memory at [mem 0xbffef4c0-0xbffef52b]# -[ 0.051848]: ACPI: Reserving WAET table memory at [mem 0xbffef490-0xbffef4b7]+ -[ 0.053202]: ACPI: Reserving HPET table memory at [mem 0xc9000-0xc9037] -[ 0.054442]: ACPI: Reserving SSDT table memory at [mem 0xc9040-0xc90ba] -[ 0.055784]: ACPI: Local APIC address 0xfee00000 -[ 0.055866]: SRAT: PXM 0 -> APIC 0x00 -> Node 0 -[ 0.056733]: SRAT: PXM 0 -> APIC 0x01 -> Node 0 -[ 0.057573]: ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0xbfffffff]8 -[ 0.058800]: ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x23fffffff] -[ 0.059991]: NUMA: Initialized distance table, cnt=1 -[ 0.059993]: NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x2399fffff] -> [mem 0x00000000-0x2399fffff]8( -[ 0.062072]: NODE_DATA(0) allocated [mem 0x2399d4000-0x2399fefff]Y -[ 0.063592]: Reserving 256MB of low memory at 2800MB for crashkernel (System low RAM: 3071MB)8 -[ 0.065222]: Reserving 256MB of memory at 8848MB for crashkernel (System RAM: 8089MB)t  -[ 0.066784]: Zone ranges: -[ 0.067298]: DMA [mem 0x0000000000001000-0x0000000000ffffff] -[ 0.068563]: DMA32 [mem 0x0000000001000000-0x00000000ffffffff] -[ 0.069740]: Normal [mem 0x0000000100000000-0x00000002399fffff] -[ 0.070918]: Device emptyppB -[ 0.071463]: Movable zone start for each nodeN -[ 0.072278]: Early memory node rangesIY -[ 0.072960]: node 0: [mem 0x0000000000001000-0x000000000009efff] -[ 0.074159]: node 0: [mem 0x0000000000100000-0x00000000bffe9fff] -[ 0.075375]: node 0: [mem 0x0000000100000000-0x00000002399fffff] -[ 0.076825]: Zeroed struct page in unavailable ranges: 26232 pages -[ 0.076826]: Initmem setup node 0 [mem 0x0000000000001000-0x00000002399fffff] -[ 0.079348]: On node 0 totalpages: 2070920 -[ 0.079349]: DMA zone: 64 pages used for memmapȺ -[ 0.079349]: DMA zone: 158 pages reserved -[ 0.079350]: DMA zone: 3998 pages, LIFO batch:0 -[ 0.079406]: DMA32 zone: 12224 pages used for memmap -[ 0.079406]: DMA32 zone: 782314 pages, LIFO batch:63 -[ 0.090744]: Normal zone: 20072 pages used for memmap -[ 0.090745]: Normal zone: 1284608 pages, LIFO batch:63 -[ 0.107899]: ACPI: PM-Timer IO Port: 0xb008 -[ 0.108699]: ACPI: Local APIC address 0xfee00000 -[ 0.108708]: ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) -[ 0.109886]: IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 -[ 0.111230]: ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) -[ 0.112526]: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) -[ 0.113812]: ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) -[ 0.115122]: ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) -[ 0.116439]: ACPI: IRQ5 used by override. -[ 0.116439]: ACPI: IRQ9 used by override.. -[ 0.116440]: ACPI: IRQ10 used by override. -[ 0.116440]: ACPI: IRQ11 used by override. -[ 0.116442]: Using ACPI (MADT) for SMP configuration information -[ 0.117584]: ACPI: HPET id: 0x8086a201 base: 0xfed00000 -[ 0.118569]: TSC deadline timer availableb -[ 0.119337]: smpboot: Allowing 2 CPUs, 0 hotplug CPUs- -[ 0.120393]: PM: Registered nosave memory: [mem 0x00000000-0x00000fff] -[ 0.121647]: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff] -[ 0.122903]: PM: Registered nosave memory: [mem 0x000a0000-0x000effff] -[ 0.124155]: PM: Registered nosave memory: [mem 0x000f0000-0x000fffff] -[ 0.125406]: PM: Registered nosave memory: [mem 0xbffea000-0xbfffffff] -[ 0.126650]: PM: Registered nosave memory: [mem 0xc0000000-0xdfffffff] -[ 0.127888]: PM: Registered nosave memory: [mem 0xe0000000-0xe03fffff] -[ 0.129137]: PM: Registered nosave memory: [mem 0xe0400000-0xfffbffff] -[ 0.130372]: PM: Registered nosave memory: [mem 0xfffc0000-0xffffffff] -[ 0.131601]: [mem 0xc0000000-0xdfffffff] available for PCI devices -[ 0.132778]: Booting paravirtualized kernel on KVM -[ 0.133689]: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns -[ 0.135724]: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -[ 0.137568]: percpu: Embedded 59 pages/cpu s204800 r8192 d28672 u1048576 -[ 0.138858]: pcpu-alloc: s204800 r8192 d28672 u1048576 alloc=1*2097152 -[ 0.138859]: pcpu-alloc: [0] 0 1 %G -[ 0.138880]: setup async PF for cpu 0CQ -[ 0.139575]: kvm-stealtime: cpu 0, msr 239631040 -[ 0.140468]: PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear) -[ 0.142048]: Built 1 zonelists, mobility grouping on. Total pages: 2038402 -[ 0.143364]: Policy zone: Normal -[ 0.143961]: Kernel command line: BOOT_IMAGE=/ROOT/delphix.i4TlGPg/root@/boot/vmlinuz-5.4.0-1097-dx2023030807-1b2b35b91-aws root=ZFS=rpool/ROOT/delphix.i4TlGPg/root ro console=tty0 console=ttyS0,38400n8 mitigations=off ipv6.disable=1 elevator=noop crashkernel=256M,high crashkernel=256M,low init_on_alloc=0 usbcore.nousb=1 nvme_core.io_timeout=4294967295 earlyprintk=ttyS0,38400n8 rootdelay=300 -[ 0.151904]: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear) -[ 0.154017]: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) -[ 0.155542]: mem auto-init: stack:off, heap alloc:off, heap free:off -[ 0.166060]: Calgary: detecting Calgary via BIOS EBDA area -[ 0.166070]: Calgary: Unable to locate Rio Grande table in EBDA - bailing! -[ 0.183471]: Memory: 7491616K/8283680K available (12291K kernel code, 2188K rwdata, 8040K rodata, 2544K init, 5380K bss, 792064K reserved, 0K cma-reserved) -[ 0.186356]: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 -[ 0.187606]: ftrace: allocating 38930 entries in 153 pages -[ 0.202206]: rcu: Hierarchical RCU implementation. -[ 0.203112]: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=2. -[ 0.204428]: Tasks RCU enabled. -[ 0.205031]: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. -[ 0.206473]: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2ُ -[ 0.210210]: NR_IRQS: 524544, nr_irqs: 440, preallocated irqs: 16˛ -[ 0.211536]: random: crng init done -[ 0.276833]: Console: colour VGA+ 80x25 -[ 0.798264]: printk: console [tty0] enabled -[ 0.801794]: printk: console [ttyS0] enabled -[ 0.806170]: printk: bootconsole [earlyser0] disabledSTV0 -[ 0.810964]: ACPI: Core revision 201908160 -[ 0.814587]: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 30580167144 ns -[ 0.878708]: APIC: Switch to symmetric I/O mode setupz4 -[ 0.883039]: x2apic enabled -[ 0.886421]: Switched APIC routing to physical x2apic. -[ 0.892164]: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x24093623c91, max_idle_ns: 440795291220 ns5 -[ 0.899979]: Calibrating delay loop (skipped) preset value.. 4999.99 BogoMIPS (lpj=9999984) -[ 0.903975]: pid_max: default: 32768 minimum: 301p5 -[ 0.903975]: LSM: Security Framework initializingp5 -[ 0.903975]: Yama: becoming mindful. -[ 0.903975]: AppArmor: AppArmor initialized -[ 0.903975]: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) -[ 0.903975]: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) -[ 0.903975]: *** VALIDATE tmpfs *** -[ 0.903975]: *** VALIDATE proc *** -[ 0.903975]: *** VALIDATE cgroup1 ***p5 -[ 0.903975]: *** VALIDATE cgroup2 ***p5 -[ 0.903975]: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8 -[ 0.903975]: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4p5 -[ 0.903975]: Speculative Store Bypass: Vulnerablep5 -[ 0.903975]: Freeing SMP alternatives memory: 36Kp5 -[ 0.903975]: smpboot: CPU0: Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz (family: 0x6, model: 0x55, stepping: 0x7) -[ 0.904074]: Performance Events: unsupported p6 CPU model 85 no PMU driver, software events only.|6 -[ 0.908033]: rcu: Hierarchical SRCU implementation. -[ 0.912309]: NMI watchdog: Perf NMI watchdog permanently disabled6 -[ 0.916039]: smp: Bringing up secondary CPUs ... -[ 0.919826]: x86: Booting SMP configuration: -[ 0.919983]: .... node #0, CPUs: #1GE) -[ 0.692448]: kvm-clock: cpu 1, msr 16a601041, secondary cpu clockl6 -[ 0.922446]: setup async PF for cpu 1p7 -[ 0.923975]: kvm-stealtime: cpu 1, msr 239731040 -[ 0.932030]: smp: Brought up 1 node, 2 CPUs -[ 0.935980]: smpboot: Max logical packages: 19 -[ 0.939574]: smpboot: Total of 2 processors activated (9999.98 BogoMIPS) -[ 0.940488]: devtmpfs: initialized -[ 0.943236]: x86/mm: Memory block size: 128MB\_8 -[ 0.948068]: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns -[ 0.951990]: futex hash table entries: 512 (order: 3, 32768 bytes, linear) -[ 0.960242]: PM: RTC time: 17:56:05, date: 2023-03-13v9 -[ 0.964096]: NET: Registered protocol family 16 -[ 0.967863]: audit: initializing netlink subsys (disabled) -[ 0.972002]: audit: type=2000 audit(1678730165.177:1): state=initialized audit_enabled=0 res=1 -[ 0.979987]: cpuidle: using governor ladder -[ 0.983630]: cpuidle: using governor menu8ҧ: -[ 0.984076]: ACPI: bus type PCI registered -[ 0.987770]: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -[ 0.988078]: PCI: Using configuration type 1 for base access -[ 0.993286]: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages]; -[ 0.995987]: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pagesQ-; -[ 1.000025]: ACPI: Added _OSI(Module Device) -[ 1.003985]: ACPI: Added _OSI(Processor Device) -[ 1.007633]: ACPI: Added _OSI(3.0 _SCP Extensions) -[ 1.007988]: ACPI: Added _OSI(Processor Aggregator Device) -[ 1.011980]: ACPI: Added _OSI(Linux-Dell-Video) -[ 1.015614]: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)ʞ< -[ 1.015979]: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) -[ 1.020707]: ACPI: 3 ACPI AML tables successfully acquired and loaded= -[ 1.024897]: ACPI: Interpreter enabled -[ 1.027988]: ACPI: (supports S0 S4 S5) -[ 1.031334]: ACPI: Using IOAPIC for interrupt routing= -[ 1.031995]: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug= -[ 1.036309]: ACPI: Enabled 16 GPEs in block 00 to 0F -[ 1.042106]: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -[ 1.043988]: acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3]SUBSYSTEM=acpi -[ 1.047989]: acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.SUBSYSTEM=acpi -[ 1.052282]: acpiphp: Slot [3] registered$u> -[ 1.055749]: acpiphp: Slot [4] registered?> -[ 1.055997]: acpiphp: Slot [5] registered%? -[ 1.059451]: acpiphp: Slot [6] registered;=.? -[ 1.059994]: acpiphp: Slot [7] registeredc? -[ 1.063494]: acpiphp: Slot [8] registeredDk? -[ 1.063994]: acpiphp: Slot [9] registeredK̟? -[ 1.067437]: acpiphp: Slot [10] registered -[ 1.067996]: acpiphp: Slot [11] registered -[ 1.071445]: acpiphp: Slot [12] registered -[ 1.071998]: acpiphp: Slot [13] registered -[ 1.075487]: acpiphp: Slot [14] registered -[ 1.075994]: acpiphp: Slot [15] registered -[ 1.079491]: acpiphp: Slot [16] registered -[ 1.079996]: acpiphp: Slot [17] registered -[ 1.083514]: acpiphp: Slot [18] registered -[ 1.084000]: acpiphp: Slot [19] registered -[ 1.087461]: acpiphp: Slot [20] registered -[ 1.087994]: acpiphp: Slot [21] registered -[ 1.091467]: acpiphp: Slot [22] registered -[ 1.091995]: acpiphp: Slot [23] registered -[ 1.095665]: acpiphp: Slot [24] registered -[ 1.095996]: acpiphp: Slot [25] registered -[ 1.099469]: acpiphp: Slot [26] registered -[ 1.099994]: acpiphp: Slot [27] registered -[ 1.103433]: acpiphp: Slot [28] registered -[ 1.103994]: acpiphp: Slot [29] registered -[ 1.107464]: acpiphp: Slot [30] registered -[ 1.107995]: acpiphp: Slot [31] registered -[ 1.111457]: PCI host bridge to bus 0000:00 -[ 1.111988]: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]SUBSYSTEM=pci_bus -[ 1.116016]: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]SUBSYSTEM=pci_bus -[ 1.119982]: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]SUBSYSTEM=pci_bus -[ 1.123981]: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]SUBSYSTEM=pci_bus -[ 1.127981]: pci_bus 0000:00: root bus resource [bus 00-ff]SUBSYSTEM=pci_bus -[ 1.132023]: pci 0000:00:00.0: [8086:1237] type 00 class 0x060000SUBSYSTEM=pci -[ 1.136673]: pci 0000:00:01.0: [8086:7000] type 00 class 0x060100SUBSYSTEM=pci -[ 1.141097]: pci 0000:00:01.3: [8086:7113] type 00 class 0x000000SUBSYSTEM=pci -[ 1.144862]: pci 0000:00:01.3: quirk: [io 0xb000-0xb03f] claimed by PIIX4 ACPISUBSYSTEM=pci -[ 1.147995]: pci 0000:00:01.3: quirk: [io 0xb100-0xb10f] claimed by PIIX4 SMBSUBSYSTEM=pci -[ 1.152041]: pci 0000:00:01.3: PIIX4 devres E PIO at fff0-ffffSUBSYSTEM=pci -[ 1.155996]: pci 0000:00:01.3: PIIX4 devres F MMIO at ffc00000-ffffffffSUBSYSTEM=pci -[ 1.159994]: pci 0000:00:01.3: PIIX4 devres G PIO at fff0-ffffSUBSYSTEM=pci -[ 1.163998]: pci 0000:00:01.3: PIIX4 devres H MMIO at ffc00000-ffffffffSUBSYSTEM=pci -[ 1.167997]: pci 0000:00:01.3: PIIX4 devres I PIO at fff0-ffffSUBSYSTEM=pci -[ 1.171997]: pci 0000:00:01.3: PIIX4 devres J PIO at fff0-ffffSUBSYSTEM=pci -[ 1.175984]: pci 0000:00:01.3: quirk_piix4_acpi+0x0/0x170 took 31250 usecsSUBSYSTEM=pci -[ 1.180804]: pci 0000:00:03.0: [1d0f:1111] type 00 class 0x030000SUBSYSTEM=pci -[ 1.184672]: pci 0000:00:03.0: reg 0x10: [mem 0xfe400000-0xfe7fffff pref]SUBSYSTEM=pci -[ 1.190200]: pci 0000:00:03.0: reg 0x30: [mem 0xfebe0000-0xfebeffff pref]SUBSYSTEM=pci -[ 1.192597]: pci 0000:00:04.0: [1d0f:8061] type 00 class 0x010802SUBSYSTEM=pci -[ 1.197432]: pci 0000:00:04.0: reg 0x10: [mem 0xfebf0000-0xfebf3fff]SUBSYSTEM=pci -[ 1.204837]: pci 0000:00:05.0: [1d0f:ec20] type 00 class 0x020000SUBSYSTEM=pci -[ 1.208814]: pci 0000:00:05.0: reg 0x10: [mem 0xfebf4000-0xfebf7fff]SUBSYSTEM=pci -[ 1.223926]: ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) -[ 1.224092]: ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) -[ 1.228078]: ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) -[ 1.232074]: ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) -[ 1.236027]: ACPI: PCI Interrupt Link [LNKS] (IRQs *9) -[ 1.240182]: iommu: Default domain type: Translated -[ 1.244093]: SCSI subsystem initialized -[ 1.247653]: pci 0000:00:03.0: vgaarb: setting as boot VGA deviceSUBSYSTEM=pci -[ 1.247975]: pci 0000:00:03.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=noneSUBSYSTEM=pci -[ 1.247986]: pci 0000:00:03.0: vgaarb: bridge control possibleSUBSYSTEM=pci -[ 1.251979]: vgaarb: loaded -[ 1.254969]: pps_core: LinuxPPS API ver. 1 registeredJ -[ 1.255979]: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti lK -[ 1.259982]: PTP clock support registeredNK -[ 1.263445]: EDAC MC: Ver: 3.0.0 -[ 1.264172]: PCI: Using ACPI for IRQ routing -[ 1.267980]: PCI: pci_cache_line_size set to 64 bytesK -[ 1.268117]: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]K -[ 1.268119]: e820: reserve RAM buffer [mem 0xbffea000-0xbfffffff]K -[ 1.268119]: e820: reserve RAM buffer [mem 0x239a00000-0x23bffffff] -[ 1.268212]: NetLabel: Initializing -[ 1.271465]: NetLabel: domain hash size = 128 -[ 1.271979]: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO#L -[ 1.275994]: NetLabel: unlabeled traffic allowed by default -[ 1.280075]: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 -[ 1.283980]: hpet0: 8 comparators, 32-bit 62.500000 MHz counter -[ 1.291086]: clocksource: Switched to clocksource kvm-clock -[ 1.302800]: *** VALIDATE bpf ***'M -[ 1.306040]: VFS: Disk quotas dquot_6.6.0 N -[ 1.309477]: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) -[ 1.314151]: *** VALIDATE ramfs *** -[ 1.317364]: *** VALIDATE hugetlbfs *** -[ 1.321014]: AppArmor: AppArmor Filesystem Enabled -[ 1.324788]: pnp: PnP ACPI init -[ 1.327923]: pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)SUBSYSTEM=pnp -[ 1.327954]: pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)SUBSYSTEM=pnp -[ 1.327971]: pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)SUBSYSTEM=pnp -[ 1.328026]: pnp 00:03: Plug and Play ACPI device, IDs PNP0400 (active)SUBSYSTEM=pnp -[ 1.328066]: pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)SUBSYSTEM=pnp -[ 1.328267]: pnp: PnP ACPI: found 5 devices -[ 1.334290]: thermal_sys: Registered thermal governor 'fair_share' -[ 1.334291]: thermal_sys: Registered thermal governor 'bang_bang' O -[ 1.338640]: thermal_sys: Registered thermal governor 'step_wise' P -[ 1.342951]: thermal_sys: Registered thermal governor 'user_space' -[ 1.347229]: thermal_sys: Registered thermal governor 'power_allocator' -[ 1.356196]: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns -[ 1.367868]: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]SUBSYSTEM=pci_bus -[ 1.372245]: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]SUBSYSTEM=pci_bus -[ 1.376632]: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]SUBSYSTEM=pci_bus -[ 1.381288]: pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfebfffff window]SUBSYSTEM=pci_bus -[ 1.386109]: NET: Registered protocol family 2 -[ 1.390127]: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear) -[ 1.397849]: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear) -[ 1.506007]: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear) -[ 1.512891]: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)ݒZ -[ 1.519574]: TCP: Hash tables configured (established 65536 bind 65536) -[ 1.524296]: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear) -[ 1.528936]: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear) -[ 1.535468]: NET: Registered protocol family 1 -[ 1.539079]: NET: Registered protocol family 44 -[ 1.542775]: pci 0000:00:00.0: Limiting direct PCI/PCI transfersSUBSYSTEM=pci -[ 1.547154]: pci 0000:00:01.0: Activating ISA DMA hang workaroundsSUBSYSTEM=pci -[ 1.551596]: pci 0000:00:03.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]SUBSYSTEM=pci -[ 1.558581]: PCI: CLS 0 bytes, default 64] -[ 1.562056]: Trying to unpack rootfs image as initramfs... -[ 1.622341]: Freeing initrd memory: 24344K -[ 1.625898]: PCI-DMA: Using software bounce buffering for IO (SWIOTLB) -[ 1.630391]: software IO TLB: mapped [mem 0xab000000-0xaf000000] (64MB) -[ 1.635003]: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x24093623c91, max_idle_ns: 440795291220 ns -[ 1.642633]: clocksource: Switched to clocksource tsc$b -[ 1.646584]: check: Scanning for low memory corruption every 60 seconds -[ 1.651481]: Initialise system trusted keyrings -[ 1.655168]: Key type blacklist registered -[ 1.658724]: workingset: timestamp_bits=36 max_order=21 bucket_order=0 -[ 1.664259]: zbud: loaded}bc -[ 1.667398]: squashfs: version 4.0 (2009/01/31) Phillip Lougher -[ 1.671628]: fuse: init (API version 7.31) -[ 1.675138]: *** VALIDATE fuse *** -[ 1.678334]: *** VALIDATE fuse *** -[ 1.681610]: Platform Keyring initializedd -[ 1.687650]: Key type asymmetric registered -[ 1.691166]: Asymmetric key parser 'x509' registered -[ 1.694985]: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)ke -[ 1.701561]: io scheduler mq-deadline registered -[ 1.705403]: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4]e -[ 1.710101]: intel_idle: Please enable MWAIT in BIOS SETUP -[ 1.710152]: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0ERf -[ 1.716706]: ACPI: Power Button [PWRF] -[ 1.720106]: input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1f -[ 1.726787]: ACPI: Sleep Button [SLPF] -[ 1.730349]: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -[ 1.762165]: 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A -[ 1.896055]: loop: module loaded -[ 1.899645]: nvme nvme0: pci function 0000:00:04.0SUBSYSTEM=nvme -[ 1.903576]: tun: Universal TUN/TAP device driver, 1.6 -[ 1.903963]: PCI Interrupt Link [LNKD] enabled at IRQ 11 -[ 1.911770]: PPP generic driver version 2.4.2\.r -[ 1.915641]: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 -[ 1.922818]: i8042: Warning: Keylock active -[ 1.927745]: serio: i8042 KBD port at 0x60,0x64 irq 1#s -[ 1.931728]: serio: i8042 AUX port at 0x60,0x64 irq 12 -[ 1.936081]: mousedev: PS/2 mouse device common for all mice -[ 1.941215]: device-mapper: uevent: version 1.0.3IZs -[ 1.945393]: device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com$at -[ 1.952567]: intel_pstate: CPU model not supported -[ 1.956651]: drop_monitor: Initializing network drop monitor service -[ 1.961531]: IPv6: Loaded, but administratively disabled, reboot required to enable -[ 1.968482]: NET: Registered protocol family 17 -[ 1.972487]: Key type dns_resolver registeredu -[ 1.976435]: RAS: Correctable Errors collector initialized. -[ 1.980719]: IPI shorthand broadcast: enabledGv -[ 1.984364]: sched_clock: Marking stable (1295906341, 688448583)->(2210674289, -226319365) -[ 1.991418]: registered taskstats version 1 -[ 1.994990]: Loading compiled-in X.509 certificates -[ 1.999457]: Loaded X.509 cert 'Build time autogenerated kernel key: d75159e73df885c74bd5a7099453852c8f4d6183' -[ 2.007673]: Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969' -[ 2.015743]: Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19' -[ 2.023648]: blacklist: Loading compiled-in revocation X.509 certificates=x -[ 2.028289]: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'8 -Yy -[ 2.035878]: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03' -[ 2.043740]: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b' -[ 2.051719]: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8' -[ 2.059619]: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d' -[ 2.067591]: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c' -[ 2.075613]: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af' -[ 2.083681]: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9' -[ 2.092033]: zswap: loaded using pool lzo/zbud -[ 2.095788]: Key type ._fscrypt registered -[ 2.099272]: Key type .fscrypt registeredΉ} -[ 2.107017]: Key type big_key registered -[ 2.112506]: Key type encrypted registered -[ 2.116284]: AppArmor: AppArmor sha1 policy hashing enabled -[ 2.120466]: ima: No TPM chip found, activating TPM-bypass! -[ 2.124769]: ima: Allocated hash algorithm: sha1 -[ 2.128503]: ima: No architecture policies found -[ 2.132741]: nvme nvme0: 2/0/0 default/read/poll queuesSUBSYSTEM=nvme -[ 2.132821]: evm: Initialising EVM extended attributes: -[ 2.141113]: evm: security.selinux -[ 2.141196]: nvme0n1: p1 p2 -[ 2.144474]: evm: security.SMACK64 -[ 2.144475]: evm: security.SMACK64EXEC -[ 2.144475]: evm: security.SMACK64TRANSMUTE -[ 2.144476]: evm: security.SMACK64MMAP -[ 2.144476]: evm: security.apparmor -[ 2.144476]: evm: security.ima -[ 2.144477]: evm: security.capability4% -[ 2.144478]: evm: HMAC attrs: 0x1 -[ 2.174228]: PM: Magic number: 15:651:946 -[ 2.177840]: tty tty3: hash matchesSUBSYSTEM=tty -[ 2.181148]: processor cpu1: hash matchesSUBSYSTEM=cpu -[ 2.193024]: Freeing unused decrypted memory: 2040K -[ 2.197523]: Freeing unused kernel image memory: 2544K -[ 2.203996]: Write protecting the kernel read-only data: 22528k -[ 2.208898]: Freeing unused kernel image memory: 2036K -[ 2.212942]: Freeing unused kernel image memory: 152K$ -[ 2.224599]: x86/mm: Checked W+X mappings: passed, no W+X pages found. -[ 2.229152]: Run /init as init process -[ 2.283584]: piix4_smbus 0000:00:01.3: SMBus Host Controller at 0xb100, revision 255SUBSYSTEM=pci -[ 2.292202]: ena: ENA device version: 0.10 -[ 2.296115]: ena: ENA controller version: 0.0.1 implementation version 1 -[ 2.310155]: ena 0000:00:05.0: LLQ is not supported Fallback to host mode policy.SUBSYSTEM=pci -[ 2.324595]: ena 0000:00:05.0: Elastic Network Adapter (ENA) found at mem febf4000, mac addr 02:9a:a6:27:9f:6dSUBSYSTEM=pci -[ 2.333273]: ena 0000:00:05.0 enx029aa6279f6d: renamed from eth0SUBSYSTEM=pci -[ 2.468686]: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 -[ 4.407990]: raid6: avx512x4 gen() 24863 MB/s  -[ 4.459992]: raid6: avx512x4 xor() 12019 MB/s  -[ 4.512008]: raid6: avx512x2 gen() 24425 MB/s( -[ 4.563990]: raid6: avx512x2 xor() 16072 MB/s$ -[ 4.616131]: raid6: avx512x1 gen() 16215 MB/s; -[ 4.667989]: raid6: avx512x1 xor() 12469 MB/sU -[ 4.720017]: raid6: avx2x4 gen() 21148 MB/s}n -[ 4.771998]: raid6: avx2x4 xor() 13037 MB/s B -[ 4.823990]: raid6: avx2x2 gen() 18256 MB/s " -[ 4.880503]: raid6: avx2x2 xor() 8608 MB/s(!% -[ 4.931985]: raid6: avx2x1 gen() 14485 MB/s˚) -[ 4.983986]: raid6: avx2x1 xor() 9904 MB/st+ -[ 5.031984]: raid6: sse2x4 gen() 9563 MB/so. -[ 5.079986]: raid6: sse2x4 xor() 6060 MB/s1 -[ 5.127989]: raid6: sse2x2 gen() 8856 MB/sw:4 -[ 5.175982]: raid6: sse2x2 xor() 5636 MB/sҜ7 -[ 5.227991]: raid6: sse2x1 gen() 7826 MB/se'y: -[ 5.275985]: raid6: sse2x1 xor() 4561 MB/s -: -[ 5.280144]: raid6: using algorithm avx512x4 gen() 24863 MB/sT: -[ 5.284618]: raid6: .... xor() 12019 MB/s, rmw enabled -[ 5.288861]: raid6: using avx512x2 recovery algorithmΊ; -[ 5.293919]: async_tx: api initialized (async) -[ 5.298611]: xor: automatically using best checksumming function avx -[ 5.337383]: spl: loading out-of-tree module taints kernel. -[ 5.342024]: spl: module verification failed: signature and/or required key missing - tainting kernel6 ? -[ 5.352535]: zfs: module license 'CDDL' taints kernel. -[ 5.356691]: Disabling lock debugging due to kernel taint" -[ 6.552395]: ZFS: Loaded module v2.1.99-delphix+2023.03.11.01-ab8da03, ZFS pool version 5000, ZFS filesystem version 5 -[ 15.455890]: systemd[1]: Inserted module 'autofs4' -[ 15.908114]: systemd[1]: systemd 245.4-4ubuntu3.20 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid) -[ 15.927680]: systemd[1]: Detected virtualization kvm.d -[ 15.932432]: systemd[1]: Detected architecture x86-64. -[ 15.940533]: pci 0000:00:1f.0: [1d0f:8061] type 00 class 0x010802SUBSYSTEM=pci -[ 15.946012]: pci 0000:00:1f.0: reg 0x10: [mem 0x00000000-0x00003fff]SUBSYSTEM=pci -[ 15.953784]: pci 0000:00:1f.0: BAR 0: assigned [mem 0xc0000000-0xc0003fff]SUBSYSTEM=pci -[ 15.959013]: nvme nvme1: pci function 0000:00:1f.0SUBSYSTEM=nvme -[ 15.963463]: nvme 0000:00:1f.0: enabling device (0000 -> 0002)SUBSYSTEM=pci -[ 16.094367]: PCI Interrupt Link [LNKC] enabled at IRQ 10 -[ 16.213554]: nvme nvme1: 2/0/0 default/read/poll queuesSUBSYSTEM=nvme -[ 16.266772]: systemd[1]: Set hostname to .< -[ 16.311444]: pci 0000:00:1e.0: [1d0f:8061] type 00 class 0x010802SUBSYSTEM=pci -[ 16.316808]: pci 0000:00:1e.0: reg 0x10: [mem 0x00000000-0x00003fff]SUBSYSTEM=pci -[ 16.323142]: pci 0000:00:1e.0: BAR 0: assigned [mem 0xc0004000-0xc0007fff]SUBSYSTEM=pci -[ 16.329601]: nvme nvme2: pci function 0000:00:1e.0SUBSYSTEM=nvme -[ 16.333977]: nvme 0000:00:1e.0: enabling device (0000 -> 0002)SUBSYSTEM=pci -[ 16.341218]: PCI Interrupt Link [LNKB] enabled at IRQ 10 -[ 16.460554]: nvme nvme2: 2/0/0 default/read/poll queuesSUBSYSTEM=nvme -[ 16.487284]: pci 0000:00:1d.0: [1d0f:8061] type 00 class 0x010802SUBSYSTEM=pci -[ 16.492243]: pci 0000:00:1d.0: reg 0x10: [mem 0x00000000-0x00003fff]SUBSYSTEM=pci -[ 16.498768]: pci 0000:00:1d.0: BAR 0: assigned [mem 0xc0008000-0xc000bfff]SUBSYSTEM=pci -[ 16.504697]: nvme nvme3: pci function 0000:00:1d.0SUBSYSTEM=nvme -[ 16.509726]: nvme 0000:00:1d.0: enabling device (0000 -> 0002)SUBSYSTEM=pci -[ 16.518138]: PCI Interrupt Link [LNKA] enabled at IRQ 11 -[ 16.525239]: systemd[1]: Initializing machine ID from KVM UUID. -[ 16.636454]: nvme nvme3: 2/0/0 default/read/poll queuesSUBSYSTEM=nvme -[ 19.763645]: systemd[1]: Created slice system-delphix\x2dpostgres.slice. -[ 19.771668]: systemd[1]: Created slice system-modprobe.slice.x -[ 19.779451]: systemd[1]: Created slice system-serial\x2dgetty.slice. -[ 19.787408]: systemd[1]: Created slice User and Session Slice. -[ 19.795015]: systemd[1]: Started ntp-systemd-netif.path. -[ 19.801986]: systemd[1]: Started Dispatch Password Requests to Console Directory Watch. -[ 19.813433]: systemd[1]: Started Forward Password Requests to Wall Directory Watch. -[ 19.826295]: systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. -[ 19.837773]: systemd[1]: Reached target Local Encrypted Volumes. -[ 19.846051]: systemd[1]: Reached target Paths. -[ 19.852320]: systemd[1]: Reached target Slices. -[ 19.859128]: systemd[1]: Reached target Swap.fŤ -[ 19.944269]: systemd[1]: Listening on Syslog Socket. -[ 19.952877]: systemd[1]: Listening on initctl Compatibility Named Pipe. -[ 19.968146]: systemd[1]: Listening on Journal Audit Socket. -[ 19.980201]: systemd[1]: Listening on Journal Socket (/dev/log). -[ 19.987463]: systemd[1]: Listening on Journal Socket.6( -[ 20.001067]: systemd[1]: Listening on Network Service Netlink Socket. -[ 20.009909]: systemd[1]: Listening on udev Control Socket. -[ 20.022761]: systemd[1]: Listening on udev Kernel Socket.I  -[ 20.032893]: systemd[1]: Mounting Huge Pages File System... -[ 20.041072]: systemd[1]: Mounting POSIX Message Queue File System... -[ 20.051010]: systemd[1]: Mounting NFSD configuration filesystem... -[ 20.064374]: systemd[1]: Mounting RPC Pipe File System...jh -[ 20.072404]: systemd[1]: Mounting Kernel Debug File System... -[ 20.084225]: systemd[1]: Mounting Kernel Trace File System...Ig֭ -[ 20.096378]: systemd[1]: Starting Journal Service... -[ 20.103041]: systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. -[ 20.168731]: systemd[1]: Starting Set the console keyboard layout... -[ 20.176711]: systemd[1]: Starting Create list of static device nodes for the current kernel... -[ 20.187555]: systemd[1]: Starting Load Kernel Module chromeos_pstore... -[ 20.196139]: systemd[1]: Starting Load Kernel Module drm... -[ 20.203074]: systemd[1]: Starting Load Kernel Module efi_pstore... -[ 20.211133]: systemd[1]: Starting Load Kernel Module pstore_blk... -[ 20.219465]: systemd[1]: Starting Load Kernel Module pstore_zone... -[ 20.227949]: systemd[1]: Starting Load Kernel Module ramoops... -[ 20.235599]: systemd[1]: Condition check resulted in OpenVSwitch configuration for cleanup being skipped.c -[ 20.344642]: systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. -[ 20.354887]: systemd[1]: Starting Load Kernel Modules... -[ 20.362824]: systemd[1]: Starting Remount Root and Kernel File Systems... -[ 20.371800]: systemd[1]: Starting udev Coldplug all Devices... -[ 20.379212]: systemd[1]: Starting Uncomplicated firewall... -[ 20.388742]: systemd[1]: Started Journal Service.nX -[ 20.624993]: RPC: Registered named UNIX socket transport module. -[ 20.629426]: RPC: Registered udp transport module. -[ 20.633935]: RPC: Registered tcp transport module. -[ 20.638639]: RPC: Registered tcp NFSv4.1 backchannel transport module. -[ 20.990666]: Installing knfsd (copyright (C) 1996 okir@monad.swb.de).OH -[ 26.978308]: systemd-journald[389]: Received client request to flush runtime journal.{ -[ 28.982319]: RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer -[ 29.058307]: cryptd: max_cpu_qlen set to 1000Y -[ 29.071566]: AVX2 version of gcm_enc/dec engaged. -[ 29.071568]: AES CTR mode by8 optimization enabled -[ 42.095571]: Rounding down aligned max_sectors from 4294967295 to 4294967288 -[ 42.095750]: db_root: cannot open: /etc/target -[ 43.101434]: NFSD: Using UMH upcall client tracking operations. -[ 43.101438]: NFSD: starting 20-second grace period (net f0000098)Eq: -[ 78.289935]: FS-Cache: Loaded -{@ -[ 78.391219]: FS-Cache: Netfs 'nfs' registered for caching;K -[ 78.577792]: NFS: Registering the id_resolver key type -[ 78.577801]: Key type id_resolver registered -[ 78.577801]: Key type id_legacy registered -[ 98.733744]: EXT4-fs (zd0): mounted filesystem with ordered data mode. Opts: (null) -[ 318.926248]: bpfilter: Loaded bpfilter_umh pid 7402 -[ 318.926526]: Started bpfilter] -[ 403.292608]: nvme1n1: p1 p9 -[ 679.097695]: nvme2n1: p1 p9 -[ 1135.198016]: iSCSI/iqn.2008-07.com.delphix:564dab6e-e4d1-9f59-c67f-396385c626f1: Unsupported SCSI Opcode 0xa3, sending CHECK_CONDITION. -[ 1598.030405]: sysrq: Trigger a crash -[ 1598.032724]: Kernel panic - not syncing: sysrq triggered crash -[ 1598.035976]: CPU: 1 PID: 11570 Comm: bash Kdump: loaded Tainted: P OE 5.4.0-1097-dx2023030807-1b2b35b91-aws #105 -[ 1598.042307]: Hardware name: Amazon EC2 t3.large/, BIOS 1.0 10/16/2017t -[ 1598.045996]: Call Trace: -[ 1598.047650]: dump_stack+0x6d/0x8b -[ 1598.051790]: panic+0x101/0x2e3 -[ 1598.055871]: sysrq_handle_crash+0x15/0x20 -[ 1598.060817]: __handle_sysrq.cold+0x48/0x107 -[ 1598.065682]: write_sysrq_trigger+0x28/0x40 -[ 1598.070897]: proc_reg_write+0x43/0x70 -[ 1598.075857]: __vfs_write+0x1b/0x40 -[ 1598.080175]: vfs_write+0xb9/0x1a0 -[ 1598.084858]: ksys_write+0x67/0xe0 -[ 1598.089075]: __x64_sys_write+0x1a/0x20 -[ 1598.093429]: do_syscall_64+0x57/0x190 -[ 1598.098077]: entry_SYSCALL_64_after_hwframe+0x5c/0xc1 -[ 1598.103748]: RIP: 0033:0x7f1e15a97077dt -[ 1598.108344]: Code: 64 89 02 48 c7 c0 ff ff ff ff eb bb 0f 1f 80 00 00 00 00 f3 0f 1e fa 64 8b 04 25 18 00 00 00 85 c0 75 10 b8 01 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 51 c3 48 83 ec 28 48 89 54 24 18 48 89 74 24 -[ 1598.125984]: RSP: 002b:00007fffb8bb39c8 EFLAGS: 00000246 ORIG_RAX: 0000000000000001 -[ 1598.136294]: RAX: ffffffffffffffda RBX: 0000000000000002 RCX: 00007f1e15a97077 -[ 1598.143107]: RDX: 0000000000000002 RSI: 000055754150dee0 RDI: 0000000000000001 -[ 1598.150081]: RBP: 000055754150dee0 R08: 000000000000000a R09: 0000000000000001 -[ 1598.156735]: R10: 0000557540e13017 R11: 0000000000000246 R12: 0000000000000002 -[ 1598.163456]: R13: 00007f1e15b766a0 R14: 00007f1e15b724a0 R15: 00007f1e15b718a0 -[ 1598.171192]: disable async PF for cpu 1 +[ 0.000000] Linux version 5.4.0-1097-dx2023030807-1b2b35b91-aws (root@ip-10-110-254-131) (gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)) #105 SMP Wed Mar 8 07:04:20 UTC 2023 (Ubuntu 5.4.0-1097.105-aws 5.4.229) +[ 0.000000] Command line: BOOT_IMAGE=/ROOT/delphix.i4TlGPg/root@/boot/vmlinuz-5.4.0-1097-dx2023030807-1b2b35b91-aws root=ZFS=rpool/ROOT/delphix.i4TlGPg/root ro console=tty0 console=ttyS0,38400n8 mitigations=off ipv6.disable=1 elevator=noop crashkernel=256M,high crashkernel=256M,low init_on_alloc=0 usbcore.nousb=1 nvme_core.io_timeout=4294967295 earlyprintk=ttyS0,38400n8 rootdelay=300 +[ 0.000000] KERNEL supported cpus: +[ 0.000000] Intel GenuineIntel +[ 0.000000] AMD AuthenticAMD +[ 0.000000] Hygon HygonGenuine +[ 0.000000] Centaur CentaurHauls +[ 0.000000] zhaoxin Shanghai +[ 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: Supporting XSAVE feature 0x008: 'MPX bounds registers' +[ 0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR' +[ 0.000000] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask' +[ 0.000000] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256' +[ 0.000000] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256' +[ 0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers' +[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 +[ 0.000000] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64 +[ 0.000000] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64 +[ 0.000000] x86/fpu: xstate_offset[5]: 960, xstate_sizes[5]: 64 +[ 0.000000] x86/fpu: xstate_offset[6]: 1024, xstate_sizes[6]: 512 +[ 0.000000] x86/fpu: xstate_offset[7]: 1536, xstate_sizes[7]: 1024 +[ 0.000000] x86/fpu: xstate_offset[9]: 2560, xstate_sizes[9]: 8 +[ 0.000000] x86/fpu: Enabled xstate features 0x2ff, context size is 2568 bytes, using 'compacted' format. +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable +[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved +[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved +[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bffe9fff] usable +[ 0.000000] BIOS-e820: [mem 0x00000000bffea000-0x00000000bfffffff] reserved +[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e03fffff] reserved +[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved +[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000002399fffff] usable +[ 0.000000] BIOS-e820: [mem 0x0000000239a00000-0x000000023fffffff] reserved +[ 0.000000] printk: bootconsole [earlyser0] enabled +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] SMBIOS 2.7 present. +[ 0.000000] DMI: Amazon EC2 t3.large/, BIOS 1.0 10/16/2017 +[ 0.000000] Hypervisor detected: KVM +[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00 +[ 0.000000] kvm-clock: cpu 0, msr 16a601001, primary cpu clock +[ 0.000000] kvm-clock: using sched offset of 13651928761 cycles +[ 0.001119] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns +[ 0.004272] tsc: Detected 2499.996 MHz processor +[ 0.006256] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved +[ 0.006258] e820: remove [mem 0x000a0000-0x000fffff] usable +[ 0.006263] last_pfn = 0x239a00 max_arch_pfn = 0x400000000 +[ 0.007344] MTRR default type: write-back +[ 0.007345] MTRR fixed ranges enabled: +[ 0.007346] 00000-9FFFF write-back +[ 0.007346] A0000-BFFFF uncachable +[ 0.007347] C0000-FFFFF write-protect +[ 0.007348] MTRR variable ranges enabled: +[ 0.007349] 0 base 0000C0000000 mask 3FFFC0000000 uncachable +[ 0.007350] 1 disabled +[ 0.007350] 2 disabled +[ 0.007351] 3 disabled +[ 0.007351] 4 disabled +[ 0.007351] 5 disabled +[ 0.007352] 6 disabled +[ 0.007352] 7 disabled +[ 0.007361] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT +[ 0.009294] last_pfn = 0xbffea max_arch_pfn = 0x400000000 +[ 0.017323] check: Scanning 1 areas for low memory corruption +[ 0.018427] kexec: Reserving the low 1M of memory for crashkernel +[ 0.019598] Kernel/User page tables isolation: disabled on command line. +[ 0.020932] Using GB pages for direct mapping +[ 0.021939] RAMDISK: [mem 0x35063000-0x36828fff] +[ 0.022826] ACPI: Early table checksum verification disabled +[ 0.023909] ACPI: RSDP 0x00000000000F8F40 000014 (v00 AMAZON) +[ 0.025017] ACPI: RSDT 0x00000000BFFEE350 000044 (v01 AMAZON AMZNRSDT 00000001 AMZN 00000001) +[ 0.026643] ACPI: FACP 0x00000000BFFEFF80 000074 (v01 AMAZON AMZNFACP 00000001 AMZN 00000001) +[ 0.028264] ACPI: DSDT 0x00000000BFFEE3A0 0010E9 (v01 AMAZON AMZNDSDT 00000001 AMZN 00000001) +[ 0.029872] ACPI: FACS 0x00000000BFFEFF40 000040 +[ 0.030742] ACPI: SSDT 0x00000000BFFEF6C0 00087A (v01 AMAZON AMZNSSDT 00000001 AMZN 00000001) +[ 0.032356] ACPI: APIC 0x00000000BFFEF5D0 000076 (v01 AMAZON AMZNAPIC 00000001 AMZN 00000001) +[ 0.033967] ACPI: SRAT 0x00000000BFFEF530 0000A0 (v01 AMAZON AMZNSRAT 00000001 AMZN 00000001) +[ 0.035587] ACPI: SLIT 0x00000000BFFEF4C0 00006C (v01 AMAZON AMZNSLIT 00000001 AMZN 00000001) +[ 0.037212] ACPI: WAET 0x00000000BFFEF490 000028 (v01 AMAZON AMZNWAET 00000001 AMZN 00000001) +[ 0.038827] ACPI: HPET 0x00000000000C9000 000038 (v01 AMAZON AMZNHPET 00000001 AMZN 00000001) +[ 0.040460] ACPI: SSDT 0x00000000000C9040 00007B (v01 AMAZON AMZNSSDT 00000001 AMZN 00000001) +[ 0.042222] ACPI: Reserving FACP table memory at [mem 0xbffeff80-0xbffefff3] +[ 0.043565] ACPI: Reserving DSDT table memory at [mem 0xbffee3a0-0xbffef488] +[ 0.044908] ACPI: Reserving FACS table memory at [mem 0xbffeff40-0xbffeff7f] +[ 0.046293] ACPI: Reserving SSDT table memory at [mem 0xbffef6c0-0xbffeff39] +[ 0.047651] ACPI: Reserving APIC table memory at [mem 0xbffef5d0-0xbffef645] +[ 0.049050] ACPI: Reserving SRAT table memory at [mem 0xbffef530-0xbffef5cf] +[ 0.050420] ACPI: Reserving SLIT table memory at [mem 0xbffef4c0-0xbffef52b] +[ 0.051848] ACPI: Reserving WAET table memory at [mem 0xbffef490-0xbffef4b7] +[ 0.053202] ACPI: Reserving HPET table memory at [mem 0xc9000-0xc9037] +[ 0.054442] ACPI: Reserving SSDT table memory at [mem 0xc9040-0xc90ba] +[ 0.055784] ACPI: Local APIC address 0xfee00000 +[ 0.055866] SRAT: PXM 0 -> APIC 0x00 -> Node 0 +[ 0.056733] SRAT: PXM 0 -> APIC 0x01 -> Node 0 +[ 0.057573] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0xbfffffff] +[ 0.058800] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x23fffffff] +[ 0.059991] NUMA: Initialized distance table, cnt=1 +[ 0.059993] NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x2399fffff] -> [mem 0x00000000-0x2399fffff] +[ 0.062072] NODE_DATA(0) allocated [mem 0x2399d4000-0x2399fefff] +[ 0.063592] Reserving 256MB of low memory at 2800MB for crashkernel (System low RAM: 3071MB) +[ 0.065222] Reserving 256MB of memory at 8848MB for crashkernel (System RAM: 8089MB) +[ 0.066784] Zone ranges: +[ 0.067298] DMA [mem 0x0000000000001000-0x0000000000ffffff] +[ 0.068563] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] +[ 0.069740] Normal [mem 0x0000000100000000-0x00000002399fffff] +[ 0.070918] Device empty +[ 0.071463] Movable zone start for each node +[ 0.072278] Early memory node ranges +[ 0.072960] node 0: [mem 0x0000000000001000-0x000000000009efff] +[ 0.074159] node 0: [mem 0x0000000000100000-0x00000000bffe9fff] +[ 0.075375] node 0: [mem 0x0000000100000000-0x00000002399fffff] +[ 0.076825] Zeroed struct page in unavailable ranges: 26232 pages +[ 0.076826] Initmem setup node 0 [mem 0x0000000000001000-0x00000002399fffff] +[ 0.079348] On node 0 totalpages: 2070920 +[ 0.079349] DMA zone: 64 pages used for memmap +[ 0.079349] DMA zone: 158 pages reserved +[ 0.079350] DMA zone: 3998 pages, LIFO batch:0 +[ 0.079406] DMA32 zone: 12224 pages used for memmap +[ 0.079406] DMA32 zone: 782314 pages, LIFO batch:63 +[ 0.090744] Normal zone: 20072 pages used for memmap +[ 0.090745] Normal zone: 1284608 pages, LIFO batch:63 +[ 0.107899] ACPI: PM-Timer IO Port: 0xb008 +[ 0.108699] ACPI: Local APIC address 0xfee00000 +[ 0.108708] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) +[ 0.109886] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 +[ 0.111230] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) +[ 0.112526] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.113812] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) +[ 0.115122] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) +[ 0.116439] ACPI: IRQ5 used by override. +[ 0.116439] ACPI: IRQ9 used by override. +[ 0.116440] ACPI: IRQ10 used by override. +[ 0.116440] ACPI: IRQ11 used by override. +[ 0.116442] Using ACPI (MADT) for SMP configuration information +[ 0.117584] ACPI: HPET id: 0x8086a201 base: 0xfed00000 +[ 0.118569] TSC deadline timer available +[ 0.119337] smpboot: Allowing 2 CPUs, 0 hotplug CPUs +[ 0.120393] PM: Registered nosave memory: [mem 0x00000000-0x00000fff] +[ 0.121647] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff] +[ 0.122903] PM: Registered nosave memory: [mem 0x000a0000-0x000effff] +[ 0.124155] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff] +[ 0.125406] PM: Registered nosave memory: [mem 0xbffea000-0xbfffffff] +[ 0.126650] PM: Registered nosave memory: [mem 0xc0000000-0xdfffffff] +[ 0.127888] PM: Registered nosave memory: [mem 0xe0000000-0xe03fffff] +[ 0.129137] PM: Registered nosave memory: [mem 0xe0400000-0xfffbffff] +[ 0.130372] PM: Registered nosave memory: [mem 0xfffc0000-0xffffffff] +[ 0.131601] [mem 0xc0000000-0xdfffffff] available for PCI devices +[ 0.132778] Booting paravirtualized kernel on KVM +[ 0.133689] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns +[ 0.135724] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 +[ 0.137568] percpu: Embedded 59 pages/cpu s204800 r8192 d28672 u1048576 +[ 0.138858] pcpu-alloc: s204800 r8192 d28672 u1048576 alloc=1*2097152 +[ 0.138859] pcpu-alloc: [0] 0 1 +[ 0.138880] setup async PF for cpu 0 +[ 0.139575] kvm-stealtime: cpu 0, msr 239631040 +[ 0.140468] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear) +[ 0.142048] Built 1 zonelists, mobility grouping on. Total pages: 2038402 +[ 0.143364] Policy zone: Normal +[ 0.143961] Kernel command line: BOOT_IMAGE=/ROOT/delphix.i4TlGPg/root@/boot/vmlinuz-5.4.0-1097-dx2023030807-1b2b35b91-aws root=ZFS=rpool/ROOT/delphix.i4TlGPg/root ro console=tty0 console=ttyS0,38400n8 mitigations=off ipv6.disable=1 elevator=noop crashkernel=256M,high crashkernel=256M,low init_on_alloc=0 usbcore.nousb=1 nvme_core.io_timeout=4294967295 earlyprintk=ttyS0,38400n8 rootdelay=300 +[ 0.151904] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear) +[ 0.154017] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) +[ 0.155542] mem auto-init: stack:off, heap alloc:off, heap free:off +[ 0.166060] Calgary: detecting Calgary via BIOS EBDA area +[ 0.166070] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.183471] Memory: 7491616K/8283680K available (12291K kernel code, 2188K rwdata, 8040K rodata, 2544K init, 5380K bss, 792064K reserved, 0K cma-reserved) +[ 0.186356] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +[ 0.187606] ftrace: allocating 38930 entries in 153 pages +[ 0.202206] rcu: Hierarchical RCU implementation. +[ 0.203112] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=2. +[ 0.204428] Tasks RCU enabled. +[ 0.205031] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. +[ 0.206473] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 +[ 0.210210] NR_IRQS: 524544, nr_irqs: 440, preallocated irqs: 16 +[ 0.211536] random: crng init done +[ 0.276833] Console: colour VGA+ 80x25 +[ 0.798264] printk: console [tty0] enabled +[ 0.801794] printk: console [ttyS0] enabled +[ 0.806170] printk: bootconsole [earlyser0] disabled +[ 0.810964] ACPI: Core revision 20190816 +[ 0.814587] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 30580167144 ns +[ 0.878708] APIC: Switch to symmetric I/O mode setup +[ 0.883039] x2apic enabled +[ 0.886421] Switched APIC routing to physical x2apic. +[ 0.892164] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x24093623c91, max_idle_ns: 440795291220 ns +[ 0.899979] Calibrating delay loop (skipped) preset value.. 4999.99 BogoMIPS (lpj=9999984) +[ 0.903975] pid_max: default: 32768 minimum: 301 +[ 0.903975] LSM: Security Framework initializing +[ 0.903975] Yama: becoming mindful. +[ 0.903975] AppArmor: AppArmor initialized +[ 0.903975] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) +[ 0.903975] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) +[ 0.903975] *** VALIDATE tmpfs *** +[ 0.903975] *** VALIDATE proc *** +[ 0.903975] *** VALIDATE cgroup1 *** +[ 0.903975] *** VALIDATE cgroup2 *** +[ 0.903975] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8 +[ 0.903975] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4 +[ 0.903975] Speculative Store Bypass: Vulnerable +[ 0.903975] Freeing SMP alternatives memory: 36K +[ 0.903975] smpboot: CPU0: Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz (family: 0x6, model: 0x55, stepping: 0x7) +[ 0.904074] Performance Events: unsupported p6 CPU model 85 no PMU driver, software events only. +[ 0.908033] rcu: Hierarchical SRCU implementation. +[ 0.912309] NMI watchdog: Perf NMI watchdog permanently disabled +[ 0.916039] smp: Bringing up secondary CPUs ... +[ 0.919826] x86: Booting SMP configuration: +[ 0.919983] .... node #0, CPUs: #1 +[ 0.692448] kvm-clock: cpu 1, msr 16a601041, secondary cpu clock +[ 0.922446] setup async PF for cpu 1 +[ 0.923975] kvm-stealtime: cpu 1, msr 239731040 +[ 0.932030] smp: Brought up 1 node, 2 CPUs +[ 0.935980] smpboot: Max logical packages: 1 +[ 0.939574] smpboot: Total of 2 processors activated (9999.98 BogoMIPS) +[ 0.940488] devtmpfs: initialized +[ 0.943236] x86/mm: Memory block size: 128MB +[ 0.948068] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns +[ 0.951990] futex hash table entries: 512 (order: 3, 32768 bytes, linear) +[ 0.960242] PM: RTC time: 17:56:05, date: 2023-03-13 +[ 0.964096] NET: Registered protocol family 16 +[ 0.967863] audit: initializing netlink subsys (disabled) +[ 0.972002] audit: type=2000 audit(1678730165.177:1): state=initialized audit_enabled=0 res=1 +[ 0.979987] cpuidle: using governor ladder +[ 0.983630] cpuidle: using governor menu +[ 0.984076] ACPI: bus type PCI registered +[ 0.987770] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 +[ 0.988078] PCI: Using configuration type 1 for base access +[ 0.993286] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages +[ 0.995987] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages +[ 1.000025] ACPI: Added _OSI(Module Device) +[ 1.003985] ACPI: Added _OSI(Processor Device) +[ 1.007633] ACPI: Added _OSI(3.0 _SCP Extensions) +[ 1.007988] ACPI: Added _OSI(Processor Aggregator Device) +[ 1.011980] ACPI: Added _OSI(Linux-Dell-Video) +[ 1.015614] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) +[ 1.015979] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) +[ 1.020707] ACPI: 3 ACPI AML tables successfully acquired and loaded +[ 1.024897] ACPI: Interpreter enabled +[ 1.027988] ACPI: (supports S0 S4 S5) +[ 1.031334] ACPI: Using IOAPIC for interrupt routing +[ 1.031995] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 1.036309] ACPI: Enabled 16 GPEs in block 00 to 0F +[ 1.042106] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 1.043988] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3] +[ 1.047989] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge. +[ 1.052282] acpiphp: Slot [3] registered +[ 1.055749] acpiphp: Slot [4] registered +[ 1.055997] acpiphp: Slot [5] registered +[ 1.059451] acpiphp: Slot [6] registered +[ 1.059994] acpiphp: Slot [7] registered +[ 1.063494] acpiphp: Slot [8] registered +[ 1.063994] acpiphp: Slot [9] registered +[ 1.067437] acpiphp: Slot [10] registered +[ 1.067996] acpiphp: Slot [11] registered +[ 1.071445] acpiphp: Slot [12] registered +[ 1.071998] acpiphp: Slot [13] registered +[ 1.075487] acpiphp: Slot [14] registered +[ 1.075994] acpiphp: Slot [15] registered +[ 1.079491] acpiphp: Slot [16] registered +[ 1.079996] acpiphp: Slot [17] registered +[ 1.083514] acpiphp: Slot [18] registered +[ 1.084000] acpiphp: Slot [19] registered +[ 1.087461] acpiphp: Slot [20] registered +[ 1.087994] acpiphp: Slot [21] registered +[ 1.091467] acpiphp: Slot [22] registered +[ 1.091995] acpiphp: Slot [23] registered +[ 1.095665] acpiphp: Slot [24] registered +[ 1.095996] acpiphp: Slot [25] registered +[ 1.099469] acpiphp: Slot [26] registered +[ 1.099994] acpiphp: Slot [27] registered +[ 1.103433] acpiphp: Slot [28] registered +[ 1.103994] acpiphp: Slot [29] registered +[ 1.107464] acpiphp: Slot [30] registered +[ 1.107995] acpiphp: Slot [31] registered +[ 1.111457] PCI host bridge to bus 0000:00 +[ 1.111988] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] +[ 1.116016] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] +[ 1.119982] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] +[ 1.123981] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] +[ 1.127981] pci_bus 0000:00: root bus resource [bus 00-ff] +[ 1.132023] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 +[ 1.136673] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 +[ 1.141097] pci 0000:00:01.3: [8086:7113] type 00 class 0x000000 +[ 1.144862] pci 0000:00:01.3: quirk: [io 0xb000-0xb03f] claimed by PIIX4 ACPI +[ 1.147995] pci 0000:00:01.3: quirk: [io 0xb100-0xb10f] claimed by PIIX4 SMB +[ 1.152041] pci 0000:00:01.3: PIIX4 devres E PIO at fff0-ffff +[ 1.155996] pci 0000:00:01.3: PIIX4 devres F MMIO at ffc00000-ffffffff +[ 1.159994] pci 0000:00:01.3: PIIX4 devres G PIO at fff0-ffff +[ 1.163998] pci 0000:00:01.3: PIIX4 devres H MMIO at ffc00000-ffffffff +[ 1.167997] pci 0000:00:01.3: PIIX4 devres I PIO at fff0-ffff +[ 1.171997] pci 0000:00:01.3: PIIX4 devres J PIO at fff0-ffff +[ 1.175984] pci 0000:00:01.3: quirk_piix4_acpi+0x0/0x170 took 31250 usecs +[ 1.180804] pci 0000:00:03.0: [1d0f:1111] type 00 class 0x030000 +[ 1.184672] pci 0000:00:03.0: reg 0x10: [mem 0xfe400000-0xfe7fffff pref] +[ 1.190200] pci 0000:00:03.0: reg 0x30: [mem 0xfebe0000-0xfebeffff pref] +[ 1.192597] pci 0000:00:04.0: [1d0f:8061] type 00 class 0x010802 +[ 1.197432] pci 0000:00:04.0: reg 0x10: [mem 0xfebf0000-0xfebf3fff] +[ 1.204837] pci 0000:00:05.0: [1d0f:ec20] type 00 class 0x020000 +[ 1.208814] pci 0000:00:05.0: reg 0x10: [mem 0xfebf4000-0xfebf7fff] +[ 1.223926] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) +[ 1.224092] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) +[ 1.228078] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) +[ 1.232074] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) +[ 1.236027] ACPI: PCI Interrupt Link [LNKS] (IRQs *9) +[ 1.240182] iommu: Default domain type: Translated +[ 1.244093] SCSI subsystem initialized +[ 1.247653] pci 0000:00:03.0: vgaarb: setting as boot VGA device +[ 1.247975] pci 0000:00:03.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none +[ 1.247986] pci 0000:00:03.0: vgaarb: bridge control possible +[ 1.251979] vgaarb: loaded +[ 1.254969] pps_core: LinuxPPS API ver. 1 registered +[ 1.255979] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti +[ 1.259982] PTP clock support registered +[ 1.263445] EDAC MC: Ver: 3.0.0 +[ 1.264172] PCI: Using ACPI for IRQ routing +[ 1.267980] PCI: pci_cache_line_size set to 64 bytes +[ 1.268117] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff] +[ 1.268119] e820: reserve RAM buffer [mem 0xbffea000-0xbfffffff] +[ 1.268119] e820: reserve RAM buffer [mem 0x239a00000-0x23bffffff] +[ 1.268212] NetLabel: Initializing +[ 1.271465] NetLabel: domain hash size = 128 +[ 1.271979] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO +[ 1.275994] NetLabel: unlabeled traffic allowed by default +[ 1.280075] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 +[ 1.283980] hpet0: 8 comparators, 32-bit 62.500000 MHz counter +[ 1.291086] clocksource: Switched to clocksource kvm-clock +[ 1.302800] *** VALIDATE bpf *** +[ 1.306040] VFS: Disk quotas dquot_6.6.0 +[ 1.309477] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 1.314151] *** VALIDATE ramfs *** +[ 1.317364] *** VALIDATE hugetlbfs *** +[ 1.321014] AppArmor: AppArmor Filesystem Enabled +[ 1.324788] pnp: PnP ACPI init +[ 1.327923] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active) +[ 1.327954] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active) +[ 1.327971] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active) +[ 1.328026] pnp 00:03: Plug and Play ACPI device, IDs PNP0400 (active) +[ 1.328066] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active) +[ 1.328267] pnp: PnP ACPI: found 5 devices +[ 1.334290] thermal_sys: Registered thermal governor 'fair_share' +[ 1.334291] thermal_sys: Registered thermal governor 'bang_bang' +[ 1.338640] thermal_sys: Registered thermal governor 'step_wise' +[ 1.342951] thermal_sys: Registered thermal governor 'user_space' +[ 1.347229] thermal_sys: Registered thermal governor 'power_allocator' +[ 1.356196] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns +[ 1.367868] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] +[ 1.372245] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] +[ 1.376632] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] +[ 1.381288] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfebfffff window] +[ 1.386109] NET: Registered protocol family 2 +[ 1.390127] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear) +[ 1.397849] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear) +[ 1.506007] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear) +[ 1.512891] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear) +[ 1.519574] TCP: Hash tables configured (established 65536 bind 65536) +[ 1.524296] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear) +[ 1.528936] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear) +[ 1.535468] NET: Registered protocol family 1 +[ 1.539079] NET: Registered protocol family 44 +[ 1.542775] pci 0000:00:00.0: Limiting direct PCI/PCI transfers +[ 1.547154] pci 0000:00:01.0: Activating ISA DMA hang workarounds +[ 1.551596] pci 0000:00:03.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] +[ 1.558581] PCI: CLS 0 bytes, default 64 +[ 1.562056] Trying to unpack rootfs image as initramfs... +[ 1.622341] Freeing initrd memory: 24344K +[ 1.625898] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) +[ 1.630391] software IO TLB: mapped [mem 0xab000000-0xaf000000] (64MB) +[ 1.635003] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x24093623c91, max_idle_ns: 440795291220 ns +[ 1.642633] clocksource: Switched to clocksource tsc +[ 1.646584] check: Scanning for low memory corruption every 60 seconds +[ 1.651481] Initialise system trusted keyrings +[ 1.655168] Key type blacklist registered +[ 1.658724] workingset: timestamp_bits=36 max_order=21 bucket_order=0 +[ 1.664259] zbud: loaded +[ 1.667398] squashfs: version 4.0 (2009/01/31) Phillip Lougher +[ 1.671628] fuse: init (API version 7.31) +[ 1.675138] *** VALIDATE fuse *** +[ 1.678334] *** VALIDATE fuse *** +[ 1.681610] Platform Keyring initialized +[ 1.687650] Key type asymmetric registered +[ 1.691166] Asymmetric key parser 'x509' registered +[ 1.694985] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246) +[ 1.701561] io scheduler mq-deadline registered +[ 1.705403] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +[ 1.710101] intel_idle: Please enable MWAIT in BIOS SETUP +[ 1.710152] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 +[ 1.716706] ACPI: Power Button [PWRF] +[ 1.720106] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1 +[ 1.726787] ACPI: Sleep Button [SLPF] +[ 1.730349] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 1.762165] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A +[ 1.896055] loop: module loaded +[ 1.899645] nvme nvme0: pci function 0000:00:04.0 +[ 1.903576] tun: Universal TUN/TAP device driver, 1.6 +[ 1.903963] PCI Interrupt Link [LNKD] enabled at IRQ 11 +[ 1.911770] PPP generic driver version 2.4.2 +[ 1.915641] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 +[ 1.922818] i8042: Warning: Keylock active +[ 1.927745] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 1.931728] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 1.936081] mousedev: PS/2 mouse device common for all mice +[ 1.941215] device-mapper: uevent: version 1.0.3 +[ 1.945393] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com +[ 1.952567] intel_pstate: CPU model not supported +[ 1.956651] drop_monitor: Initializing network drop monitor service +[ 1.961531] IPv6: Loaded, but administratively disabled, reboot required to enable +[ 1.968482] NET: Registered protocol family 17 +[ 1.972487] Key type dns_resolver registered +[ 1.976435] RAS: Correctable Errors collector initialized. +[ 1.980719] IPI shorthand broadcast: enabled +[ 1.984364] sched_clock: Marking stable (1295906341, 688448583)->(2210674289, -226319365) +[ 1.991418] registered taskstats version 1 +[ 1.994990] Loading compiled-in X.509 certificates +[ 1.999457] Loaded X.509 cert 'Build time autogenerated kernel key: d75159e73df885c74bd5a7099453852c8f4d6183' +[ 2.007673] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969' +[ 2.015743] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19' +[ 2.023648] blacklist: Loading compiled-in revocation X.509 certificates +[ 2.028289] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0' +[ 2.035878] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03' +[ 2.043740] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b' +[ 2.051719] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8' +[ 2.059619] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d' +[ 2.067591] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c' +[ 2.075613] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af' +[ 2.083681] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9' +[ 2.092033] zswap: loaded using pool lzo/zbud +[ 2.095788] Key type ._fscrypt registered +[ 2.099272] Key type .fscrypt registered +[ 2.107017] Key type big_key registered +[ 2.112506] Key type encrypted registered +[ 2.116284] AppArmor: AppArmor sha1 policy hashing enabled +[ 2.120466] ima: No TPM chip found, activating TPM-bypass! +[ 2.124769] ima: Allocated hash algorithm: sha1 +[ 2.128503] ima: No architecture policies found +[ 2.132741] nvme nvme0: 2/0/0 default/read/poll queues +[ 2.132821] evm: Initialising EVM extended attributes: +[ 2.141113] evm: security.selinux +[ 2.141196] nvme0n1: p1 p2 +[ 2.144474] evm: security.SMACK64 +[ 2.144475] evm: security.SMACK64EXEC +[ 2.144475] evm: security.SMACK64TRANSMUTE +[ 2.144476] evm: security.SMACK64MMAP +[ 2.144476] evm: security.apparmor +[ 2.144476] evm: security.ima +[ 2.144477] evm: security.capability +[ 2.144478] evm: HMAC attrs: 0x1 +[ 2.174228] PM: Magic number: 15:651:946 +[ 2.177840] tty tty3: hash matches +[ 2.181148] processor cpu1: hash matches +[ 2.193024] Freeing unused decrypted memory: 2040K +[ 2.197523] Freeing unused kernel image memory: 2544K +[ 2.203996] Write protecting the kernel read-only data: 22528k +[ 2.208898] Freeing unused kernel image memory: 2036K +[ 2.212942] Freeing unused kernel image memory: 152K +[ 2.224599] x86/mm: Checked W+X mappings: passed, no W+X pages found. +[ 2.229152] Run /init as init process +[ 2.283584] piix4_smbus 0000:00:01.3: SMBus Host Controller at 0xb100, revision 255 +[ 2.292202] ena: ENA device version: 0.10 +[ 2.296115] ena: ENA controller version: 0.0.1 implementation version 1 +[ 2.310155] ena 0000:00:05.0: LLQ is not supported Fallback to host mode policy. +[ 2.324595] ena 0000:00:05.0: Elastic Network Adapter (ENA) found at mem febf4000, mac addr 02:9a:a6:27:9f:6d +[ 2.333273] ena 0000:00:05.0 enx029aa6279f6d: renamed from eth0 +[ 2.468686] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 +[ 4.407990] raid6: avx512x4 gen() 24863 MB/s +[ 4.459992] raid6: avx512x4 xor() 12019 MB/s +[ 4.512008] raid6: avx512x2 gen() 24425 MB/s +[ 4.563990] raid6: avx512x2 xor() 16072 MB/s +[ 4.616131] raid6: avx512x1 gen() 16215 MB/s +[ 4.667989] raid6: avx512x1 xor() 12469 MB/s +[ 4.720017] raid6: avx2x4 gen() 21148 MB/s +[ 4.771998] raid6: avx2x4 xor() 13037 MB/s +[ 4.823990] raid6: avx2x2 gen() 18256 MB/s +[ 4.880503] raid6: avx2x2 xor() 8608 MB/s +[ 4.931985] raid6: avx2x1 gen() 14485 MB/s +[ 4.983986] raid6: avx2x1 xor() 9904 MB/s +[ 5.031984] raid6: sse2x4 gen() 9563 MB/s +[ 5.079986] raid6: sse2x4 xor() 6060 MB/s +[ 5.127989] raid6: sse2x2 gen() 8856 MB/s +[ 5.175982] raid6: sse2x2 xor() 5636 MB/s +[ 5.227991] raid6: sse2x1 gen() 7826 MB/s +[ 5.275985] raid6: sse2x1 xor() 4561 MB/s +[ 5.280144] raid6: using algorithm avx512x4 gen() 24863 MB/s +[ 5.284618] raid6: .... xor() 12019 MB/s, rmw enabled +[ 5.288861] raid6: using avx512x2 recovery algorithm +[ 5.293919] async_tx: api initialized (async) +[ 5.298611] xor: automatically using best checksumming function avx +[ 5.337383] spl: loading out-of-tree module taints kernel. +[ 5.342024] spl: module verification failed: signature and/or required key missing - tainting kernel +[ 5.352535] zfs: module license 'CDDL' taints kernel. +[ 5.356691] Disabling lock debugging due to kernel taint +[ 6.552395] ZFS: Loaded module v2.1.99-delphix+2023.03.11.01-ab8da03, ZFS pool version 5000, ZFS filesystem version 5 +[ 15.455890] systemd[1]: Inserted module 'autofs4' +[ 15.908114] systemd[1]: systemd 245.4-4ubuntu3.20 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid) +[ 15.927680] systemd[1]: Detected virtualization kvm. +[ 15.932432] systemd[1]: Detected architecture x86-64. +[ 15.940533] pci 0000:00:1f.0: [1d0f:8061] type 00 class 0x010802 +[ 15.946012] pci 0000:00:1f.0: reg 0x10: [mem 0x00000000-0x00003fff] +[ 15.953784] pci 0000:00:1f.0: BAR 0: assigned [mem 0xc0000000-0xc0003fff] +[ 15.959013] nvme nvme1: pci function 0000:00:1f.0 +[ 15.963463] nvme 0000:00:1f.0: enabling device (0000 -> 0002) +[ 16.094367] PCI Interrupt Link [LNKC] enabled at IRQ 10 +[ 16.213554] nvme nvme1: 2/0/0 default/read/poll queues +[ 16.266772] systemd[1]: Set hostname to . +[ 16.311444] pci 0000:00:1e.0: [1d0f:8061] type 00 class 0x010802 +[ 16.316808] pci 0000:00:1e.0: reg 0x10: [mem 0x00000000-0x00003fff] +[ 16.323142] pci 0000:00:1e.0: BAR 0: assigned [mem 0xc0004000-0xc0007fff] +[ 16.329601] nvme nvme2: pci function 0000:00:1e.0 +[ 16.333977] nvme 0000:00:1e.0: enabling device (0000 -> 0002) +[ 16.341218] PCI Interrupt Link [LNKB] enabled at IRQ 10 +[ 16.460554] nvme nvme2: 2/0/0 default/read/poll queues +[ 16.487284] pci 0000:00:1d.0: [1d0f:8061] type 00 class 0x010802 +[ 16.492243] pci 0000:00:1d.0: reg 0x10: [mem 0x00000000-0x00003fff] +[ 16.498768] pci 0000:00:1d.0: BAR 0: assigned [mem 0xc0008000-0xc000bfff] +[ 16.504697] nvme nvme3: pci function 0000:00:1d.0 +[ 16.509726] nvme 0000:00:1d.0: enabling device (0000 -> 0002) +[ 16.518138] PCI Interrupt Link [LNKA] enabled at IRQ 11 +[ 16.525239] systemd[1]: Initializing machine ID from KVM UUID. +[ 16.636454] nvme nvme3: 2/0/0 default/read/poll queues +[ 19.763645] systemd[1]: Created slice system-delphix\x2dpostgres.slice. +[ 19.771668] systemd[1]: Created slice system-modprobe.slice. +[ 19.779451] systemd[1]: Created slice system-serial\x2dgetty.slice. +[ 19.787408] systemd[1]: Created slice User and Session Slice. +[ 19.795015] systemd[1]: Started ntp-systemd-netif.path. +[ 19.801986] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. +[ 19.813433] systemd[1]: Started Forward Password Requests to Wall Directory Watch. +[ 19.826295] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. +[ 19.837773] systemd[1]: Reached target Local Encrypted Volumes. +[ 19.846051] systemd[1]: Reached target Paths. +[ 19.852320] systemd[1]: Reached target Slices. +[ 19.859128] systemd[1]: Reached target Swap. +[ 19.944269] systemd[1]: Listening on Syslog Socket. +[ 19.952877] systemd[1]: Listening on initctl Compatibility Named Pipe. +[ 19.968146] systemd[1]: Listening on Journal Audit Socket. +[ 19.980201] systemd[1]: Listening on Journal Socket (/dev/log). +[ 19.987463] systemd[1]: Listening on Journal Socket. +[ 20.001067] systemd[1]: Listening on Network Service Netlink Socket. +[ 20.009909] systemd[1]: Listening on udev Control Socket. +[ 20.022761] systemd[1]: Listening on udev Kernel Socket. +[ 20.032893] systemd[1]: Mounting Huge Pages File System... +[ 20.041072] systemd[1]: Mounting POSIX Message Queue File System... +[ 20.051010] systemd[1]: Mounting NFSD configuration filesystem... +[ 20.064374] systemd[1]: Mounting RPC Pipe File System... +[ 20.072404] systemd[1]: Mounting Kernel Debug File System... +[ 20.084225] systemd[1]: Mounting Kernel Trace File System... +[ 20.096378] systemd[1]: Starting Journal Service... +[ 20.103041] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. +[ 20.168731] systemd[1]: Starting Set the console keyboard layout... +[ 20.176711] systemd[1]: Starting Create list of static device nodes for the current kernel... +[ 20.187555] systemd[1]: Starting Load Kernel Module chromeos_pstore... +[ 20.196139] systemd[1]: Starting Load Kernel Module drm... +[ 20.203074] systemd[1]: Starting Load Kernel Module efi_pstore... +[ 20.211133] systemd[1]: Starting Load Kernel Module pstore_blk... +[ 20.219465] systemd[1]: Starting Load Kernel Module pstore_zone... +[ 20.227949] systemd[1]: Starting Load Kernel Module ramoops... +[ 20.235599] systemd[1]: Condition check resulted in OpenVSwitch configuration for cleanup being skipped. +[ 20.344642] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. +[ 20.354887] systemd[1]: Starting Load Kernel Modules... +[ 20.362824] systemd[1]: Starting Remount Root and Kernel File Systems... +[ 20.371800] systemd[1]: Starting udev Coldplug all Devices... +[ 20.379212] systemd[1]: Starting Uncomplicated firewall... +[ 20.388742] systemd[1]: Started Journal Service. +[ 20.624993] RPC: Registered named UNIX socket transport module. +[ 20.629426] RPC: Registered udp transport module. +[ 20.633935] RPC: Registered tcp transport module. +[ 20.638639] RPC: Registered tcp NFSv4.1 backchannel transport module. +[ 20.990666] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). +[ 26.978308] systemd-journald[389]: Received client request to flush runtime journal. +[ 28.982319] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer +[ 29.058307] cryptd: max_cpu_qlen set to 1000 +[ 29.071566] AVX2 version of gcm_enc/dec engaged. +[ 29.071568] AES CTR mode by8 optimization enabled +[ 42.095571] Rounding down aligned max_sectors from 4294967295 to 4294967288 +[ 42.095750] db_root: cannot open: /etc/target +[ 43.101434] NFSD: Using UMH upcall client tracking operations. +[ 43.101438] NFSD: starting 20-second grace period (net f0000098) +[ 78.289935] FS-Cache: Loaded +[ 78.391219] FS-Cache: Netfs 'nfs' registered for caching +[ 78.577792] NFS: Registering the id_resolver key type +[ 78.577801] Key type id_resolver registered +[ 78.577801] Key type id_legacy registered +[ 98.733744] EXT4-fs (zd0): mounted filesystem with ordered data mode. Opts: (null) +[ 318.926248] bpfilter: Loaded bpfilter_umh pid 7402 +[ 318.926526] Started bpfilter +[ 403.292608] nvme1n1: p1 p9 +[ 679.097695] nvme2n1: p1 p9 +[ 1135.198016] iSCSI/iqn.2008-07.com.delphix:564dab6e-e4d1-9f59-c67f-396385c626f1: Unsupported SCSI Opcode 0xa3, sending CHECK_CONDITION. +[ 1598.030405] sysrq: Trigger a crash +[ 1598.032724] Kernel panic - not syncing: sysrq triggered crash +[ 1598.035976] CPU: 1 PID: 11570 Comm: bash Kdump: loaded Tainted: P OE 5.4.0-1097-dx2023030807-1b2b35b91-aws #105 +[ 1598.042307] Hardware name: Amazon EC2 t3.large/, BIOS 1.0 10/16/2017 +[ 1598.045996] Call Trace: +[ 1598.047650] dump_stack+0x6d/0x8b +[ 1598.051790] panic+0x101/0x2e3 +[ 1598.055871] sysrq_handle_crash+0x15/0x20 +[ 1598.060817] __handle_sysrq.cold+0x48/0x107 +[ 1598.065682] write_sysrq_trigger+0x28/0x40 +[ 1598.070897] proc_reg_write+0x43/0x70 +[ 1598.075857] __vfs_write+0x1b/0x40 +[ 1598.080175] vfs_write+0xb9/0x1a0 +[ 1598.084858] ksys_write+0x67/0xe0 +[ 1598.089075] __x64_sys_write+0x1a/0x20 +[ 1598.093429] do_syscall_64+0x57/0x190 +[ 1598.098077] entry_SYSCALL_64_after_hwframe+0x5c/0xc1 +[ 1598.103748] RIP: 0033:0x7f1e15a97077 +[ 1598.108344] Code: 64 89 02 48 c7 c0 ff ff ff ff eb bb 0f 1f 80 00 00 00 00 f3 0f 1e fa 64 8b 04 25 18 00 00 00 85 c0 75 10 b8 01 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 51 c3 48 83 ec 28 48 89 54 24 18 48 89 74 24 +[ 1598.125984] RSP: 002b:00007fffb8bb39c8 EFLAGS: 00000246 ORIG_RAX: 0000000000000001 +[ 1598.136294] RAX: ffffffffffffffda RBX: 0000000000000002 RCX: 00007f1e15a97077 +[ 1598.143107] RDX: 0000000000000002 RSI: 000055754150dee0 RDI: 0000000000000001 +[ 1598.150081] RBP: 000055754150dee0 R08: 000000000000000a R09: 0000000000000001 +[ 1598.156735] R10: 0000557540e13017 R11: 0000000000000246 R12: 0000000000000002 +[ 1598.163456] R13: 00007f1e15b766a0 R14: 00007f1e15b724a0 R15: 00007f1e15b718a0 +[ 1598.171192] disable async PF for cpu 1 @#$ EXIT CODE $#@ 0 diff --git a/tests/integration/data/regression_output/dump.202303131823/linux/dmesg -l 3 b/tests/integration/data/regression_output/dump.202303131823/linux/dmesg -l 3 new file mode 100644 index 0000000..771f542 --- /dev/null +++ b/tests/integration/data/regression_output/dump.202303131823/linux/dmesg -l 3 @@ -0,0 +1,5 @@ +[ 2.310155] ena 0000:00:05.0: LLQ is not supported Fallback to host mode policy. +[ 42.095750] db_root: cannot open: /etc/target +[ 1598.032724] Kernel panic - not syncing: sysrq triggered crash +@#$ EXIT CODE $#@ +0 diff --git a/tests/integration/data/regression_output/dump.202303131823/linux/dmesg | filter 'obj.level == 3' | dmesg b/tests/integration/data/regression_output/dump.202303131823/linux/dmesg | filter 'obj.level == 3' | dmesg deleted file mode 100644 index e02be27..0000000 --- a/tests/integration/data/regression_output/dump.202303131823/linux/dmesg | filter 'obj.level == 3' | dmesg +++ /dev/null @@ -1,4 +0,0 @@ -[ 2.310155]: ena 0000:00:05.0: LLQ is not supported Fallback to host mode policy.SUBSYSTEM=pci -[ 42.095750]: db_root: cannot open: /etc/target -@#$ EXIT CODE $#@ -0 diff --git a/tests/integration/data/regression_output/dump.202303131823/linux/dmesg | pp b/tests/integration/data/regression_output/dump.202303131823/linux/dmesg | pp deleted file mode 100644 index 531837c..0000000 --- a/tests/integration/data/regression_output/dump.202303131823/linux/dmesg | pp +++ /dev/null @@ -1,616 +0,0 @@ -[ 0.000000]: Linux version 5.4.0-1097-dx2023030807-1b2b35b91-aws (root@ip-10-110-254-131) (gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)) #105 SMP Wed Mar 8 07:04:20 UTC 2023 (Ubuntu 5.4.0-1097.105-aws 5.4.229) -[ 0.000000]: Command line: BOOT_IMAGE=/ROOT/delphix.i4TlGPg/root@/boot/vmlinuz-5.4.0-1097-dx2023030807-1b2b35b91-aws root=ZFS=rpool/ROOT/delphix.i4TlGPg/root ro console=tty0 console=ttyS0,38400n8 mitigations=off ipv6.disable=1 elevator=noop crashkernel=256M,high crashkernel=256M,low init_on_alloc=0 usbcore.nousb=1 nvme_core.io_timeout=4294967295 earlyprintk=ttyS0,38400n8 rootdelay=300 -[ 0.000000]: KERNEL supported cpus: -[ 0.000000]: Intel GenuineIntel -[ 0.000000]: AMD AuthenticAMD -[ 0.000000]: Hygon HygonGenuine -[ 0.000000]: Centaur CentaurHauls -[ 0.000000]: zhaoxin Shanghai -[ 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: Supporting XSAVE feature 0x008: 'MPX bounds registers' -[ 0.000000]: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR' -[ 0.000000]: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask' -[ 0.000000]: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256' -[ 0.000000]: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256' -[ 0.000000]: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers' -[ 0.000000]: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 -[ 0.000000]: x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64 -[ 0.000000]: x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64 -[ 0.000000]: x86/fpu: xstate_offset[5]: 960, xstate_sizes[5]: 64 -[ 0.000000]: x86/fpu: xstate_offset[6]: 1024, xstate_sizes[6]: 512 -[ 0.000000]: x86/fpu: xstate_offset[7]: 1536, xstate_sizes[7]: 1024 -[ 0.000000]: x86/fpu: xstate_offset[9]: 2560, xstate_sizes[9]: 8 -[ 0.000000]: x86/fpu: Enabled xstate features 0x2ff, context size is 2568 bytes, using 'compacted' format. -[ 0.000000]: BIOS-provided physical RAM map: -[ 0.000000]: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable -[ 0.000000]: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x0000000000100000-0x00000000bffe9fff] usable -[ 0.000000]: BIOS-e820: [mem 0x00000000bffea000-0x00000000bfffffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x00000000e0000000-0x00000000e03fffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved -[ 0.000000]: BIOS-e820: [mem 0x0000000100000000-0x00000002399fffff] usable -[ 0.000000]: BIOS-e820: [mem 0x0000000239a00000-0x000000023fffffff] reserved -[ 0.000000]: printk: bootconsole [earlyser0] enabled -[ 0.000000]: NX (Execute Disable) protection: active -[ 0.000000]: SMBIOS 2.7 present. -[ 0.000000]: DMI: Amazon EC2 t3.large/, BIOS 1.0 10/16/2017 -[ 0.000000]: Hypervisor detected: KVM -[ 0.000000]: kvm-clock: Using msrs 4b564d01 and 4b564d00 -[ 0.000000]: kvm-clock: cpu 0, msr 16a601001, primary cpu clock -[ 0.000000]: kvm-clock: using sched offset of 13651928761 cycles -[ 0.001119]: clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 nsa2A -[ 0.004272]: tsc: Detected 2499.996 MHz processoru_ -[ 0.006256]: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved}_ -[ 0.006258]: e820: remove [mem 0x000a0000-0x000fffff] usable -[ 0.006263]: last_pfn = 0x239a00 max_arch_pfn = 0x400000000 -[ 0.007344]: MTRR default type: write-back -[ 0.007345]: MTRR fixed ranges enabled: -[ 0.007346]: 00000-9FFFF write-back/p -[ 0.007346]: A0000-BFFFF uncachablep -[ 0.007347]: C0000-FFFFF write-protect -[ 0.007348]: MTRR variable ranges enabled: -[ 0.007349]: 0 base 0000C0000000 mask 3FFFC0000000 uncachable -[ 0.007350]: 1 disabled)p -[ 0.007350]: 2 disabled+p -[ 0.007351]: 3 disabled,p -[ 0.007351]: 4 disabled".p -[ 0.007351]: 5 disabled/p -[ 0.007352]: 6 disabled71p -[ 0.007352]: 7 disabled-Tp -[ 0.007361]: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT -[ 0.009294]: last_pfn = 0xbffea max_arch_pfn = 0x400000000 -[ 0.017323]: check: Scanning 1 areas for low memory corruption -[ 0.018427]: kexec: Reserving the low 1M of memory for crashkernel -[ 0.019598]: Kernel/User page tables isolation: disabled on command line.g? -[ 0.020932]: Using GB pages for direct mapping -[ 0.021939]: RAMDISK: [mem 0x35063000-0x36828fff]$L\ -[ 0.022826]: ACPI: Early table checksum verification disabledl -[ 0.023909]: ACPI: RSDP 0x00000000000F8F40 000014 (v00 AMAZON) -[ 0.025017]: ACPI: RSDT 0x00000000BFFEE350 000044 (v01 AMAZON AMZNRSDT 00000001 AMZN 00000001) -[ 0.026643]: ACPI: FACP 0x00000000BFFEFF80 000074 (v01 AMAZON AMZNFACP 00000001 AMZN 00000001) -[ 0.028264]: ACPI: DSDT 0x00000000BFFEE3A0 0010E9 (v01 AMAZON AMZNDSDT 00000001 AMZN 00000001) -[ 0.029872]: ACPI: FACS 0x00000000BFFEFF40 000040$ -[ 0.030742]: ACPI: SSDT 0x00000000BFFEF6C0 00087A (v01 AMAZON AMZNSSDT 00000001 AMZN 00000001) -[ 0.032356]: ACPI: APIC 0x00000000BFFEF5D0 000076 (v01 AMAZON AMZNAPIC 00000001 AMZN 00000001) -[ 0.033967]: ACPI: SRAT 0x00000000BFFEF530 0000A0 (v01 AMAZON AMZNSRAT 00000001 AMZN 00000001) -[ 0.035587]: ACPI: SLIT 0x00000000BFFEF4C0 00006C (v01 AMAZON AMZNSLIT 00000001 AMZN 00000001) -[ 0.037212]: ACPI: WAET 0x00000000BFFEF490 000028 (v01 AMAZON AMZNWAET 00000001 AMZN 00000001) -[ 0.038827]: ACPI: HPET 0x00000000000C9000 000038 (v01 AMAZON AMZNHPET 00000001 AMZN 00000001) -[ 0.040460]: ACPI: SSDT 0x00000000000C9040 00007B (v01 AMAZON AMZNSSDT 00000001 AMZN 00000001) -[ 0.042222]: ACPI: Reserving FACP table memory at [mem 0xbffeff80-0xbffefff3] -[ 0.043565]: ACPI: Reserving DSDT table memory at [mem 0xbffee3a0-0xbffef488]%> -[ 0.044908]: ACPI: Reserving FACS table memory at [mem 0xbffeff40-0xbffeff7f]`a -[ 0.046293]: ACPI: Reserving SSDT table memory at [mem 0xbffef6c0-0xbffeff39] -[ 0.047651]: ACPI: Reserving APIC table memory at [mem 0xbffef5d0-0xbffef645]s -[ 0.049050]: ACPI: Reserving SRAT table memory at [mem 0xbffef530-0xbffef5cf]?Y -[ 0.050420]: ACPI: Reserving SLIT table memory at [mem 0xbffef4c0-0xbffef52b]# -[ 0.051848]: ACPI: Reserving WAET table memory at [mem 0xbffef490-0xbffef4b7]+ -[ 0.053202]: ACPI: Reserving HPET table memory at [mem 0xc9000-0xc9037] -[ 0.054442]: ACPI: Reserving SSDT table memory at [mem 0xc9040-0xc90ba] -[ 0.055784]: ACPI: Local APIC address 0xfee00000 -[ 0.055866]: SRAT: PXM 0 -> APIC 0x00 -> Node 0 -[ 0.056733]: SRAT: PXM 0 -> APIC 0x01 -> Node 0 -[ 0.057573]: ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0xbfffffff]8 -[ 0.058800]: ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x23fffffff] -[ 0.059991]: NUMA: Initialized distance table, cnt=1 -[ 0.059993]: NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x2399fffff] -> [mem 0x00000000-0x2399fffff]8( -[ 0.062072]: NODE_DATA(0) allocated [mem 0x2399d4000-0x2399fefff]Y -[ 0.063592]: Reserving 256MB of low memory at 2800MB for crashkernel (System low RAM: 3071MB)8 -[ 0.065222]: Reserving 256MB of memory at 8848MB for crashkernel (System RAM: 8089MB)t  -[ 0.066784]: Zone ranges: -[ 0.067298]: DMA [mem 0x0000000000001000-0x0000000000ffffff] -[ 0.068563]: DMA32 [mem 0x0000000001000000-0x00000000ffffffff] -[ 0.069740]: Normal [mem 0x0000000100000000-0x00000002399fffff] -[ 0.070918]: Device emptyppB -[ 0.071463]: Movable zone start for each nodeN -[ 0.072278]: Early memory node rangesIY -[ 0.072960]: node 0: [mem 0x0000000000001000-0x000000000009efff] -[ 0.074159]: node 0: [mem 0x0000000000100000-0x00000000bffe9fff] -[ 0.075375]: node 0: [mem 0x0000000100000000-0x00000002399fffff] -[ 0.076825]: Zeroed struct page in unavailable ranges: 26232 pages -[ 0.076826]: Initmem setup node 0 [mem 0x0000000000001000-0x00000002399fffff] -[ 0.079348]: On node 0 totalpages: 2070920 -[ 0.079349]: DMA zone: 64 pages used for memmapȺ -[ 0.079349]: DMA zone: 158 pages reserved -[ 0.079350]: DMA zone: 3998 pages, LIFO batch:0 -[ 0.079406]: DMA32 zone: 12224 pages used for memmap -[ 0.079406]: DMA32 zone: 782314 pages, LIFO batch:63 -[ 0.090744]: Normal zone: 20072 pages used for memmap -[ 0.090745]: Normal zone: 1284608 pages, LIFO batch:63 -[ 0.107899]: ACPI: PM-Timer IO Port: 0xb008 -[ 0.108699]: ACPI: Local APIC address 0xfee00000 -[ 0.108708]: ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) -[ 0.109886]: IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 -[ 0.111230]: ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) -[ 0.112526]: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) -[ 0.113812]: ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) -[ 0.115122]: ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) -[ 0.116439]: ACPI: IRQ5 used by override. -[ 0.116439]: ACPI: IRQ9 used by override.. -[ 0.116440]: ACPI: IRQ10 used by override. -[ 0.116440]: ACPI: IRQ11 used by override. -[ 0.116442]: Using ACPI (MADT) for SMP configuration information -[ 0.117584]: ACPI: HPET id: 0x8086a201 base: 0xfed00000 -[ 0.118569]: TSC deadline timer availableb -[ 0.119337]: smpboot: Allowing 2 CPUs, 0 hotplug CPUs- -[ 0.120393]: PM: Registered nosave memory: [mem 0x00000000-0x00000fff] -[ 0.121647]: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff] -[ 0.122903]: PM: Registered nosave memory: [mem 0x000a0000-0x000effff] -[ 0.124155]: PM: Registered nosave memory: [mem 0x000f0000-0x000fffff] -[ 0.125406]: PM: Registered nosave memory: [mem 0xbffea000-0xbfffffff] -[ 0.126650]: PM: Registered nosave memory: [mem 0xc0000000-0xdfffffff] -[ 0.127888]: PM: Registered nosave memory: [mem 0xe0000000-0xe03fffff] -[ 0.129137]: PM: Registered nosave memory: [mem 0xe0400000-0xfffbffff] -[ 0.130372]: PM: Registered nosave memory: [mem 0xfffc0000-0xffffffff] -[ 0.131601]: [mem 0xc0000000-0xdfffffff] available for PCI devices -[ 0.132778]: Booting paravirtualized kernel on KVM -[ 0.133689]: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns -[ 0.135724]: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -[ 0.137568]: percpu: Embedded 59 pages/cpu s204800 r8192 d28672 u1048576 -[ 0.138858]: pcpu-alloc: s204800 r8192 d28672 u1048576 alloc=1*2097152 -[ 0.138859]: pcpu-alloc: [0] 0 1 %G -[ 0.138880]: setup async PF for cpu 0CQ -[ 0.139575]: kvm-stealtime: cpu 0, msr 239631040 -[ 0.140468]: PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear) -[ 0.142048]: Built 1 zonelists, mobility grouping on. Total pages: 2038402 -[ 0.143364]: Policy zone: Normal -[ 0.143961]: Kernel command line: BOOT_IMAGE=/ROOT/delphix.i4TlGPg/root@/boot/vmlinuz-5.4.0-1097-dx2023030807-1b2b35b91-aws root=ZFS=rpool/ROOT/delphix.i4TlGPg/root ro console=tty0 console=ttyS0,38400n8 mitigations=off ipv6.disable=1 elevator=noop crashkernel=256M,high crashkernel=256M,low init_on_alloc=0 usbcore.nousb=1 nvme_core.io_timeout=4294967295 earlyprintk=ttyS0,38400n8 rootdelay=300 -[ 0.151904]: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear) -[ 0.154017]: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) -[ 0.155542]: mem auto-init: stack:off, heap alloc:off, heap free:off -[ 0.166060]: Calgary: detecting Calgary via BIOS EBDA area -[ 0.166070]: Calgary: Unable to locate Rio Grande table in EBDA - bailing! -[ 0.183471]: Memory: 7491616K/8283680K available (12291K kernel code, 2188K rwdata, 8040K rodata, 2544K init, 5380K bss, 792064K reserved, 0K cma-reserved) -[ 0.186356]: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 -[ 0.187606]: ftrace: allocating 38930 entries in 153 pages -[ 0.202206]: rcu: Hierarchical RCU implementation. -[ 0.203112]: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=2. -[ 0.204428]: Tasks RCU enabled. -[ 0.205031]: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. -[ 0.206473]: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2ُ -[ 0.210210]: NR_IRQS: 524544, nr_irqs: 440, preallocated irqs: 16˛ -[ 0.211536]: random: crng init done -[ 0.276833]: Console: colour VGA+ 80x25 -[ 0.798264]: printk: console [tty0] enabled -[ 0.801794]: printk: console [ttyS0] enabled -[ 0.806170]: printk: bootconsole [earlyser0] disabledSTV0 -[ 0.810964]: ACPI: Core revision 201908160 -[ 0.814587]: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 30580167144 ns -[ 0.878708]: APIC: Switch to symmetric I/O mode setupz4 -[ 0.883039]: x2apic enabled -[ 0.886421]: Switched APIC routing to physical x2apic. -[ 0.892164]: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x24093623c91, max_idle_ns: 440795291220 ns5 -[ 0.899979]: Calibrating delay loop (skipped) preset value.. 4999.99 BogoMIPS (lpj=9999984) -[ 0.903975]: pid_max: default: 32768 minimum: 301p5 -[ 0.903975]: LSM: Security Framework initializingp5 -[ 0.903975]: Yama: becoming mindful. -[ 0.903975]: AppArmor: AppArmor initialized -[ 0.903975]: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) -[ 0.903975]: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) -[ 0.903975]: *** VALIDATE tmpfs *** -[ 0.903975]: *** VALIDATE proc *** -[ 0.903975]: *** VALIDATE cgroup1 ***p5 -[ 0.903975]: *** VALIDATE cgroup2 ***p5 -[ 0.903975]: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8 -[ 0.903975]: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4p5 -[ 0.903975]: Speculative Store Bypass: Vulnerablep5 -[ 0.903975]: Freeing SMP alternatives memory: 36Kp5 -[ 0.903975]: smpboot: CPU0: Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz (family: 0x6, model: 0x55, stepping: 0x7) -[ 0.904074]: Performance Events: unsupported p6 CPU model 85 no PMU driver, software events only.|6 -[ 0.908033]: rcu: Hierarchical SRCU implementation. -[ 0.912309]: NMI watchdog: Perf NMI watchdog permanently disabled6 -[ 0.916039]: smp: Bringing up secondary CPUs ... -[ 0.919826]: x86: Booting SMP configuration: -[ 0.919983]: .... node #0, CPUs: #1GE) -[ 0.692448]: kvm-clock: cpu 1, msr 16a601041, secondary cpu clockl6 -[ 0.922446]: setup async PF for cpu 1p7 -[ 0.923975]: kvm-stealtime: cpu 1, msr 239731040 -[ 0.932030]: smp: Brought up 1 node, 2 CPUs -[ 0.935980]: smpboot: Max logical packages: 19 -[ 0.939574]: smpboot: Total of 2 processors activated (9999.98 BogoMIPS) -[ 0.940488]: devtmpfs: initialized -[ 0.943236]: x86/mm: Memory block size: 128MB\_8 -[ 0.948068]: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns -[ 0.951990]: futex hash table entries: 512 (order: 3, 32768 bytes, linear) -[ 0.960242]: PM: RTC time: 17:56:05, date: 2023-03-13v9 -[ 0.964096]: NET: Registered protocol family 16 -[ 0.967863]: audit: initializing netlink subsys (disabled) -[ 0.972002]: audit: type=2000 audit(1678730165.177:1): state=initialized audit_enabled=0 res=1 -[ 0.979987]: cpuidle: using governor ladder -[ 0.983630]: cpuidle: using governor menu8ҧ: -[ 0.984076]: ACPI: bus type PCI registered -[ 0.987770]: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -[ 0.988078]: PCI: Using configuration type 1 for base access -[ 0.993286]: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages]; -[ 0.995987]: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pagesQ-; -[ 1.000025]: ACPI: Added _OSI(Module Device) -[ 1.003985]: ACPI: Added _OSI(Processor Device) -[ 1.007633]: ACPI: Added _OSI(3.0 _SCP Extensions) -[ 1.007988]: ACPI: Added _OSI(Processor Aggregator Device) -[ 1.011980]: ACPI: Added _OSI(Linux-Dell-Video) -[ 1.015614]: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)ʞ< -[ 1.015979]: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) -[ 1.020707]: ACPI: 3 ACPI AML tables successfully acquired and loaded= -[ 1.024897]: ACPI: Interpreter enabled -[ 1.027988]: ACPI: (supports S0 S4 S5) -[ 1.031334]: ACPI: Using IOAPIC for interrupt routing= -[ 1.031995]: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug= -[ 1.036309]: ACPI: Enabled 16 GPEs in block 00 to 0F -[ 1.042106]: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -[ 1.043988]: acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3]SUBSYSTEM=acpi -[ 1.047989]: acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.SUBSYSTEM=acpi -[ 1.052282]: acpiphp: Slot [3] registered$u> -[ 1.055749]: acpiphp: Slot [4] registered?> -[ 1.055997]: acpiphp: Slot [5] registered%? -[ 1.059451]: acpiphp: Slot [6] registered;=.? -[ 1.059994]: acpiphp: Slot [7] registeredc? -[ 1.063494]: acpiphp: Slot [8] registeredDk? -[ 1.063994]: acpiphp: Slot [9] registeredK̟? -[ 1.067437]: acpiphp: Slot [10] registered -[ 1.067996]: acpiphp: Slot [11] registered -[ 1.071445]: acpiphp: Slot [12] registered -[ 1.071998]: acpiphp: Slot [13] registered -[ 1.075487]: acpiphp: Slot [14] registered -[ 1.075994]: acpiphp: Slot [15] registered -[ 1.079491]: acpiphp: Slot [16] registered -[ 1.079996]: acpiphp: Slot [17] registered -[ 1.083514]: acpiphp: Slot [18] registered -[ 1.084000]: acpiphp: Slot [19] registered -[ 1.087461]: acpiphp: Slot [20] registered -[ 1.087994]: acpiphp: Slot [21] registered -[ 1.091467]: acpiphp: Slot [22] registered -[ 1.091995]: acpiphp: Slot [23] registered -[ 1.095665]: acpiphp: Slot [24] registered -[ 1.095996]: acpiphp: Slot [25] registered -[ 1.099469]: acpiphp: Slot [26] registered -[ 1.099994]: acpiphp: Slot [27] registered -[ 1.103433]: acpiphp: Slot [28] registered -[ 1.103994]: acpiphp: Slot [29] registered -[ 1.107464]: acpiphp: Slot [30] registered -[ 1.107995]: acpiphp: Slot [31] registered -[ 1.111457]: PCI host bridge to bus 0000:00 -[ 1.111988]: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]SUBSYSTEM=pci_bus -[ 1.116016]: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]SUBSYSTEM=pci_bus -[ 1.119982]: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]SUBSYSTEM=pci_bus -[ 1.123981]: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]SUBSYSTEM=pci_bus -[ 1.127981]: pci_bus 0000:00: root bus resource [bus 00-ff]SUBSYSTEM=pci_bus -[ 1.132023]: pci 0000:00:00.0: [8086:1237] type 00 class 0x060000SUBSYSTEM=pci -[ 1.136673]: pci 0000:00:01.0: [8086:7000] type 00 class 0x060100SUBSYSTEM=pci -[ 1.141097]: pci 0000:00:01.3: [8086:7113] type 00 class 0x000000SUBSYSTEM=pci -[ 1.144862]: pci 0000:00:01.3: quirk: [io 0xb000-0xb03f] claimed by PIIX4 ACPISUBSYSTEM=pci -[ 1.147995]: pci 0000:00:01.3: quirk: [io 0xb100-0xb10f] claimed by PIIX4 SMBSUBSYSTEM=pci -[ 1.152041]: pci 0000:00:01.3: PIIX4 devres E PIO at fff0-ffffSUBSYSTEM=pci -[ 1.155996]: pci 0000:00:01.3: PIIX4 devres F MMIO at ffc00000-ffffffffSUBSYSTEM=pci -[ 1.159994]: pci 0000:00:01.3: PIIX4 devres G PIO at fff0-ffffSUBSYSTEM=pci -[ 1.163998]: pci 0000:00:01.3: PIIX4 devres H MMIO at ffc00000-ffffffffSUBSYSTEM=pci -[ 1.167997]: pci 0000:00:01.3: PIIX4 devres I PIO at fff0-ffffSUBSYSTEM=pci -[ 1.171997]: pci 0000:00:01.3: PIIX4 devres J PIO at fff0-ffffSUBSYSTEM=pci -[ 1.175984]: pci 0000:00:01.3: quirk_piix4_acpi+0x0/0x170 took 31250 usecsSUBSYSTEM=pci -[ 1.180804]: pci 0000:00:03.0: [1d0f:1111] type 00 class 0x030000SUBSYSTEM=pci -[ 1.184672]: pci 0000:00:03.0: reg 0x10: [mem 0xfe400000-0xfe7fffff pref]SUBSYSTEM=pci -[ 1.190200]: pci 0000:00:03.0: reg 0x30: [mem 0xfebe0000-0xfebeffff pref]SUBSYSTEM=pci -[ 1.192597]: pci 0000:00:04.0: [1d0f:8061] type 00 class 0x010802SUBSYSTEM=pci -[ 1.197432]: pci 0000:00:04.0: reg 0x10: [mem 0xfebf0000-0xfebf3fff]SUBSYSTEM=pci -[ 1.204837]: pci 0000:00:05.0: [1d0f:ec20] type 00 class 0x020000SUBSYSTEM=pci -[ 1.208814]: pci 0000:00:05.0: reg 0x10: [mem 0xfebf4000-0xfebf7fff]SUBSYSTEM=pci -[ 1.223926]: ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) -[ 1.224092]: ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) -[ 1.228078]: ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) -[ 1.232074]: ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) -[ 1.236027]: ACPI: PCI Interrupt Link [LNKS] (IRQs *9) -[ 1.240182]: iommu: Default domain type: Translated -[ 1.244093]: SCSI subsystem initialized -[ 1.247653]: pci 0000:00:03.0: vgaarb: setting as boot VGA deviceSUBSYSTEM=pci -[ 1.247975]: pci 0000:00:03.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=noneSUBSYSTEM=pci -[ 1.247986]: pci 0000:00:03.0: vgaarb: bridge control possibleSUBSYSTEM=pci -[ 1.251979]: vgaarb: loaded -[ 1.254969]: pps_core: LinuxPPS API ver. 1 registeredJ -[ 1.255979]: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti lK -[ 1.259982]: PTP clock support registeredNK -[ 1.263445]: EDAC MC: Ver: 3.0.0 -[ 1.264172]: PCI: Using ACPI for IRQ routing -[ 1.267980]: PCI: pci_cache_line_size set to 64 bytesK -[ 1.268117]: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]K -[ 1.268119]: e820: reserve RAM buffer [mem 0xbffea000-0xbfffffff]K -[ 1.268119]: e820: reserve RAM buffer [mem 0x239a00000-0x23bffffff] -[ 1.268212]: NetLabel: Initializing -[ 1.271465]: NetLabel: domain hash size = 128 -[ 1.271979]: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO#L -[ 1.275994]: NetLabel: unlabeled traffic allowed by default -[ 1.280075]: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 -[ 1.283980]: hpet0: 8 comparators, 32-bit 62.500000 MHz counter -[ 1.291086]: clocksource: Switched to clocksource kvm-clock -[ 1.302800]: *** VALIDATE bpf ***'M -[ 1.306040]: VFS: Disk quotas dquot_6.6.0 N -[ 1.309477]: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) -[ 1.314151]: *** VALIDATE ramfs *** -[ 1.317364]: *** VALIDATE hugetlbfs *** -[ 1.321014]: AppArmor: AppArmor Filesystem Enabled -[ 1.324788]: pnp: PnP ACPI init -[ 1.327923]: pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)SUBSYSTEM=pnp -[ 1.327954]: pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)SUBSYSTEM=pnp -[ 1.327971]: pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)SUBSYSTEM=pnp -[ 1.328026]: pnp 00:03: Plug and Play ACPI device, IDs PNP0400 (active)SUBSYSTEM=pnp -[ 1.328066]: pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)SUBSYSTEM=pnp -[ 1.328267]: pnp: PnP ACPI: found 5 devices -[ 1.334290]: thermal_sys: Registered thermal governor 'fair_share' -[ 1.334291]: thermal_sys: Registered thermal governor 'bang_bang' O -[ 1.338640]: thermal_sys: Registered thermal governor 'step_wise' P -[ 1.342951]: thermal_sys: Registered thermal governor 'user_space' -[ 1.347229]: thermal_sys: Registered thermal governor 'power_allocator' -[ 1.356196]: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns -[ 1.367868]: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]SUBSYSTEM=pci_bus -[ 1.372245]: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]SUBSYSTEM=pci_bus -[ 1.376632]: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]SUBSYSTEM=pci_bus -[ 1.381288]: pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfebfffff window]SUBSYSTEM=pci_bus -[ 1.386109]: NET: Registered protocol family 2 -[ 1.390127]: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear) -[ 1.397849]: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear) -[ 1.506007]: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear) -[ 1.512891]: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)ݒZ -[ 1.519574]: TCP: Hash tables configured (established 65536 bind 65536) -[ 1.524296]: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear) -[ 1.528936]: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear) -[ 1.535468]: NET: Registered protocol family 1 -[ 1.539079]: NET: Registered protocol family 44 -[ 1.542775]: pci 0000:00:00.0: Limiting direct PCI/PCI transfersSUBSYSTEM=pci -[ 1.547154]: pci 0000:00:01.0: Activating ISA DMA hang workaroundsSUBSYSTEM=pci -[ 1.551596]: pci 0000:00:03.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]SUBSYSTEM=pci -[ 1.558581]: PCI: CLS 0 bytes, default 64] -[ 1.562056]: Trying to unpack rootfs image as initramfs... -[ 1.622341]: Freeing initrd memory: 24344K -[ 1.625898]: PCI-DMA: Using software bounce buffering for IO (SWIOTLB) -[ 1.630391]: software IO TLB: mapped [mem 0xab000000-0xaf000000] (64MB) -[ 1.635003]: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x24093623c91, max_idle_ns: 440795291220 ns -[ 1.642633]: clocksource: Switched to clocksource tsc$b -[ 1.646584]: check: Scanning for low memory corruption every 60 seconds -[ 1.651481]: Initialise system trusted keyrings -[ 1.655168]: Key type blacklist registered -[ 1.658724]: workingset: timestamp_bits=36 max_order=21 bucket_order=0 -[ 1.664259]: zbud: loaded}bc -[ 1.667398]: squashfs: version 4.0 (2009/01/31) Phillip Lougher -[ 1.671628]: fuse: init (API version 7.31) -[ 1.675138]: *** VALIDATE fuse *** -[ 1.678334]: *** VALIDATE fuse *** -[ 1.681610]: Platform Keyring initializedd -[ 1.687650]: Key type asymmetric registered -[ 1.691166]: Asymmetric key parser 'x509' registered -[ 1.694985]: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)ke -[ 1.701561]: io scheduler mq-deadline registered -[ 1.705403]: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4]e -[ 1.710101]: intel_idle: Please enable MWAIT in BIOS SETUP -[ 1.710152]: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0ERf -[ 1.716706]: ACPI: Power Button [PWRF] -[ 1.720106]: input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1f -[ 1.726787]: ACPI: Sleep Button [SLPF] -[ 1.730349]: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -[ 1.762165]: 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A -[ 1.896055]: loop: module loaded -[ 1.899645]: nvme nvme0: pci function 0000:00:04.0SUBSYSTEM=nvme -[ 1.903576]: tun: Universal TUN/TAP device driver, 1.6 -[ 1.903963]: PCI Interrupt Link [LNKD] enabled at IRQ 11 -[ 1.911770]: PPP generic driver version 2.4.2\.r -[ 1.915641]: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 -[ 1.922818]: i8042: Warning: Keylock active -[ 1.927745]: serio: i8042 KBD port at 0x60,0x64 irq 1#s -[ 1.931728]: serio: i8042 AUX port at 0x60,0x64 irq 12 -[ 1.936081]: mousedev: PS/2 mouse device common for all mice -[ 1.941215]: device-mapper: uevent: version 1.0.3IZs -[ 1.945393]: device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com$at -[ 1.952567]: intel_pstate: CPU model not supported -[ 1.956651]: drop_monitor: Initializing network drop monitor service -[ 1.961531]: IPv6: Loaded, but administratively disabled, reboot required to enable -[ 1.968482]: NET: Registered protocol family 17 -[ 1.972487]: Key type dns_resolver registeredu -[ 1.976435]: RAS: Correctable Errors collector initialized. -[ 1.980719]: IPI shorthand broadcast: enabledGv -[ 1.984364]: sched_clock: Marking stable (1295906341, 688448583)->(2210674289, -226319365) -[ 1.991418]: registered taskstats version 1 -[ 1.994990]: Loading compiled-in X.509 certificates -[ 1.999457]: Loaded X.509 cert 'Build time autogenerated kernel key: d75159e73df885c74bd5a7099453852c8f4d6183' -[ 2.007673]: Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969' -[ 2.015743]: Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19' -[ 2.023648]: blacklist: Loading compiled-in revocation X.509 certificates=x -[ 2.028289]: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'8 -Yy -[ 2.035878]: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03' -[ 2.043740]: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b' -[ 2.051719]: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8' -[ 2.059619]: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d' -[ 2.067591]: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c' -[ 2.075613]: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af' -[ 2.083681]: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9' -[ 2.092033]: zswap: loaded using pool lzo/zbud -[ 2.095788]: Key type ._fscrypt registered -[ 2.099272]: Key type .fscrypt registeredΉ} -[ 2.107017]: Key type big_key registered -[ 2.112506]: Key type encrypted registered -[ 2.116284]: AppArmor: AppArmor sha1 policy hashing enabled -[ 2.120466]: ima: No TPM chip found, activating TPM-bypass! -[ 2.124769]: ima: Allocated hash algorithm: sha1 -[ 2.128503]: ima: No architecture policies found -[ 2.132741]: nvme nvme0: 2/0/0 default/read/poll queuesSUBSYSTEM=nvme -[ 2.132821]: evm: Initialising EVM extended attributes: -[ 2.141113]: evm: security.selinux -[ 2.141196]: nvme0n1: p1 p2 -[ 2.144474]: evm: security.SMACK64 -[ 2.144475]: evm: security.SMACK64EXEC -[ 2.144475]: evm: security.SMACK64TRANSMUTE -[ 2.144476]: evm: security.SMACK64MMAP -[ 2.144476]: evm: security.apparmor -[ 2.144476]: evm: security.ima -[ 2.144477]: evm: security.capability4% -[ 2.144478]: evm: HMAC attrs: 0x1 -[ 2.174228]: PM: Magic number: 15:651:946 -[ 2.177840]: tty tty3: hash matchesSUBSYSTEM=tty -[ 2.181148]: processor cpu1: hash matchesSUBSYSTEM=cpu -[ 2.193024]: Freeing unused decrypted memory: 2040K -[ 2.197523]: Freeing unused kernel image memory: 2544K -[ 2.203996]: Write protecting the kernel read-only data: 22528k -[ 2.208898]: Freeing unused kernel image memory: 2036K -[ 2.212942]: Freeing unused kernel image memory: 152K$ -[ 2.224599]: x86/mm: Checked W+X mappings: passed, no W+X pages found. -[ 2.229152]: Run /init as init process -[ 2.283584]: piix4_smbus 0000:00:01.3: SMBus Host Controller at 0xb100, revision 255SUBSYSTEM=pci -[ 2.292202]: ena: ENA device version: 0.10 -[ 2.296115]: ena: ENA controller version: 0.0.1 implementation version 1 -[ 2.310155]: ena 0000:00:05.0: LLQ is not supported Fallback to host mode policy.SUBSYSTEM=pci -[ 2.324595]: ena 0000:00:05.0: Elastic Network Adapter (ENA) found at mem febf4000, mac addr 02:9a:a6:27:9f:6dSUBSYSTEM=pci -[ 2.333273]: ena 0000:00:05.0 enx029aa6279f6d: renamed from eth0SUBSYSTEM=pci -[ 2.468686]: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 -[ 4.407990]: raid6: avx512x4 gen() 24863 MB/s  -[ 4.459992]: raid6: avx512x4 xor() 12019 MB/s  -[ 4.512008]: raid6: avx512x2 gen() 24425 MB/s( -[ 4.563990]: raid6: avx512x2 xor() 16072 MB/s$ -[ 4.616131]: raid6: avx512x1 gen() 16215 MB/s; -[ 4.667989]: raid6: avx512x1 xor() 12469 MB/sU -[ 4.720017]: raid6: avx2x4 gen() 21148 MB/s}n -[ 4.771998]: raid6: avx2x4 xor() 13037 MB/s B -[ 4.823990]: raid6: avx2x2 gen() 18256 MB/s " -[ 4.880503]: raid6: avx2x2 xor() 8608 MB/s(!% -[ 4.931985]: raid6: avx2x1 gen() 14485 MB/s˚) -[ 4.983986]: raid6: avx2x1 xor() 9904 MB/st+ -[ 5.031984]: raid6: sse2x4 gen() 9563 MB/so. -[ 5.079986]: raid6: sse2x4 xor() 6060 MB/s1 -[ 5.127989]: raid6: sse2x2 gen() 8856 MB/sw:4 -[ 5.175982]: raid6: sse2x2 xor() 5636 MB/sҜ7 -[ 5.227991]: raid6: sse2x1 gen() 7826 MB/se'y: -[ 5.275985]: raid6: sse2x1 xor() 4561 MB/s -: -[ 5.280144]: raid6: using algorithm avx512x4 gen() 24863 MB/sT: -[ 5.284618]: raid6: .... xor() 12019 MB/s, rmw enabled -[ 5.288861]: raid6: using avx512x2 recovery algorithmΊ; -[ 5.293919]: async_tx: api initialized (async) -[ 5.298611]: xor: automatically using best checksumming function avx -[ 5.337383]: spl: loading out-of-tree module taints kernel. -[ 5.342024]: spl: module verification failed: signature and/or required key missing - tainting kernel6 ? -[ 5.352535]: zfs: module license 'CDDL' taints kernel. -[ 5.356691]: Disabling lock debugging due to kernel taint" -[ 6.552395]: ZFS: Loaded module v2.1.99-delphix+2023.03.11.01-ab8da03, ZFS pool version 5000, ZFS filesystem version 5 -[ 15.455890]: systemd[1]: Inserted module 'autofs4' -[ 15.908114]: systemd[1]: systemd 245.4-4ubuntu3.20 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid) -[ 15.927680]: systemd[1]: Detected virtualization kvm.d -[ 15.932432]: systemd[1]: Detected architecture x86-64. -[ 15.940533]: pci 0000:00:1f.0: [1d0f:8061] type 00 class 0x010802SUBSYSTEM=pci -[ 15.946012]: pci 0000:00:1f.0: reg 0x10: [mem 0x00000000-0x00003fff]SUBSYSTEM=pci -[ 15.953784]: pci 0000:00:1f.0: BAR 0: assigned [mem 0xc0000000-0xc0003fff]SUBSYSTEM=pci -[ 15.959013]: nvme nvme1: pci function 0000:00:1f.0SUBSYSTEM=nvme -[ 15.963463]: nvme 0000:00:1f.0: enabling device (0000 -> 0002)SUBSYSTEM=pci -[ 16.094367]: PCI Interrupt Link [LNKC] enabled at IRQ 10 -[ 16.213554]: nvme nvme1: 2/0/0 default/read/poll queuesSUBSYSTEM=nvme -[ 16.266772]: systemd[1]: Set hostname to .< -[ 16.311444]: pci 0000:00:1e.0: [1d0f:8061] type 00 class 0x010802SUBSYSTEM=pci -[ 16.316808]: pci 0000:00:1e.0: reg 0x10: [mem 0x00000000-0x00003fff]SUBSYSTEM=pci -[ 16.323142]: pci 0000:00:1e.0: BAR 0: assigned [mem 0xc0004000-0xc0007fff]SUBSYSTEM=pci -[ 16.329601]: nvme nvme2: pci function 0000:00:1e.0SUBSYSTEM=nvme -[ 16.333977]: nvme 0000:00:1e.0: enabling device (0000 -> 0002)SUBSYSTEM=pci -[ 16.341218]: PCI Interrupt Link [LNKB] enabled at IRQ 10 -[ 16.460554]: nvme nvme2: 2/0/0 default/read/poll queuesSUBSYSTEM=nvme -[ 16.487284]: pci 0000:00:1d.0: [1d0f:8061] type 00 class 0x010802SUBSYSTEM=pci -[ 16.492243]: pci 0000:00:1d.0: reg 0x10: [mem 0x00000000-0x00003fff]SUBSYSTEM=pci -[ 16.498768]: pci 0000:00:1d.0: BAR 0: assigned [mem 0xc0008000-0xc000bfff]SUBSYSTEM=pci -[ 16.504697]: nvme nvme3: pci function 0000:00:1d.0SUBSYSTEM=nvme -[ 16.509726]: nvme 0000:00:1d.0: enabling device (0000 -> 0002)SUBSYSTEM=pci -[ 16.518138]: PCI Interrupt Link [LNKA] enabled at IRQ 11 -[ 16.525239]: systemd[1]: Initializing machine ID from KVM UUID. -[ 16.636454]: nvme nvme3: 2/0/0 default/read/poll queuesSUBSYSTEM=nvme -[ 19.763645]: systemd[1]: Created slice system-delphix\x2dpostgres.slice. -[ 19.771668]: systemd[1]: Created slice system-modprobe.slice.x -[ 19.779451]: systemd[1]: Created slice system-serial\x2dgetty.slice. -[ 19.787408]: systemd[1]: Created slice User and Session Slice. -[ 19.795015]: systemd[1]: Started ntp-systemd-netif.path. -[ 19.801986]: systemd[1]: Started Dispatch Password Requests to Console Directory Watch. -[ 19.813433]: systemd[1]: Started Forward Password Requests to Wall Directory Watch. -[ 19.826295]: systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. -[ 19.837773]: systemd[1]: Reached target Local Encrypted Volumes. -[ 19.846051]: systemd[1]: Reached target Paths. -[ 19.852320]: systemd[1]: Reached target Slices. -[ 19.859128]: systemd[1]: Reached target Swap.fŤ -[ 19.944269]: systemd[1]: Listening on Syslog Socket. -[ 19.952877]: systemd[1]: Listening on initctl Compatibility Named Pipe. -[ 19.968146]: systemd[1]: Listening on Journal Audit Socket. -[ 19.980201]: systemd[1]: Listening on Journal Socket (/dev/log). -[ 19.987463]: systemd[1]: Listening on Journal Socket.6( -[ 20.001067]: systemd[1]: Listening on Network Service Netlink Socket. -[ 20.009909]: systemd[1]: Listening on udev Control Socket. -[ 20.022761]: systemd[1]: Listening on udev Kernel Socket.I  -[ 20.032893]: systemd[1]: Mounting Huge Pages File System... -[ 20.041072]: systemd[1]: Mounting POSIX Message Queue File System... -[ 20.051010]: systemd[1]: Mounting NFSD configuration filesystem... -[ 20.064374]: systemd[1]: Mounting RPC Pipe File System...jh -[ 20.072404]: systemd[1]: Mounting Kernel Debug File System... -[ 20.084225]: systemd[1]: Mounting Kernel Trace File System...Ig֭ -[ 20.096378]: systemd[1]: Starting Journal Service... -[ 20.103041]: systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. -[ 20.168731]: systemd[1]: Starting Set the console keyboard layout... -[ 20.176711]: systemd[1]: Starting Create list of static device nodes for the current kernel... -[ 20.187555]: systemd[1]: Starting Load Kernel Module chromeos_pstore... -[ 20.196139]: systemd[1]: Starting Load Kernel Module drm... -[ 20.203074]: systemd[1]: Starting Load Kernel Module efi_pstore... -[ 20.211133]: systemd[1]: Starting Load Kernel Module pstore_blk... -[ 20.219465]: systemd[1]: Starting Load Kernel Module pstore_zone... -[ 20.227949]: systemd[1]: Starting Load Kernel Module ramoops... -[ 20.235599]: systemd[1]: Condition check resulted in OpenVSwitch configuration for cleanup being skipped.c -[ 20.344642]: systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. -[ 20.354887]: systemd[1]: Starting Load Kernel Modules... -[ 20.362824]: systemd[1]: Starting Remount Root and Kernel File Systems... -[ 20.371800]: systemd[1]: Starting udev Coldplug all Devices... -[ 20.379212]: systemd[1]: Starting Uncomplicated firewall... -[ 20.388742]: systemd[1]: Started Journal Service.nX -[ 20.624993]: RPC: Registered named UNIX socket transport module. -[ 20.629426]: RPC: Registered udp transport module. -[ 20.633935]: RPC: Registered tcp transport module. -[ 20.638639]: RPC: Registered tcp NFSv4.1 backchannel transport module. -[ 20.990666]: Installing knfsd (copyright (C) 1996 okir@monad.swb.de).OH -[ 26.978308]: systemd-journald[389]: Received client request to flush runtime journal.{ -[ 28.982319]: RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer -[ 29.058307]: cryptd: max_cpu_qlen set to 1000Y -[ 29.071566]: AVX2 version of gcm_enc/dec engaged. -[ 29.071568]: AES CTR mode by8 optimization enabled -[ 42.095571]: Rounding down aligned max_sectors from 4294967295 to 4294967288 -[ 42.095750]: db_root: cannot open: /etc/target -[ 43.101434]: NFSD: Using UMH upcall client tracking operations. -[ 43.101438]: NFSD: starting 20-second grace period (net f0000098)Eq: -[ 78.289935]: FS-Cache: Loaded -{@ -[ 78.391219]: FS-Cache: Netfs 'nfs' registered for caching;K -[ 78.577792]: NFS: Registering the id_resolver key type -[ 78.577801]: Key type id_resolver registered -[ 78.577801]: Key type id_legacy registered -[ 98.733744]: EXT4-fs (zd0): mounted filesystem with ordered data mode. Opts: (null) -[ 318.926248]: bpfilter: Loaded bpfilter_umh pid 7402 -[ 318.926526]: Started bpfilter] -[ 403.292608]: nvme1n1: p1 p9 -[ 679.097695]: nvme2n1: p1 p9 -[ 1135.198016]: iSCSI/iqn.2008-07.com.delphix:564dab6e-e4d1-9f59-c67f-396385c626f1: Unsupported SCSI Opcode 0xa3, sending CHECK_CONDITION. -[ 1598.030405]: sysrq: Trigger a crash -[ 1598.032724]: Kernel panic - not syncing: sysrq triggered crash -[ 1598.035976]: CPU: 1 PID: 11570 Comm: bash Kdump: loaded Tainted: P OE 5.4.0-1097-dx2023030807-1b2b35b91-aws #105 -[ 1598.042307]: Hardware name: Amazon EC2 t3.large/, BIOS 1.0 10/16/2017t -[ 1598.045996]: Call Trace: -[ 1598.047650]: dump_stack+0x6d/0x8b -[ 1598.051790]: panic+0x101/0x2e3 -[ 1598.055871]: sysrq_handle_crash+0x15/0x20 -[ 1598.060817]: __handle_sysrq.cold+0x48/0x107 -[ 1598.065682]: write_sysrq_trigger+0x28/0x40 -[ 1598.070897]: proc_reg_write+0x43/0x70 -[ 1598.075857]: __vfs_write+0x1b/0x40 -[ 1598.080175]: vfs_write+0xb9/0x1a0 -[ 1598.084858]: ksys_write+0x67/0xe0 -[ 1598.089075]: __x64_sys_write+0x1a/0x20 -[ 1598.093429]: do_syscall_64+0x57/0x190 -[ 1598.098077]: entry_SYSCALL_64_after_hwframe+0x5c/0xc1 -[ 1598.103748]: RIP: 0033:0x7f1e15a97077dt -[ 1598.108344]: Code: 64 89 02 48 c7 c0 ff ff ff ff eb bb 0f 1f 80 00 00 00 00 f3 0f 1e fa 64 8b 04 25 18 00 00 00 85 c0 75 10 b8 01 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 51 c3 48 83 ec 28 48 89 54 24 18 48 89 74 24 -[ 1598.125984]: RSP: 002b:00007fffb8bb39c8 EFLAGS: 00000246 ORIG_RAX: 0000000000000001 -[ 1598.136294]: RAX: ffffffffffffffda RBX: 0000000000000002 RCX: 00007f1e15a97077 -[ 1598.143107]: RDX: 0000000000000002 RSI: 000055754150dee0 RDI: 0000000000000001 -[ 1598.150081]: RBP: 000055754150dee0 R08: 000000000000000a R09: 0000000000000001 -[ 1598.156735]: R10: 0000557540e13017 R11: 0000000000000246 R12: 0000000000000002 -[ 1598.163456]: R13: 00007f1e15b766a0 R14: 00007f1e15b724a0 R15: 00007f1e15b718a0 -[ 1598.171192]: disable async PF for cpu 1 -@#$ EXIT CODE $#@ -0 diff --git a/tests/integration/test_linux_generic.py b/tests/integration/test_linux_generic.py index 3468e31..bef4ffa 100644 --- a/tests/integration/test_linux_generic.py +++ b/tests/integration/test_linux_generic.py @@ -116,8 +116,7 @@ STRIPPED_POS_CMDS = [ # dmesg "dmesg", - "dmesg | pp", - "dmesg | filter 'obj.level == 3' | dmesg", + "dmesg -l 3", ] NEG_CMDS = [