From f22b57c1d2bd9ba6e6db78552b9ac63934288500 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 26 Apr 2016 16:25:45 +0100 Subject: [PATCH] Add 2016 KVM Forum talk. --- 2016-kvm-forum/.gitignore | 8 + 2016-kvm-forum/Makefile | 10 + 2016-kvm-forum/NOTES.txt | 233 + 2016-kvm-forum/analysis-run.txt | 7052 +++++++++++++++++++++++++ 2016-kvm-forum/boot-analysis-screenshot-2.png | Bin 0 -> 79611 bytes 2016-kvm-forum/boot-analysis-screenshot-2.xcf | Bin 0 -> 175623 bytes 2016-kvm-forum/boot-analysis-screenshot.png | Bin 0 -> 75553 bytes 2016-kvm-forum/boot-analysis-screenshot.xcf | Bin 0 -> 176716 bytes 2016-kvm-forum/kernel-config-minimal | 1837 +++++++ 2016-kvm-forum/paper.tex | 554 ++ 2016-kvm-forum/progress.data | 7 + 2016-kvm-forum/progress.plot | 12 + 12 files changed, 9713 insertions(+) create mode 100644 2016-kvm-forum/.gitignore create mode 100644 2016-kvm-forum/Makefile create mode 100644 2016-kvm-forum/NOTES.txt create mode 100644 2016-kvm-forum/analysis-run.txt create mode 100644 2016-kvm-forum/boot-analysis-screenshot-2.png create mode 100644 2016-kvm-forum/boot-analysis-screenshot-2.xcf create mode 100644 2016-kvm-forum/boot-analysis-screenshot.png create mode 100644 2016-kvm-forum/boot-analysis-screenshot.xcf create mode 100644 2016-kvm-forum/kernel-config-minimal create mode 100644 2016-kvm-forum/paper.tex create mode 100644 2016-kvm-forum/progress.data create mode 100644 2016-kvm-forum/progress.plot diff --git a/2016-kvm-forum/.gitignore b/2016-kvm-forum/.gitignore new file mode 100644 index 0000000..28ae85e --- /dev/null +++ b/2016-kvm-forum/.gitignore @@ -0,0 +1,8 @@ +paper.aux +paper.dvi +paper.fdb_latexmk +paper.fls +paper.log +paper.out +paper.pdf +progress.pdf diff --git a/2016-kvm-forum/Makefile b/2016-kvm-forum/Makefile new file mode 100644 index 0000000..80add5a --- /dev/null +++ b/2016-kvm-forum/Makefile @@ -0,0 +1,10 @@ +all: paper.pdf + +paper.pdf: paper.tex progress.pdf + latexmk -pdf $< + +progress.pdf: progress.plot + gnuplot progress.plot + +clean: + rm -f *.pdf *.aux *.out *.log *~ diff --git a/2016-kvm-forum/NOTES.txt b/2016-kvm-forum/NOTES.txt new file mode 100644 index 0000000..c5193a0 --- /dev/null +++ b/2016-kvm-forum/NOTES.txt @@ -0,0 +1,233 @@ +Tools: + + - boot-benchmark + - boot-benchmark-range + - boot-analysis + - measurement of memory in the guest (free -m) and outside (qemu maxrss) + +Findings (glibc): + + - link-loading is very slow + qemu -version takes 60ms + +Findings (qemu): + + - loading the -kernel and -initrd takes 700ms, using "DMA" + makes it almost instant + + - UART is slow (4µs / char) (3 lines of text / ms), so enabling + debugging changes the results + + - SGABIOS 260ms delay, fixed by emulating a serial terminal + + - "feature detection" takes 99ms (but most of that is + glibc's slow link-loader) + * implemented memoization in libguestfs to reduce this to 0 + +Findings (libvirt): + + - 200ms delay waiting for qemu monitor + +Findings (kernel): + + - PCI probing is slow, pci_subsys_init [acpi=off] takes 95ms + insmod virtio_pci takes 51ms + initcall virtio_pci_driver takes 22ms + * no real solutions here, accessing PCI config space is simply slow + * it NOT scanning the bus which takes time + * it IS probing and initializing extant devices which is slow + * qemu exports legacy devices which are unhelpful + * using ACPI moves the initialization to acpi_init, but it still + takes the same amount of time + + - I implemented parallel PCI probing (per bus, but there's only 1 bus) + using kernel/async.c + * With 1 vCPU it very slightly slows things down, as expected + * With 4 vCPUs it improves performance 66ms -> 39ms + * But the overhead of enabling multiple vCPUs totally destroys any + benefit (see below). + + - you would think that multiple vCPUs would be better than a single + vCPU, but it actually has a massive negative impact + * Switching 1 -> 4 vCPUs increases boot time by over 200ms + * About 25ms is spent starting each CPU (in check_tsc_sync_target). + Setting tsc.reliable=1 skips this check + * A lot more time just goes .. somewhere, eg PCI probing gets slower + but for no particular reason. Because of overhead of locks? + + - entering the kernel takes 80ms, very unclear exactly + what it's doing + + - acpi=off saved 190ms + * Except that I wasn't able to reproduce this slowdown in later + versions of qemu, so I can now enable ACPI, excellent! + + - ftrace initialization is slow and unavoidable (20ms) + + - kernel.aesni_init takes 18ms (fixed upstream with "cryptomgr.notests") + + - kernel.serial_8250_init takes 25ms + + - but the main problem are lots of initcalls taking small + amounts of time + * all initcalls invoked before userspace: 690ms + + - compiling a custom kernel. Not "minimally configured", but + instead I started from a Fedora kernel and removed things + which had a > 1ms initcall overhead and were probably not + used by my appliance: + * remove ftrace + * remove hugetlbfs + * remove libata + * remove netlabel + * remove quota + * remove rtc_drv_cmos + * remove sound card support + * remove auditing + * remove kprobes + * remove profiling support + * remove zbud + * remove big_key + * remove joydev + * remove keyboards + * remove mice + * remove joysticks + * remove tablets + * remove touchscreens + * remove microcode + * remove USB + * remove zswap + * remove input_leds + initcalls-before-userspace went from ~697ms -> ~567ms + + - I didn't go down the "long tail" of initcalls. There are many + many initcalls that take 0.5-0.7ms. It seems with a custom kernel + there is plenty of scope for reducing this further. + + - Some things take time but can't be disabled, eg. PERF_EVENTS (3.2ms) + HAVE_PCSPKR_PLATFORM (1.1ms) + + - very minimal config + * allnoconfig + enabling by hand just what is needed for libguestfs, + mostly compiled into the kernel instead of using modules + * very tedious locating and enabling the right options + * udev requires lots of kernel features + initcalls-before-userspace ~697ms -> ~288ms (!) + + - It's clear from the total running time without debugging that the + very minimal kernel is not much different from the custom cut down + kernel above. There's a lot of overhead from debugging initcalls + / slow UART. + + ==> With a custom or minimal kernel, we can get total boot times + around 500-600ms, but no lower. + + - DAX (vNVDIMM + ext4 + DAX) really works! It has a modest + effect on memory usage (see below). It improves boot speed + by about 20-30ms. + +Findings (udev): + + - udev spends about 130ms + * Runs lots of external commands & shell scripts. + Possibly we could use a cut-down udev, but the rules are + complex and intertwined, and of course we want to use the + distro udev as unmodified as possible. + * The time is actually taken when we run 'udevadm settle' + because we need the /dev directory to be populated before + we begin other operations. systemd might help ... + +Findings (seabios): + + - building a "bios-fast.bin" variant with many features + disabled reduced time spent inside the BIOS from + 63ms -> 19ms (saves 44ms). + + - you can enable debugging, but it slows everything down + (because of the slow UART) + + - PCI bus probing for disks that we will never use to boot + +Findings (libguestfs): + + - use kernel "quiet" option + reduced time from 3500ms -> 2500ms + UART is slow + + - hwclock command added 300ms + + - no need to run qemu -help & qemu -version + + - only use SGABIOS when verbose + + - running ldconfig takes 100ms (now fixed by copying ld.so.cache to + appliance) + +Findings (supermin): + + - we were adding "virtio*.ko" to the appliance, and automatic kmod + dependencies pulled in drm.ko (via virtio-gpu.ko), adding a + blacklist of modules allowed us to drop these unnecessary + dependencies, reducing the size of the initramfs and thus making + things faster + + - use dietlibc instead of glibc, initramfs 2.6M -> 1.8M + + - use uncompressed kmods instead of .ko.xz; small increase in + size of the initrd in return for a small reduction in boot time + + - stripping kmods (with 'strip -g') helps to reduce the size of + the initramfs to around 126K for a minimal kernel, or 347K for + a distro kernel + +---------------------------------------------------------------------- + +Memory usage: + +Memory usage is the other side of the coin. + +DAX (vNVDIMM + ext4 + DAX) really works! With DAX: + +> free -m + total used free shared buff/cache available +Mem: 485 3 469 1 12 467 +Swap: 0 0 0 + +Without DAX: + +> free -m + total used free shared buff/cache available +Mem: 485 3 451 1 30 465 +Swap: 0 0 0 + +I added a patch to allow us to capture the MAXRSS of the qemu process. +This is doing 'make quickcheck' which performs some libguestfs typical +activity like creating partitions and a filesystem and mounting it: + +With DAX: 228240K / 235628K / 238104K (avg: 234M) +Without DAX: 245188K / 231500K / 240208K (avg: 239M) + +---------------------------------------------------------------------- + +UART calculation: + + #277: +416560057 [appliance] "[ 0.000000] e820: BIOS-provided physical RAM map:" + #278: +416560896 [appliance] "[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable" + #279: +416561538 [appliance] "[ 0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved" + #280: +417698326 [appliance] "[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved" + #281: +417699181 [appliance] "[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001f3fbfff] usable" + #282: +418835791 [appliance] "[ 0.000000] BIOS-e820: [mem 0x000000001f3fc000-0x000000001f3fffff] reserved" + #283: +418836781 [appliance] "[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved" + #284: +418837152 [appliance] "[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved" + +In the kernel source this is printed by a simple loop, so there's +almost no kernel side overhead. + +Notice the unevenness of the timestamps, probably caused by +buffering inside qemu or libguestfs. + +Anyway averaged over all the lines, we can estimate about 4µs / char +(Kevin O'Connor estimates 2.5µs / char on a different machine and +different test framework). + +So printing out 3 full lines of text takes ~ 1ms. diff --git a/2016-kvm-forum/analysis-run.txt b/2016-kvm-forum/analysis-run.txt new file mode 100644 index 0000000..f041729 --- /dev/null +++ b/2016-kvm-forum/analysis-run.txt @@ -0,0 +1,7052 @@ +Warming up the libguestfs cache ... +Running the tests in 5 passes ... + pass 1: 885 events collected in 837645052 ns + pass 2: 885 events collected in 831267490 ns + pass 3: 885 events collected in 842181176 ns + pass 4: 885 events collected in 834616022 ns + pass 5: 885 events collected in 846690974 ns +pass 0 + number of events collected 885 + elapsed time 837645052 ns + 0.1ms [trace] "launch" + 0.1ms (+0.0) [trace] "version" + 0.1ms (+0.0) [trace] "version = " + 0.1ms (+0.0) [trace] "get_backend" + 0.1ms (+0.0) [trace] "get_backend = "direct"" + 0.1ms (+0.0) [library] "launch: program=boot-analysis" + 0.1ms (+0.0) [library] "launch: version=1.33.29" + 0.1ms (+0.0) [library] "launch: backend registered: unix" + 0.1ms (+0.0) [library] "launch: backend registered: uml" + 0.1ms (+0.0) [library] "launch: backend registered: libvirt" + 0.1ms (+0.0) [library] "launch: backend registered: direct" + 0.1ms (+0.0) [library] "launch: backend=direct" + 0.1ms (+0.0) [library] "launch: tmpdir=/home/rjones/d/libguestfs/tmp/libguestfsDhqLla" + 0.6ms (+0.5) [library] "launch: umask=0002" + 0.6ms (+0.0) [library] "launch: euid=1000" + 0.6ms (+0.0) [trace] "get_backend_setting "force_tcg"" + 0.6ms (+0.0) [trace] "get_backend_setting = NULL (error)" + 0.6ms (+0.0) [trace] "get_cachedir" + 0.6ms (+0.0) [trace] "get_cachedir = "/home/rjones/d/libguestfs/tmp"" + 0.7ms (+0.0) [library] "begin building supermin appliance" + 0.7ms (+0.0) [library] "run supermin" + 0.7ms (+0.0) [library] "command: run: /usr/bin/supermin" + 0.7ms (+0.0) [library] "command: run: \ --build" + 0.7ms (+0.0) [library] "command: run: \ --verbose" + 0.7ms (+0.0) [library] "command: run: \ --if-newer" + 0.7ms (+0.0) [library] "command: run: \ --lock /home/rjones/d/libguestfs/tmp/.guestfs-1000/lock" + 0.7ms (+0.0) [library] "command: run: \ --copy-kernel" + 0.7ms (+0.0) [library] "command: run: \ -f ext2" + 0.7ms (+0.0) [library] "command: run: \ --host-cpu x86_64" + 0.7ms (+0.0) [library] "command: run: \ /home/rjones/d/libguestfs/appliance/supermin.d" + 0.7ms (+0.0) [library] "command: run: \ -o /home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d" + 9.0ms (+8.3) [appliance] "supermin: version: 5.1.16" + 9.0ms (+0.0) [appliance] "supermin: rpm: detected RPM version 4.13" + 9.0ms (+0.0) [appliance] "supermin: package handler: fedora/rpm" + 9.0ms (+0.0) [appliance] "supermin: acquiring lock on /home/rjones/d/libguestfs/tmp/.guestfs-1000/lock" + 9.0ms (+0.0) [appliance] "supermin: if-newer: output does not need rebuilding" + 11.6ms (+2.6) [library] "finished building supermin appliance" + 11.6ms (+0.0) [library] "begin testing qemu features" + 11.6ms (+0.0) [trace] "get_cachedir" + 11.6ms (+0.0) [trace] "get_cachedir = "/home/rjones/d/libguestfs/tmp"" + 11.6ms (+0.0) [library] "checking for previously cached test results of /home/rjones/d/qemu/x86_64-softmmu/qemu-system-x86_64, in /home/rjones/d/libguestfs/tmp/.guestfs-1000" + 11.6ms (+0.0) [library] "loading previously cached test results" + 11.6ms (+0.0) [library] "qemu version 2.6" + 11.6ms (+0.0) [trace] "get_sockdir" + 11.6ms (+0.0) [trace] "get_sockdir = "/run/user/1000"" + 11.7ms (+0.1) [library] "finished testing qemu features" + 11.7ms (+0.0) [trace] "get_backend_setting "gdb"" + 11.7ms (+0.0) [trace] "get_backend_setting = NULL (error)" + 11.7ms (+0.0) [trace] "get_backend_setting "dax"" + 11.7ms (+0.0) [trace] "get_backend_setting = "1"" + 13.4ms (+1.6) [appliance] "[00012ms] /home/rjones/d/qemu/x86_64-softmmu/qemu-system-x86_64 \" + 13.4ms (+0.0) [appliance] " -global virtio-blk-pci.scsi=off \" + 13.4ms (+0.0) [appliance] " -nodefconfig \" + 13.4ms (+0.0) [appliance] " -enable-fips \" + 13.4ms (+0.0) [appliance] " -nodefaults \" + 13.4ms (+0.0) [appliance] " -display none \" + 13.4ms (+0.0) [appliance] " -machine pc,nvdimm=on,accel=kvm:tcg \" + 13.4ms (+0.0) [appliance] " -cpu host \" + 13.4ms (+0.0) [appliance] " -m 500,maxmem=32G,slots=32 \" + 13.4ms (+0.0) [appliance] " -no-reboot \" + 13.4ms (+0.0) [appliance] " -rtc driftfix=slew \" + 13.4ms (+0.0) [appliance] " -no-hpet \" + 13.4ms (+0.0) [appliance] " -global kvm-pit.lost_tick_policy=discard \" + 13.4ms (+0.0) [appliance] " -kernel /home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d/kernel \" + 13.4ms (+0.0) [appliance] " -initrd /home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d/initrd \" + 13.4ms (+0.0) [appliance] " -bios bios-fast.bin \" + 13.4ms (+0.0) [appliance] " -object rng-random,filename=/dev/urandom,id=rng0 \" + 13.4ms (+0.0) [appliance] " -device virtio-rng-pci,rng=rng0 \" + 13.4ms (+0.0) [appliance] " -device virtio-scsi-pci,id=scsi \" + 13.4ms (+0.0) [appliance] " -drive file=/home/rjones/d/libguestfs/tmp/libguestfsDhqLla/devnull1,cache=writeback,format=raw,id=hd0,if=none \" + 13.4ms (+0.0) [appliance] " -device scsi-hd,drive=hd0 \" + 13.4ms (+0.0) [appliance] " -object memory-backend-file,id=mem1,share=off,mem-path=/home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d/root,size=4294967296b \" + 13.4ms (+0.0) [appliance] " -device nvdimm,memdev=mem1,id=nv1 \" + 13.4ms (+0.0) [appliance] " -device virtio-serial-pci \" + 13.4ms (+0.0) [appliance] " -serial stdio \" + 13.4ms (+0.0) [appliance] " -device sga \" + 13.4ms (+0.0) [appliance] " -chardev socket,path=/run/user/1000/libguestfsVu6hTH/guestfsd.sock,id=channel0 \" + 13.4ms (+0.0) [appliance] " -device virtserialport,chardev=channel0,name=org.libguestfs.channel.0 \" + 13.4ms (+0.0) [appliance] " -append 'panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug '" + 109.4ms (+96.0) [library] "responding to serial console Device Status Report" + 109.4ms (+0.0) [appliance] "\x1b[1;256r\x1b[256;256H\x1b[6n" + 112.0ms (+2.6) [appliance] "Google, Inc." + 112.0ms (+0.0) [appliance] "Serial Graphics Adapter 11/03/11" + 112.0ms (+0.0) [appliance] "SGABIOS $Id$ (pbonzini@yakj.usersys.redhat.com) Thu Nov 3 13:33:51 UTC 2011" + 112.0ms (+0.0) [appliance] "Term: 80x24" + 112.0ms (+0.0) [appliance] "4 0" + 112.0ms (+0.0) [appliance] "\x1b[2J\x0dSeaBIOS (version rel-1.9.1-0-gb3ef39f-prebuilt.qemu-project.org)" + 122.2ms (+10.3) [appliance] "\x0dBooting from Hard Disk..." + 122.2ms (+0.0) [appliance] "\x0dBoot failed: could not read the boot disk" + 123.3ms (+1.1) [appliance] "" + 123.3ms (+0.0) [appliance] "\x0dBooting from ROM..." + 124.4ms (+1.1) [appliance] "\x1b[2J" + 160.6ms (+36.2) [appliance] "[ 0.000000] Linux version 4.6.0+ (rjones@moo.home.annexia.org) (gcc version 6.1.1 20160427 (Red Hat 6.1.1-1) (GCC) ) #36 SMP Wed May 18 13:36:15 BST 2016" + 160.6ms (+0.0) [appliance] "[ 0.000000] Command line: panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug " + 162.8ms (+2.2) [appliance] "[ 0.000000] KERNEL supported cpus:" + 162.8ms (+0.0) [appliance] "[ 0.000000] Intel GenuineIntel" + 163.9ms (+1.1) [appliance] "[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256" + 163.9ms (+0.0) [appliance] "[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'" + 165.1ms (+1.1) [appliance] "[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'" + 165.1ms (+0.0) [appliance] "[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'" + 165.1ms (+0.0) [appliance] "[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format." + 166.2ms (+1.1) [appliance] "[ 0.000000] x86/fpu: Using 'eager' FPU context switches." + 166.2ms (+0.0) [appliance] "[ 0.000000] e820: BIOS-provided physical RAM map:" + 167.3ms (+1.1) [appliance] "[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable" + 167.3ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved" + 168.4ms (+1.1) [appliance] "[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved" + 168.4ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001f3defff] usable" + 168.4ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x000000001f3df000-0x000000001f3fffff] reserved" + 169.5ms (+1.1) [appliance] "[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved" + 169.5ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved" + 170.6ms (+1.1) [appliance] "[ 0.000000] debug: ignoring loglevel setting." + 170.6ms (+0.0) [appliance] "[ 0.000000] NX (Execute Disable) protection: active" + 170.6ms (+0.0) [appliance] "[ 0.000000] Hypervisor detected: KVM" + 171.7ms (+1.1) [appliance] "[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved" + 171.7ms (+0.0) [appliance] "[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable" + 171.7ms (+0.0) [appliance] "[ 0.000000] e820: last_pfn = 0x1f3df max_arch_pfn = 0x400000000" + 172.8ms (+1.1) [appliance] "[ 0.000000] found SMP MP-table at [mem 0x000f3830-0x000f383f] mapped at [ffff8800000f3830]" + 172.8ms (+0.0) [appliance] "[ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576" + 173.9ms (+1.1) [appliance] "[ 0.000000] Using GB pages for direct mapping" + 173.9ms (+0.0) [appliance] "[ 0.000000] BRK [0x01750000, 0x01750fff] PGTABLE" + 173.9ms (+0.0) [appliance] "[ 0.000000] BRK [0x01751000, 0x01751fff] PGTABLE" + 175.0ms (+1.1) [appliance] "[ 0.000000] BRK [0x01752000, 0x01752fff] PGTABLE" + 175.0ms (+0.0) [appliance] "[ 0.000000] BRK [0x01753000, 0x01753fff] PGTABLE" + 175.0ms (+0.0) [appliance] "[ 0.000000] RAMDISK: [mem 0x1f3a7000-0x1f3cffff]" + 176.1ms (+1.1) [appliance] "[ 0.000000] ACPI: Early table checksum verification disabled" + 176.1ms (+0.0) [appliance] "[ 0.000000] ACPI: RSDP 0x00000000000F3640 000014 (v00 BOCHS )" + 176.1ms (+0.0) [appliance] "[ 0.000000] ACPI: RSDT 0x000000001F3E21EA 000034 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001)" + 177.2ms (+1.1) [appliance] "[ 0.000000] ACPI: FACP 0x000000001F3E1EED 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001)" + 178.3ms (+1.1) [appliance] "[ 0.000000] ACPI: DSDT 0x000000001F3DF040 002EAD (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001)" + 178.3ms (+0.0) [appliance] "[ 0.000000] ACPI: FACS 0x000000001F3DF000 000040" + 178.3ms (+0.0) [appliance] "[ 0.000000] ACPI: APIC 0x000000001F3E1F61 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001)" + 179.5ms (+1.1) [appliance] "[ 0.000000] ACPI: NFIT 0x000000001F3E1FD9 0000E0 (v01 BOCHS BXPCNFIT 00000001 BXPC 00000001)" + 179.5ms (+0.0) [appliance] "[ 0.000000] ACPI: SSDT 0x000000001F3E20B9 000131 (v01 BOCHS NVDIMM 00000001 BXPC 00000001)" + 180.6ms (+1.1) [appliance] "[ 0.000000] ACPI: Local APIC address 0xfee00000" + 180.6ms (+0.0) [appliance] "[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00" + 181.7ms (+1.1) [appliance] "[ 0.000000] kvm-clock: cpu 0, msr 0:1f3de001, primary cpu clock" + 181.7ms (+0.0) [appliance] "[ 0.000000] kvm-clock: using sched offset of 55418553 cycles" + 181.7ms (+0.0) [appliance] "[ 0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns" + 182.8ms (+1.1) [appliance] "[ 0.000000] Zone ranges:" + 182.8ms (+0.0) [appliance] "[ 0.000000] DMA32 [mem 0x0000000000001000-0x000000001f3defff]" + 183.9ms (+1.1) [appliance] "[ 0.000000] Normal empty" + 183.9ms (+0.0) [appliance] "[ 0.000000] Device empty" + 183.9ms (+0.0) [appliance] "[ 0.000000] Movable zone start for each node" + 183.9ms (+0.0) [appliance] "[ 0.000000] Early memory node ranges" + 185.0ms (+1.1) [appliance] "[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]" + 185.0ms (+0.0) [appliance] "[ 0.000000] node 0: [mem 0x0000000000100000-0x000000001f3defff]" + 185.0ms (+0.0) [appliance] "[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000001f3defff]" + 186.1ms (+1.1) [appliance] "[ 0.000000] On node 0 totalpages: 127869" + 186.1ms (+0.0) [appliance] "[ 0.000000] DMA32 zone: 2000 pages used for memmap" + 186.1ms (+0.0) [appliance] "[ 0.000000] DMA32 zone: 21 pages reserved" + 187.2ms (+1.1) [appliance] "[ 0.000000] DMA32 zone: 127869 pages, LIFO batch:31" + 187.2ms (+0.0) [appliance] "[ 0.000000] ACPI: PM-Timer IO Port: 0x608" + 187.2ms (+0.0) [appliance] "[ 0.000000] ACPI: Local APIC address 0xfee00000" + 188.3ms (+1.1) [appliance] "[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])" + 188.3ms (+0.0) [appliance] "[ 0.000000] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23" + 188.3ms (+0.0) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)" + 189.4ms (+1.1) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)" + 189.4ms (+0.0) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)" + 190.5ms (+1.1) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)" + 190.5ms (+0.0) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)" + 191.6ms (+1.1) [appliance] "[ 0.000000] ACPI: IRQ0 used by override." + 191.6ms (+0.0) [appliance] "[ 0.000000] ACPI: IRQ5 used by override." + 191.6ms (+0.0) [appliance] "[ 0.000000] ACPI: IRQ9 used by override." + 191.6ms (+0.0) [appliance] "[ 0.000000] ACPI: IRQ10 used by override." + 192.7ms (+1.1) [appliance] "[ 0.000000] ACPI: IRQ11 used by override." + 192.7ms (+0.0) [appliance] "[ 0.000000] Using ACPI (MADT) for SMP configuration information" + 192.7ms (+0.0) [appliance] "[ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs" + 193.8ms (+1.1) [appliance] "[ 0.000000] e820: [mem 0x1f400000-0xfeffbfff] available for PCI devices" + 193.8ms (+0.0) [appliance] "[ 0.000000] Booting paravirtualized kernel on KVM" + 193.8ms (+0.0) [appliance] "[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns" + 194.9ms (+1.1) [appliance] "[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:1 nr_node_ids:1" + 194.9ms (+0.0) [appliance] "[ 0.000000] percpu: Embedded 29 pages/cpu @ffff88001f000000 s80384 r8192 d30208 u2097152" + 196.1ms (+1.1) [appliance] "[ 0.000000] pcpu-alloc: s80384 r8192 d30208 u2097152 alloc=1*2097152" + 196.1ms (+0.0) [appliance] "[ 0.000000] pcpu-alloc: [0] 0 " + 197.2ms (+1.1) [appliance] "[ 0.000000] KVM setup async PF for cpu 0" + 197.2ms (+0.0) [appliance] "[ 0.000000] kvm-stealtime: cpu 0, msr 1f00c440" + 197.2ms (+0.0) [appliance] "[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 125848" + 198.3ms (+1.1) [appliance] "[ 0.000000] Kernel command line: panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug " + 199.4ms (+1.1) [appliance] "[ 0.000000] PID hash table entries: 2048 (order: 2, 16384 bytes)" + 200.5ms (+1.1) [appliance] "[ 0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)" + 200.5ms (+0.0) [appliance] "[ 0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)" + 201.6ms (+1.1) [appliance] "[ 0.000000] Memory: 494496K/511476K available (2851K kernel code, 290K rwdata, 1180K rodata, 628K init, 404K bss, 16980K reserved, 0K cma-reserved)" + 202.7ms (+1.1) [appliance] "[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1" + 202.7ms (+0.0) [appliance] "[ 0.000000] Hierarchical RCU implementation." + 202.7ms (+0.0) [appliance] "[ 0.000000] \x09Build-time adjustment of leaf fanout to 64." + 203.8ms (+1.1) [appliance] "[ 0.000000] \x09RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=1." + 203.8ms (+0.0) [appliance] "[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=1" + 203.8ms (+0.0) [appliance] "[ 0.000000] NR_IRQS:4352 nr_irqs:256 16" + 204.9ms (+1.1) [appliance] "[ 0.000000] Console: colour *CGA 80x25" + 204.9ms (+0.0) [appliance] "[ 0.000000] console [ttyS0] enabled" + 204.9ms (+0.0) [appliance] "[ 0.000000] tsc: Detected 2593.990 MHz processor" + 204.9ms (+0.0) [appliance] "[ 0.052085] Calibrating delay loop (skipped) preset value.. 5187.98 BogoMIPS (lpj=10375960)" + 206.0ms (+1.1) [appliance] "[ 0.052693] pid_max: default: 4096 minimum: 301" + 206.0ms (+0.0) [appliance] "[ 0.053023] ACPI: Core revision 20160422" + 207.1ms (+1.1) [appliance] "[ 0.053332] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)" + 207.1ms (+0.0) [appliance] "[ 0.053807] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes)" + 208.3ms (+1.2) [appliance] "[ 0.054421] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0" + 208.3ms (+0.0) [appliance] "[ 0.054809] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0" + 213.0ms (+4.7) [appliance] "[ 0.059132] Freeing SMP alternatives memory: 16K (ffffffff816e7000 - ffffffff816eb000)" + 214.8ms (+1.8) [appliance] "[ 0.060895] smpboot: Max logical packages: 1" + 214.8ms (+0.0) [appliance] "[ 0.061211] smpboot: APIC(0) Converting physical 0 to logical package 0" + 216.3ms (+1.5) [appliance] "[ 0.062352] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1" + 216.3ms (+0.0) [appliance] "[ 0.062792] TSC deadline timer enabled" + 216.3ms (+0.0) [appliance] "[ 0.063059] smpboot: CPU0: Intel(R) Core(TM) i7-5600U CPU @ 2.60GHz (family: 0x6, model: 0x3d, stepping: 0x4)" + 217.4ms (+1.1) [appliance] "[ 0.063784] calling init_hw_perf_events+0x0/0x4fa @ 1" + 217.4ms (+0.0) [appliance] "[ 0.064144] Performance Events: 16-deep LBR, Broadwell events, Intel PMU driver." + 218.5ms (+1.1) [appliance] "[ 0.064731] ... version: 2" + 218.5ms (+0.0) [appliance] "[ 0.065014] ... bit width: 48" + 218.5ms (+0.0) [appliance] "[ 0.065310] ... generic registers: 4" + 218.5ms (+0.0) [appliance] "[ 0.065591] ... value mask: 0000ffffffffffff" + 219.6ms (+1.1) [appliance] "[ 0.065965] ... max period: 000000007fffffff" + 219.6ms (+0.0) [appliance] "[ 0.066339] ... fixed-purpose events: 3" + 219.6ms (+0.0) [appliance] "[ 0.066621] ... event mask: 000000070000000f" + 220.7ms (+1.1) [appliance] "[ 0.066997] initcall init_hw_perf_events+0x0/0x4fa returned 0 after 0 usecs" + 220.7ms (+0.0) [appliance] "[ 0.067498] calling set_real_mode_permissions+0x0/0x91 @ 1" + 221.8ms (+1.1) [appliance] "[ 0.067894] initcall set_real_mode_permissions+0x0/0x91 returned 0 after 0 usecs" + 221.8ms (+0.0) [appliance] "[ 0.068414] calling validate_x2apic+0x0/0x2f @ 1" + 221.8ms (+0.0) [appliance] "[ 0.068746] initcall validate_x2apic+0x0/0x2f returned 0 after 0 usecs" + 222.9ms (+1.1) [appliance] "[ 0.069202] calling register_trigger_all_cpu_backtrace+0x0/0x11 @ 1" + 222.9ms (+0.0) [appliance] "[ 0.069650] initcall register_trigger_all_cpu_backtrace+0x0/0x11 returned 0 after 0 usecs" + 224.0ms (+1.1) [appliance] "[ 0.070216] calling spawn_ksoftirqd+0x0/0x28 @ 1" + 224.0ms (+0.0) [appliance] "[ 0.070558] initcall spawn_ksoftirqd+0x0/0x28 returned 0 after 0 usecs" + 224.0ms (+0.0) [appliance] "[ 0.071015] calling init_workqueues+0x0/0x374 @ 1" + 225.1ms (+1.1) [appliance] "[ 0.071381] initcall init_workqueues+0x0/0x374 returned 0 after 0 usecs" + 225.1ms (+0.0) [appliance] "[ 0.071851] calling migration_init+0x0/0x3e @ 1" + 225.1ms (+0.0) [appliance] "[ 0.072176] initcall migration_init+0x0/0x3e returned 0 after 0 usecs" + 226.2ms (+1.1) [appliance] "[ 0.072632] calling check_cpu_stall_init+0x0/0x16 @ 1" + 226.2ms (+0.0) [appliance] "[ 0.072990] initcall check_cpu_stall_init+0x0/0x16 returned 0 after 0 usecs" + 227.3ms (+1.1) [appliance] "[ 0.073481] calling rcu_spawn_gp_kthread+0x0/0xf8 @ 1" + 227.4ms (+0.0) [appliance] "[ 0.073850] initcall rcu_spawn_gp_kthread+0x0/0xf8 returned 0 after 0 usecs" + 227.4ms (+0.0) [appliance] "[ 0.074339] calling cpu_stop_init+0x0/0x97 @ 1" + 228.5ms (+1.1) [appliance] "[ 0.074664] initcall cpu_stop_init+0x0/0x97 returned 0 after 0 usecs" + 228.5ms (+0.0) [appliance] "[ 0.075110] calling rand_initialize+0x0/0x30 @ 1" + 228.5ms (+0.0) [appliance] "[ 0.075458] initcall rand_initialize+0x0/0x30 returned 0 after 0 usecs" + 229.6ms (+1.1) [appliance] "[ 0.075928] x86: Booted up 1 node, 1 CPUs" + 229.6ms (+0.0) [appliance] "[ 0.076211] smpboot: Total of 1 processors activated (5187.98 BogoMIPS)" + 230.7ms (+1.2) [appliance] "[ 0.076815] devtmpfs: initialized" + 230.7ms (+0.0) [appliance] "[ 0.077078] x86/mm: Memory block size: 128MB" + 232.4ms (+1.7) [appliance] "[ 0.078471] calling init_mmap_min_addr+0x0/0x11 @ 1" + 232.4ms (+0.0) [appliance] "[ 0.078822] initcall init_mmap_min_addr+0x0/0x11 returned 0 after 0 usecs" + 232.4ms (+0.0) [appliance] "[ 0.079301] calling net_ns_init+0x0/0x1ad @ 1" + 233.5ms (+1.1) [appliance] "[ 0.079619] initcall net_ns_init+0x0/0x1ad returned 0 after 0 usecs" + 233.5ms (+0.0) [appliance] "[ 0.080085] calling e820_mark_nvs_memory+0x0/0x36 @ 1" + 233.5ms (+0.0) [appliance] "[ 0.080448] initcall e820_mark_nvs_memory+0x0/0x36 returned 0 after 0 usecs" + 234.6ms (+1.1) [appliance] "[ 0.080934] calling init_cpu_syscore+0x0/0xf @ 1" + 234.6ms (+0.0) [appliance] "[ 0.081268] initcall init_cpu_syscore+0x0/0xf returned 0 after 0 usecs" + 234.6ms (+0.0) [appliance] "[ 0.081724] calling reboot_init+0x0/0x3 @ 1" + 235.7ms (+1.1) [appliance] "[ 0.082029] initcall reboot_init+0x0/0x3 returned 0 after 0 usecs" + 235.7ms (+0.0) [appliance] "[ 0.082457] calling wq_sysfs_init+0x0/0x26 @ 1" + 235.7ms (+0.0) [appliance] "[ 0.082781] initcall wq_sysfs_init+0x0/0x26 returned 0 after 0 usecs" + 236.8ms (+1.1) [appliance] "[ 0.083232] calling ksysfs_init+0x0/0x8e @ 1" + 236.8ms (+0.0) [appliance] "[ 0.083542] initcall ksysfs_init+0x0/0x8e returned 0 after 0 usecs" + 236.8ms (+0.0) [appliance] "[ 0.083974] calling init_jiffies_clocksource+0x0/0x13 @ 1" + 237.9ms (+1.1) [appliance] "[ 0.084368] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns" + 237.9ms (+0.0) [appliance] "[ 0.085041] initcall init_jiffies_clocksource+0x0/0x13 returned 0 after 0 usecs" + 239.0ms (+1.1) [appliance] "[ 0.085556] calling init_per_zone_wmark_min+0x0/0x9a @ 1" + 239.0ms (+0.0) [appliance] "[ 0.085935] initcall init_per_zone_wmark_min+0x0/0x9a returned 0 after 0 usecs" + 240.1ms (+1.1) [appliance] "[ 0.086445] calling init_zero_pfn+0x0/0x2f @ 1" + 240.2ms (+0.0) [appliance] "[ 0.086766] initcall init_zero_pfn+0x0/0x2f returned 0 after 0 usecs" + 240.2ms (+0.0) [appliance] "[ 0.087210] calling fsnotify_init+0x0/0x1f @ 1" + 241.3ms (+1.1) [appliance] "[ 0.087535] initcall fsnotify_init+0x0/0x1f returned 0 after 0 usecs" + 241.3ms (+0.0) [appliance] "[ 0.087980] calling filelock_init+0x0/0x9a @ 1" + 241.3ms (+0.0) [appliance] "[ 0.088304] initcall filelock_init+0x0/0x9a returned 0 after 0 usecs" + 242.4ms (+1.1) [appliance] "[ 0.088754] calling init_script_binfmt+0x0/0x11 @ 1" + 242.4ms (+0.0) [appliance] "[ 0.089103] initcall init_script_binfmt+0x0/0x11 returned 0 after 0 usecs" + 243.5ms (+1.1) [appliance] "[ 0.089578] calling init_elf_binfmt+0x0/0x11 @ 1" + 243.5ms (+0.0) [appliance] "[ 0.089907] initcall init_elf_binfmt+0x0/0x11 returned 0 after 0 usecs" + 243.5ms (+0.0) [appliance] "[ 0.090364] calling prandom_init+0x0/0xaa @ 1" + 244.6ms (+1.1) [appliance] "[ 0.090680] initcall prandom_init+0x0/0xaa returned 0 after 0 usecs" + 244.6ms (+0.0) [appliance] "[ 0.091116] calling cpuidle_init+0x0/0x36 @ 1" + 244.6ms (+0.0) [appliance] "[ 0.091432] initcall cpuidle_init+0x0/0x36 returned 0 after 0 usecs" + 245.7ms (+1.1) [appliance] "[ 0.091873] calling sock_init+0x0/0x78 @ 1" + 245.7ms (+0.0) [appliance] "[ 0.092175] initcall sock_init+0x0/0x78 returned 0 after 0 usecs" + 245.7ms (+0.0) [appliance] "[ 0.092598] calling netlink_proto_init+0x0/0x158 @ 1" + 246.8ms (+1.1) [appliance] "[ 0.092984] NET: Registered protocol family 16" + 246.8ms (+0.0) [appliance] "[ 0.093303] initcall netlink_proto_init+0x0/0x158 returned 0 after 0 usecs" + 246.8ms (+0.0) [appliance] "[ 0.093804] calling bdi_class_init+0x0/0x2f @ 1" + 247.9ms (+1.1) [appliance] "[ 0.094134] initcall bdi_class_init+0x0/0x2f returned 0 after 0 usecs" + 247.9ms (+0.0) [appliance] "[ 0.094585] calling mm_sysfs_init+0x0/0x24 @ 1" + 247.9ms (+0.0) [appliance] "[ 0.094904] initcall mm_sysfs_init+0x0/0x24 returned 0 after 0 usecs" + 249.0ms (+1.1) [appliance] "[ 0.095352] calling kobject_uevent_init+0x0/0xc @ 1" + 249.0ms (+0.0) [appliance] "[ 0.095700] initcall kobject_uevent_init+0x0/0xc returned 0 after 0 usecs" + 249.0ms (+0.0) [appliance] "[ 0.096173] calling pcibus_class_init+0x0/0x13 @ 1" + 250.1ms (+1.1) [appliance] "[ 0.096519] initcall pcibus_class_init+0x0/0x13 returned 0 after 0 usecs" + 250.1ms (+0.0) [appliance] "[ 0.096991] calling pci_driver_init+0x0/0xc @ 1" + 251.2ms (+1.1) [appliance] "[ 0.097324] initcall pci_driver_init+0x0/0xc returned 0 after 0 usecs" + 251.2ms (+0.0) [appliance] "[ 0.097771] calling tty_class_init+0x0/0x2f @ 1" + 251.2ms (+0.0) [appliance] "[ 0.098096] initcall tty_class_init+0x0/0x2f returned 0 after 0 usecs" + 252.3ms (+1.1) [appliance] "[ 0.098549] calling vtconsole_class_init+0x0/0xd3 @ 1" + 252.3ms (+0.0) [appliance] "[ 0.098914] initcall vtconsole_class_init+0x0/0xd3 returned 0 after 0 usecs" + 252.3ms (+0.0) [appliance] "[ 0.099401] calling init_ladder+0x0/0x16 @ 1" + 253.4ms (+1.1) [appliance] "[ 0.099710] cpuidle: using governor ladder" + 253.4ms (+0.0) [appliance] "[ 0.099997] initcall init_ladder+0x0/0x16 returned 0 after 0 usecs" + 253.4ms (+0.0) [appliance] "[ 0.100449] calling bts_init+0x0/0xa4 @ 1" + 254.5ms (+1.1) [appliance] "[ 0.100740] initcall bts_init+0x0/0xa4 returned -19 after 0 usecs" + 254.5ms (+0.0) [appliance] "[ 0.101168] calling pt_init+0x0/0x30a @ 1" + 254.5ms (+0.0) [appliance] "[ 0.101459] initcall pt_init+0x0/0x30a returned -19 after 0 usecs" + 255.6ms (+1.1) [appliance] "[ 0.101885] calling boot_params_ksysfs_init+0x0/0x22f @ 1" + 255.6ms (+0.0) [appliance] "[ 0.102272] initcall boot_params_ksysfs_init+0x0/0x22f returned 0 after 0 usecs" + 255.6ms (+0.0) [appliance] "[ 0.102781] calling sbf_init+0x0/0xfc @ 1" + 256.7ms (+1.1) [appliance] "[ 0.103069] initcall sbf_init+0x0/0xfc returned 0 after 0 usecs" + 256.7ms (+0.0) [appliance] "[ 0.103484] calling arch_kdebugfs_init+0x0/0xe @ 1" + 256.7ms (+0.0) [appliance] "[ 0.103824] initcall arch_kdebugfs_init+0x0/0xe returned 0 after 0 usecs" + 257.9ms (+1.1) [appliance] "[ 0.104295] calling ffh_cstate_init+0x0/0x25 @ 1" + 257.9ms (+0.0) [appliance] "[ 0.104625] initcall ffh_cstate_init+0x0/0x25 returned 0 after 0 usecs" + 259.0ms (+1.1) [appliance] "[ 0.105079] calling activate_jump_labels+0x0/0x73 @ 1" + 259.0ms (+0.0) [appliance] "[ 0.105445] initcall activate_jump_labels+0x0/0x73 returned 0 after 0 usecs" + 259.0ms (+0.0) [appliance] "[ 0.105929] calling acpi_pci_init+0x0/0x49 @ 1" + 260.1ms (+1.1) [appliance] "[ 0.106250] ACPI: bus type PCI registered" + 260.1ms (+0.0) [appliance] "[ 0.106531] initcall acpi_pci_init+0x0/0x49 returned 0 after 0 usecs" + 260.1ms (+0.0) [appliance] "[ 0.106972] calling pci_arch_init+0x0/0x53 @ 1" + 261.2ms (+1.1) [appliance] "[ 0.107314] PCI: Using configuration type 1 for base access" + 261.2ms (+0.0) [appliance] "[ 0.107704] initcall pci_arch_init+0x0/0x53 returned 0 after 0 usecs" + 261.2ms (+0.0) [appliance] "[ 0.108166] calling init_vdso+0x0/0x2c @ 1" + 262.3ms (+1.1) [appliance] "[ 0.108470] initcall init_vdso+0x0/0x2c returned 0 after 0 usecs" + 262.3ms (+0.0) [appliance] "[ 0.108890] calling fixup_ht_bug+0x0/0xb3 @ 1" + 262.3ms (+0.0) [appliance] "[ 0.109201] initcall fixup_ht_bug+0x0/0xb3 returned 0 after 0 usecs" + 263.4ms (+1.1) [appliance] "[ 0.109647] calling topology_init+0x0/0x49 @ 1" + 263.4ms (+0.0) [appliance] "[ 0.109978] initcall topology_init+0x0/0x49 returned 0 after 0 usecs" + 263.4ms (+0.0) [appliance] "[ 0.110422] calling uid_cache_init+0x0/0xc7 @ 1" + 264.5ms (+1.1) [appliance] "[ 0.110749] initcall uid_cache_init+0x0/0xc7 returned 0 after 0 usecs" + 264.5ms (+0.0) [appliance] "[ 0.111197] calling param_sysfs_init+0x0/0x1ae @ 1" + 265.6ms (+1.2) [appliance] "[ 0.111722] initcall param_sysfs_init+0x0/0x1ae returned 0 after 0 usecs" + 265.6ms (+0.0) [appliance] "[ 0.112191] calling oom_init+0x0/0x5a @ 1" + 265.6ms (+0.0) [appliance] "[ 0.112505] initcall oom_init+0x0/0x5a returned 0 after 0 usecs" + 266.7ms (+1.1) [appliance] "[ 0.112923] calling default_bdi_init+0x0/0x36 @ 1" + 266.7ms (+0.0) [appliance] "[ 0.113289] initcall default_bdi_init+0x0/0x36 returned 0 after 0 usecs" + 266.7ms (+0.0) [appliance] "[ 0.113760] calling percpu_enable_async+0x0/0xa @ 1" + 267.9ms (+1.1) [appliance] "[ 0.114111] initcall percpu_enable_async+0x0/0xa returned 0 after 0 usecs" + 267.9ms (+0.0) [appliance] "[ 0.114588] calling init_reserve_notifier+0x0/0x1f @ 1" + 267.9ms (+0.0) [appliance] "[ 0.114953] initcall init_reserve_notifier+0x0/0x1f returned 0 after 0 usecs" + 269.0ms (+1.1) [appliance] "[ 0.115449] calling init_admin_reserve+0x0/0x40 @ 1" + 269.0ms (+0.0) [appliance] "[ 0.115796] initcall init_admin_reserve+0x0/0x40 returned 0 after 0 usecs" + 270.1ms (+1.1) [appliance] "[ 0.116275] calling init_user_reserve+0x0/0x40 @ 1" + 270.1ms (+0.0) [appliance] "[ 0.116616] initcall init_user_reserve+0x0/0x40 returned 0 after 0 usecs" + 270.1ms (+0.0) [appliance] "[ 0.117083] calling crypto_wq_init+0x0/0x2c @ 1" + 271.2ms (+1.1) [appliance] "[ 0.117420] initcall crypto_wq_init+0x0/0x2c returned 0 after 0 usecs" + 271.2ms (+0.0) [appliance] "[ 0.117890] calling cryptomgr_init+0x0/0xc @ 1" + 271.2ms (+0.0) [appliance] "[ 0.118209] initcall cryptomgr_init+0x0/0xc returned 0 after 0 usecs" + 272.3ms (+1.1) [appliance] "[ 0.118656] calling init_bio+0x0/0xa9 @ 1" + 272.3ms (+0.0) [appliance] "[ 0.118953] initcall init_bio+0x0/0xa9 returned 0 after 0 usecs" + 272.3ms (+0.0) [appliance] "[ 0.119373] calling blk_settings_init+0x0/0x25 @ 1" + 273.4ms (+1.1) [appliance] "[ 0.119716] initcall blk_settings_init+0x0/0x25 returned 0 after 0 usecs" + 273.4ms (+0.0) [appliance] "[ 0.120183] calling blk_ioc_init+0x0/0x25 @ 1" + 273.4ms (+0.0) [appliance] "[ 0.120498] initcall blk_ioc_init+0x0/0x25 returned 0 after 0 usecs" + 274.5ms (+1.1) [appliance] "[ 0.120936] calling blk_softirq_init+0x0/0x59 @ 1" + 274.5ms (+0.0) [appliance] "[ 0.121274] initcall blk_softirq_init+0x0/0x59 returned 0 after 0 usecs" + 275.6ms (+1.1) [appliance] "[ 0.121736] calling blk_mq_init+0x0/0x8 @ 1" + 275.6ms (+0.0) [appliance] "[ 0.122041] initcall blk_mq_init+0x0/0x8 returned 0 after 0 usecs" + 275.6ms (+0.0) [appliance] "[ 0.122470] calling genhd_device_init+0x0/0x71 @ 1" + 276.7ms (+1.1) [appliance] "[ 0.122825] initcall genhd_device_init+0x0/0x71 returned 0 after 0 usecs" + 276.7ms (+0.0) [appliance] "[ 0.123296] calling pci_slot_init+0x0/0x40 @ 1" + 276.7ms (+0.0) [appliance] "[ 0.123616] initcall pci_slot_init+0x0/0x40 returned 0 after 0 usecs" + 277.8ms (+1.1) [appliance] "[ 0.124061] calling acpi_init+0x0/0x28d @ 1" + 277.8ms (+0.0) [appliance] "[ 0.124369] ACPI: Added _OSI(Module Device)" + 277.8ms (+0.0) [appliance] "[ 0.124665] ACPI: Added _OSI(Processor Device)" + 277.8ms (+0.0) [appliance] "[ 0.124975] ACPI: Added _OSI(3.0 _SCP Extensions)" + 278.9ms (+1.1) [appliance] "[ 0.125308] ACPI: Added _OSI(Processor Aggregator Device)" + 280.6ms (+1.7) [appliance] "[ 0.126686] ACPI: 2 ACPI AML tables successfully acquired and loaded" + 280.6ms (+0.0) [appliance] "[ 0.127142] " + 281.9ms (+1.3) [appliance] "[ 0.127945] ACPI: Interpreter enabled" + 281.9ms (+0.0) [appliance] "[ 0.128213] ACPI: (supports S0 S5)" + 281.9ms (+0.0) [appliance] "[ 0.128459] ACPI: Using IOAPIC for interrupt routing" + 281.9ms (+0.0) [appliance] "[ 0.128812] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug" + 286.1ms (+4.2) [appliance] "[ 0.132124] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])" + 286.1ms (+0.0) [appliance] "[ 0.132567] acpi PNP0A03:00: _OSC: OS supports [Segments]" + 286.1ms (+0.0) [appliance] "[ 0.132949] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM" + 287.2ms (+1.1) [appliance] "[ 0.133429] PCI host bridge to bus 0000:00" + 287.2ms (+0.0) [appliance] "[ 0.133718] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]" + 287.2ms (+0.0) [appliance] "[ 0.134196] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]" + 288.3ms (+1.1) [appliance] "[ 0.134673] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]" + 288.3ms (+0.0) [appliance] "[ 0.135191] pci_bus 0000:00: root bus resource [mem 0x1f400000-0xfebfffff window]" + 289.4ms (+1.1) [appliance] "[ 0.135716] pci_bus 0000:00: root bus resource [bus 00-ff]" + 289.4ms (+0.0) [appliance] "[ 0.136121] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000" + 290.7ms (+1.3) [appliance] "[ 0.136779] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100" + 290.7ms (+0.0) [appliance] "[ 0.137534] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180" + 304.0ms (+13.3) [appliance] "[ 0.150045] pci 0000:00:01.1: reg 0x20: [io 0xc080-0xc08f]" + 310.1ms (+6.1) [appliance] "[ 0.156039] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]" + 310.1ms (+0.0) [appliance] "[ 0.156567] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]" + 310.1ms (+0.0) [appliance] "[ 0.157026] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]" + 311.2ms (+1.1) [appliance] "[ 0.157546] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]" + 311.2ms (+0.0) [appliance] "[ 0.158102] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000" + 312.3ms (+1.1) [appliance] "[ 0.159341] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI" + 313.4ms (+1.1) [appliance] "[ 0.159864] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB" + 313.4ms (+0.0) [appliance] "[ 0.160519] pci 0000:00:02.0: [1af4:1005] type 00 class 0x00ff00" + 314.5ms (+1.1) [appliance] "[ 0.161595] pci 0000:00:02.0: reg 0x10: [io 0xc040-0xc05f]" + 324.2ms (+9.7) [appliance] "[ 0.170223] pci 0000:00:03.0: [1af4:1004] type 00 class 0x010000" + 325.9ms (+1.7) [appliance] "[ 0.171902] pci 0000:00:03.0: reg 0x10: [io 0xc000-0xc03f]" + 333.2ms (+7.3) [appliance] "[ 0.179239] pci 0000:00:03.0: reg 0x14: [mem 0xfebfe000-0xfebfefff]" + 345.6ms (+12.4) [appliance] "[ 0.191638] pci 0000:00:04.0: [1af4:1003] type 00 class 0x078000" + 348.3ms (+2.7) [appliance] "[ 0.194324] pci 0000:00:04.0: reg 0x10: [io 0xc060-0xc07f]" + 350.2ms (+1.9) [appliance] "[ 0.196187] pci 0000:00:04.0: reg 0x14: [mem 0xfebff000-0xfebfffff]" + 375.6ms (+25.4) [appliance] "[ 0.221623] pci_bus 0000:00: on NUMA node 0" + 375.6ms (+0.0) [appliance] "[ 0.222109] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)" + 375.6ms (+0.0) [appliance] "[ 0.222599] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)" + 376.7ms (+1.1) [appliance] "[ 0.223097] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)" + 376.7ms (+0.0) [appliance] "[ 0.223589] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)" + 377.8ms (+1.1) [appliance] "[ 0.224066] ACPI: PCI Interrupt Link [LNKS] (IRQs *9)" + 379.1ms (+1.3) [appliance] "[ 0.225177] ACPI: Enabled 16 GPEs in block 00 to 0F" + 379.1ms (+0.0) [appliance] "[ 0.225567] initcall acpi_init+0x0/0x28d returned 0 after 82031 usecs" + 379.1ms (+0.0) [appliance] "[ 0.226012] calling pnp_init+0x0/0xc @ 1" + 379.1ms (+0.0) [appliance] "[ 0.226309] initcall pnp_init+0x0/0xc returned 0 after 0 usecs" + 380.3ms (+1.1) [appliance] "[ 0.226719] calling misc_init+0x0/0xb5 @ 1" + 380.3ms (+0.0) [appliance] "[ 0.227011] initcall misc_init+0x0/0xb5 returned 0 after 0 usecs" + 380.3ms (+0.0) [appliance] "[ 0.227441] calling vga_arb_device_init+0x0/0x19e @ 1" + 381.4ms (+1.1) [appliance] "[ 0.227826] vgaarb: loaded" + 381.4ms (+0.0) [appliance] "[ 0.228017] initcall vga_arb_device_init+0x0/0x19e returned 0 after 0 usecs" + 381.4ms (+0.0) [appliance] "[ 0.228490] calling libnvdimm_init+0x0/0x30 @ 1" + 382.5ms (+1.1) [appliance] "[ 0.228838] initcall libnvdimm_init+0x0/0x30 returned 0 after 0 usecs" + 382.5ms (+0.0) [appliance] "[ 0.229278] calling init_scsi+0x0/0x7e @ 1" + 382.5ms (+0.0) [appliance] "[ 0.229592] SCSI subsystem initialized" + 383.7ms (+1.1) [appliance] "[ 0.229873] initcall init_scsi+0x0/0x7e returned 0 after 0 usecs" + 383.7ms (+0.0) [appliance] "[ 0.230284] calling serio_init+0x0/0x25 @ 1" + 383.7ms (+0.0) [appliance] "[ 0.230580] initcall serio_init+0x0/0x25 returned 0 after 0 usecs" + 384.8ms (+1.1) [appliance] "[ 0.231191] calling input_init+0x0/0xfc @ 1" + 384.8ms (+0.0) [appliance] "[ 0.231507] initcall input_init+0x0/0xfc returned 0 after 0 usecs" + 384.8ms (+0.0) [appliance] "[ 0.231934] calling power_supply_class_init+0x0/0x3b @ 1" + 385.9ms (+1.1) [appliance] "[ 0.232316] initcall power_supply_class_init+0x0/0x3b returned 0 after 0 usecs" + 385.9ms (+0.0) [appliance] "[ 0.232807] calling pci_subsys_init+0x0/0x43 @ 1" + 387.1ms (+1.2) [appliance] "[ 0.233148] PCI: Using ACPI for IRQ routing" + 387.1ms (+0.0) [appliance] "[ 0.233437] PCI: pci_cache_line_size set to 64 bytes" + 387.1ms (+0.0) [appliance] "[ 0.233846] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]" + 388.2ms (+1.1) [appliance] "[ 0.234285] e820: reserve RAM buffer [mem 0x1f3df000-0x1fffffff]" + 388.2ms (+0.0) [appliance] "[ 0.234691] initcall pci_subsys_init+0x0/0x43 returned 0 after 0 usecs" + 388.2ms (+0.0) [appliance] "[ 0.235133] calling proto_init+0x0/0xc @ 1" + 389.3ms (+1.1) [appliance] "[ 0.235445] initcall proto_init+0x0/0xc returned 0 after 0 usecs" + 389.3ms (+0.0) [appliance] "[ 0.235857] calling net_dev_init+0x0/0x1b0 @ 1" + 389.3ms (+0.0) [appliance] "[ 0.236209] initcall net_dev_init+0x0/0x1b0 returned 0 after 0 usecs" + 390.4ms (+1.1) [appliance] "[ 0.236665] calling neigh_init+0x0/0x7b @ 1" + 390.4ms (+0.0) [appliance] "[ 0.236959] initcall neigh_init+0x0/0x7b returned 0 after 0 usecs" + 390.4ms (+0.0) [appliance] "[ 0.237376] calling genl_init+0x0/0x84 @ 1" + 391.6ms (+1.1) [appliance] "[ 0.237689] initcall genl_init+0x0/0x84 returned 0 after 0 usecs" + 391.6ms (+0.0) [appliance] "[ 0.238117] calling nmi_warning_debugfs+0x0/0x3 @ 1" + 391.6ms (+0.0) [appliance] "[ 0.238456] initcall nmi_warning_debugfs+0x0/0x3 returned 0 after 0 usecs" + 392.7ms (+1.1) [appliance] "[ 0.238934] calling hpet_late_init+0x0/0xbc @ 1" + 392.7ms (+0.0) [appliance] "[ 0.239253] initcall hpet_late_init+0x0/0xbc returned -19 after 0 usecs" + 392.7ms (+0.0) [appliance] "[ 0.239699] calling clocksource_done_booting+0x0/0x3d @ 1" + 393.8ms (+1.1) [appliance] "[ 0.240104] clocksource: Switched to clocksource kvm-clock" + 393.8ms (+0.0) [appliance] "[ 0.240485] initcall clocksource_done_booting+0x0/0x3d returned 0 after 372 usecs" + 393.8ms (+0.0) [appliance] "[ 0.241002] calling init_pipe_fs+0x0/0x42 @ 1" + 395.0ms (+1.1) [appliance] "[ 0.241330] initcall init_pipe_fs+0x0/0x42 returned 0 after 5 usecs" + 395.0ms (+0.0) [appliance] "[ 0.241756] calling inotify_user_setup+0x0/0x46 @ 1" + 395.0ms (+0.0) [appliance] "[ 0.242105] initcall inotify_user_setup+0x0/0x46 returned 0 after 1 usecs" + 396.1ms (+1.1) [appliance] "[ 0.242579] calling eventpoll_init+0x0/0xdd @ 1" + 396.1ms (+0.0) [appliance] "[ 0.242895] initcall eventpoll_init+0x0/0xdd returned 0 after 0 usecs" + 397.2ms (+1.1) [appliance] "[ 0.243355] calling anon_inode_init+0x0/0x56 @ 1" + 397.2ms (+0.0) [appliance] "[ 0.243679] initcall anon_inode_init+0x0/0x56 returned 0 after 2 usecs" + 397.2ms (+0.0) [appliance] "[ 0.244125] calling proc_locks_init+0x0/0x1d @ 1" + 398.4ms (+1.1) [appliance] "[ 0.244472] initcall proc_locks_init+0x0/0x1d returned 0 after 0 usecs" + 398.4ms (+0.0) [appliance] "[ 0.244914] calling proc_cmdline_init+0x0/0x1d @ 1" + 398.4ms (+0.0) [appliance] "[ 0.245249] initcall proc_cmdline_init+0x0/0x1d returned 0 after 0 usecs" + 399.5ms (+1.1) [appliance] "[ 0.245726] calling proc_consoles_init+0x0/0x1d @ 1" + 399.5ms (+0.0) [appliance] "[ 0.246064] initcall proc_consoles_init+0x0/0x1d returned 0 after 0 usecs" + 399.5ms (+0.0) [appliance] "[ 0.246525] calling proc_cpuinfo_init+0x0/0x1d @ 1" + 400.6ms (+1.1) [appliance] "[ 0.246879] initcall proc_cpuinfo_init+0x0/0x1d returned 0 after 0 usecs" + 400.6ms (+0.0) [appliance] "[ 0.247338] calling proc_devices_init+0x0/0x1d @ 1" + 400.6ms (+0.0) [appliance] "[ 0.247671] initcall proc_devices_init+0x0/0x1d returned 0 after 0 usecs" + 401.8ms (+1.1) [appliance] "[ 0.248152] calling proc_interrupts_init+0x0/0x1d @ 1" + 401.8ms (+0.0) [appliance] "[ 0.248507] initcall proc_interrupts_init+0x0/0x1d returned 0 after 0 usecs" + 402.9ms (+1.1) [appliance] "[ 0.249002] calling proc_loadavg_init+0x0/0x1d @ 1" + 402.9ms (+0.0) [appliance] "[ 0.249336] initcall proc_loadavg_init+0x0/0x1d returned 0 after 1 usecs" + 402.9ms (+0.0) [appliance] "[ 0.249790] calling proc_meminfo_init+0x0/0x1d @ 1" + 404.0ms (+1.1) [appliance] "[ 0.250143] initcall proc_meminfo_init+0x0/0x1d returned 0 after 0 usecs" + 404.0ms (+0.0) [appliance] "[ 0.250597] calling proc_stat_init+0x0/0x1d @ 1" + 404.0ms (+0.0) [appliance] "[ 0.250910] initcall proc_stat_init+0x0/0x1d returned 0 after 0 usecs" + 405.2ms (+1.1) [appliance] "[ 0.251370] calling proc_uptime_init+0x0/0x1d @ 1" + 405.2ms (+0.0) [appliance] "[ 0.251695] initcall proc_uptime_init+0x0/0x1d returned 0 after 0 usecs" + 405.2ms (+0.0) [appliance] "[ 0.252148] calling proc_version_init+0x0/0x1d @ 1" + 406.3ms (+1.1) [appliance] "[ 0.252503] initcall proc_version_init+0x0/0x1d returned 0 after 0 usecs" + 406.3ms (+0.0) [appliance] "[ 0.252955] calling proc_softirqs_init+0x0/0x1d @ 1" + 406.3ms (+0.0) [appliance] "[ 0.253293] initcall proc_softirqs_init+0x0/0x1d returned 0 after 0 usecs" + 407.4ms (+1.1) [appliance] "[ 0.253771] calling proc_kmsg_init+0x0/0x20 @ 1" + 407.4ms (+0.0) [appliance] "[ 0.254086] initcall proc_kmsg_init+0x0/0x20 returned 0 after 0 usecs" + 407.4ms (+0.0) [appliance] "[ 0.254522] calling proc_page_init+0x0/0x3d @ 1" + 408.6ms (+1.1) [appliance] "[ 0.254857] initcall proc_page_init+0x0/0x3d returned 0 after 0 usecs" + 408.6ms (+0.0) [appliance] "[ 0.255295] calling init_ramfs_fs+0x0/0x1a @ 1" + 408.6ms (+0.0) [appliance] "[ 0.255604] initcall init_ramfs_fs+0x0/0x1a returned 0 after 0 usecs" + 409.7ms (+1.1) [appliance] "[ 0.256053] calling blk_scsi_ioctl_init+0x0/0x365 @ 1" + 409.7ms (+0.0) [appliance] "[ 0.256409] initcall blk_scsi_ioctl_init+0x0/0x365 returned 0 after 0 usecs" + 410.8ms (+1.1) [appliance] "[ 0.256891] calling acpi_event_init+0x0/0x33 @ 1" + 410.8ms (+0.0) [appliance] "[ 0.257223] initcall acpi_event_init+0x0/0x33 returned 0 after 3 usecs" + 410.8ms (+0.0) [appliance] "[ 0.257662] calling pnp_system_init+0x0/0xc @ 1" + 410.8ms (+0.0) [appliance] "[ 0.257992] initcall pnp_system_init+0x0/0xc returned 0 after 5 usecs" + 412.0ms (+1.1) [appliance] "[ 0.258436] calling pnpacpi_init+0x0/0x69 @ 1" + 412.0ms (+0.0) [appliance] "[ 0.258737] pnp: PnP ACPI init" + 412.0ms (+0.0) [appliance] "[ 0.258975] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)" + 413.1ms (+1.1) [appliance] "[ 0.259455] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)" + 413.1ms (+0.0) [appliance] "[ 0.259907] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)" + 414.2ms (+1.1) [appliance] "[ 0.260381] pnp 00:03: [dma 2]" + 414.2ms (+0.0) [appliance] "[ 0.260597] pnp 00:03: Plug and Play ACPI device, IDs PNP0700 (active)" + 414.2ms (+0.0) [appliance] "[ 0.261073] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)" + 415.3ms (+1.1) [appliance] "[ 0.262094] pnp: PnP ACPI: found 5 devices" + 415.3ms (+0.0) [appliance] "[ 0.262378] initcall pnpacpi_init+0x0/0x69 returned 0 after 3555 usecs" + 416.5ms (+1.1) [appliance] "[ 0.262836] calling chr_dev_init+0x0/0xa4 @ 1" + 416.5ms (+0.0) [appliance] "[ 0.263496] initcall chr_dev_init+0x0/0xa4 returned 0 after 349 usecs" + 417.6ms (+1.1) [appliance] "[ 0.263956] calling thermal_init+0x0/0x6f @ 1" + 417.6ms (+0.0) [appliance] "[ 0.264272] initcall thermal_init+0x0/0x6f returned 0 after 4 usecs" + 417.6ms (+0.0) [appliance] "[ 0.264695] calling init_acpi_pm_clocksource+0x0/0xd2 @ 1" + 423.6ms (+6.0) [appliance] "[ 0.269607] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns" + 423.6ms (+0.0) [appliance] "[ 0.270221] initcall init_acpi_pm_clocksource+0x0/0xd2 returned 0 after 5013 usecs" + 423.6ms (+0.0) [appliance] "[ 0.270742] calling pcibios_assign_resources+0x0/0xbb @ 1" + 424.7ms (+1.1) [appliance] "[ 0.271126] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]" + 424.7ms (+0.0) [appliance] "[ 0.271543] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]" + 425.9ms (+1.1) [appliance] "[ 0.271979] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]" + 425.9ms (+0.0) [appliance] "[ 0.272447] pci_bus 0000:00: resource 7 [mem 0x1f400000-0xfebfffff window]" + 425.9ms (+0.0) [appliance] "[ 0.272908] initcall pcibios_assign_resources+0x0/0xbb returned 0 after 1742 usecs" + 427.0ms (+1.1) [appliance] "[ 0.273441] calling sysctl_core_init+0x0/0x26 @ 1" + 427.0ms (+0.0) [appliance] "[ 0.273772] initcall sysctl_core_init+0x0/0x26 returned 0 after 6 usecs" + 428.1ms (+1.1) [appliance] "[ 0.274244] calling eth_offload_init+0x0/0xf @ 1" + 428.1ms (+0.0) [appliance] "[ 0.274563] initcall eth_offload_init+0x0/0xf returned 0 after 0 usecs" + 428.1ms (+0.0) [appliance] "[ 0.275003] calling af_unix_init+0x0/0x49 @ 1" + 429.3ms (+1.1) [appliance] "[ 0.275322] NET: Registered protocol family 1" + 429.3ms (+0.0) [appliance] "[ 0.275627] initcall af_unix_init+0x0/0x49 returned 0 after 299 usecs" + 429.3ms (+0.0) [appliance] "[ 0.276063] calling pci_apply_final_quirks+0x0/0xfe @ 1" + 430.4ms (+1.1) [appliance] "[ 0.276443] pci 0000:00:00.0: Limiting direct PCI/PCI transfers" + 430.4ms (+0.0) [appliance] "[ 0.276859] pci 0000:00:01.0: PIIX3: Enabling Passive Release" + 430.4ms (+0.0) [appliance] "[ 0.277260] pci 0000:00:01.0: Activating ISA DMA hang workarounds" + 431.5ms (+1.1) [appliance] "[ 0.277721] PCI: CLS 0 bytes, default 64" + 431.5ms (+0.0) [appliance] "[ 0.277990] initcall pci_apply_final_quirks+0x0/0xfe returned 0 after 1511 usecs" + 431.5ms (+0.0) [appliance] "[ 0.278489] calling acpi_reserve_resources+0x0/0xe6 @ 1" + 432.6ms (+1.1) [appliance] "[ 0.278870] initcall acpi_reserve_resources+0x0/0xe6 returned 0 after 2 usecs" + 432.6ms (+0.0) [appliance] "[ 0.279370] calling populate_rootfs+0x0/0xa1 @ 1" + 432.6ms (+0.0) [appliance] "[ 0.279721] Unpacking initramfs..." + 433.8ms (+1.1) [appliance] "[ 0.280051] Freeing initrd memory: 164K (ffff88001f3a7000 - ffff88001f3d0000)" + 433.8ms (+0.0) [appliance] "[ 0.280548] initcall populate_rootfs+0x0/0xa1 returned 0 after 827 usecs" + 434.9ms (+1.1) [appliance] "[ 0.281024] calling pci_iommu_init+0x0/0x37 @ 1" + 434.9ms (+0.0) [appliance] "[ 0.281340] initcall pci_iommu_init+0x0/0x37 returned 0 after 0 usecs" + 434.9ms (+0.0) [appliance] "[ 0.281796] calling amd_ibs_init+0x0/0x2d9 @ 1" + 436.0ms (+1.1) [appliance] "[ 0.282128] initcall amd_ibs_init+0x0/0x2d9 returned -19 after 0 usecs" + 436.0ms (+0.0) [appliance] "[ 0.282571] calling msr_init+0x0/0xbe @ 1" + 436.0ms (+0.0) [appliance] "[ 0.282862] initcall msr_init+0x0/0xbe returned 0 after 9 usecs" + 437.1ms (+1.1) [appliance] "[ 0.283303] calling intel_cqm_init+0x0/0x495 @ 1" + 437.1ms (+0.0) [appliance] "[ 0.283635] initcall intel_cqm_init+0x0/0x495 returned -19 after 0 usecs" + 437.1ms (+0.0) [appliance] "[ 0.284083] calling rapl_pmu_init+0x0/0x254 @ 1" + 438.3ms (+1.1) [appliance] "[ 0.284430] initcall rapl_pmu_init+0x0/0x254 returned -1 after 3 usecs" + 438.3ms (+0.0) [appliance] "[ 0.284871] calling intel_uncore_init+0x0/0x2cf @ 1" + 438.3ms (+0.0) [appliance] "[ 0.285208] initcall intel_uncore_init+0x0/0x2cf returned -19 after 0 usecs" + 439.4ms (+1.1) [appliance] "[ 0.285702] calling cstate_pmu_init+0x0/0x179 @ 1" + 439.4ms (+0.0) [appliance] "[ 0.286026] initcall cstate_pmu_init+0x0/0x179 returned -19 after 0 usecs" + 439.4ms (+0.0) [appliance] "[ 0.286485] calling register_kernel_offset_dumper+0x0/0x16 @ 1" + 440.5ms (+1.1) [appliance] "[ 0.286908] initcall register_kernel_offset_dumper+0x0/0x16 returned 0 after 0 usecs" + 440.5ms (+0.0) [appliance] "[ 0.287430] calling i8259A_init_ops+0x0/0x1c @ 1" + 441.6ms (+1.1) [appliance] "[ 0.287773] initcall i8259A_init_ops+0x0/0x1c returned 0 after 0 usecs" + 441.6ms (+0.0) [appliance] "[ 0.288216] calling init_tsc_clocksource+0x0/0xad @ 1" + 441.6ms (+0.0) [appliance] "[ 0.288567] initcall init_tsc_clocksource+0x0/0xad returned 0 after 0 usecs" + 442.8ms (+1.1) [appliance] "[ 0.289138] calling add_rtc_cmos+0x0/0xa0 @ 1" + 442.8ms (+0.0) [appliance] "[ 0.289443] initcall add_rtc_cmos+0x0/0xa0 returned 0 after 0 usecs" + 442.8ms (+0.0) [appliance] "[ 0.289866] calling i8237A_init_ops+0x0/0xf @ 1" + 443.9ms (+1.1) [appliance] "[ 0.290202] initcall i8237A_init_ops+0x0/0xf returned 0 after 0 usecs" + 443.9ms (+0.0) [appliance] "[ 0.290639] calling ioapic_init_ops+0x0/0xf @ 1" + 443.9ms (+0.0) [appliance] "[ 0.290954] initcall ioapic_init_ops+0x0/0xf returned 0 after 0 usecs" + 445.0ms (+1.1) [appliance] "[ 0.291411] calling sysfb_init+0x0/0x6b @ 1" + 445.0ms (+0.0) [appliance] "[ 0.291713] initcall sysfb_init+0x0/0x6b returned 0 after 11 usecs" + 445.0ms (+0.0) [appliance] "[ 0.292135] calling pmc_atom_init+0x0/0xec @ 1" + 446.2ms (+1.1) [appliance] "[ 0.292471] initcall pmc_atom_init+0x0/0xec returned -19 after 1 usecs" + 446.2ms (+0.0) [appliance] "[ 0.292910] calling proc_execdomains_init+0x0/0x1d @ 1" + 446.2ms (+0.0) [appliance] "[ 0.293267] initcall proc_execdomains_init+0x0/0x1d returned 0 after 1 usecs" + 447.3ms (+1.1) [appliance] "[ 0.293764] calling ioresources_init+0x0/0x37 @ 1" + 447.3ms (+0.0) [appliance] "[ 0.294089] initcall ioresources_init+0x0/0x37 returned 0 after 1 usecs" + 448.4ms (+1.1) [appliance] "[ 0.294560] calling init_sched_debug_procfs+0x0/0x27 @ 1" + 448.4ms (+0.0) [appliance] "[ 0.294924] initcall init_sched_debug_procfs+0x0/0x27 returned 0 after 0 usecs" + 448.4ms (+0.0) [appliance] "[ 0.295410] calling init_posix_timers+0x0/0x274 @ 1" + 449.6ms (+1.1) [appliance] "[ 0.295771] initcall init_posix_timers+0x0/0x274 returned 0 after 2 usecs" + 449.6ms (+0.0) [appliance] "[ 0.296236] calling init_posix_cpu_timers+0x0/0xb8 @ 1" + 449.6ms (+0.0) [appliance] "[ 0.296590] initcall init_posix_cpu_timers+0x0/0xb8 returned 0 after 0 usecs" + 450.7ms (+1.1) [appliance] "[ 0.297089] calling timekeeping_init_ops+0x0/0xf @ 1" + 450.7ms (+0.0) [appliance] "[ 0.297433] initcall timekeeping_init_ops+0x0/0xf returned 0 after 0 usecs" + 451.9ms (+1.1) [appliance] "[ 0.297910] calling init_clocksource_sysfs+0x0/0x64 @ 1" + 451.9ms (+0.0) [appliance] "[ 0.298291] initcall init_clocksource_sysfs+0x0/0x64 returned 0 after 10 usecs" + 451.9ms (+0.0) [appliance] "[ 0.298778] calling init_timer_list_procfs+0x0/0x27 @ 1" + 453.0ms (+1.1) [appliance] "[ 0.299160] initcall init_timer_list_procfs+0x0/0x27 returned 0 after 0 usecs" + 453.0ms (+0.0) [appliance] "[ 0.299642] calling alarmtimer_init+0x0/0xee @ 1" + 453.0ms (+0.0) [appliance] "[ 0.299972] initcall alarmtimer_init+0x0/0xee returned 0 after 9 usecs" + 454.1ms (+1.1) [appliance] "[ 0.300444] calling clockevents_init_sysfs+0x0/0xcd @ 1" + 454.1ms (+0.0) [appliance] "[ 0.300815] initcall clockevents_init_sysfs+0x0/0xcd returned 0 after 9 usecs" + 455.3ms (+1.1) [appliance] "[ 0.301312] calling futex_init+0x0/0xad @ 1" + 455.3ms (+0.0) [appliance] "[ 0.301613] futex hash table entries: 16 (order: -2, 1024 bytes)" + 455.3ms (+0.0) [appliance] "[ 0.302017] initcall futex_init+0x0/0xad returned 0 after 394 usecs" + 456.4ms (+1.2) [appliance] "[ 0.302457] calling proc_dma_init+0x0/0x1d @ 1" + 456.4ms (+0.0) [appliance] "[ 0.302794] initcall proc_dma_init+0x0/0x1d returned 0 after 0 usecs" + 456.4ms (+0.0) [appliance] "[ 0.303224] calling proc_modules_init+0x0/0x1d @ 1" + 456.4ms (+0.0) [appliance] "[ 0.303558] initcall proc_modules_init+0x0/0x1d returned 0 after 0 usecs" + 457.6ms (+1.1) [appliance] "[ 0.304032] calling kallsyms_init+0x0/0x20 @ 1" + 457.6ms (+0.0) [appliance] "[ 0.304348] initcall kallsyms_init+0x0/0x20 returned 0 after 0 usecs" + 458.7ms (+1.1) [appliance] "[ 0.304801] calling utsname_sysctl_init+0x0/0xf @ 1" + 458.7ms (+0.0) [appliance] "[ 0.305141] initcall utsname_sysctl_init+0x0/0xf returned 0 after 3 usecs" + 458.7ms (+0.0) [appliance] "[ 0.305602] calling perf_event_sysfs_init+0x0/0x8f @ 1" + 459.8ms (+1.1) [appliance] "[ 0.306008] initcall perf_event_sysfs_init+0x0/0x8f returned 0 after 26 usecs" + 459.9ms (+0.0) [appliance] "[ 0.306491] calling kswapd_init+0x0/0xf @ 1" + 459.9ms (+0.0) [appliance] "[ 0.306815] initcall kswapd_init+0x0/0xf returned 0 after 33 usecs" + 461.0ms (+1.1) [appliance] "[ 0.307260] calling setup_vmstat+0x0/0x1a8 @ 1" + 461.0ms (+0.0) [appliance] "[ 0.307578] initcall setup_vmstat+0x0/0x1a8 returned 0 after 10 usecs" + 461.0ms (+0.0) [appliance] "[ 0.308014] calling mm_compute_batch_init+0x0/0x14 @ 1" + 462.1ms (+1.1) [appliance] "[ 0.308397] initcall mm_compute_batch_init+0x0/0x14 returned 0 after 0 usecs" + 462.1ms (+0.0) [appliance] "[ 0.308873] calling slab_proc_init+0x0/0x20 @ 1" + 462.1ms (+0.0) [appliance] "[ 0.309187] initcall slab_proc_init+0x0/0x20 returned 0 after 0 usecs" + 463.2ms (+1.1) [appliance] "[ 0.309646] calling workingset_init+0x0/0x7a @ 1" + 463.2ms (+0.0) [appliance] "[ 0.309964] workingset: timestamp_bits=60 max_order=17 bucket_order=0" + 463.2ms (+0.0) [appliance] "[ 0.310411] initcall workingset_init+0x0/0x7a returned 0 after 435 usecs" + 464.4ms (+1.1) [appliance] "[ 0.310871] calling proc_vmalloc_init+0x0/0x20 @ 1" + 464.4ms (+0.0) [appliance] "[ 0.311202] initcall proc_vmalloc_init+0x0/0x20 returned 0 after 0 usecs" + 465.5ms (+1.1) [appliance] "[ 0.311680] calling procswaps_init+0x0/0x1d @ 1" + 465.5ms (+0.0) [appliance] "[ 0.311994] initcall procswaps_init+0x0/0x1d returned 0 after 0 usecs" + 465.5ms (+0.0) [appliance] "[ 0.312437] calling slab_sysfs_init+0x0/0xf5 @ 1" + 466.6ms (+1.1) [appliance] "[ 0.313224] initcall slab_sysfs_init+0x0/0xf5 returned 0 after 434 usecs" + 466.6ms (+0.0) [appliance] "[ 0.313679] calling fcntl_init+0x0/0x25 @ 1" + 467.8ms (+1.1) [appliance] "[ 0.314002] initcall fcntl_init+0x0/0x25 returned 0 after 12 usecs" + 467.8ms (+0.0) [appliance] "[ 0.314425] calling proc_filesystems_init+0x0/0x1d @ 1" + 467.8ms (+0.0) [appliance] "[ 0.314778] initcall proc_filesystems_init+0x0/0x1d returned 0 after 0 usecs" + 468.9ms (+1.1) [appliance] "[ 0.315277] calling start_dirtytime_writeback+0x0/0x25 @ 1" + 468.9ms (+0.0) [appliance] "[ 0.315650] initcall start_dirtytime_writeback+0x0/0x25 returned 0 after 0 usecs" + 470.0ms (+1.1) [appliance] "[ 0.316173] calling dio_init+0x0/0x28 @ 1" + 470.0ms (+0.0) [appliance] "[ 0.316466] initcall dio_init+0x0/0x28 returned 0 after 12 usecs" + 470.0ms (+0.0) [appliance] "[ 0.316871] calling dnotify_init+0x0/0x74 @ 1" + 470.0ms (+0.0) [appliance] "[ 0.317185] initcall dnotify_init+0x0/0x74 returned 0 after 2 usecs" + 471.2ms (+1.1) [appliance] "[ 0.317617] calling fanotify_user_setup+0x0/0x4d @ 1" + 471.2ms (+0.0) [appliance] "[ 0.317958] initcall fanotify_user_setup+0x0/0x4d returned 0 after 1 usecs" + 472.3ms (+1.1) [appliance] "[ 0.318442] calling aio_setup+0x0/0x76 @ 1" + 472.3ms (+0.0) [appliance] "[ 0.318732] initcall aio_setup+0x0/0x76 returned 0 after 6 usecs" + 472.3ms (+0.0) [appliance] "[ 0.319136] calling mbcache_init+0x0/0x2c @ 1" + 472.3ms (+0.0) [appliance] "[ 0.319464] initcall mbcache_init+0x0/0x2c returned 0 after 12 usecs" + 473.4ms (+1.1) [appliance] "[ 0.319903] calling init_devpts_fs+0x0/0x5d @ 1" + 473.4ms (+0.0) [appliance] "[ 0.320226] initcall init_devpts_fs+0x0/0x5d returned 0 after 5 usecs" + 474.6ms (+1.1) [appliance] "[ 0.320683] calling ext4_init_fs+0x0/0x197 @ 1" + 474.6ms (+0.0) [appliance] "[ 0.321037] initcall ext4_init_fs+0x0/0x197 returned 0 after 47 usecs" + 474.6ms (+0.0) [appliance] "[ 0.321472] calling journal_init+0x0/0x102 @ 1" + 475.7ms (+1.1) [appliance] "[ 0.321856] initcall journal_init+0x0/0x102 returned 0 after 52 usecs" + 475.7ms (+0.0) [appliance] "[ 0.322291] calling init_nls_utf8+0x0/0x21 @ 1" + 475.7ms (+0.0) [appliance] "[ 0.322599] initcall init_nls_utf8+0x0/0x21 returned 0 after 0 usecs" + 476.8ms (+1.1) [appliance] "[ 0.323047] calling crypto_algapi_init+0x0/0x8 @ 1" + 476.8ms (+0.0) [appliance] "[ 0.323378] initcall crypto_algapi_init+0x0/0x8 returned 0 after 0 usecs" + 476.8ms (+0.0) [appliance] "[ 0.323829] calling chainiv_module_init+0x0/0xc @ 1" + 478.0ms (+1.1) [appliance] "[ 0.324190] initcall chainiv_module_init+0x0/0xc returned 0 after 0 usecs" + 478.0ms (+0.0) [appliance] "[ 0.324649] calling eseqiv_module_init+0x0/0xc @ 1" + 478.0ms (+0.0) [appliance] "[ 0.324978] initcall eseqiv_module_init+0x0/0xc returned 0 after 0 usecs" + 479.1ms (+1.1) [appliance] "[ 0.325453] calling crypto_null_mod_init+0x0/0x43 @ 1" + 479.1ms (+0.0) [appliance] "[ 0.325828] initcall crypto_null_mod_init+0x0/0x43 returned 0 after 28 usecs" + 480.2ms (+1.1) [appliance] "[ 0.326332] calling crc32c_mod_init+0x0/0xc @ 1" + 480.2ms (+0.0) [appliance] "[ 0.326650] initcall crc32c_mod_init+0x0/0xc returned 0 after 5 usecs" + 480.2ms (+0.0) [appliance] "[ 0.327083] calling proc_genhd_init+0x0/0x37 @ 1" + 481.4ms (+1.2) [appliance] "[ 0.327419] initcall proc_genhd_init+0x0/0x37 returned 0 after 1 usecs" + 481.4ms (+0.0) [appliance] "[ 0.327867] calling bsg_init+0x0/0x123 @ 1" + 481.4ms (+0.0) [appliance] "[ 0.328173] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)" + 482.5ms (+1.1) [appliance] "[ 0.328694] initcall bsg_init+0x0/0x123 returned 0 after 522 usecs" + 482.5ms (+0.0) [appliance] "[ 0.329110] calling noop_init+0x0/0xc @ 1" + 482.5ms (+0.0) [appliance] "[ 0.329390] io scheduler noop registered" + 482.5ms (+0.0) [appliance] "[ 0.329669] initcall noop_init+0x0/0xc returned 0 after 271 usecs" + 483.6ms (+1.1) [appliance] "[ 0.330090] calling deadline_init+0x0/0xc @ 1" + 483.6ms (+0.0) [appliance] "[ 0.330393] io scheduler deadline registered" + 483.6ms (+0.0) [appliance] "[ 0.330682] initcall deadline_init+0x0/0xc returned 0 after 282 usecs" + 484.8ms (+1.1) [appliance] "[ 0.331137] calling cfq_init+0x0/0x7f @ 1" + 484.8ms (+0.0) [appliance] "[ 0.331441] io scheduler cfq registered (default)" + 484.8ms (+0.0) [appliance] "[ 0.331759] initcall cfq_init+0x0/0x7f returned 0 after 332 usecs" + 485.9ms (+1.1) [appliance] "[ 0.332199] calling percpu_counter_startup+0x0/0x22 @ 1" + 485.9ms (+0.0) [appliance] "[ 0.332558] initcall percpu_counter_startup+0x0/0x22 returned 0 after 0 usecs" + 485.9ms (+0.0) [appliance] "[ 0.333048] calling pci_proc_init+0x0/0x64 @ 1" + 487.1ms (+1.1) [appliance] "[ 0.333374] initcall pci_proc_init+0x0/0x64 returned 0 after 5 usecs" + 487.1ms (+0.0) [appliance] "[ 0.333801] calling acpi_ac_init+0x0/0x26 @ 1" + 487.1ms (+0.0) [appliance] "[ 0.334112] initcall acpi_ac_init+0x0/0x26 returned 0 after 11 usecs" + 488.2ms (+1.1) [appliance] "[ 0.334575] calling acpi_button_driver_init+0x0/0xc @ 1" + 488.2ms (+0.0) [appliance] "[ 0.334953] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0" + 489.3ms (+1.1) [appliance] "[ 0.335474] ACPI: Power Button [PWRF]" + 489.3ms (+0.0) [appliance] "[ 0.335745] initcall acpi_button_driver_init+0x0/0xc returned 0 after 794 usecs" + 489.3ms (+0.0) [appliance] "[ 0.336243] calling acpi_fan_driver_init+0x0/0xe @ 1" + 490.5ms (+1.1) [appliance] "[ 0.336611] initcall acpi_fan_driver_init+0x0/0xe returned 0 after 3 usecs" + 490.5ms (+0.0) [appliance] "[ 0.337073] calling acpi_processor_driver_init+0x0/0x23 @ 1" + 490.5ms (+0.0) [appliance] "[ 0.337461] Warning: Processor Platform Limit event detected, but not handled." + 491.6ms (+1.1) [appliance] "[ 0.337965] Consider compiling CPUfreq support into your kernel." + 491.6ms (+0.0) [appliance] "[ 0.338381] initcall acpi_processor_driver_init+0x0/0x23 returned 0 after 902 usecs" + 492.7ms (+1.1) [appliance] "[ 0.338916] calling acpi_thermal_init+0x0/0x6c @ 1" + 492.7ms (+0.0) [appliance] "[ 0.339263] initcall acpi_thermal_init+0x0/0x6c returned 0 after 15 usecs" + 492.7ms (+0.0) [appliance] "[ 0.339721] calling acpi_battery_init+0x0/0x2b @ 1" + 493.8ms (+1.1) [appliance] "[ 0.340074] initcall acpi_battery_init+0x0/0x2b returned 0 after 2 usecs" + 493.8ms (+0.0) [appliance] "[ 0.340534] calling pty_init+0x0/0x37b @ 1" + 497.0ms (+3.1) [appliance] "[ 0.342981] initcall pty_init+0x0/0x37b returned 0 after 2112 usecs" + 497.0ms (+0.0) [appliance] "[ 0.343432] calling serial8250_init+0x0/0x163 @ 1" + 497.0ms (+0.0) [appliance] "[ 0.343757] Serial: 8250/16550 driver, 1 ports, IRQ sharing disabled" + 520.4ms (+23.4) [appliance] "[ 0.366431] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A" + 520.4ms (+0.0) [appliance] "[ 0.366983] initcall serial8250_init+0x0/0x163 returned 0 after 22680 usecs" + 520.4ms (+0.0) [appliance] "[ 0.367478] calling serial_pci_driver_init+0x0/0x15 @ 1" + 521.5ms (+1.1) [appliance] "[ 0.367860] initcall serial_pci_driver_init+0x0/0x15 returned 0 after 10 usecs" + 521.5ms (+0.0) [appliance] "[ 0.368379] calling topology_sysfs_init+0x0/0x70 @ 1" + 522.6ms (+1.1) [appliance] "[ 0.368739] initcall topology_sysfs_init+0x0/0x70 returned 0 after 3 usecs" + 522.6ms (+0.0) [appliance] "[ 0.369217] calling cacheinfo_sysfs_init+0x0/0x3aa @ 1" + 522.6ms (+0.0) [appliance] "[ 0.369604] initcall cacheinfo_sysfs_init+0x0/0x3aa returned 0 after 17 usecs" + 523.7ms (+1.1) [appliance] "[ 0.370102] calling pmem_init+0x0/0x15 @ 1" + 523.7ms (+0.0) [appliance] "[ 0.370401] initcall pmem_init+0x0/0x15 returned 0 after 3 usecs" + 523.7ms (+0.0) [appliance] "[ 0.370817] calling nd_btt_init+0x0/0x6 @ 1" + 524.8ms (+1.1) [appliance] "[ 0.371118] initcall nd_btt_init+0x0/0x6 returned -6 after 0 usecs" + 524.8ms (+0.0) [appliance] "[ 0.371548] calling nd_blk_init+0x0/0x15 @ 1" + 524.8ms (+0.0) [appliance] "[ 0.371856] initcall nd_blk_init+0x0/0x15 returned 0 after 2 usecs" + 525.9ms (+1.1) [appliance] "[ 0.372295] calling init_sd+0x0/0x148 @ 1" + 525.9ms (+0.0) [appliance] "[ 0.372591] initcall init_sd+0x0/0x148 returned 0 after 8 usecs" + 525.9ms (+0.0) [appliance] "[ 0.373004] calling init_sg+0x0/0x119 @ 1" + 527.0ms (+1.1) [appliance] "[ 0.373302] initcall init_sg+0x0/0x119 returned 0 after 6 usecs" + 527.0ms (+0.0) [appliance] "[ 0.373714] calling net_olddevs_init+0x0/0x58 @ 1" + 527.0ms (+0.0) [appliance] "[ 0.374050] initcall net_olddevs_init+0x0/0x58 returned 0 after 1 usecs" + 528.1ms (+1.1) [appliance] "[ 0.374512] calling i8042_init+0x0/0x332 @ 1" + 528.1ms (+0.0) [appliance] "[ 0.374829] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12" + 529.2ms (+1.1) [appliance] "[ 0.375871] serio: i8042 KBD port at 0x60,0x64 irq 1" + 529.2ms (+0.0) [appliance] "[ 0.376227] serio: i8042 AUX port at 0x60,0x64 irq 12" + 530.3ms (+1.1) [appliance] "[ 0.376588] initcall i8042_init+0x0/0x332 returned 0 after 1729 usecs" + 530.3ms (+0.0) [appliance] "[ 0.377035] calling serport_init+0x0/0x28 @ 1" + 530.3ms (+0.0) [appliance] "[ 0.377348] initcall serport_init+0x0/0x28 returned 0 after 0 usecs" + 531.4ms (+1.1) [appliance] "[ 0.377784] calling hid_init+0x0/0x38 @ 1" + 531.4ms (+0.0) [appliance] "[ 0.378075] initcall hid_init+0x0/0x38 returned 0 after 4 usecs" + 531.4ms (+0.0) [appliance] "[ 0.378489] calling hid_generic_init+0x0/0x15 @ 1" + 532.5ms (+1.1) [appliance] "[ 0.378830] initcall hid_generic_init+0x0/0x15 returned 0 after 3 usecs" + 532.5ms (+0.0) [appliance] "[ 0.379296] calling sock_diag_init+0x0/0x2f @ 1" + 532.5ms (+0.0) [appliance] "[ 0.379623] initcall sock_diag_init+0x0/0x2f returned 0 after 4 usecs" + 533.6ms (+1.1) [appliance] "[ 0.380095] calling hpet_insert_resource+0x0/0x1e @ 1" + 533.6ms (+0.0) [appliance] "[ 0.380464] initcall hpet_insert_resource+0x0/0x1e returned 1 after 0 usecs" + 534.7ms (+1.1) [appliance] "[ 0.380951] calling update_mp_table+0x0/0x43e @ 1" + 534.7ms (+0.0) [appliance] "[ 0.381289] initcall update_mp_table+0x0/0x43e returned 0 after 0 usecs" + 534.7ms (+0.0) [appliance] "[ 0.381752] calling lapic_insert_resource+0x0/0x3a @ 1" + 535.8ms (+1.1) [appliance] "[ 0.382120] initcall lapic_insert_resource+0x0/0x3a returned 0 after 0 usecs" + 535.8ms (+0.0) [appliance] "[ 0.382612] calling print_ICs+0x0/0xd6 @ 1" + 535.8ms (+0.0) [appliance] "[ 0.382904] initcall print_ICs+0x0/0xd6 returned 0 after 0 usecs" + 537.0ms (+1.1) [appliance] "[ 0.383326] calling create_tlb_single_page_flush_ceiling+0x0/0x3 @ 1" + 537.0ms (+0.0) [appliance] "[ 0.383771] initcall create_tlb_single_page_flush_ceiling+0x0/0x3 returned 0 after 0 usecs" + 538.1ms (+1.1) [appliance] "[ 0.384350] calling init_oops_id+0x0/0x30 @ 1" + 538.1ms (+0.0) [appliance] "[ 0.384663] initcall init_oops_id+0x0/0x30 returned 0 after 1 usecs" + 538.1ms (+0.0) [appliance] "[ 0.385100] calling sched_init_debug+0x0/0x3 @ 1" + 539.2ms (+1.1) [appliance] "[ 0.385432] initcall sched_init_debug+0x0/0x3 returned 0 after 0 usecs" + 539.2ms (+0.0) [appliance] "[ 0.385884] calling pm_qos_power_init+0x0/0x5f @ 1" + 539.2ms (+0.0) [appliance] "[ 0.386271] initcall pm_qos_power_init+0x0/0x5f returned 0 after 46 usecs" + 540.3ms (+1.1) [appliance] "[ 0.386747] calling printk_late_init+0x0/0x54 @ 1" + 540.3ms (+0.0) [appliance] "[ 0.387081] initcall printk_late_init+0x0/0x54 returned 0 after 0 usecs" + 541.4ms (+1.1) [appliance] "[ 0.387543] calling max_swapfiles_check+0x0/0x3 @ 1" + 541.4ms (+0.0) [appliance] "[ 0.387887] initcall max_swapfiles_check+0x0/0x3 returned 0 after 0 usecs" + 541.4ms (+0.0) [appliance] "[ 0.388368] calling check_early_ioremap_leak+0x0/0x3d @ 1" + 542.5ms (+1.1) [appliance] "[ 0.388752] initcall check_early_ioremap_leak+0x0/0x3d returned 0 after 0 usecs" + 542.5ms (+0.0) [appliance] "[ 0.389262] calling prandom_reseed+0x0/0x3b @ 1" + 542.5ms (+0.0) [appliance] "[ 0.389584] initcall prandom_reseed+0x0/0x3b returned 0 after 1 usecs" + 543.6ms (+1.1) [appliance] "[ 0.390034] calling pci_resource_alignment_sysfs_init+0x0/0x17 @ 1" + 543.6ms (+0.0) [appliance] "[ 0.390471] initcall pci_resource_alignment_sysfs_init+0x0/0x17 returned 0 after 1 usecs" + 544.7ms (+1.1) [appliance] "[ 0.391032] calling pci_sysfs_init+0x0/0x4b @ 1" + 544.7ms (+0.0) [appliance] "[ 0.391440] initcall pci_sysfs_init+0x0/0x4b returned 0 after 82 usecs" + 544.7ms (+0.0) [appliance] "[ 0.391894] calling deferred_probe_initcall+0x0/0x60 @ 1" + 545.8ms (+1.1) [appliance] "[ 0.392288] initcall deferred_probe_initcall+0x0/0x60 returned 0 after 12 usecs" + 545.8ms (+0.0) [appliance] "[ 0.392796] calling register_sk_filter_ops+0x0/0x3 @ 1" + 546.9ms (+1.1) [appliance] "[ 0.393161] initcall register_sk_filter_ops+0x0/0x3 returned 0 after 0 usecs" + 546.9ms (+0.0) [appliance] "[ 0.393682] calling init_default_flow_dissectors+0x0/0x33 @ 1" + 546.9ms (+0.0) [appliance] "[ 0.394088] initcall init_default_flow_dissectors+0x0/0x33 returned 0 after 0 usecs" + 548.0ms (+1.1) [appliance] "[ 0.395126] Freeing unused kernel memory: 628K (ffffffff8164a000 - ffffffff816e7000)" + 549.1ms (+1.1) [appliance] "[ 0.395678] Write protecting the kernel read-only data: 6144k" + 549.1ms (+0.0) [appliance] "[ 0.396272] Freeing unused kernel memory: 1236K (ffff8800012cb000 - ffff880001400000)" + 552.1ms (+3.0) [appliance] "[ 0.398172] Freeing unused kernel memory: 868K (ffff880001527000 - ffff880001600000)" + 552.1ms (+0.0) [appliance] "supermin: mounting /proc" + 552.1ms (+0.0) [appliance] "supermin: ext2 mini initrd starting up: 5.1.16 dietlibc" + 553.2ms (+1.1) [appliance] "supermin: cmdline: panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug " + 554.3ms (+1.1) [appliance] "supermin: uptime: 0.32 0.01" + 554.3ms (+0.0) [appliance] "supermin: mounting /sys" + 554.3ms (+0.0) [appliance] "supermin: internal insmod nfit.ko" + 555.6ms (+1.2) [appliance] "[ 0.401656] calling nfit_init+0x0/0xfe [nfit] @ 1" + 556.8ms (+1.3) [appliance] "[ 0.402909] initcall nfit_init+0x0/0xfe [nfit] returned 0 after 886 usecs" + 556.8ms (+0.0) [appliance] "supermin: internal insmod virtio.ko" + 556.8ms (+0.0) [appliance] "[ 0.403733] calling virtio_init+0x0/0x1f [virtio] @ 1" + 557.9ms (+1.1) [appliance] "[ 0.404105] initcall virtio_init+0x0/0x1f [virtio] returned 0 after 4 usecs" + 557.9ms (+0.0) [appliance] "supermin: internal insmod virtio_ring.ko" + 557.9ms (+0.0) [appliance] "supermin: internal insmod virtio_console.ko" + 559.1ms (+1.1) [appliance] "[ 0.405423] calling init+0x0/0xd6 [virtio_console] @ 1" + 559.1ms (+0.0) [appliance] "[ 0.405803] initcall init+0x0/0xd6 [virtio_console] returned 0 after 10 usecs" + 560.2ms (+1.1) [appliance] "supermin: internal insmod virtio_scsi.ko" + 560.2ms (+0.0) [appliance] "[ 0.406665] calling init+0x0/0xc7 [virtio_scsi] @ 1" + 560.2ms (+0.0) [appliance] "[ 0.407028] initcall init+0x0/0xc7 [virtio_scsi] returned 0 after 8 usecs" + 561.3ms (+1.1) [appliance] "supermin: internal insmod virtio_pci.ko" + 561.3ms (+0.0) [appliance] "[ 0.407862] calling virtio_pci_driver_init+0x0/0x1a [virtio_pci] @ 1" + 574.3ms (+13.0) [appliance] "[ 0.420411] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 10" + 574.3ms (+0.0) [appliance] "[ 0.420835] virtio-pci 0000:00:02.0: virtio_pci: leaving for legacy driver" + 587.8ms (+13.5) [appliance] "[ 0.433865] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11" + 587.8ms (+0.0) [appliance] "[ 0.434316] virtio-pci 0000:00:03.0: virtio_pci: leaving for legacy driver" + 589.5ms (+1.7) [appliance] "[ 0.435565] pmem0: detected capacity change from 0 to 4294967296" + 589.5ms (+0.0) [appliance] "[ 0.436147] scsi host0: Virtio SCSI HBA" + 589.5ms (+0.0) [appliance] "[ 0.436631] scsi 0:0:0:0: Direct-Access QEMU QEMU HARDDISK 2.5+ PQ: 0 ANSI: 5" + 590.7ms (+1.1) [appliance] "[ 0.437371] sd 0:0:0:0: Attached scsi generic sg0 type 0" + 591.8ms (+1.2) [appliance] "[ 0.437887] sd 0:0:0:0: [sda] 8 512-byte logical blocks: (4.10 kB/4.00 KiB)" + 591.8ms (+0.0) [appliance] "[ 0.438757] sd 0:0:0:0: [sda] Write Protect is off" + 592.9ms (+1.1) [appliance] "[ 0.439105] sd 0:0:0:0: [sda] Mode Sense: 63 00 00 08" + 592.9ms (+0.0) [appliance] "[ 0.439527] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA" + 594.0ms (+1.1) [appliance] "[ 0.441140] sd 0:0:0:0: [sda] Attached SCSI disk" + 616.9ms (+22.9) [appliance] "[ 0.462940] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11" + 616.9ms (+0.0) [appliance] "[ 0.463385] virtio-pci 0000:00:04.0: virtio_pci: leaving for legacy driver" + 628.6ms (+11.6) [appliance] "[ 0.474578] initcall virtio_pci_driver_init+0x0/0x1a [virtio_pci] returned 0 after 64698 usecs" + 628.6ms (+0.0) [appliance] "supermin: picked /sys/block/pmem0/dev as root device" + 629.7ms (+1.1) [appliance] "supermin: creating /dev/root as block special 259:0" + 629.7ms (+0.0) [appliance] "supermin: mounting new root on /root (dax)" + 629.7ms (+0.0) [appliance] "[ 0.476688] EXT4-fs (pmem0): DAX enabled. Warning: EXPERIMENTAL, use at your own risk" + 630.8ms (+1.2) [appliance] "[ 0.477232] EXT4-fs (pmem0): mounting ext2 file system using the ext4 subsystem" + 630.8ms (+0.0) [appliance] "[ 0.477904] EXT4-fs (pmem0): mounted filesystem without journal. Opts: dax" + 632.0ms (+1.1) [appliance] "supermin: chroot" + 634.4ms (+2.4) [appliance] "Starting /init script ..." + 637.7ms (+3.3) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_network=1* ]]" + 638.8ms (+1.2) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_rescue=1* ]]" + 640.0ms (+1.2) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_noreboot=1* ]]" + 641.2ms (+1.2) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_boot_analysis=1* ]]" + 642.3ms (+1.1) [appliance] "+ guestfs_boot_analysis=1" + 642.3ms (+0.0) [appliance] "+ '[' '!' -d /sys ']'" + 643.4ms (+1.1) [appliance] "+ mkdir -p /sys" + 643.4ms (+0.0) [appliance] "+ mount -t sysfs /sys /sys" + 645.3ms (+1.9) [appliance] "+ mkdir -p /run" + 645.3ms (+0.0) [appliance] "+ mount -t tmpfs -o nosuid,size=20%,mode=0755 tmpfs /run" + 647.2ms (+1.9) [appliance] "+ mkdir -p /run/lock" + 647.2ms (+0.0) [appliance] "+ ln -s ../run/lock /var/lock" + 648.5ms (+1.4) [appliance] "+ ln -s /proc/mounts /etc/mtab" + 648.5ms (+0.0) [appliance] "+ mount -t devtmpfs /dev /dev" + 650.3ms (+1.7) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *selinux=1* ]]" + 651.4ms (+1.1) [appliance] "+ mkdir -p /run/tmpfiles.d" + 651.4ms (+0.0) [appliance] "+ kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf" + 653.7ms (+2.3) [appliance] "++ od -x -A n" + 653.7ms (+0.0) [appliance] "++ dd if=/dev/urandom bs=16 count=1 status=none" + 654.9ms (+1.3) [appliance] "[ 0.500953] random: dd urandom read with 15 bits of entropy available" + 654.9ms (+0.0) [appliance] "+ machine_id=' 2d0e f2bb d072 933b 4ca6 b2ef 80c9 98bc'" + 654.9ms (+0.0) [appliance] "+ echo 2d0ef2bbd072933b4ca6b2ef80c998bc" + 656.0ms (+1.1) [appliance] "+ systemd-tmpfiles --prefix=/dev --create --boot" + 658.2ms (+2.1) [appliance] "+ for f in /lib/systemd/systemd-udevd /usr/lib/systemd/systemd-udevd /sbin/udevd /lib/udev/udevd /usr/lib/udev/udevd" + 658.2ms (+0.0) [appliance] "+ '[' -x /lib/systemd/systemd-udevd ']'" + 658.2ms (+0.0) [appliance] "+ UDEVD=/lib/systemd/systemd-udevd" + 658.2ms (+0.0) [appliance] "+ break" + 658.2ms (+0.0) [appliance] "+ '[' -z /lib/systemd/systemd-udevd ']'" + 659.3ms (+1.1) [appliance] "+ /lib/systemd/systemd-udevd --daemon" + 661.0ms (+1.7) [appliance] "starting version 229" + 661.0ms (+0.0) [appliance] "+ udevadm trigger" + 695.4ms (+34.5) [appliance] "+ udevadm settle --timeout=600" + 776.1ms (+80.7) [appliance] "+ shopt -s nullglob" + 776.1ms (+0.0) [appliance] "+ for f in '/sys/block/sd*/device/timeout'" + 776.1ms (+0.0) [appliance] "+ echo 300" + 776.1ms (+0.0) [appliance] "+ for f in '/sys/block/{h,s,ub,v}d*/queue/scheduler'" + 776.1ms (+0.0) [appliance] "+ echo noop" + 790.1ms (+14.0) [appliance] "+ shopt -u nullglob" + 790.1ms (+0.0) [appliance] "+ ip addr add 127.0.0.1/8 brd + dev lo scope host" + 790.1ms (+0.0) [appliance] "RTNETLINK answers: Operation not supported" + 791.2ms (+1.1) [appliance] "+ ip link set dev lo up" + 791.2ms (+0.0) [appliance] "+ test '' = 1" + 791.2ms (+0.0) [appliance] "+ mdadm -As --auto=yes --run" + 795.4ms (+4.2) [appliance] "mdadm: No arrays found in config file or automatically" + 795.4ms (+0.0) [appliance] "+ modprobe dm_mod" + 796.6ms (+1.2) [appliance] "modprobe: FATAL: Module dm_mod not found in directory /lib/modules/4.6.0+" + 796.6ms (+0.0) [appliance] "+ :" + 796.6ms (+0.0) [appliance] "+ lvmetad" + 798.8ms (+2.2) [appliance] "+ lvm vgchange -aay --sysinit" + 801.4ms (+2.6) [appliance] " Configuration setting "global/notify_dbus" unknown." + 801.4ms (+0.0) [appliance] " Configuration setting "devices/allow_changes_with_duplicate_pvs" unknown." + 802.8ms (+1.3) [appliance] " lvmetad is not active yet, using direct activation during sysinit" + 802.8ms (+0.0) [appliance] "+ ldmtool create all" + 807.4ms (+4.6) [appliance] "[" + 807.4ms (+0.0) [appliance] "]" + 807.4ms (+0.0) [appliance] "+ test 1 = 1" + 807.4ms (+0.0) [appliance] "+ test 1 '!=' 1" + 807.4ms (+0.0) [appliance] "+ test '' = 1" + 807.4ms (+0.0) [appliance] "+ cmd=guestfsd" + 808.6ms (+1.2) [appliance] "++ grep -Eo 'guestfs_channel=[^[:space:]]+' /proc/cmdline" + 808.6ms (+0.0) [appliance] "+ eval" + 808.6ms (+0.0) [appliance] "+ test x '!=' x" + 809.7ms (+1.2) [appliance] "+ test 1 = 1" + 809.7ms (+0.0) [appliance] "+ cmd='guestfsd --verbose'" + 809.7ms (+0.0) [appliance] "+ test '' = 1" + 809.7ms (+0.0) [appliance] "+ echo guestfsd --verbose" + 809.7ms (+0.0) [appliance] "guestfsd --verbose" + 809.7ms (+0.0) [appliance] "+ guestfsd --verbose" + 814.5ms (+4.8) [appliance] "trying to open virtio-serial channel '/dev/virtio-ports/org.libguestfs.channel.0'" + 814.5ms (+0.0) [appliance] "udevadm --debug settle" + 816.8ms (+2.2) [appliance] "calling: settle" + 816.8ms (+0.0) [launch_done] "launch done callback" + 816.8ms (+0.0) [library] "recv_from_daemon: received GUESTFS_LAUNCH_FLAG" + 816.8ms (+0.0) [library] "appliance is up" + 816.8ms (+0.0) [trace] "launch = 0" + 816.8ms (+0.0) [trace] "close" + 816.8ms (+0.0) [library] "closing guestfs handle 0x55a7d259b890 (state 2)" + 816.8ms (+0.0) [trace] "internal_autosync" + 819.4ms (+2.6) [appliance] "guestfsd: main_loop: new request, len 0x28" + 819.4ms (+0.0) [appliance] "umount-all: /proc/mounts: fsname=/dev/root dir=/ type=ext2 opts=rw,noatime,block_validity,barrier,dax,user_xattr freq=0 passno=0" + 819.4ms (+0.0) [appliance] "umount-all: /proc/mounts: fsname=/proc dir=/proc type=proc opts=rw,relatime freq=0 passno=0" + 820.6ms (+1.1) [appliance] "umount-all: /proc/mounts: fsname=/sys dir=/sys type=sysfs opts=rw,relatime freq=0 passno=0" + 820.6ms (+0.0) [appliance] "umount-all: /proc/mounts: fsname=tmpfs dir=/run type=tmpfs opts=rw,nosuid,relatime,size=99484k,mode=755 freq=0 passno=0" + 820.6ms (+0.0) [appliance] "umount-all: /proc/mounts: fsname=/dev dir=/dev type=devtmpfs opts=rw,relatime,size=247256k,nr_inodes=61814,mode=755 freq=0 passno=0" + 821.7ms (+1.1) [appliance] "fsync /dev/sda" + 829.4ms (+7.7) [trace] "internal_autosync = 0" + 829.4ms (+0.0) [library] "sending SIGTERM to process 8688" + 837.6ms (+8.2) [library] "qemu maxrss 159608K" + 837.6ms (+0.0) [close] "close callback" + 837.6ms (+0.0) [library] "command: run: rm" + 837.7ms (+0.0) [library] "command: run: \ -rf /home/rjones/d/libguestfs/tmp/libguestfsDhqLla" + 838.9ms (+1.3) [library] "command: run: rm" + 838.9ms (+0.0) [library] "command: run: \ -rf /run/user/1000/libguestfsVu6hTH" +pass 1 + number of events collected 885 + elapsed time 831267490 ns + 0.1ms [trace] "launch" + 0.1ms (+0.0) [trace] "version" + 0.1ms (+0.0) [trace] "version = " + 0.1ms (+0.0) [trace] "get_backend" + 0.1ms (+0.0) [trace] "get_backend = "direct"" + 0.1ms (+0.0) [library] "launch: program=boot-analysis" + 0.1ms (+0.0) [library] "launch: version=1.33.29" + 0.1ms (+0.0) [library] "launch: backend registered: unix" + 0.1ms (+0.0) [library] "launch: backend registered: uml" + 0.1ms (+0.0) [library] "launch: backend registered: libvirt" + 0.1ms (+0.0) [library] "launch: backend registered: direct" + 0.1ms (+0.0) [library] "launch: backend=direct" + 0.1ms (+0.0) [library] "launch: tmpdir=/home/rjones/d/libguestfs/tmp/libguestfsy3PeMh" + 0.6ms (+0.5) [library] "launch: umask=0002" + 0.6ms (+0.0) [library] "launch: euid=1000" + 0.7ms (+0.0) [trace] "get_backend_setting "force_tcg"" + 0.7ms (+0.0) [trace] "get_backend_setting = NULL (error)" + 0.7ms (+0.0) [trace] "get_cachedir" + 0.7ms (+0.0) [trace] "get_cachedir = "/home/rjones/d/libguestfs/tmp"" + 0.7ms (+0.0) [library] "begin building supermin appliance" + 0.7ms (+0.0) [library] "run supermin" + 0.7ms (+0.0) [library] "command: run: /usr/bin/supermin" + 0.7ms (+0.0) [library] "command: run: \ --build" + 0.7ms (+0.0) [library] "command: run: \ --verbose" + 0.7ms (+0.0) [library] "command: run: \ --if-newer" + 0.7ms (+0.0) [library] "command: run: \ --lock /home/rjones/d/libguestfs/tmp/.guestfs-1000/lock" + 0.7ms (+0.0) [library] "command: run: \ --copy-kernel" + 0.7ms (+0.0) [library] "command: run: \ -f ext2" + 0.7ms (+0.0) [library] "command: run: \ --host-cpu x86_64" + 0.7ms (+0.0) [library] "command: run: \ /home/rjones/d/libguestfs/appliance/supermin.d" + 0.7ms (+0.0) [library] "command: run: \ -o /home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d" + 8.7ms (+8.0) [appliance] "supermin: version: 5.1.16" + 8.7ms (+0.0) [appliance] "supermin: rpm: detected RPM version 4.13" + 8.7ms (+0.0) [appliance] "supermin: package handler: fedora/rpm" + 8.7ms (+0.0) [appliance] "supermin: acquiring lock on /home/rjones/d/libguestfs/tmp/.guestfs-1000/lock" + 8.7ms (+0.0) [appliance] "supermin: if-newer: output does not need rebuilding" + 11.3ms (+2.7) [library] "finished building supermin appliance" + 11.4ms (+0.0) [library] "begin testing qemu features" + 11.4ms (+0.0) [trace] "get_cachedir" + 11.4ms (+0.0) [trace] "get_cachedir = "/home/rjones/d/libguestfs/tmp"" + 11.4ms (+0.0) [library] "checking for previously cached test results of /home/rjones/d/qemu/x86_64-softmmu/qemu-system-x86_64, in /home/rjones/d/libguestfs/tmp/.guestfs-1000" + 11.4ms (+0.0) [library] "loading previously cached test results" + 11.4ms (+0.0) [library] "qemu version 2.6" + 11.4ms (+0.0) [trace] "get_sockdir" + 11.4ms (+0.0) [trace] "get_sockdir = "/run/user/1000"" + 11.5ms (+0.1) [library] "finished testing qemu features" + 11.5ms (+0.0) [trace] "get_backend_setting "gdb"" + 11.5ms (+0.0) [trace] "get_backend_setting = NULL (error)" + 11.5ms (+0.0) [trace] "get_backend_setting "dax"" + 11.5ms (+0.0) [trace] "get_backend_setting = "1"" + 13.2ms (+1.6) [appliance] "[00011ms] /home/rjones/d/qemu/x86_64-softmmu/qemu-system-x86_64 \" + 13.2ms (+0.0) [appliance] " -global virtio-blk-pci.scsi=off \" + 13.2ms (+0.0) [appliance] " -nodefconfig \" + 13.2ms (+0.0) [appliance] " -enable-fips \" + 13.2ms (+0.0) [appliance] " -nodefaults \" + 13.2ms (+0.0) [appliance] " -display none \" + 13.2ms (+0.0) [appliance] " -machine pc,nvdimm=on,accel=kvm:tcg \" + 13.2ms (+0.0) [appliance] " -cpu host \" + 13.2ms (+0.0) [appliance] " -m 500,maxmem=32G,slots=32 \" + 13.2ms (+0.0) [appliance] " -no-reboot \" + 13.2ms (+0.0) [appliance] " -rtc driftfix=slew \" + 13.2ms (+0.0) [appliance] " -no-hpet \" + 13.2ms (+0.0) [appliance] " -global kvm-pit.lost_tick_policy=discard \" + 13.2ms (+0.0) [appliance] " -kernel /home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d/kernel \" + 13.2ms (+0.0) [appliance] " -initrd /home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d/initrd \" + 13.2ms (+0.0) [appliance] " -bios bios-fast.bin \" + 13.2ms (+0.0) [appliance] " -object rng-random,filename=/dev/urandom,id=rng0 \" + 13.2ms (+0.0) [appliance] " -device virtio-rng-pci,rng=rng0 \" + 13.2ms (+0.0) [appliance] " -device virtio-scsi-pci,id=scsi \" + 13.2ms (+0.0) [appliance] " -drive file=/home/rjones/d/libguestfs/tmp/libguestfsy3PeMh/devnull1,cache=writeback,format=raw,id=hd0,if=none \" + 13.2ms (+0.0) [appliance] " -device scsi-hd,drive=hd0 \" + 13.2ms (+0.0) [appliance] " -object memory-backend-file,id=mem1,share=off,mem-path=/home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d/root,size=4294967296b \" + 13.2ms (+0.0) [appliance] " -device nvdimm,memdev=mem1,id=nv1 \" + 13.2ms (+0.0) [appliance] " -device virtio-serial-pci \" + 13.2ms (+0.0) [appliance] " -serial stdio \" + 13.2ms (+0.0) [appliance] " -device sga \" + 13.2ms (+0.0) [appliance] " -chardev socket,path=/run/user/1000/libguestfslQWbHR/guestfsd.sock,id=channel0 \" + 13.2ms (+0.0) [appliance] " -device virtserialport,chardev=channel0,name=org.libguestfs.channel.0 \" + 13.2ms (+0.0) [appliance] " -append 'panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug '" + 111.1ms (+97.9) [library] "responding to serial console Device Status Report" + 111.1ms (+0.0) [appliance] "\x1b[1;256r\x1b[256;256H\x1b[6n" + 112.7ms (+1.6) [appliance] "Google, Inc." + 112.7ms (+0.0) [appliance] "Serial Graphics Adapter 11/03/11" + 112.7ms (+0.0) [appliance] "SGABIOS $Id$ (pbonzini@yakj.usersys.redhat.com) Thu Nov 3 13:33:51 UTC 2011" + 112.7ms (+0.0) [appliance] "Term: 80x24" + 112.7ms (+0.0) [appliance] "4 0" + 112.7ms (+0.0) [appliance] "\x1b[2J\x0dSeaBIOS (version rel-1.9.1-0-gb3ef39f-prebuilt.qemu-project.org)" + 122.4ms (+9.7) [appliance] "\x0dBooting from Hard Disk..." + 122.4ms (+0.0) [appliance] "\x0dBoot failed: could not read the boot disk" + 123.5ms (+1.1) [appliance] "" + 123.5ms (+0.0) [appliance] "\x0dBooting from ROM..." + 124.5ms (+1.1) [appliance] "\x1b[2J" + 161.0ms (+36.4) [appliance] "[ 0.000000] Linux version 4.6.0+ (rjones@moo.home.annexia.org) (gcc version 6.1.1 20160427 (Red Hat 6.1.1-1) (GCC) ) #36 SMP Wed May 18 13:36:15 BST 2016" + 161.0ms (+0.0) [appliance] "[ 0.000000] Command line: panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug " + 163.2ms (+2.2) [appliance] "[ 0.000000] KERNEL supported cpus:" + 163.2ms (+0.0) [appliance] "[ 0.000000] Intel GenuineIntel" + 164.3ms (+1.1) [appliance] "[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256" + 164.3ms (+0.0) [appliance] "[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'" + 165.4ms (+1.1) [appliance] "[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'" + 165.4ms (+0.0) [appliance] "[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'" + 165.4ms (+0.0) [appliance] "[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format." + 166.5ms (+1.1) [appliance] "[ 0.000000] x86/fpu: Using 'eager' FPU context switches." + 166.5ms (+0.0) [appliance] "[ 0.000000] e820: BIOS-provided physical RAM map:" + 167.6ms (+1.1) [appliance] "[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable" + 167.6ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved" + 168.7ms (+1.1) [appliance] "[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved" + 168.7ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001f3defff] usable" + 168.7ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x000000001f3df000-0x000000001f3fffff] reserved" + 169.8ms (+1.1) [appliance] "[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved" + 169.8ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved" + 170.9ms (+1.1) [appliance] "[ 0.000000] debug: ignoring loglevel setting." + 170.9ms (+0.0) [appliance] "[ 0.000000] NX (Execute Disable) protection: active" + 170.9ms (+0.0) [appliance] "[ 0.000000] Hypervisor detected: KVM" + 172.1ms (+1.1) [appliance] "[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved" + 172.1ms (+0.0) [appliance] "[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable" + 172.1ms (+0.0) [appliance] "[ 0.000000] e820: last_pfn = 0x1f3df max_arch_pfn = 0x400000000" + 173.2ms (+1.1) [appliance] "[ 0.000000] found SMP MP-table at [mem 0x000f3830-0x000f383f] mapped at [ffff8800000f3830]" + 173.2ms (+0.0) [appliance] "[ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576" + 174.3ms (+1.1) [appliance] "[ 0.000000] Using GB pages for direct mapping" + 174.3ms (+0.0) [appliance] "[ 0.000000] BRK [0x01750000, 0x01750fff] PGTABLE" + 174.3ms (+0.0) [appliance] "[ 0.000000] BRK [0x01751000, 0x01751fff] PGTABLE" + 175.4ms (+1.1) [appliance] "[ 0.000000] BRK [0x01752000, 0x01752fff] PGTABLE" + 175.4ms (+0.0) [appliance] "[ 0.000000] BRK [0x01753000, 0x01753fff] PGTABLE" + 175.4ms (+0.0) [appliance] "[ 0.000000] RAMDISK: [mem 0x1f3a7000-0x1f3cffff]" + 176.5ms (+1.1) [appliance] "[ 0.000000] ACPI: Early table checksum verification disabled" + 176.5ms (+0.0) [appliance] "[ 0.000000] ACPI: RSDP 0x00000000000F3640 000014 (v00 BOCHS )" + 176.5ms (+0.0) [appliance] "[ 0.000000] ACPI: RSDT 0x000000001F3E21EA 000034 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001)" + 177.6ms (+1.1) [appliance] "[ 0.000000] ACPI: FACP 0x000000001F3E1EED 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001)" + 178.7ms (+1.1) [appliance] "[ 0.000000] ACPI: DSDT 0x000000001F3DF040 002EAD (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001)" + 178.7ms (+0.0) [appliance] "[ 0.000000] ACPI: FACS 0x000000001F3DF000 000040" + 178.7ms (+0.0) [appliance] "[ 0.000000] ACPI: APIC 0x000000001F3E1F61 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001)" + 179.8ms (+1.1) [appliance] "[ 0.000000] ACPI: NFIT 0x000000001F3E1FD9 0000E0 (v01 BOCHS BXPCNFIT 00000001 BXPC 00000001)" + 179.8ms (+0.0) [appliance] "[ 0.000000] ACPI: SSDT 0x000000001F3E20B9 000131 (v01 BOCHS NVDIMM 00000001 BXPC 00000001)" + 180.9ms (+1.1) [appliance] "[ 0.000000] ACPI: Local APIC address 0xfee00000" + 180.9ms (+0.0) [appliance] "[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00" + 182.0ms (+1.1) [appliance] "[ 0.000000] kvm-clock: cpu 0, msr 0:1f3de001, primary cpu clock" + 182.0ms (+0.0) [appliance] "[ 0.000000] kvm-clock: using sched offset of 54280403 cycles" + 182.0ms (+0.0) [appliance] "[ 0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns" + 183.1ms (+1.1) [appliance] "[ 0.000000] Zone ranges:" + 183.1ms (+0.0) [appliance] "[ 0.000000] DMA32 [mem 0x0000000000001000-0x000000001f3defff]" + 184.3ms (+1.1) [appliance] "[ 0.000000] Normal empty" + 184.3ms (+0.0) [appliance] "[ 0.000000] Device empty" + 184.3ms (+0.0) [appliance] "[ 0.000000] Movable zone start for each node" + 184.3ms (+0.0) [appliance] "[ 0.000000] Early memory node ranges" + 185.4ms (+1.1) [appliance] "[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]" + 185.4ms (+0.0) [appliance] "[ 0.000000] node 0: [mem 0x0000000000100000-0x000000001f3defff]" + 185.4ms (+0.0) [appliance] "[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000001f3defff]" + 186.5ms (+1.1) [appliance] "[ 0.000000] On node 0 totalpages: 127869" + 186.5ms (+0.0) [appliance] "[ 0.000000] DMA32 zone: 2000 pages used for memmap" + 186.5ms (+0.0) [appliance] "[ 0.000000] DMA32 zone: 21 pages reserved" + 187.6ms (+1.1) [appliance] "[ 0.000000] DMA32 zone: 127869 pages, LIFO batch:31" + 187.6ms (+0.0) [appliance] "[ 0.000000] ACPI: PM-Timer IO Port: 0x608" + 187.6ms (+0.0) [appliance] "[ 0.000000] ACPI: Local APIC address 0xfee00000" + 188.7ms (+1.1) [appliance] "[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])" + 188.7ms (+0.0) [appliance] "[ 0.000000] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23" + 188.7ms (+0.0) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)" + 189.8ms (+1.1) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)" + 189.8ms (+0.0) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)" + 190.9ms (+1.1) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)" + 190.9ms (+0.0) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)" + 192.0ms (+1.1) [appliance] "[ 0.000000] ACPI: IRQ0 used by override." + 192.0ms (+0.0) [appliance] "[ 0.000000] ACPI: IRQ5 used by override." + 192.0ms (+0.0) [appliance] "[ 0.000000] ACPI: IRQ9 used by override." + 192.0ms (+0.0) [appliance] "[ 0.000000] ACPI: IRQ10 used by override." + 193.1ms (+1.1) [appliance] "[ 0.000000] ACPI: IRQ11 used by override." + 193.1ms (+0.0) [appliance] "[ 0.000000] Using ACPI (MADT) for SMP configuration information" + 193.1ms (+0.0) [appliance] "[ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs" + 194.2ms (+1.1) [appliance] "[ 0.000000] e820: [mem 0x1f400000-0xfeffbfff] available for PCI devices" + 194.2ms (+0.0) [appliance] "[ 0.000000] Booting paravirtualized kernel on KVM" + 194.2ms (+0.0) [appliance] "[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns" + 195.3ms (+1.1) [appliance] "[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:1 nr_node_ids:1" + 196.4ms (+1.1) [appliance] "[ 0.000000] percpu: Embedded 29 pages/cpu @ffff88001f000000 s80384 r8192 d30208 u2097152" + 196.4ms (+0.0) [appliance] "[ 0.000000] pcpu-alloc: s80384 r8192 d30208 u2097152 alloc=1*2097152" + 196.4ms (+0.0) [appliance] "[ 0.000000] pcpu-alloc: [0] 0 " + 197.5ms (+1.1) [appliance] "[ 0.000000] KVM setup async PF for cpu 0" + 197.5ms (+0.0) [appliance] "[ 0.000000] kvm-stealtime: cpu 0, msr 1f00c440" + 197.5ms (+0.0) [appliance] "[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 125848" + 198.6ms (+1.1) [appliance] "[ 0.000000] Kernel command line: panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug " + 200.8ms (+2.2) [appliance] "[ 0.000000] PID hash table entries: 2048 (order: 2, 16384 bytes)" + 200.8ms (+0.0) [appliance] "[ 0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)" + 200.8ms (+0.0) [appliance] "[ 0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)" + 202.0ms (+1.1) [appliance] "[ 0.000000] Memory: 494496K/511476K available (2851K kernel code, 290K rwdata, 1180K rodata, 628K init, 404K bss, 16980K reserved, 0K cma-reserved)" + 203.1ms (+1.1) [appliance] "[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1" + 203.1ms (+0.0) [appliance] "[ 0.000000] Hierarchical RCU implementation." + 203.1ms (+0.0) [appliance] "[ 0.000000] \x09Build-time adjustment of leaf fanout to 64." + 204.2ms (+1.1) [appliance] "[ 0.000000] \x09RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=1." + 204.2ms (+0.0) [appliance] "[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=1" + 205.3ms (+1.1) [appliance] "[ 0.000000] NR_IRQS:4352 nr_irqs:256 16" + 205.3ms (+0.0) [appliance] "[ 0.000000] Console: colour *CGA 80x25" + 205.3ms (+0.0) [appliance] "[ 0.000000] console [ttyS0] enabled" + 205.3ms (+0.0) [appliance] "[ 0.000000] tsc: Detected 2593.990 MHz processor" + 206.4ms (+1.1) [appliance] "[ 0.052291] Calibrating delay loop (skipped) preset value.. 5187.98 BogoMIPS (lpj=10375960)" + 206.4ms (+0.0) [appliance] "[ 0.052904] pid_max: default: 4096 minimum: 301" + 207.5ms (+1.1) [appliance] "[ 0.053237] ACPI: Core revision 20160422" + 207.5ms (+0.0) [appliance] "[ 0.053542] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)" + 207.5ms (+0.0) [appliance] "[ 0.054025] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes)" + 208.6ms (+1.1) [appliance] "[ 0.054645] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0" + 208.6ms (+0.0) [appliance] "[ 0.055037] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0" + 213.6ms (+5.0) [appliance] "[ 0.059378] Freeing SMP alternatives memory: 16K (ffffffff816e7000 - ffffffff816eb000)" + 215.4ms (+1.8) [appliance] "[ 0.061143] smpboot: Max logical packages: 1" + 215.4ms (+0.0) [appliance] "[ 0.061464] smpboot: APIC(0) Converting physical 0 to logical package 0" + 216.9ms (+1.5) [appliance] "[ 0.062611] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1" + 216.9ms (+0.0) [appliance] "[ 0.063059] TSC deadline timer enabled" + 216.9ms (+0.0) [appliance] "[ 0.063328] smpboot: CPU0: Intel(R) Core(TM) i7-5600U CPU @ 2.60GHz (family: 0x6, model: 0x3d, stepping: 0x4)" + 218.0ms (+1.1) [appliance] "[ 0.064060] calling init_hw_perf_events+0x0/0x4fa @ 1" + 218.0ms (+0.0) [appliance] "[ 0.064421] Performance Events: 16-deep LBR, Broadwell events, Intel PMU driver." + 219.1ms (+1.1) [appliance] "[ 0.065011] ... version: 2" + 219.1ms (+0.0) [appliance] "[ 0.065297] ... bit width: 48" + 219.1ms (+0.0) [appliance] "[ 0.065587] ... generic registers: 4" + 219.1ms (+0.0) [appliance] "[ 0.065873] ... value mask: 0000ffffffffffff" + 220.2ms (+1.1) [appliance] "[ 0.066252] ... max period: 000000007fffffff" + 220.2ms (+0.0) [appliance] "[ 0.066627] ... fixed-purpose events: 3" + 220.2ms (+0.0) [appliance] "[ 0.066916] ... event mask: 000000070000000f" + 221.3ms (+1.1) [appliance] "[ 0.067298] initcall init_hw_perf_events+0x0/0x4fa returned 0 after 0 usecs" + 221.3ms (+0.0) [appliance] "[ 0.067799] calling set_real_mode_permissions+0x0/0x91 @ 1" + 222.5ms (+1.1) [appliance] "[ 0.068229] initcall set_real_mode_permissions+0x0/0x91 returned 0 after 0 usecs" + 222.5ms (+0.0) [appliance] "[ 0.068730] calling validate_x2apic+0x0/0x2f @ 1" + 222.5ms (+0.0) [appliance] "[ 0.069054] initcall validate_x2apic+0x0/0x2f returned 0 after 0 usecs" + 223.6ms (+1.1) [appliance] "[ 0.069522] calling register_trigger_all_cpu_backtrace+0x0/0x11 @ 1" + 223.6ms (+0.0) [appliance] "[ 0.069958] initcall register_trigger_all_cpu_backtrace+0x0/0x11 returned 0 after 0 usecs" + 224.7ms (+1.1) [appliance] "[ 0.070534] calling spawn_ksoftirqd+0x0/0x28 @ 1" + 224.7ms (+0.0) [appliance] "[ 0.070866] initcall spawn_ksoftirqd+0x0/0x28 returned 0 after 0 usecs" + 224.7ms (+0.0) [appliance] "[ 0.071339] calling init_workqueues+0x0/0x374 @ 1" + 225.9ms (+1.1) [appliance] "[ 0.071715] initcall init_workqueues+0x0/0x374 returned 0 after 0 usecs" + 225.9ms (+0.0) [appliance] "[ 0.072176] calling migration_init+0x0/0x3e @ 1" + 225.9ms (+0.0) [appliance] "[ 0.072493] initcall migration_init+0x0/0x3e returned 0 after 0 usecs" + 227.0ms (+1.1) [appliance] "[ 0.072957] calling check_cpu_stall_init+0x0/0x16 @ 1" + 227.0ms (+0.0) [appliance] "[ 0.073309] initcall check_cpu_stall_init+0x0/0x16 returned 0 after 0 usecs" + 227.0ms (+0.0) [appliance] "[ 0.073796] calling rcu_spawn_gp_kthread+0x0/0xf8 @ 1" + 228.1ms (+1.1) [appliance] "[ 0.074170] initcall rcu_spawn_gp_kthread+0x0/0xf8 returned 0 after 0 usecs" + 228.1ms (+0.0) [appliance] "[ 0.074645] calling cpu_stop_init+0x0/0x97 @ 1" + 229.3ms (+1.2) [appliance] "[ 0.074978] initcall cpu_stop_init+0x0/0x97 returned 0 after 0 usecs" + 229.3ms (+0.0) [appliance] "[ 0.075442] calling rand_initialize+0x0/0x30 @ 1" + 229.3ms (+0.0) [appliance] "[ 0.075778] initcall rand_initialize+0x0/0x30 returned 0 after 0 usecs" + 230.4ms (+1.1) [appliance] "[ 0.076257] x86: Booted up 1 node, 1 CPUs" + 230.4ms (+0.0) [appliance] "[ 0.076535] smpboot: Total of 1 processors activated (5187.98 BogoMIPS)" + 230.4ms (+0.0) [appliance] "[ 0.077122] devtmpfs: initialized" + 231.5ms (+1.1) [appliance] "[ 0.077399] x86/mm: Memory block size: 128MB" + 233.0ms (+1.5) [appliance] "[ 0.078709] calling init_mmap_min_addr+0x0/0x11 @ 1" + 233.0ms (+0.0) [appliance] "[ 0.079072] initcall init_mmap_min_addr+0x0/0x11 returned 0 after 0 usecs" + 233.0ms (+0.0) [appliance] "[ 0.079535] calling net_ns_init+0x0/0x1ad @ 1" + 233.0ms (+0.0) [appliance] "[ 0.079854] initcall net_ns_init+0x0/0x1ad returned 0 after 0 usecs" + 234.2ms (+1.1) [appliance] "[ 0.080322] calling e820_mark_nvs_memory+0x0/0x36 @ 1" + 234.2ms (+0.0) [appliance] "[ 0.080675] initcall e820_mark_nvs_memory+0x0/0x36 returned 0 after 0 usecs" + 235.3ms (+1.1) [appliance] "[ 0.081174] calling init_cpu_syscore+0x0/0xf @ 1" + 235.3ms (+0.0) [appliance] "[ 0.081497] initcall init_cpu_syscore+0x0/0xf returned 0 after 0 usecs" + 235.3ms (+0.0) [appliance] "[ 0.081945] calling reboot_init+0x0/0x3 @ 1" + 236.4ms (+1.1) [appliance] "[ 0.082264] initcall reboot_init+0x0/0x3 returned 0 after 0 usecs" + 236.4ms (+0.0) [appliance] "[ 0.082679] calling wq_sysfs_init+0x0/0x26 @ 1" + 236.4ms (+0.0) [appliance] "[ 0.082997] initcall wq_sysfs_init+0x0/0x26 returned 0 after 0 usecs" + 237.6ms (+1.1) [appliance] "[ 0.083451] calling ksysfs_init+0x0/0x8e @ 1" + 237.6ms (+0.0) [appliance] "[ 0.083753] initcall ksysfs_init+0x0/0x8e returned 0 after 0 usecs" + 237.6ms (+0.0) [appliance] "[ 0.084178] calling init_jiffies_clocksource+0x0/0x13 @ 1" + 238.7ms (+1.1) [appliance] "[ 0.084579] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns" + 238.7ms (+0.0) [appliance] "[ 0.085242] initcall init_jiffies_clocksource+0x0/0x13 returned 0 after 0 usecs" + 239.8ms (+1.1) [appliance] "[ 0.085764] calling init_per_zone_wmark_min+0x0/0x9a @ 1" + 239.8ms (+0.0) [appliance] "[ 0.086136] initcall init_per_zone_wmark_min+0x0/0x9a returned 0 after 0 usecs" + 239.8ms (+0.0) [appliance] "[ 0.086642] calling init_zero_pfn+0x0/0x2f @ 1" + 241.0ms (+1.1) [appliance] "[ 0.086968] initcall init_zero_pfn+0x0/0x2f returned 0 after 0 usecs" + 241.0ms (+0.0) [appliance] "[ 0.087400] calling fsnotify_init+0x0/0x1f @ 1" + 241.0ms (+0.0) [appliance] "[ 0.087711] initcall fsnotify_init+0x0/0x1f returned 0 after 0 usecs" + 242.1ms (+1.1) [appliance] "[ 0.088168] calling filelock_init+0x0/0x9a @ 1" + 242.1ms (+0.0) [appliance] "[ 0.088480] initcall filelock_init+0x0/0x9a returned 0 after 0 usecs" + 242.1ms (+0.0) [appliance] "[ 0.088932] calling init_script_binfmt+0x0/0x11 @ 1" + 243.2ms (+1.1) [appliance] "[ 0.089282] initcall init_script_binfmt+0x0/0x11 returned 0 after 0 usecs" + 243.2ms (+0.0) [appliance] "[ 0.089743] calling init_elf_binfmt+0x0/0x11 @ 1" + 244.4ms (+1.2) [appliance] "[ 0.090083] initcall init_elf_binfmt+0x0/0x11 returned 0 after 0 usecs" + 244.4ms (+0.0) [appliance] "[ 0.090555] calling prandom_init+0x0/0xaa @ 1" + 244.4ms (+0.0) [appliance] "[ 0.090860] initcall prandom_init+0x0/0xaa returned 0 after 0 usecs" + 245.5ms (+1.1) [appliance] "[ 0.091312] calling cpuidle_init+0x0/0x36 @ 1" + 245.6ms (+0.0) [appliance] "[ 0.091619] initcall cpuidle_init+0x0/0x36 returned 0 after 0 usecs" + 245.6ms (+0.0) [appliance] "[ 0.092049] calling sock_init+0x0/0x78 @ 1" + 245.6ms (+0.0) [appliance] "[ 0.092354] initcall sock_init+0x0/0x78 returned 0 after 0 usecs" + 246.7ms (+1.1) [appliance] "[ 0.092775] calling netlink_proto_init+0x0/0x158 @ 1" + 246.7ms (+0.0) [appliance] "[ 0.093152] NET: Registered protocol family 16" + 246.7ms (+0.0) [appliance] "[ 0.093473] initcall netlink_proto_init+0x0/0x158 returned 0 after 0 usecs" + 247.8ms (+1.1) [appliance] "[ 0.093977] calling bdi_class_init+0x0/0x2f @ 1" + 247.8ms (+0.0) [appliance] "[ 0.094297] initcall bdi_class_init+0x0/0x2f returned 0 after 0 usecs" + 248.9ms (+1.1) [appliance] "[ 0.094762] calling mm_sysfs_init+0x0/0x24 @ 1" + 248.9ms (+0.0) [appliance] "[ 0.095087] initcall mm_sysfs_init+0x0/0x24 returned 0 after 0 usecs" + 248.9ms (+0.0) [appliance] "[ 0.095517] calling kobject_uevent_init+0x0/0xc @ 1" + 250.1ms (+1.1) [appliance] "[ 0.095880] initcall kobject_uevent_init+0x0/0xc returned 0 after 0 usecs" + 250.1ms (+0.0) [appliance] "[ 0.096345] calling pcibus_class_init+0x0/0x13 @ 1" + 250.1ms (+0.0) [appliance] "[ 0.096683] initcall pcibus_class_init+0x0/0x13 returned 0 after 0 usecs" + 251.2ms (+1.1) [appliance] "[ 0.097170] calling pci_driver_init+0x0/0xc @ 1" + 251.2ms (+0.0) [appliance] "[ 0.097491] initcall pci_driver_init+0x0/0xc returned 0 after 0 usecs" + 251.2ms (+0.0) [appliance] "[ 0.097929] calling tty_class_init+0x0/0x2f @ 1" + 252.4ms (+1.1) [appliance] "[ 0.098270] initcall tty_class_init+0x0/0x2f returned 0 after 0 usecs" + 252.4ms (+0.0) [appliance] "[ 0.098707] calling vtconsole_class_init+0x0/0xd3 @ 1" + 252.4ms (+0.0) [appliance] "[ 0.099067] initcall vtconsole_class_init+0x0/0xd3 returned 0 after 0 usecs" + 253.5ms (+1.1) [appliance] "[ 0.099562] calling init_ladder+0x0/0x16 @ 1" + 253.5ms (+0.0) [appliance] "[ 0.099860] cpuidle: using governor ladder" + 253.5ms (+0.0) [appliance] "[ 0.100142] initcall init_ladder+0x0/0x16 returned 0 after 0 usecs" + 254.6ms (+1.1) [appliance] "[ 0.100608] calling bts_init+0x0/0xa4 @ 1" + 254.6ms (+0.0) [appliance] "[ 0.100892] initcall bts_init+0x0/0xa4 returned -19 after 0 usecs" + 254.6ms (+0.0) [appliance] "[ 0.101311] calling pt_init+0x0/0x30a @ 1" + 255.8ms (+1.1) [appliance] "[ 0.101618] initcall pt_init+0x0/0x30a returned -19 after 0 usecs" + 255.8ms (+0.0) [appliance] "[ 0.102032] calling boot_params_ksysfs_init+0x0/0x22f @ 1" + 255.8ms (+0.0) [appliance] "[ 0.102406] initcall boot_params_ksysfs_init+0x0/0x22f returned 0 after 0 usecs" + 256.9ms (+1.1) [appliance] "[ 0.102923] calling sbf_init+0x0/0xfc @ 1" + 256.9ms (+0.0) [appliance] "[ 0.103203] initcall sbf_init+0x0/0xfc returned 0 after 0 usecs" + 256.9ms (+0.0) [appliance] "[ 0.103604] calling arch_kdebugfs_init+0x0/0xe @ 1" + 258.0ms (+1.1) [appliance] "[ 0.103961] initcall arch_kdebugfs_init+0x0/0xe returned 0 after 0 usecs" + 258.0ms (+0.0) [appliance] "[ 0.104415] calling ffh_cstate_init+0x0/0x25 @ 1" + 258.0ms (+0.0) [appliance] "[ 0.104739] initcall ffh_cstate_init+0x0/0x25 returned 0 after 0 usecs" + 259.2ms (+1.1) [appliance] "[ 0.105209] calling activate_jump_labels+0x0/0x73 @ 1" + 259.2ms (+0.0) [appliance] "[ 0.105564] initcall activate_jump_labels+0x0/0x73 returned 0 after 0 usecs" + 260.3ms (+1.1) [appliance] "[ 0.106062] calling acpi_pci_init+0x0/0x49 @ 1" + 260.3ms (+0.0) [appliance] "[ 0.106371] ACPI: bus type PCI registered" + 260.3ms (+0.0) [appliance] "[ 0.106647] initcall acpi_pci_init+0x0/0x49 returned 0 after 0 usecs" + 260.3ms (+0.0) [appliance] "[ 0.107094] calling pci_arch_init+0x0/0x53 @ 1" + 261.4ms (+1.1) [appliance] "[ 0.107435] PCI: Using configuration type 1 for base access" + 261.4ms (+0.0) [appliance] "[ 0.107812] initcall pci_arch_init+0x0/0x53 returned 0 after 0 usecs" + 262.6ms (+1.2) [appliance] "[ 0.108288] calling init_vdso+0x0/0x2c @ 1" + 262.6ms (+0.0) [appliance] "[ 0.108599] initcall init_vdso+0x0/0x2c returned 0 after 0 usecs" + 262.6ms (+0.0) [appliance] "[ 0.109009] calling fixup_ht_bug+0x0/0xb3 @ 1" + 262.6ms (+0.0) [appliance] "[ 0.109314] initcall fixup_ht_bug+0x0/0xb3 returned 0 after 0 usecs" + 263.7ms (+1.1) [appliance] "[ 0.109772] calling topology_init+0x0/0x49 @ 1" + 263.7ms (+0.0) [appliance] "[ 0.110108] initcall topology_init+0x0/0x49 returned 0 after 0 usecs" + 264.9ms (+1.1) [appliance] "[ 0.110557] calling uid_cache_init+0x0/0xc7 @ 1" + 264.9ms (+0.0) [appliance] "[ 0.110886] initcall uid_cache_init+0x0/0xc7 returned 0 after 0 usecs" + 264.9ms (+0.0) [appliance] "[ 0.111323] calling param_sysfs_init+0x0/0x1ae @ 1" + 266.2ms (+1.3) [appliance] "[ 0.111855] initcall param_sysfs_init+0x0/0x1ae returned 0 after 0 usecs" + 266.2ms (+0.0) [appliance] "[ 0.112337] calling oom_init+0x0/0x5a @ 1" + 266.2ms (+0.0) [appliance] "[ 0.112628] initcall oom_init+0x0/0x5a returned 0 after 0 usecs" + 267.3ms (+1.1) [appliance] "[ 0.113096] calling default_bdi_init+0x0/0x36 @ 1" + 267.3ms (+0.0) [appliance] "[ 0.113453] initcall default_bdi_init+0x0/0x36 returned 0 after 0 usecs" + 267.3ms (+0.0) [appliance] "[ 0.113932] calling percpu_enable_async+0x0/0xa @ 1" + 268.4ms (+1.1) [appliance] "[ 0.114286] initcall percpu_enable_async+0x0/0xa returned 0 after 0 usecs" + 268.4ms (+0.0) [appliance] "[ 0.114764] calling init_reserve_notifier+0x0/0x1f @ 1" + 268.4ms (+0.0) [appliance] "[ 0.115135] initcall init_reserve_notifier+0x0/0x1f returned 0 after 0 usecs" + 269.5ms (+1.1) [appliance] "[ 0.115633] calling init_admin_reserve+0x0/0x40 @ 1" + 269.5ms (+0.0) [appliance] "[ 0.115989] initcall init_admin_reserve+0x0/0x40 returned 0 after 0 usecs" + 270.6ms (+1.1) [appliance] "[ 0.116467] calling init_user_reserve+0x0/0x40 @ 1" + 270.6ms (+0.0) [appliance] "[ 0.116812] initcall init_user_reserve+0x0/0x40 returned 0 after 0 usecs" + 270.6ms (+0.0) [appliance] "[ 0.117284] calling crypto_wq_init+0x0/0x2c @ 1" + 271.7ms (+1.1) [appliance] "[ 0.117622] initcall crypto_wq_init+0x0/0x2c returned 0 after 0 usecs" + 271.7ms (+0.0) [appliance] "[ 0.118093] calling cryptomgr_init+0x0/0xc @ 1" + 271.7ms (+0.0) [appliance] "[ 0.118416] initcall cryptomgr_init+0x0/0xc returned 0 after 0 usecs" + 272.8ms (+1.1) [appliance] "[ 0.118864] calling init_bio+0x0/0xa9 @ 1" + 272.8ms (+0.0) [appliance] "[ 0.119166] initcall init_bio+0x0/0xa9 returned 0 after 0 usecs" + 272.8ms (+0.0) [appliance] "[ 0.119586] calling blk_settings_init+0x0/0x25 @ 1" + 273.9ms (+1.1) [appliance] "[ 0.119939] initcall blk_settings_init+0x0/0x25 returned 0 after 0 usecs" + 273.9ms (+0.0) [appliance] "[ 0.120408] calling blk_ioc_init+0x0/0x25 @ 1" + 273.9ms (+0.0) [appliance] "[ 0.120724] initcall blk_ioc_init+0x0/0x25 returned 0 after 0 usecs" + 275.0ms (+1.1) [appliance] "[ 0.121172] calling blk_softirq_init+0x0/0x59 @ 1" + 275.0ms (+0.0) [appliance] "[ 0.121509] initcall blk_softirq_init+0x0/0x59 returned 0 after 0 usecs" + 276.1ms (+1.1) [appliance] "[ 0.121977] calling blk_mq_init+0x0/0x8 @ 1" + 276.1ms (+0.0) [appliance] "[ 0.122285] initcall blk_mq_init+0x0/0x8 returned 0 after 0 usecs" + 276.1ms (+0.0) [appliance] "[ 0.122716] calling genhd_device_init+0x0/0x71 @ 1" + 277.2ms (+1.1) [appliance] "[ 0.123077] initcall genhd_device_init+0x0/0x71 returned 0 after 0 usecs" + 277.2ms (+0.0) [appliance] "[ 0.123552] calling pci_slot_init+0x0/0x40 @ 1" + 277.2ms (+0.0) [appliance] "[ 0.123875] initcall pci_slot_init+0x0/0x40 returned 0 after 0 usecs" + 278.3ms (+1.1) [appliance] "[ 0.124329] calling acpi_init+0x0/0x28d @ 1" + 278.3ms (+0.0) [appliance] "[ 0.124636] ACPI: Added _OSI(Module Device)" + 278.3ms (+0.0) [appliance] "[ 0.124937] ACPI: Added _OSI(Processor Device)" + 279.4ms (+1.1) [appliance] "[ 0.125254] ACPI: Added _OSI(3.0 _SCP Extensions)" + 279.4ms (+0.0) [appliance] "[ 0.125584] ACPI: Added _OSI(Processor Aggregator Device)" + 281.2ms (+1.8) [appliance] "[ 0.126966] ACPI: 2 ACPI AML tables successfully acquired and loaded" + 281.2ms (+0.0) [appliance] "[ 0.127429] " + 282.5ms (+1.3) [appliance] "[ 0.128234] ACPI: Interpreter enabled" + 282.5ms (+0.0) [appliance] "[ 0.128504] ACPI: (supports S0 S5)" + 282.5ms (+0.0) [appliance] "[ 0.128747] ACPI: Using IOAPIC for interrupt routing" + 282.5ms (+0.0) [appliance] "[ 0.129106] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug" + 286.7ms (+4.2) [appliance] "[ 0.132431] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])" + 286.7ms (+0.0) [appliance] "[ 0.132871] acpi PNP0A03:00: _OSC: OS supports [Segments]" + 286.7ms (+0.0) [appliance] "[ 0.133256] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM" + 287.8ms (+1.1) [appliance] "[ 0.133735] PCI host bridge to bus 0000:00" + 287.8ms (+0.0) [appliance] "[ 0.134031] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]" + 287.8ms (+0.0) [appliance] "[ 0.134510] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]" + 288.9ms (+1.1) [appliance] "[ 0.134991] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]" + 288.9ms (+0.0) [appliance] "[ 0.135511] pci_bus 0000:00: root bus resource [mem 0x1f400000-0xfebfffff window]" + 290.0ms (+1.1) [appliance] "[ 0.136037] pci_bus 0000:00: root bus resource [bus 00-ff]" + 290.0ms (+0.0) [appliance] "[ 0.136448] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000" + 291.1ms (+1.1) [appliance] "[ 0.137117] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100" + 291.1ms (+0.0) [appliance] "[ 0.137871] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180" + 304.6ms (+13.5) [appliance] "[ 0.150299] pci 0000:00:01.1: reg 0x20: [io 0xc080-0xc08f]" + 308.6ms (+4.0) [appliance] "[ 0.154329] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]" + 308.6ms (+0.0) [appliance] "[ 0.154849] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]" + 308.6ms (+0.0) [appliance] "[ 0.155317] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]" + 309.7ms (+1.1) [appliance] "[ 0.155822] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]" + 309.7ms (+0.0) [appliance] "[ 0.156405] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000" + 310.8ms (+1.1) [appliance] "[ 0.157119] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI" + 310.8ms (+0.0) [appliance] "[ 0.157634] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB" + 311.9ms (+1.1) [appliance] "[ 0.158278] pci 0000:00:02.0: [1af4:1005] type 00 class 0x00ff00" + 315.5ms (+3.5) [appliance] "[ 0.161201] pci 0000:00:02.0: reg 0x10: [io 0xc040-0xc05f]" + 324.2ms (+8.7) [appliance] "[ 0.169874] pci 0000:00:03.0: [1af4:1004] type 00 class 0x010000" + 326.6ms (+2.5) [appliance] "[ 0.172369] pci 0000:00:03.0: reg 0x10: [io 0xc000-0xc03f]" + 329.1ms (+2.5) [appliance] "[ 0.174841] pci 0000:00:03.0: reg 0x14: [mem 0xfebfe000-0xfebfefff]" + 347.0ms (+17.9) [appliance] "[ 0.192741] pci 0000:00:04.0: [1af4:1003] type 00 class 0x078000" + 349.4ms (+2.4) [appliance] "[ 0.195154] pci 0000:00:04.0: reg 0x10: [io 0xc060-0xc07f]" + 353.8ms (+4.4) [appliance] "[ 0.199527] pci 0000:00:04.0: reg 0x14: [mem 0xfebff000-0xfebfffff]" + 367.9ms (+14.1) [appliance] "[ 0.213591] pci_bus 0000:00: on NUMA node 0" + 367.9ms (+0.0) [appliance] "[ 0.214078] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)" + 367.9ms (+0.0) [appliance] "[ 0.214584] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)" + 369.0ms (+1.1) [appliance] "[ 0.215086] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)" + 370.3ms (+1.4) [appliance] "[ 0.216582] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)" + 370.3ms (+0.0) [appliance] "[ 0.217086] ACPI: PCI Interrupt Link [LNKS] (IRQs *9)" + 371.4ms (+1.1) [appliance] "[ 0.218236] ACPI: Enabled 16 GPEs in block 00 to 0F" + 372.5ms (+1.1) [appliance] "[ 0.218622] initcall acpi_init+0x0/0x28d returned 0 after 82031 usecs" + 372.5ms (+0.0) [appliance] "[ 0.219091] calling pnp_init+0x0/0xc @ 1" + 373.7ms (+1.1) [appliance] "[ 0.219388] initcall pnp_init+0x0/0xc returned 0 after 0 usecs" + 373.7ms (+0.0) [appliance] "[ 0.219809] calling misc_init+0x0/0xb5 @ 1" + 373.7ms (+0.0) [appliance] "[ 0.220121] initcall misc_init+0x0/0xb5 returned 0 after 0 usecs" + 374.8ms (+1.1) [appliance] "[ 0.220555] calling vga_arb_device_init+0x0/0x19e @ 1" + 374.8ms (+0.0) [appliance] "[ 0.220955] vgaarb: loaded" + 374.8ms (+0.0) [appliance] "[ 0.221155] initcall vga_arb_device_init+0x0/0x19e returned 0 after 3906 usecs" + 375.9ms (+1.1) [appliance] "[ 0.221673] calling libnvdimm_init+0x0/0x30 @ 1" + 375.9ms (+0.0) [appliance] "[ 0.222018] initcall libnvdimm_init+0x0/0x30 returned 0 after 0 usecs" + 375.9ms (+0.0) [appliance] "[ 0.222477] calling init_scsi+0x0/0x7e @ 1" + 377.0ms (+1.1) [appliance] "[ 0.222808] SCSI subsystem initialized" + 377.0ms (+0.0) [appliance] "[ 0.223090] initcall init_scsi+0x0/0x7e returned 0 after 0 usecs" + 377.0ms (+0.0) [appliance] "[ 0.223516] calling serio_init+0x0/0x25 @ 1" + 377.0ms (+0.0) [appliance] "[ 0.223823] initcall serio_init+0x0/0x25 returned 0 after 0 usecs" + 378.1ms (+1.1) [appliance] "[ 0.224260] calling input_init+0x0/0xfc @ 1" + 378.1ms (+0.0) [appliance] "[ 0.224570] initcall input_init+0x0/0xfc returned 0 after 0 usecs" + 379.2ms (+1.1) [appliance] "[ 0.225018] calling power_supply_class_init+0x0/0x3b @ 1" + 379.2ms (+0.0) [appliance] "[ 0.225402] initcall power_supply_class_init+0x0/0x3b returned 0 after 0 usecs" + 379.2ms (+0.0) [appliance] "[ 0.225913] calling pci_subsys_init+0x0/0x43 @ 1" + 380.3ms (+1.1) [appliance] "[ 0.226256] PCI: Using ACPI for IRQ routing" + 380.3ms (+0.0) [appliance] "[ 0.226555] PCI: pci_cache_line_size set to 64 bytes" + 380.3ms (+0.0) [appliance] "[ 0.226986] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]" + 381.4ms (+1.1) [appliance] "[ 0.227414] e820: reserve RAM buffer [mem 0x1f3df000-0x1fffffff]" + 381.4ms (+0.0) [appliance] "[ 0.227841] initcall pci_subsys_init+0x0/0x43 returned 0 after 0 usecs" + 382.5ms (+1.1) [appliance] "[ 0.228307] calling proto_init+0x0/0xc @ 1" + 382.5ms (+0.0) [appliance] "[ 0.228607] initcall proto_init+0x0/0xc returned 0 after 0 usecs" + 382.5ms (+0.0) [appliance] "[ 0.229041] calling net_dev_init+0x0/0x1b0 @ 1" + 383.7ms (+1.1) [appliance] "[ 0.229410] initcall net_dev_init+0x0/0x1b0 returned 0 after 0 usecs" + 383.7ms (+0.0) [appliance] "[ 0.229865] calling neigh_init+0x0/0x7b @ 1" + 383.7ms (+0.0) [appliance] "[ 0.230172] initcall neigh_init+0x0/0x7b returned 0 after 0 usecs" + 384.8ms (+1.1) [appliance] "[ 0.230606] calling genl_init+0x0/0x84 @ 1" + 384.8ms (+0.0) [appliance] "[ 0.230908] initcall genl_init+0x0/0x84 returned 0 after 0 usecs" + 384.8ms (+0.0) [appliance] "[ 0.231354] calling nmi_warning_debugfs+0x0/0x3 @ 1" + 385.9ms (+1.1) [appliance] "[ 0.231708] initcall nmi_warning_debugfs+0x0/0x3 returned 0 after 0 usecs" + 385.9ms (+0.0) [appliance] "[ 0.232187] calling hpet_late_init+0x0/0xbc @ 1" + 385.9ms (+0.0) [appliance] "[ 0.232516] initcall hpet_late_init+0x0/0xbc returned -19 after 0 usecs" + 387.0ms (+1.1) [appliance] "[ 0.232987] calling clocksource_done_booting+0x0/0x3d @ 1" + 387.0ms (+0.0) [appliance] "[ 0.233388] clocksource: Switched to clocksource kvm-clock" + 387.0ms (+0.0) [appliance] "[ 0.233779] initcall clocksource_done_booting+0x0/0x3d returned 0 after 384 usecs" + 388.1ms (+1.1) [appliance] "[ 0.234308] calling init_pipe_fs+0x0/0x42 @ 1" + 388.1ms (+0.0) [appliance] "[ 0.234632] initcall init_pipe_fs+0x0/0x42 returned 0 after 5 usecs" + 389.2ms (+1.1) [appliance] "[ 0.235081] calling inotify_user_setup+0x0/0x46 @ 1" + 389.2ms (+0.0) [appliance] "[ 0.235435] initcall inotify_user_setup+0x0/0x46 returned 0 after 1 usecs" + 389.2ms (+0.0) [appliance] "[ 0.235917] calling eventpoll_init+0x0/0xdd @ 1" + 390.3ms (+1.1) [appliance] "[ 0.236249] initcall eventpoll_init+0x0/0xdd returned 0 after 0 usecs" + 390.3ms (+0.0) [appliance] "[ 0.236707] calling anon_inode_init+0x0/0x56 @ 1" + 390.3ms (+0.0) [appliance] "[ 0.237045] initcall anon_inode_init+0x0/0x56 returned 0 after 2 usecs" + 391.4ms (+1.1) [appliance] "[ 0.237511] calling proc_locks_init+0x0/0x1d @ 1" + 391.4ms (+0.0) [appliance] "[ 0.237846] initcall proc_locks_init+0x0/0x1d returned 0 after 0 usecs" + 392.5ms (+1.1) [appliance] "[ 0.238311] calling proc_cmdline_init+0x0/0x1d @ 1" + 392.5ms (+0.0) [appliance] "[ 0.238657] initcall proc_cmdline_init+0x0/0x1d returned 0 after 0 usecs" + 392.5ms (+0.0) [appliance] "[ 0.239132] calling proc_consoles_init+0x0/0x1d @ 1" + 393.6ms (+1.1) [appliance] "[ 0.239484] initcall proc_consoles_init+0x0/0x1d returned 0 after 0 usecs" + 393.6ms (+0.0) [appliance] "[ 0.239962] calling proc_cpuinfo_init+0x0/0x1d @ 1" + 393.6ms (+0.0) [appliance] "[ 0.240306] initcall proc_cpuinfo_init+0x0/0x1d returned 0 after 0 usecs" + 394.7ms (+1.1) [appliance] "[ 0.240779] calling proc_devices_init+0x0/0x1d @ 1" + 394.7ms (+0.0) [appliance] "[ 0.241126] initcall proc_devices_init+0x0/0x1d returned 0 after 0 usecs" + 395.9ms (+1.1) [appliance] "[ 0.241604] calling proc_interrupts_init+0x0/0x1d @ 1" + 395.9ms (+0.0) [appliance] "[ 0.241970] initcall proc_interrupts_init+0x0/0x1d returned 0 after 0 usecs" + 395.9ms (+0.0) [appliance] "[ 0.242458] calling proc_loadavg_init+0x0/0x1d @ 1" + 397.0ms (+1.1) [appliance] "[ 0.242805] initcall proc_loadavg_init+0x0/0x1d returned 0 after 1 usecs" + 397.0ms (+0.0) [appliance] "[ 0.243285] calling proc_meminfo_init+0x0/0x1d @ 1" + 397.0ms (+0.0) [appliance] "[ 0.243630] initcall proc_meminfo_init+0x0/0x1d returned 0 after 0 usecs" + 398.1ms (+1.1) [appliance] "[ 0.244107] calling proc_stat_init+0x0/0x1d @ 1" + 398.1ms (+0.0) [appliance] "[ 0.244433] initcall proc_stat_init+0x0/0x1d returned 0 after 0 usecs" + 398.1ms (+0.0) [appliance] "[ 0.244886] calling proc_uptime_init+0x0/0x1d @ 1" + 399.2ms (+1.1) [appliance] "[ 0.245224] initcall proc_uptime_init+0x0/0x1d returned 0 after 0 usecs" + 399.2ms (+0.0) [appliance] "[ 0.245694] calling proc_version_init+0x0/0x1d @ 1" + 400.3ms (+1.1) [appliance] "[ 0.246043] initcall proc_version_init+0x0/0x1d returned 0 after 0 usecs" + 400.3ms (+0.0) [appliance] "[ 0.246513] calling proc_softirqs_init+0x0/0x1d @ 1" + 400.3ms (+0.0) [appliance] "[ 0.246862] initcall proc_softirqs_init+0x0/0x1d returned 0 after 0 usecs" + 401.4ms (+1.1) [appliance] "[ 0.247343] calling proc_kmsg_init+0x0/0x20 @ 1" + 401.4ms (+0.0) [appliance] "[ 0.247668] initcall proc_kmsg_init+0x0/0x20 returned 0 after 0 usecs" + 401.4ms (+0.0) [appliance] "[ 0.248123] calling proc_page_init+0x0/0x3d @ 1" + 402.5ms (+1.1) [appliance] "[ 0.248453] initcall proc_page_init+0x0/0x3d returned 0 after 0 usecs" + 402.5ms (+0.0) [appliance] "[ 0.248905] calling init_ramfs_fs+0x0/0x1a @ 1" + 402.5ms (+0.0) [appliance] "[ 0.249226] initcall init_ramfs_fs+0x0/0x1a returned 0 after 0 usecs" + 403.6ms (+1.1) [appliance] "[ 0.249675] calling blk_scsi_ioctl_init+0x0/0x365 @ 1" + 403.6ms (+0.0) [appliance] "[ 0.250040] initcall blk_scsi_ioctl_init+0x0/0x365 returned 0 after 0 usecs" + 404.7ms (+1.1) [appliance] "[ 0.250533] calling acpi_event_init+0x0/0x33 @ 1" + 404.7ms (+0.0) [appliance] "[ 0.250870] initcall acpi_event_init+0x0/0x33 returned 0 after 3 usecs" + 404.7ms (+0.0) [appliance] "[ 0.251331] calling pnp_system_init+0x0/0xc @ 1" + 405.8ms (+1.1) [appliance] "[ 0.251661] initcall pnp_system_init+0x0/0xc returned 0 after 4 usecs" + 405.8ms (+0.0) [appliance] "[ 0.252117] calling pnpacpi_init+0x0/0x69 @ 1" + 405.8ms (+0.0) [appliance] "[ 0.252429] pnp: PnP ACPI init" + 406.9ms (+1.1) [appliance] "[ 0.252674] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)" + 406.9ms (+0.0) [appliance] "[ 0.253154] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)" + 406.9ms (+0.0) [appliance] "[ 0.253632] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)" + 408.1ms (+1.1) [appliance] "[ 0.254101] pnp 00:03: [dma 2]" + 408.1ms (+0.0) [appliance] "[ 0.254325] pnp 00:03: Plug and Play ACPI device, IDs PNP0700 (active)" + 408.1ms (+0.0) [appliance] "[ 0.254820] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)" + 409.1ms (+1.1) [appliance] "[ 0.255853] pnp: PnP ACPI: found 5 devices" + 410.2ms (+1.1) [appliance] "[ 0.256151] initcall pnpacpi_init+0x0/0x69 returned 0 after 3634 usecs" + 410.2ms (+0.0) [appliance] "[ 0.256609] calling chr_dev_init+0x0/0xa4 @ 1" + 411.6ms (+1.3) [appliance] "[ 0.257294] initcall chr_dev_init+0x0/0xa4 returned 0 after 358 usecs" + 411.6ms (+0.0) [appliance] "[ 0.257760] calling thermal_init+0x0/0x6f @ 1" + 411.6ms (+0.0) [appliance] "[ 0.258084] initcall thermal_init+0x0/0x6f returned 0 after 5 usecs" + 412.7ms (+1.1) [appliance] "[ 0.258530] calling init_acpi_pm_clocksource+0x0/0xd2 @ 1" + 417.7ms (+5.1) [appliance] "[ 0.263439] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns" + 417.7ms (+0.0) [appliance] "[ 0.264064] initcall init_acpi_pm_clocksource+0x0/0xd2 returned 0 after 5025 usecs" + 418.8ms (+1.1) [appliance] "[ 0.264598] calling pcibios_assign_resources+0x0/0xbb @ 1" + 418.8ms (+0.0) [appliance] "[ 0.264992] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]" + 418.8ms (+0.0) [appliance] "[ 0.265433] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]" + 419.9ms (+1.1) [appliance] "[ 0.265870] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]" + 419.9ms (+0.0) [appliance] "[ 0.266354] pci_bus 0000:00: resource 7 [mem 0x1f400000-0xfebfffff window]" + 421.0ms (+1.1) [appliance] "[ 0.266841] initcall pcibios_assign_resources+0x0/0xbb returned 0 after 1809 usecs" + 421.0ms (+0.0) [appliance] "[ 0.267376] calling sysctl_core_init+0x0/0x26 @ 1" + 421.0ms (+0.0) [appliance] "[ 0.267724] initcall sysctl_core_init+0x0/0x26 returned 0 after 6 usecs" + 422.1ms (+1.1) [appliance] "[ 0.268196] calling eth_offload_init+0x0/0xf @ 1" + 422.1ms (+0.0) [appliance] "[ 0.268533] initcall eth_offload_init+0x0/0xf returned 0 after 0 usecs" + 423.2ms (+1.1) [appliance] "[ 0.268999] calling af_unix_init+0x0/0x49 @ 1" + 423.2ms (+0.0) [appliance] "[ 0.269315] NET: Registered protocol family 1" + 423.2ms (+0.0) [appliance] "[ 0.269633] initcall af_unix_init+0x0/0x49 returned 0 after 310 usecs" + 424.4ms (+1.1) [appliance] "[ 0.270091] calling pci_apply_final_quirks+0x0/0xfe @ 1" + 424.4ms (+0.0) [appliance] "[ 0.270468] pci 0000:00:00.0: Limiting direct PCI/PCI transfers" + 424.4ms (+0.0) [appliance] "[ 0.270892] pci 0000:00:01.0: PIIX3: Enabling Passive Release" + 425.5ms (+1.1) [appliance] "[ 0.271309] pci 0000:00:01.0: Activating ISA DMA hang workarounds" + 425.5ms (+0.0) [appliance] "[ 0.271770] PCI: CLS 0 bytes, default 64" + 425.5ms (+0.0) [appliance] "[ 0.272054] initcall pci_apply_final_quirks+0x0/0xfe returned 0 after 1549 usecs" + 426.6ms (+1.1) [appliance] "[ 0.272575] calling acpi_reserve_resources+0x0/0xe6 @ 1" + 426.6ms (+0.0) [appliance] "[ 0.272960] initcall acpi_reserve_resources+0x0/0xe6 returned 0 after 2 usecs" + 427.7ms (+1.1) [appliance] "[ 0.273472] calling populate_rootfs+0x0/0xa1 @ 1" + 427.7ms (+0.0) [appliance] "[ 0.273830] Unpacking initramfs..." + 427.7ms (+0.0) [appliance] "[ 0.274168] Freeing initrd memory: 164K (ffff88001f3a7000 - ffff88001f3d0000)" + 428.8ms (+1.1) [appliance] "[ 0.274678] initcall populate_rootfs+0x0/0xa1 returned 0 after 848 usecs" + 428.8ms (+0.0) [appliance] "[ 0.275154] calling pci_iommu_init+0x0/0x37 @ 1" + 428.8ms (+0.0) [appliance] "[ 0.275481] initcall pci_iommu_init+0x0/0x37 returned 0 after 0 usecs" + 429.9ms (+1.1) [appliance] "[ 0.275963] calling amd_ibs_init+0x0/0x2d9 @ 1" + 429.9ms (+0.0) [appliance] "[ 0.276285] initcall amd_ibs_init+0x0/0x2d9 returned -19 after 0 usecs" + 429.9ms (+0.0) [appliance] "[ 0.276745] calling msr_init+0x0/0xbe @ 1" + 431.1ms (+1.1) [appliance] "[ 0.277049] initcall msr_init+0x0/0xbe returned 0 after 4 usecs" + 431.1ms (+0.0) [appliance] "[ 0.277476] calling intel_cqm_init+0x0/0x495 @ 1" + 431.1ms (+0.0) [appliance] "[ 0.277809] initcall intel_cqm_init+0x0/0x495 returned -19 after 0 usecs" + 432.2ms (+1.1) [appliance] "[ 0.278286] calling rapl_pmu_init+0x0/0x254 @ 1" + 432.2ms (+0.0) [appliance] "[ 0.278615] initcall rapl_pmu_init+0x0/0x254 returned -1 after 2 usecs" + 433.3ms (+1.1) [appliance] "[ 0.279079] calling intel_uncore_init+0x0/0x2cf @ 1" + 433.3ms (+0.0) [appliance] "[ 0.279431] initcall intel_uncore_init+0x0/0x2cf returned -19 after 0 usecs" + 433.3ms (+0.0) [appliance] "[ 0.279923] calling cstate_pmu_init+0x0/0x179 @ 1" + 434.4ms (+1.1) [appliance] "[ 0.280265] initcall cstate_pmu_init+0x0/0x179 returned -19 after 0 usecs" + 434.4ms (+0.0) [appliance] "[ 0.280741] calling register_kernel_offset_dumper+0x0/0x16 @ 1" + 434.4ms (+0.0) [appliance] "[ 0.281161] initcall register_kernel_offset_dumper+0x0/0x16 returned 0 after 0 usecs" + 435.6ms (+1.1) [appliance] "[ 0.281711] calling i8259A_init_ops+0x0/0x1c @ 1" + 435.6ms (+0.0) [appliance] "[ 0.282047] initcall i8259A_init_ops+0x0/0x1c returned 0 after 0 usecs" + 436.7ms (+1.1) [appliance] "[ 0.282510] calling init_tsc_clocksource+0x0/0xad @ 1" + 436.7ms (+0.0) [appliance] "[ 0.282875] initcall init_tsc_clocksource+0x0/0xad returned 0 after 0 usecs" + 436.7ms (+0.0) [appliance] "[ 0.283366] calling add_rtc_cmos+0x0/0xa0 @ 1" + 437.8ms (+1.1) [appliance] "[ 0.283686] initcall add_rtc_cmos+0x0/0xa0 returned 0 after 0 usecs" + 437.8ms (+0.0) [appliance] "[ 0.284132] calling i8237A_init_ops+0x0/0xf @ 1" + 437.8ms (+0.0) [appliance] "[ 0.284459] initcall i8237A_init_ops+0x0/0xf returned 0 after 0 usecs" + 438.9ms (+1.1) [appliance] "[ 0.284916] calling ioapic_init_ops+0x0/0xf @ 1" + 438.9ms (+0.0) [appliance] "[ 0.285244] initcall ioapic_init_ops+0x0/0xf returned 0 after 0 usecs" + 438.9ms (+0.0) [appliance] "[ 0.285703] calling sysfb_init+0x0/0x6b @ 1" + 440.1ms (+1.1) [appliance] "[ 0.286020] initcall sysfb_init+0x0/0x6b returned 0 after 8 usecs" + 440.1ms (+0.0) [appliance] "[ 0.286450] calling pmc_atom_init+0x0/0xec @ 1" + 440.1ms (+0.0) [appliance] "[ 0.286772] initcall pmc_atom_init+0x0/0xec returned -19 after 1 usecs" + 441.2ms (+1.1) [appliance] "[ 0.287237] calling proc_execdomains_init+0x0/0x1d @ 1" + 441.2ms (+0.0) [appliance] "[ 0.287607] initcall proc_execdomains_init+0x0/0x1d returned 0 after 1 usecs" + 442.3ms (+1.1) [appliance] "[ 0.288107] calling ioresources_init+0x0/0x37 @ 1" + 442.3ms (+0.0) [appliance] "[ 0.288447] initcall ioresources_init+0x0/0x37 returned 0 after 1 usecs" + 442.3ms (+0.0) [appliance] "[ 0.288915] calling init_sched_debug_procfs+0x0/0x27 @ 1" + 443.4ms (+1.1) [appliance] "[ 0.289298] initcall init_sched_debug_procfs+0x0/0x27 returned 0 after 0 usecs" + 443.4ms (+0.0) [appliance] "[ 0.289811] calling init_posix_timers+0x0/0x274 @ 1" + 443.4ms (+0.0) [appliance] "[ 0.290167] initcall init_posix_timers+0x0/0x274 returned 0 after 2 usecs" + 444.6ms (+1.1) [appliance] "[ 0.290650] calling init_posix_cpu_timers+0x0/0xb8 @ 1" + 444.6ms (+0.0) [appliance] "[ 0.291024] initcall init_posix_cpu_timers+0x0/0xb8 returned 0 after 0 usecs" + 445.7ms (+1.1) [appliance] "[ 0.291519] calling timekeeping_init_ops+0x0/0xf @ 1" + 445.7ms (+0.0) [appliance] "[ 0.291876] initcall timekeeping_init_ops+0x0/0xf returned 0 after 0 usecs" + 445.7ms (+0.0) [appliance] "[ 0.292361] calling init_clocksource_sysfs+0x0/0x64 @ 1" + 446.8ms (+1.1) [appliance] "[ 0.292748] initcall init_clocksource_sysfs+0x0/0x64 returned 0 after 10 usecs" + 446.8ms (+0.0) [appliance] "[ 0.293261] calling init_timer_list_procfs+0x0/0x27 @ 1" + 447.9ms (+1.1) [appliance] "[ 0.293645] initcall init_timer_list_procfs+0x0/0x27 returned 0 after 0 usecs" + 447.9ms (+0.0) [appliance] "[ 0.294152] calling alarmtimer_init+0x0/0xee @ 1" + 447.9ms (+0.0) [appliance] "[ 0.294495] initcall alarmtimer_init+0x0/0xee returned 0 after 9 usecs" + 449.1ms (+1.1) [appliance] "[ 0.294962] calling clockevents_init_sysfs+0x0/0xcd @ 1" + 449.1ms (+0.0) [appliance] "[ 0.295347] initcall clockevents_init_sysfs+0x0/0xcd returned 0 after 10 usecs" + 449.1ms (+0.0) [appliance] "[ 0.295856] calling futex_init+0x0/0xad @ 1" + 450.2ms (+1.1) [appliance] "[ 0.296162] futex hash table entries: 16 (order: -2, 1024 bytes)" + 450.2ms (+0.0) [appliance] "[ 0.296585] initcall futex_init+0x0/0xad returned 0 after 412 usecs" + 451.3ms (+1.1) [appliance] "[ 0.297030] calling proc_dma_init+0x0/0x1d @ 1" + 451.3ms (+0.0) [appliance] "[ 0.297353] initcall proc_dma_init+0x0/0x1d returned 0 after 1 usecs" + 451.3ms (+0.0) [appliance] "[ 0.297804] calling proc_modules_init+0x0/0x1d @ 1" + 452.4ms (+1.1) [appliance] "[ 0.298153] initcall proc_modules_init+0x0/0x1d returned 0 after 0 usecs" + 452.4ms (+0.0) [appliance] "[ 0.298623] calling kallsyms_init+0x0/0x20 @ 1" + 452.4ms (+0.0) [appliance] "[ 0.298945] initcall kallsyms_init+0x0/0x20 returned 0 after 0 usecs" + 453.6ms (+1.1) [appliance] "[ 0.299392] calling utsname_sysctl_init+0x0/0xf @ 1" + 453.6ms (+0.0) [appliance] "[ 0.299745] initcall utsname_sysctl_init+0x0/0xf returned 0 after 3 usecs" + 453.6ms (+0.0) [appliance] "[ 0.300223] calling perf_event_sysfs_init+0x0/0x8f @ 1" + 454.7ms (+1.1) [appliance] "[ 0.300622] initcall perf_event_sysfs_init+0x0/0x8f returned 0 after 27 usecs" + 454.7ms (+0.0) [appliance] "[ 0.301127] calling kswapd_init+0x0/0xf @ 1" + 454.7ms (+0.0) [appliance] "[ 0.301467] initcall kswapd_init+0x0/0xf returned 0 after 30 usecs" + 455.8ms (+1.1) [appliance] "[ 0.301906] calling setup_vmstat+0x0/0x1a8 @ 1" + 455.8ms (+0.0) [appliance] "[ 0.302240] initcall setup_vmstat+0x0/0x1a8 returned 0 after 13 usecs" + 456.9ms (+1.1) [appliance] "[ 0.302696] calling mm_compute_batch_init+0x0/0x14 @ 1" + 456.9ms (+0.0) [appliance] "[ 0.303067] initcall mm_compute_batch_init+0x0/0x14 returned 0 after 0 usecs" + 456.9ms (+0.0) [appliance] "[ 0.303560] calling slab_proc_init+0x0/0x20 @ 1" + 458.1ms (+1.1) [appliance] "[ 0.303888] initcall slab_proc_init+0x0/0x20 returned 0 after 0 usecs" + 458.1ms (+0.0) [appliance] "[ 0.304338] calling workingset_init+0x0/0x7a @ 1" + 458.1ms (+0.0) [appliance] "[ 0.304671] workingset: timestamp_bits=60 max_order=17 bucket_order=0" + 459.2ms (+1.1) [appliance] "[ 0.305124] initcall workingset_init+0x0/0x7a returned 0 after 442 usecs" + 459.2ms (+0.0) [appliance] "[ 0.305601] calling proc_vmalloc_init+0x0/0x20 @ 1" + 459.2ms (+0.0) [appliance] "[ 0.305949] initcall proc_vmalloc_init+0x0/0x20 returned 0 after 0 usecs" + 460.3ms (+1.1) [appliance] "[ 0.306419] calling procswaps_init+0x0/0x1d @ 1" + 460.3ms (+0.0) [appliance] "[ 0.306743] initcall procswaps_init+0x0/0x1d returned 0 after 0 usecs" + 461.4ms (+1.1) [appliance] "[ 0.307199] calling slab_sysfs_init+0x0/0xf5 @ 1" + 461.4ms (+0.0) [appliance] "[ 0.307995] initcall slab_sysfs_init+0x0/0xf5 returned 0 after 453 usecs" + 462.5ms (+1.1) [appliance] "[ 0.308471] calling fcntl_init+0x0/0x25 @ 1" + 462.5ms (+0.0) [appliance] "[ 0.308786] initcall fcntl_init+0x0/0x25 returned 0 after 13 usecs" + 462.5ms (+0.0) [appliance] "[ 0.309223] calling proc_filesystems_init+0x0/0x1d @ 1" + 463.6ms (+1.1) [appliance] "[ 0.309599] initcall proc_filesystems_init+0x0/0x1d returned 0 after 1 usecs" + 463.6ms (+0.0) [appliance] "[ 0.310093] calling start_dirtytime_writeback+0x0/0x25 @ 1" + 464.8ms (+1.1) [appliance] "[ 0.310486] initcall start_dirtytime_writeback+0x0/0x25 returned 0 after 0 usecs" + 464.8ms (+0.0) [appliance] "[ 0.311007] calling dio_init+0x0/0x28 @ 1" + 464.8ms (+0.0) [appliance] "[ 0.311309] initcall dio_init+0x0/0x28 returned 0 after 12 usecs" + 465.9ms (+1.1) [appliance] "[ 0.311735] calling dnotify_init+0x0/0x74 @ 1" + 465.9ms (+0.0) [appliance] "[ 0.312054] initcall dnotify_init+0x0/0x74 returned 0 after 2 usecs" + 465.9ms (+0.0) [appliance] "[ 0.312492] calling fanotify_user_setup+0x0/0x4d @ 1" + 467.0ms (+1.1) [appliance] "[ 0.312849] initcall fanotify_user_setup+0x0/0x4d returned 0 after 1 usecs" + 467.0ms (+0.0) [appliance] "[ 0.313331] calling aio_setup+0x0/0x76 @ 1" + 467.0ms (+0.0) [appliance] "[ 0.313639] initcall aio_setup+0x0/0x76 returned 0 after 6 usecs" + 468.1ms (+1.1) [appliance] "[ 0.314067] calling mbcache_init+0x0/0x2c @ 1" + 468.1ms (+0.0) [appliance] "[ 0.314393] initcall mbcache_init+0x0/0x2c returned 0 after 12 usecs" + 468.1ms (+0.0) [appliance] "[ 0.314837] calling init_devpts_fs+0x0/0x5d @ 1" + 469.2ms (+1.1) [appliance] "[ 0.315171] initcall init_devpts_fs+0x0/0x5d returned 0 after 6 usecs" + 469.2ms (+0.0) [appliance] "[ 0.315620] calling ext4_init_fs+0x0/0x197 @ 1" + 469.2ms (+0.0) [appliance] "[ 0.315993] initcall ext4_init_fs+0x0/0x197 returned 0 after 49 usecs" + 470.4ms (+1.1) [appliance] "[ 0.316446] calling journal_init+0x0/0x102 @ 1" + 470.4ms (+0.0) [appliance] "[ 0.316820] initcall journal_init+0x0/0x102 returned 0 after 53 usecs" + 471.5ms (+1.1) [appliance] "[ 0.317279] calling init_nls_utf8+0x0/0x21 @ 1" + 471.5ms (+0.0) [appliance] "[ 0.317603] initcall init_nls_utf8+0x0/0x21 returned 0 after 0 usecs" + 471.5ms (+0.0) [appliance] "[ 0.318051] calling crypto_algapi_init+0x0/0x8 @ 1" + 472.6ms (+1.1) [appliance] "[ 0.318399] initcall crypto_algapi_init+0x0/0x8 returned 0 after 0 usecs" + 472.6ms (+0.0) [appliance] "[ 0.318867] calling chainiv_module_init+0x0/0xc @ 1" + 472.6ms (+0.0) [appliance] "[ 0.319219] initcall chainiv_module_init+0x0/0xc returned 0 after 0 usecs" + 473.7ms (+1.1) [appliance] "[ 0.319696] calling eseqiv_module_init+0x0/0xc @ 1" + 473.7ms (+0.0) [appliance] "[ 0.320041] initcall eseqiv_module_init+0x0/0xc returned 0 after 0 usecs" + 473.7ms (+0.0) [appliance] "[ 0.320509] calling crypto_null_mod_init+0x0/0x43 @ 1" + 474.9ms (+1.1) [appliance] "[ 0.320908] initcall crypto_null_mod_init+0x0/0x43 returned 0 after 34 usecs" + 474.9ms (+0.0) [appliance] "[ 0.321408] calling crc32c_mod_init+0x0/0xc @ 1" + 476.0ms (+1.1) [appliance] "[ 0.321744] initcall crc32c_mod_init+0x0/0xc returned 0 after 7 usecs" + 476.0ms (+0.0) [appliance] "[ 0.322199] calling proc_genhd_init+0x0/0x37 @ 1" + 476.0ms (+0.0) [appliance] "[ 0.322531] initcall proc_genhd_init+0x0/0x37 returned 0 after 1 usecs" + 477.1ms (+1.1) [appliance] "[ 0.322992] calling bsg_init+0x0/0x123 @ 1" + 477.1ms (+0.0) [appliance] "[ 0.323303] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)" + 477.1ms (+0.0) [appliance] "[ 0.323820] initcall bsg_init+0x0/0x123 returned 0 after 519 usecs" + 478.2ms (+1.1) [appliance] "[ 0.324256] calling noop_init+0x0/0xc @ 1" + 478.2ms (+0.0) [appliance] "[ 0.324545] io scheduler noop registered" + 478.2ms (+0.0) [appliance] "[ 0.324822] initcall noop_init+0x0/0xc returned 0 after 270 usecs" + 479.4ms (+1.1) [appliance] "[ 0.325255] calling deadline_init+0x0/0xc @ 1" + 479.4ms (+0.0) [appliance] "[ 0.325575] io scheduler deadline registered" + 479.4ms (+0.0) [appliance] "[ 0.325879] initcall deadline_init+0x0/0xc returned 0 after 296 usecs" + 480.5ms (+1.1) [appliance] "[ 0.326336] calling cfq_init+0x0/0x7f @ 1" + 480.5ms (+0.0) [appliance] "[ 0.326649] io scheduler cfq registered (default)" + 480.5ms (+0.0) [appliance] "[ 0.326985] initcall cfq_init+0x0/0x7f returned 0 after 350 usecs" + 481.6ms (+1.1) [appliance] "[ 0.327414] calling percpu_counter_startup+0x0/0x22 @ 1" + 481.6ms (+0.0) [appliance] "[ 0.327787] initcall percpu_counter_startup+0x0/0x22 returned 0 after 0 usecs" + 481.6ms (+0.0) [appliance] "[ 0.328288] calling pci_proc_init+0x0/0x64 @ 1" + 482.7ms (+1.1) [appliance] "[ 0.328615] initcall pci_proc_init+0x0/0x64 returned 0 after 5 usecs" + 482.7ms (+0.0) [appliance] "[ 0.329065] calling acpi_ac_init+0x0/0x26 @ 1" + 482.7ms (+0.0) [appliance] "[ 0.329394] initcall acpi_ac_init+0x0/0x26 returned 0 after 14 usecs" + 483.8ms (+1.1) [appliance] "[ 0.329845] calling acpi_button_driver_init+0x0/0xc @ 1" + 483.8ms (+0.0) [appliance] "[ 0.330244] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0" + 485.0ms (+1.1) [appliance] "[ 0.330761] ACPI: Power Button [PWRF]" + 485.0ms (+0.0) [appliance] "[ 0.331048] initcall acpi_button_driver_init+0x0/0xc returned 0 after 808 usecs" + 485.0ms (+0.0) [appliance] "[ 0.331561] calling acpi_fan_driver_init+0x0/0xe @ 1" + 486.1ms (+1.1) [appliance] "[ 0.331925] initcall acpi_fan_driver_init+0x0/0xe returned 0 after 3 usecs" + 486.1ms (+0.0) [appliance] "[ 0.332409] calling acpi_processor_driver_init+0x0/0x23 @ 1" + 486.1ms (+0.0) [appliance] "[ 0.332810] Warning: Processor Platform Limit event detected, but not handled." + 487.2ms (+1.1) [appliance] "[ 0.333318] Consider compiling CPUfreq support into your kernel." + 487.2ms (+0.0) [appliance] "[ 0.333756] initcall acpi_processor_driver_init+0x0/0x23 returned 0 after 927 usecs" + 488.3ms (+1.1) [appliance] "[ 0.334298] calling acpi_thermal_init+0x0/0x6c @ 1" + 488.3ms (+0.0) [appliance] "[ 0.334656] initcall acpi_thermal_init+0x0/0x6c returned 0 after 14 usecs" + 488.3ms (+0.0) [appliance] "[ 0.335139] calling acpi_battery_init+0x0/0x2b @ 1" + 489.4ms (+1.1) [appliance] "[ 0.335484] initcall acpi_battery_init+0x0/0x2b returned 0 after 1 usecs" + 489.4ms (+0.0) [appliance] "[ 0.335955] calling pty_init+0x0/0x37b @ 1" + 492.8ms (+3.3) [appliance] "[ 0.338489] initcall pty_init+0x0/0x37b returned 0 after 2185 usecs" + 492.8ms (+0.0) [appliance] "[ 0.338941] calling serial8250_init+0x0/0x163 @ 1" + 492.8ms (+0.0) [appliance] "[ 0.339281] Serial: 8250/16550 driver, 1 ports, IRQ sharing disabled" + 516.2ms (+23.4) [appliance] "[ 0.361938] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A" + 516.2ms (+0.0) [appliance] "[ 0.362491] initcall serial8250_init+0x0/0x163 returned 0 after 22664 usecs" + 516.2ms (+0.0) [appliance] "[ 0.362994] calling serial_pci_driver_init+0x0/0x15 @ 1" + 517.3ms (+1.1) [appliance] "[ 0.363378] initcall serial_pci_driver_init+0x0/0x15 returned 0 after 8 usecs" + 517.3ms (+0.0) [appliance] "[ 0.363887] calling topology_sysfs_init+0x0/0x70 @ 1" + 518.4ms (+1.1) [appliance] "[ 0.364252] initcall topology_sysfs_init+0x0/0x70 returned 0 after 3 usecs" + 518.4ms (+0.0) [appliance] "[ 0.364737] calling cacheinfo_sysfs_init+0x0/0x3aa @ 1" + 518.4ms (+0.0) [appliance] "[ 0.365128] initcall cacheinfo_sysfs_init+0x0/0x3aa returned 0 after 17 usecs" + 519.5ms (+1.1) [appliance] "[ 0.365641] calling pmem_init+0x0/0x15 @ 1" + 519.5ms (+0.0) [appliance] "[ 0.365947] initcall pmem_init+0x0/0x15 returned 0 after 3 usecs" + 520.6ms (+1.1) [appliance] "[ 0.366375] calling nd_btt_init+0x0/0x6 @ 1" + 520.6ms (+0.0) [appliance] "[ 0.366680] initcall nd_btt_init+0x0/0x6 returned -6 after 0 usecs" + 520.6ms (+0.0) [appliance] "[ 0.367119] calling nd_blk_init+0x0/0x15 @ 1" + 520.7ms (+0.0) [appliance] "[ 0.367431] initcall nd_blk_init+0x0/0x15 returned 0 after 2 usecs" + 521.8ms (+1.1) [appliance] "[ 0.367867] calling init_sd+0x0/0x148 @ 1" + 521.8ms (+0.0) [appliance] "[ 0.368168] initcall init_sd+0x0/0x148 returned 0 after 8 usecs" + 521.8ms (+0.0) [appliance] "[ 0.368588] calling init_sg+0x0/0x119 @ 1" + 522.9ms (+1.1) [appliance] "[ 0.368890] initcall init_sg+0x0/0x119 returned 0 after 8 usecs" + 522.9ms (+0.0) [appliance] "[ 0.369310] calling net_olddevs_init+0x0/0x58 @ 1" + 522.9ms (+0.0) [appliance] "[ 0.369660] initcall net_olddevs_init+0x0/0x58 returned 0 after 1 usecs" + 524.0ms (+1.1) [appliance] "[ 0.370130] calling i8042_init+0x0/0x332 @ 1" + 524.0ms (+0.0) [appliance] "[ 0.370453] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12" + 525.1ms (+1.1) [appliance] "[ 0.371503] serio: i8042 KBD port at 0x60,0x64 irq 1" + 525.1ms (+0.0) [appliance] "[ 0.371855] serio: i8042 AUX port at 0x60,0x64 irq 12" + 526.2ms (+1.1) [appliance] "[ 0.372221] initcall i8042_init+0x0/0x332 returned 0 after 1738 usecs" + 526.2ms (+0.0) [appliance] "[ 0.372675] calling serport_init+0x0/0x28 @ 1" + 526.2ms (+0.0) [appliance] "[ 0.372993] initcall serport_init+0x0/0x28 returned 0 after 0 usecs" + 527.3ms (+1.1) [appliance] "[ 0.373439] calling hid_init+0x0/0x38 @ 1" + 527.3ms (+0.0) [appliance] "[ 0.373735] initcall hid_init+0x0/0x38 returned 0 after 4 usecs" + 528.4ms (+1.1) [appliance] "[ 0.374156] calling hid_generic_init+0x0/0x15 @ 1" + 528.4ms (+0.0) [appliance] "[ 0.374500] initcall hid_generic_init+0x0/0x15 returned 0 after 4 usecs" + 528.4ms (+0.0) [appliance] "[ 0.374970] calling sock_diag_init+0x0/0x2f @ 1" + 529.5ms (+1.1) [appliance] "[ 0.375304] initcall sock_diag_init+0x0/0x2f returned 0 after 5 usecs" + 529.5ms (+0.0) [appliance] "[ 0.375781] calling hpet_insert_resource+0x0/0x1e @ 1" + 529.5ms (+0.0) [appliance] "[ 0.376146] initcall hpet_insert_resource+0x0/0x1e returned 1 after 0 usecs" + 530.6ms (+1.1) [appliance] "[ 0.376639] calling update_mp_table+0x0/0x43e @ 1" + 530.6ms (+0.0) [appliance] "[ 0.376985] initcall update_mp_table+0x0/0x43e returned 0 after 0 usecs" + 531.7ms (+1.1) [appliance] "[ 0.377460] calling lapic_insert_resource+0x0/0x3a @ 1" + 531.7ms (+0.0) [appliance] "[ 0.377833] initcall lapic_insert_resource+0x0/0x3a returned 0 after 0 usecs" + 531.7ms (+0.0) [appliance] "[ 0.378330] calling print_ICs+0x0/0xd6 @ 1" + 532.8ms (+1.1) [appliance] "[ 0.378629] initcall print_ICs+0x0/0xd6 returned 0 after 0 usecs" + 532.8ms (+0.0) [appliance] "[ 0.379054] calling create_tlb_single_page_flush_ceiling+0x0/0x3 @ 1" + 532.8ms (+0.0) [appliance] "[ 0.379504] initcall create_tlb_single_page_flush_ceiling+0x0/0x3 returned 0 after 0 usecs" + 533.9ms (+1.1) [appliance] "[ 0.380087] calling init_oops_id+0x0/0x30 @ 1" + 533.9ms (+0.0) [appliance] "[ 0.380462] initcall init_oops_id+0x0/0x30 returned 0 after 1 usecs" + 535.1ms (+1.1) [appliance] "[ 0.380911] calling sched_init_debug+0x0/0x3 @ 1" + 535.1ms (+0.0) [appliance] "[ 0.381244] initcall sched_init_debug+0x0/0x3 returned 0 after 0 usecs" + 535.1ms (+0.0) [appliance] "[ 0.381713] calling pm_qos_power_init+0x0/0x5f @ 1" + 536.2ms (+1.1) [appliance] "[ 0.382120] initcall pm_qos_power_init+0x0/0x5f returned 0 after 47 usecs" + 536.2ms (+0.0) [appliance] "[ 0.382602] calling printk_late_init+0x0/0x54 @ 1" + 536.2ms (+0.0) [appliance] "[ 0.382947] initcall printk_late_init+0x0/0x54 returned 0 after 0 usecs" + 537.3ms (+1.1) [appliance] "[ 0.383412] calling max_swapfiles_check+0x0/0x3 @ 1" + 537.3ms (+0.0) [appliance] "[ 0.383765] initcall max_swapfiles_check+0x0/0x3 returned 0 after 0 usecs" + 538.4ms (+1.1) [appliance] "[ 0.384247] calling check_early_ioremap_leak+0x0/0x3d @ 1" + 538.4ms (+0.0) [appliance] "[ 0.384634] initcall check_early_ioremap_leak+0x0/0x3d returned 0 after 0 usecs" + 538.4ms (+0.0) [appliance] "[ 0.385153] calling prandom_reseed+0x0/0x3b @ 1" + 539.5ms (+1.1) [appliance] "[ 0.385496] initcall prandom_reseed+0x0/0x3b returned 0 after 2 usecs" + 539.5ms (+0.0) [appliance] "[ 0.385954] calling pci_resource_alignment_sysfs_init+0x0/0x17 @ 1" + 540.6ms (+1.1) [appliance] "[ 0.386400] initcall pci_resource_alignment_sysfs_init+0x0/0x17 returned 0 after 1 usecs" + 540.6ms (+0.0) [appliance] "[ 0.386971] calling pci_sysfs_init+0x0/0x4b @ 1" + 540.6ms (+0.0) [appliance] "[ 0.387385] initcall pci_sysfs_init+0x0/0x4b returned 0 after 82 usecs" + 541.7ms (+1.1) [appliance] "[ 0.387848] calling deferred_probe_initcall+0x0/0x60 @ 1" + 541.7ms (+0.0) [appliance] "[ 0.388246] initcall deferred_probe_initcall+0x0/0x60 returned 0 after 12 usecs" + 542.8ms (+1.1) [appliance] "[ 0.388763] calling register_sk_filter_ops+0x0/0x3 @ 1" + 542.8ms (+0.0) [appliance] "[ 0.389136] initcall register_sk_filter_ops+0x0/0x3 returned 0 after 0 usecs" + 542.8ms (+0.0) [appliance] "[ 0.389637] calling init_default_flow_dissectors+0x0/0x33 @ 1" + 543.9ms (+1.1) [appliance] "[ 0.390054] initcall init_default_flow_dissectors+0x0/0x33 returned 0 after 0 usecs" + 545.4ms (+1.5) [appliance] "[ 0.391125] Freeing unused kernel memory: 628K (ffffffff8164a000 - ffffffff816e7000)" + 545.4ms (+0.0) [appliance] "[ 0.391679] Write protecting the kernel read-only data: 6144k" + 545.4ms (+0.0) [appliance] "[ 0.392267] Freeing unused kernel memory: 1236K (ffff8800012cb000 - ffff880001400000)" + 548.5ms (+3.0) [appliance] "[ 0.394147] Freeing unused kernel memory: 868K (ffff880001527000 - ffff880001600000)" + 548.5ms (+0.0) [appliance] "supermin: mounting /proc" + 548.5ms (+0.0) [appliance] "supermin: ext2 mini initrd starting up: 5.1.16 dietlibc" + 548.5ms (+0.0) [appliance] "supermin: cmdline: panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug " + 550.7ms (+2.3) [appliance] "supermin: uptime: 0.33 0.01" + 550.7ms (+0.0) [appliance] "supermin: mounting /sys" + 550.7ms (+0.0) [appliance] "supermin: internal insmod nfit.ko" + 551.9ms (+1.2) [appliance] "[ 0.397635] calling nfit_init+0x0/0xfe [nfit] @ 1" + 553.2ms (+1.3) [appliance] "[ 0.398879] initcall nfit_init+0x0/0xfe [nfit] returned 0 after 862 usecs" + 553.2ms (+0.0) [appliance] "supermin: internal insmod virtio.ko" + 553.2ms (+0.0) [appliance] "[ 0.399709] calling virtio_init+0x0/0x1f [virtio] @ 1" + 554.3ms (+1.1) [appliance] "[ 0.400100] initcall virtio_init+0x0/0x1f [virtio] returned 0 after 4 usecs" + 554.3ms (+0.0) [appliance] "supermin: internal insmod virtio_ring.ko" + 554.3ms (+0.0) [appliance] "supermin: internal insmod virtio_console.ko" + 555.5ms (+1.2) [appliance] "[ 0.401367] calling init+0x0/0xd6 [virtio_console] @ 1" + 555.5ms (+0.0) [appliance] "[ 0.401753] initcall init+0x0/0xd6 [virtio_console] returned 0 after 10 usecs" + 555.5ms (+0.0) [appliance] "supermin: internal insmod virtio_scsi.ko" + 556.6ms (+1.1) [appliance] "[ 0.402687] calling init+0x0/0xc7 [virtio_scsi] @ 1" + 556.6ms (+0.0) [appliance] "[ 0.403049] initcall init+0x0/0xc7 [virtio_scsi] returned 0 after 8 usecs" + 557.8ms (+1.1) [appliance] "supermin: internal insmod virtio_pci.ko" + 557.8ms (+0.0) [appliance] "[ 0.403897] calling virtio_pci_driver_init+0x0/0x1a [virtio_pci] @ 1" + 570.4ms (+12.6) [appliance] "[ 0.416061] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 10" + 570.4ms (+0.0) [appliance] "[ 0.416502] virtio-pci 0000:00:02.0: virtio_pci: leaving for legacy driver" + 583.8ms (+13.4) [appliance] "[ 0.429505] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11" + 583.8ms (+0.0) [appliance] "[ 0.429946] virtio-pci 0000:00:03.0: virtio_pci: leaving for legacy driver" + 585.7ms (+1.9) [appliance] "[ 0.431383] pmem0: detected capacity change from 0 to 4294967296" + 585.7ms (+0.0) [appliance] "[ 0.431970] scsi host0: Virtio SCSI HBA" + 585.7ms (+0.0) [appliance] "[ 0.432432] scsi 0:0:0:0: Direct-Access QEMU QEMU HARDDISK 2.5+ PQ: 0 ANSI: 5" + 586.8ms (+1.1) [appliance] "[ 0.433197] sd 0:0:0:0: Attached scsi generic sg0 type 0" + 588.1ms (+1.2) [appliance] "[ 0.433742] sd 0:0:0:0: [sda] 8 512-byte logical blocks: (4.10 kB/4.00 KiB)" + 588.1ms (+0.0) [appliance] "[ 0.434666] sd 0:0:0:0: [sda] Write Protect is off" + 589.2ms (+1.1) [appliance] "[ 0.435030] sd 0:0:0:0: [sda] Mode Sense: 63 00 00 08" + 589.2ms (+0.0) [appliance] "[ 0.435449] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA" + 591.4ms (+2.2) [appliance] "[ 0.437099] sd 0:0:0:0: [sda] Attached SCSI disk" + 613.1ms (+21.7) [appliance] "[ 0.458780] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11" + 613.1ms (+0.0) [appliance] "[ 0.459225] virtio-pci 0000:00:04.0: virtio_pci: leaving for legacy driver" + 621.4ms (+8.3) [appliance] "[ 0.467122] initcall virtio_pci_driver_init+0x0/0x1a [virtio_pci] returned 0 after 61304 usecs" + 621.4ms (+0.0) [appliance] "supermin: picked /sys/block/pmem0/dev as root device" + 622.6ms (+1.2) [appliance] "supermin: creating /dev/root as block special 259:0" + 622.6ms (+0.0) [appliance] "supermin: mounting new root on /root (dax)" + 622.6ms (+0.0) [appliance] "[ 0.469151] EXT4-fs (pmem0): DAX enabled. Warning: EXPERIMENTAL, use at your own risk" + 623.8ms (+1.1) [appliance] "[ 0.469711] EXT4-fs (pmem0): mounting ext2 file system using the ext4 subsystem" + 623.8ms (+0.0) [appliance] "[ 0.470454] EXT4-fs (pmem0): mounted filesystem without journal. Opts: dax" + 624.9ms (+1.1) [appliance] "supermin: chroot" + 627.2ms (+2.4) [appliance] "Starting /init script ..." + 630.6ms (+3.3) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_network=1* ]]" + 631.7ms (+1.1) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_rescue=1* ]]" + 632.9ms (+1.1) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_noreboot=1* ]]" + 634.0ms (+1.1) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_boot_analysis=1* ]]" + 635.2ms (+1.1) [appliance] "+ guestfs_boot_analysis=1" + 636.3ms (+1.2) [appliance] "+ '[' '!' -d /sys ']'" + 636.3ms (+0.0) [appliance] "+ mkdir -p /sys" + 636.3ms (+0.0) [appliance] "+ mount -t sysfs /sys /sys" + 638.3ms (+2.0) [appliance] "+ mkdir -p /run" + 638.3ms (+0.0) [appliance] "+ mount -t tmpfs -o nosuid,size=20%,mode=0755 tmpfs /run" + 640.2ms (+1.9) [appliance] "+ mkdir -p /run/lock" + 640.2ms (+0.0) [appliance] "+ ln -s ../run/lock /var/lock" + 641.5ms (+1.4) [appliance] "+ ln -s /proc/mounts /etc/mtab" + 641.5ms (+0.0) [appliance] "+ mount -t devtmpfs /dev /dev" + 643.2ms (+1.7) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *selinux=1* ]]" + 644.3ms (+1.1) [appliance] "+ mkdir -p /run/tmpfiles.d" + 644.3ms (+0.0) [appliance] "+ kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf" + 646.7ms (+2.4) [appliance] "++ od -x -A n" + 646.7ms (+0.0) [appliance] "++ dd if=/dev/urandom bs=16 count=1 status=none" + 647.9ms (+1.2) [appliance] "[ 0.493625] random: dd urandom read with 15 bits of entropy available" + 647.9ms (+0.0) [appliance] "+ machine_id=' 18b0 e255 9983 2cee 0c6e 5bda fb36 4b6f'" + 647.9ms (+0.0) [appliance] "+ echo 18b0e25599832cee0c6e5bdafb364b6f" + 649.0ms (+1.1) [appliance] "+ systemd-tmpfiles --prefix=/dev --create --boot" + 651.2ms (+2.1) [appliance] "+ for f in /lib/systemd/systemd-udevd /usr/lib/systemd/systemd-udevd /sbin/udevd /lib/udev/udevd /usr/lib/udev/udevd" + 651.2ms (+0.0) [appliance] "+ '[' -x /lib/systemd/systemd-udevd ']'" + 651.2ms (+0.0) [appliance] "+ UDEVD=/lib/systemd/systemd-udevd" + 651.2ms (+0.0) [appliance] "+ break" + 652.3ms (+1.1) [appliance] "+ '[' -z /lib/systemd/systemd-udevd ']'" + 652.3ms (+0.0) [appliance] "+ /lib/systemd/systemd-udevd --daemon" + 654.0ms (+1.7) [appliance] "starting version 229" + 654.0ms (+0.0) [appliance] "+ udevadm trigger" + 678.9ms (+24.9) [appliance] "+ udevadm settle --timeout=600" + 769.8ms (+90.8) [appliance] "+ shopt -s nullglob" + 769.8ms (+0.0) [appliance] "+ for f in '/sys/block/sd*/device/timeout'" + 769.8ms (+0.0) [appliance] "+ echo 300" + 769.8ms (+0.0) [appliance] "+ for f in '/sys/block/{h,s,ub,v}d*/queue/scheduler'" + 769.8ms (+0.0) [appliance] "+ echo noop" + 783.9ms (+14.1) [appliance] "+ shopt -u nullglob" + 783.9ms (+0.0) [appliance] "+ ip addr add 127.0.0.1/8 brd + dev lo scope host" + 783.9ms (+0.0) [appliance] "RTNETLINK answers: Operation not supported" + 785.0ms (+1.1) [appliance] "+ ip link set dev lo up" + 785.0ms (+0.0) [appliance] "+ test '' = 1" + 785.0ms (+0.0) [appliance] "+ mdadm -As --auto=yes --run" + 789.2ms (+4.2) [appliance] "mdadm: No arrays found in config file or automatically" + 789.2ms (+0.0) [appliance] "+ modprobe dm_mod" + 790.5ms (+1.2) [appliance] "modprobe: FATAL: Module dm_mod not found in directory /lib/modules/4.6.0+" + 790.5ms (+0.0) [appliance] "+ :" + 790.5ms (+0.0) [appliance] "+ lvmetad" + 792.7ms (+2.2) [appliance] "+ lvm vgchange -aay --sysinit" + 795.3ms (+2.6) [appliance] " Configuration setting "global/notify_dbus" unknown." + 795.3ms (+0.0) [appliance] " Configuration setting "devices/allow_changes_with_duplicate_pvs" unknown." + 796.6ms (+1.3) [appliance] " lvmetad is not active yet, using direct activation during sysinit" + 797.7ms (+1.1) [appliance] "+ ldmtool create all" + 801.3ms (+3.5) [appliance] "[" + 801.3ms (+0.0) [appliance] "]" + 801.3ms (+0.0) [appliance] "+ test 1 = 1" + 801.3ms (+0.0) [appliance] "+ test 1 '!=' 1" + 801.3ms (+0.0) [appliance] "+ test '' = 1" + 801.3ms (+0.0) [appliance] "+ cmd=guestfsd" + 802.4ms (+1.2) [appliance] "++ grep -Eo 'guestfs_channel=[^[:space:]]+' /proc/cmdline" + 802.4ms (+0.0) [appliance] "+ eval" + 802.4ms (+0.0) [appliance] "+ test x '!=' x" + 803.6ms (+1.2) [appliance] "+ test 1 = 1" + 803.6ms (+0.0) [appliance] "+ cmd='guestfsd --verbose'" + 803.6ms (+0.0) [appliance] "+ test '' = 1" + 803.6ms (+0.0) [appliance] "+ echo guestfsd --verbose" + 803.6ms (+0.0) [appliance] "guestfsd --verbose" + 803.6ms (+0.0) [appliance] "+ guestfsd --verbose" + 808.4ms (+4.8) [appliance] "trying to open virtio-serial channel '/dev/virtio-ports/org.libguestfs.channel.0'" + 808.4ms (+0.0) [appliance] "udevadm --debug settle" + 810.7ms (+2.3) [appliance] "calling: settle" + 810.7ms (+0.0) [launch_done] "launch done callback" + 810.7ms (+0.0) [library] "recv_from_daemon: received GUESTFS_LAUNCH_FLAG" + 810.7ms (+0.0) [library] "appliance is up" + 810.7ms (+0.0) [trace] "launch = 0" + 810.7ms (+0.0) [trace] "close" + 810.7ms (+0.0) [library] "closing guestfs handle 0x55a7d259b890 (state 2)" + 810.7ms (+0.0) [trace] "internal_autosync" + 813.3ms (+2.6) [appliance] "guestfsd: main_loop: new request, len 0x28" + 813.3ms (+0.0) [appliance] "umount-all: /proc/mounts: fsname=/dev/root dir=/ type=ext2 opts=rw,noatime,block_validity,barrier,dax,user_xattr freq=0 passno=0" + 813.3ms (+0.0) [appliance] "umount-all: /proc/mounts: fsname=/proc dir=/proc type=proc opts=rw,relatime freq=0 passno=0" + 814.4ms (+1.1) [appliance] "umount-all: /proc/mounts: fsname=/sys dir=/sys type=sysfs opts=rw,relatime freq=0 passno=0" + 814.4ms (+0.0) [appliance] "umount-all: /proc/mounts: fsname=tmpfs dir=/run type=tmpfs opts=rw,nosuid,relatime,size=99484k,mode=755 freq=0 passno=0" + 814.4ms (+0.0) [appliance] "umount-all: /proc/mounts: fsname=/dev dir=/dev type=devtmpfs opts=rw,relatime,size=247256k,nr_inodes=61814,mode=755 freq=0 passno=0" + 815.6ms (+1.1) [appliance] "fsync /dev/sda" + 823.3ms (+7.7) [trace] "internal_autosync = 0" + 823.3ms (+0.0) [library] "sending SIGTERM to process 8699" + 831.2ms (+8.0) [library] "qemu maxrss 157448K" + 831.3ms (+0.0) [close] "close callback" + 831.3ms (+0.0) [library] "command: run: rm" + 831.3ms (+0.0) [library] "command: run: \ -rf /home/rjones/d/libguestfs/tmp/libguestfsy3PeMh" + 832.4ms (+1.2) [library] "command: run: rm" + 832.4ms (+0.0) [library] "command: run: \ -rf /run/user/1000/libguestfslQWbHR" +pass 2 + number of events collected 885 + elapsed time 842181176 ns + 0.1ms [trace] "launch" + 0.1ms (+0.0) [trace] "version" + 0.1ms (+0.0) [trace] "version = " + 0.1ms (+0.0) [trace] "get_backend" + 0.1ms (+0.0) [trace] "get_backend = "direct"" + 0.1ms (+0.0) [library] "launch: program=boot-analysis" + 0.1ms (+0.0) [library] "launch: version=1.33.29" + 0.1ms (+0.0) [library] "launch: backend registered: unix" + 0.1ms (+0.0) [library] "launch: backend registered: uml" + 0.1ms (+0.0) [library] "launch: backend registered: libvirt" + 0.1ms (+0.0) [library] "launch: backend registered: direct" + 0.1ms (+0.0) [library] "launch: backend=direct" + 0.1ms (+0.0) [library] "launch: tmpdir=/home/rjones/d/libguestfs/tmp/libguestfsak8rWt" + 0.6ms (+0.5) [library] "launch: umask=0002" + 0.6ms (+0.0) [library] "launch: euid=1000" + 0.6ms (+0.0) [trace] "get_backend_setting "force_tcg"" + 0.6ms (+0.0) [trace] "get_backend_setting = NULL (error)" + 0.6ms (+0.0) [trace] "get_cachedir" + 0.6ms (+0.0) [trace] "get_cachedir = "/home/rjones/d/libguestfs/tmp"" + 0.6ms (+0.0) [library] "begin building supermin appliance" + 0.6ms (+0.0) [library] "run supermin" + 0.6ms (+0.0) [library] "command: run: /usr/bin/supermin" + 0.6ms (+0.0) [library] "command: run: \ --build" + 0.6ms (+0.0) [library] "command: run: \ --verbose" + 0.6ms (+0.0) [library] "command: run: \ --if-newer" + 0.6ms (+0.0) [library] "command: run: \ --lock /home/rjones/d/libguestfs/tmp/.guestfs-1000/lock" + 0.6ms (+0.0) [library] "command: run: \ --copy-kernel" + 0.6ms (+0.0) [library] "command: run: \ -f ext2" + 0.6ms (+0.0) [library] "command: run: \ --host-cpu x86_64" + 0.6ms (+0.0) [library] "command: run: \ /home/rjones/d/libguestfs/appliance/supermin.d" + 0.6ms (+0.0) [library] "command: run: \ -o /home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d" + 8.6ms (+7.9) [appliance] "supermin: version: 5.1.16" + 8.6ms (+0.0) [appliance] "supermin: rpm: detected RPM version 4.13" + 8.6ms (+0.0) [appliance] "supermin: package handler: fedora/rpm" + 8.6ms (+0.0) [appliance] "supermin: acquiring lock on /home/rjones/d/libguestfs/tmp/.guestfs-1000/lock" + 8.6ms (+0.0) [appliance] "supermin: if-newer: output does not need rebuilding" + 11.0ms (+2.4) [library] "finished building supermin appliance" + 11.0ms (+0.0) [library] "begin testing qemu features" + 11.0ms (+0.0) [trace] "get_cachedir" + 11.0ms (+0.0) [trace] "get_cachedir = "/home/rjones/d/libguestfs/tmp"" + 11.0ms (+0.0) [library] "checking for previously cached test results of /home/rjones/d/qemu/x86_64-softmmu/qemu-system-x86_64, in /home/rjones/d/libguestfs/tmp/.guestfs-1000" + 11.0ms (+0.0) [library] "loading previously cached test results" + 11.1ms (+0.0) [library] "qemu version 2.6" + 11.1ms (+0.0) [trace] "get_sockdir" + 11.1ms (+0.0) [trace] "get_sockdir = "/run/user/1000"" + 11.1ms (+0.1) [library] "finished testing qemu features" + 11.2ms (+0.0) [trace] "get_backend_setting "gdb"" + 11.2ms (+0.0) [trace] "get_backend_setting = NULL (error)" + 11.2ms (+0.0) [trace] "get_backend_setting "dax"" + 11.2ms (+0.0) [trace] "get_backend_setting = "1"" + 12.8ms (+1.7) [appliance] "[00011ms] /home/rjones/d/qemu/x86_64-softmmu/qemu-system-x86_64 \" + 12.8ms (+0.0) [appliance] " -global virtio-blk-pci.scsi=off \" + 12.8ms (+0.0) [appliance] " -nodefconfig \" + 12.8ms (+0.0) [appliance] " -enable-fips \" + 12.8ms (+0.0) [appliance] " -nodefaults \" + 12.9ms (+0.0) [appliance] " -display none \" + 12.9ms (+0.0) [appliance] " -machine pc,nvdimm=on,accel=kvm:tcg \" + 12.9ms (+0.0) [appliance] " -cpu host \" + 12.9ms (+0.0) [appliance] " -m 500,maxmem=32G,slots=32 \" + 12.9ms (+0.0) [appliance] " -no-reboot \" + 12.9ms (+0.0) [appliance] " -rtc driftfix=slew \" + 12.9ms (+0.0) [appliance] " -no-hpet \" + 12.9ms (+0.0) [appliance] " -global kvm-pit.lost_tick_policy=discard \" + 12.9ms (+0.0) [appliance] " -kernel /home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d/kernel \" + 12.9ms (+0.0) [appliance] " -initrd /home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d/initrd \" + 12.9ms (+0.0) [appliance] " -bios bios-fast.bin \" + 12.9ms (+0.0) [appliance] " -object rng-random,filename=/dev/urandom,id=rng0 \" + 12.9ms (+0.0) [appliance] " -device virtio-rng-pci,rng=rng0 \" + 12.9ms (+0.0) [appliance] " -device virtio-scsi-pci,id=scsi \" + 12.9ms (+0.0) [appliance] " -drive file=/home/rjones/d/libguestfs/tmp/libguestfsak8rWt/devnull1,cache=writeback,format=raw,id=hd0,if=none \" + 12.9ms (+0.0) [appliance] " -device scsi-hd,drive=hd0 \" + 12.9ms (+0.0) [appliance] " -object memory-backend-file,id=mem1,share=off,mem-path=/home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d/root,size=4294967296b \" + 12.9ms (+0.0) [appliance] " -device nvdimm,memdev=mem1,id=nv1 \" + 12.9ms (+0.0) [appliance] " -device virtio-serial-pci \" + 12.9ms (+0.0) [appliance] " -serial stdio \" + 12.9ms (+0.0) [appliance] " -device sga \" + 12.9ms (+0.0) [appliance] " -chardev socket,path=/run/user/1000/libguestfsedDEd6/guestfsd.sock,id=channel0 \" + 12.9ms (+0.0) [appliance] " -device virtserialport,chardev=channel0,name=org.libguestfs.channel.0 \" + 12.9ms (+0.0) [appliance] " -append 'panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug '" + 108.2ms (+95.3) [library] "responding to serial console Device Status Report" + 108.2ms (+0.0) [appliance] "\x1b[1;256r\x1b[256;256H\x1b[6n" + 110.1ms (+1.9) [appliance] "Google, Inc." + 110.1ms (+0.0) [appliance] "Serial Graphics Adapter 11/03/11" + 110.1ms (+0.0) [appliance] "SGABIOS $Id$ (pbonzini@yakj.usersys.redhat.com) Thu Nov 3 13:33:51 UTC 2011" + 110.1ms (+0.0) [appliance] "Term: 80x24" + 110.1ms (+0.0) [appliance] "4 0" + 110.1ms (+0.0) [appliance] "\x1b[2J\x0dSeaBIOS (version rel-1.9.1-0-gb3ef39f-prebuilt.qemu-project.org)" + 119.8ms (+9.8) [appliance] "\x0dBooting from Hard Disk..." + 119.8ms (+0.0) [appliance] "\x0dBoot failed: could not read the boot disk" + 120.9ms (+1.1) [appliance] "" + 120.9ms (+0.0) [appliance] "\x0dBooting from ROM..." + 122.0ms (+1.1) [appliance] "\x1b[2J" + 158.4ms (+36.4) [appliance] "[ 0.000000] Linux version 4.6.0+ (rjones@moo.home.annexia.org) (gcc version 6.1.1 20160427 (Red Hat 6.1.1-1) (GCC) ) #36 SMP Wed May 18 13:36:15 BST 2016" + 158.4ms (+0.0) [appliance] "[ 0.000000] Command line: panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug " + 160.6ms (+2.2) [appliance] "[ 0.000000] KERNEL supported cpus:" + 161.8ms (+1.1) [appliance] "[ 0.000000] Intel GenuineIntel" + 161.8ms (+0.0) [appliance] "[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256" + 161.8ms (+0.0) [appliance] "[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'" + 162.9ms (+1.1) [appliance] "[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'" + 162.9ms (+0.0) [appliance] "[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'" + 162.9ms (+0.0) [appliance] "[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format." + 164.0ms (+1.1) [appliance] "[ 0.000000] x86/fpu: Using 'eager' FPU context switches." + 164.0ms (+0.0) [appliance] "[ 0.000000] e820: BIOS-provided physical RAM map:" + 165.1ms (+1.1) [appliance] "[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable" + 165.1ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved" + 166.3ms (+1.1) [appliance] "[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved" + 166.3ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001f3defff] usable" + 167.4ms (+1.1) [appliance] "[ 0.000000] BIOS-e820: [mem 0x000000001f3df000-0x000000001f3fffff] reserved" + 167.4ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved" + 167.4ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved" + 168.5ms (+1.1) [appliance] "[ 0.000000] debug: ignoring loglevel setting." + 168.5ms (+0.0) [appliance] "[ 0.000000] NX (Execute Disable) protection: active" + 168.5ms (+0.0) [appliance] "[ 0.000000] Hypervisor detected: KVM" + 169.7ms (+1.1) [appliance] "[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved" + 169.7ms (+0.0) [appliance] "[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable" + 170.8ms (+1.1) [appliance] "[ 0.000000] e820: last_pfn = 0x1f3df max_arch_pfn = 0x400000000" + 170.8ms (+0.0) [appliance] "[ 0.000000] found SMP MP-table at [mem 0x000f3830-0x000f383f] mapped at [ffff8800000f3830]" + 170.8ms (+0.0) [appliance] "[ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576" + 171.9ms (+1.1) [appliance] "[ 0.000000] Using GB pages for direct mapping" + 171.9ms (+0.0) [appliance] "[ 0.000000] BRK [0x01750000, 0x01750fff] PGTABLE" + 171.9ms (+0.0) [appliance] "[ 0.000000] BRK [0x01751000, 0x01751fff] PGTABLE" + 173.1ms (+1.1) [appliance] "[ 0.000000] BRK [0x01752000, 0x01752fff] PGTABLE" + 173.1ms (+0.0) [appliance] "[ 0.000000] BRK [0x01753000, 0x01753fff] PGTABLE" + 173.1ms (+0.0) [appliance] "[ 0.000000] RAMDISK: [mem 0x1f3a7000-0x1f3cffff]" + 174.2ms (+1.1) [appliance] "[ 0.000000] ACPI: Early table checksum verification disabled" + 174.2ms (+0.0) [appliance] "[ 0.000000] ACPI: RSDP 0x00000000000F3640 000014 (v00 BOCHS )" + 174.2ms (+0.0) [appliance] "[ 0.000000] ACPI: RSDT 0x000000001F3E21EA 000034 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001)" + 175.3ms (+1.1) [appliance] "[ 0.000000] ACPI: FACP 0x000000001F3E1EED 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001)" + 175.3ms (+0.0) [appliance] "[ 0.000000] ACPI: DSDT 0x000000001F3DF040 002EAD (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001)" + 176.5ms (+1.1) [appliance] "[ 0.000000] ACPI: FACS 0x000000001F3DF000 000040" + 176.5ms (+0.0) [appliance] "[ 0.000000] ACPI: APIC 0x000000001F3E1F61 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001)" + 177.6ms (+1.1) [appliance] "[ 0.000000] ACPI: NFIT 0x000000001F3E1FD9 0000E0 (v01 BOCHS BXPCNFIT 00000001 BXPC 00000001)" + 177.6ms (+0.0) [appliance] "[ 0.000000] ACPI: SSDT 0x000000001F3E20B9 000131 (v01 BOCHS NVDIMM 00000001 BXPC 00000001)" + 178.7ms (+1.1) [appliance] "[ 0.000000] ACPI: Local APIC address 0xfee00000" + 178.7ms (+0.0) [appliance] "[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00" + 179.9ms (+1.1) [appliance] "[ 0.000000] kvm-clock: cpu 0, msr 0:1f3de001, primary cpu clock" + 179.9ms (+0.0) [appliance] "[ 0.000000] kvm-clock: using sched offset of 54723613 cycles" + 179.9ms (+0.0) [appliance] "[ 0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns" + 181.0ms (+1.1) [appliance] "[ 0.000000] Zone ranges:" + 181.0ms (+0.0) [appliance] "[ 0.000000] DMA32 [mem 0x0000000000001000-0x000000001f3defff]" + 182.1ms (+1.1) [appliance] "[ 0.000000] Normal empty" + 182.1ms (+0.0) [appliance] "[ 0.000000] Device empty" + 182.1ms (+0.0) [appliance] "[ 0.000000] Movable zone start for each node" + 182.1ms (+0.0) [appliance] "[ 0.000000] Early memory node ranges" + 182.1ms (+0.0) [appliance] "[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]" + 183.3ms (+1.1) [appliance] "[ 0.000000] node 0: [mem 0x0000000000100000-0x000000001f3defff]" + 183.3ms (+0.0) [appliance] "[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000001f3defff]" + 184.4ms (+1.1) [appliance] "[ 0.000000] On node 0 totalpages: 127869" + 184.4ms (+0.0) [appliance] "[ 0.000000] DMA32 zone: 2000 pages used for memmap" + 184.4ms (+0.0) [appliance] "[ 0.000000] DMA32 zone: 21 pages reserved" + 185.5ms (+1.1) [appliance] "[ 0.000000] DMA32 zone: 127869 pages, LIFO batch:31" + 185.5ms (+0.0) [appliance] "[ 0.000000] ACPI: PM-Timer IO Port: 0x608" + 185.5ms (+0.0) [appliance] "[ 0.000000] ACPI: Local APIC address 0xfee00000" + 185.5ms (+0.0) [appliance] "[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])" + 186.7ms (+1.1) [appliance] "[ 0.000000] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23" + 186.7ms (+0.0) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)" + 187.8ms (+1.1) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)" + 187.8ms (+0.0) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)" + 188.9ms (+1.1) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)" + 188.9ms (+0.0) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)" + 188.9ms (+0.0) [appliance] "[ 0.000000] ACPI: IRQ0 used by override." + 190.1ms (+1.1) [appliance] "[ 0.000000] ACPI: IRQ5 used by override." + 190.1ms (+0.0) [appliance] "[ 0.000000] ACPI: IRQ9 used by override." + 190.1ms (+0.0) [appliance] "[ 0.000000] ACPI: IRQ10 used by override." + 190.1ms (+0.0) [appliance] "[ 0.000000] ACPI: IRQ11 used by override." + 191.2ms (+1.1) [appliance] "[ 0.000000] Using ACPI (MADT) for SMP configuration information" + 191.2ms (+0.0) [appliance] "[ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs" + 191.2ms (+0.0) [appliance] "[ 0.000000] e820: [mem 0x1f400000-0xfeffbfff] available for PCI devices" + 192.3ms (+1.1) [appliance] "[ 0.000000] Booting paravirtualized kernel on KVM" + 192.3ms (+0.0) [appliance] "[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns" + 193.5ms (+1.1) [appliance] "[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:1 nr_node_ids:1" + 193.5ms (+0.0) [appliance] "[ 0.000000] percpu: Embedded 29 pages/cpu @ffff88001f000000 s80384 r8192 d30208 u2097152" + 194.6ms (+1.1) [appliance] "[ 0.000000] pcpu-alloc: s80384 r8192 d30208 u2097152 alloc=1*2097152" + 194.6ms (+0.0) [appliance] "[ 0.000000] pcpu-alloc: [0] 0 " + 194.6ms (+0.0) [appliance] "[ 0.000000] KVM setup async PF for cpu 0" + 195.7ms (+1.1) [appliance] "[ 0.000000] kvm-stealtime: cpu 0, msr 1f00c440" + 195.7ms (+0.0) [appliance] "[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 125848" + 195.7ms (+0.0) [appliance] "[ 0.000000] Kernel command line: panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug " + 198.0ms (+2.3) [appliance] "[ 0.000000] PID hash table entries: 2048 (order: 2, 16384 bytes)" + 199.1ms (+1.1) [appliance] "[ 0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)" + 199.1ms (+0.0) [appliance] "[ 0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)" + 200.3ms (+1.1) [appliance] "[ 0.000000] Memory: 494496K/511476K available (2851K kernel code, 290K rwdata, 1180K rodata, 628K init, 404K bss, 16980K reserved, 0K cma-reserved)" + 200.3ms (+0.0) [appliance] "[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1" + 201.4ms (+1.1) [appliance] "[ 0.000000] Hierarchical RCU implementation." + 201.4ms (+0.0) [appliance] "[ 0.000000] \x09Build-time adjustment of leaf fanout to 64." + 201.4ms (+0.0) [appliance] "[ 0.000000] \x09RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=1." + 202.5ms (+1.1) [appliance] "[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=1" + 202.5ms (+0.0) [appliance] "[ 0.000000] NR_IRQS:4352 nr_irqs:256 16" + 202.5ms (+0.0) [appliance] "[ 0.000000] Console: colour *CGA 80x25" + 203.7ms (+1.1) [appliance] "[ 0.000000] console [ttyS0] enabled" + 203.7ms (+0.0) [appliance] "[ 0.000000] tsc: Detected 2593.990 MHz processor" + 203.7ms (+0.0) [appliance] "[ 0.052783] Calibrating delay loop (skipped) preset value.. 5187.98 BogoMIPS (lpj=10375960)" + 204.8ms (+1.1) [appliance] "[ 0.053411] pid_max: default: 4096 minimum: 301" + 204.8ms (+0.0) [appliance] "[ 0.053740] ACPI: Core revision 20160422" + 204.8ms (+0.0) [appliance] "[ 0.054044] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)" + 205.9ms (+1.1) [appliance] "[ 0.054539] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes)" + 205.9ms (+0.0) [appliance] "[ 0.055148] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0" + 207.0ms (+1.1) [appliance] "[ 0.055553] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0" + 211.6ms (+4.5) [appliance] "[ 0.059854] Freeing SMP alternatives memory: 16K (ffffffff816e7000 - ffffffff816eb000)" + 213.3ms (+1.8) [appliance] "[ 0.061622] smpboot: Max logical packages: 1" + 213.3ms (+0.0) [appliance] "[ 0.061957] smpboot: APIC(0) Converting physical 0 to logical package 0" + 214.8ms (+1.5) [appliance] "[ 0.063122] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1" + 214.8ms (+0.0) [appliance] "[ 0.063580] TSC deadline timer enabled" + 214.8ms (+0.0) [appliance] "[ 0.063847] smpboot: CPU0: Intel(R) Core(TM) i7-5600U CPU @ 2.60GHz (family: 0x6, model: 0x3d, stepping: 0x4)" + 216.0ms (+1.1) [appliance] "[ 0.064593] calling init_hw_perf_events+0x0/0x4fa @ 1" + 216.0ms (+0.0) [appliance] "[ 0.064951] Performance Events: 16-deep LBR, Broadwell events, Intel PMU driver." + 217.1ms (+1.1) [appliance] "[ 0.065561] ... version: 2" + 217.1ms (+0.0) [appliance] "[ 0.065844] ... bit width: 48" + 217.1ms (+0.0) [appliance] "[ 0.066136] ... generic registers: 4" + 217.1ms (+0.0) [appliance] "[ 0.066418] ... value mask: 0000ffffffffffff" + 218.2ms (+1.1) [appliance] "[ 0.066809] ... max period: 000000007fffffff" + 218.2ms (+0.0) [appliance] "[ 0.067181] ... fixed-purpose events: 3" + 218.2ms (+0.0) [appliance] "[ 0.067463] ... event mask: 000000070000000f" + 219.4ms (+1.1) [appliance] "[ 0.067868] initcall init_hw_perf_events+0x0/0x4fa returned 0 after 3906 usecs" + 219.4ms (+0.0) [appliance] "[ 0.068403] calling set_real_mode_permissions+0x0/0x91 @ 1" + 220.5ms (+1.1) [appliance] "[ 0.068806] initcall set_real_mode_permissions+0x0/0x91 returned 0 after 0 usecs" + 220.5ms (+0.0) [appliance] "[ 0.069336] calling validate_x2apic+0x0/0x2f @ 1" + 220.5ms (+0.0) [appliance] "[ 0.069666] initcall validate_x2apic+0x0/0x2f returned 0 after 0 usecs" + 221.6ms (+1.1) [appliance] "[ 0.070146] calling register_trigger_all_cpu_backtrace+0x0/0x11 @ 1" + 221.6ms (+0.0) [appliance] "[ 0.070588] initcall register_trigger_all_cpu_backtrace+0x0/0x11 returned 0 after 0 usecs" + 222.8ms (+1.1) [appliance] "[ 0.071177] calling spawn_ksoftirqd+0x0/0x28 @ 1" + 222.8ms (+0.0) [appliance] "[ 0.071517] initcall spawn_ksoftirqd+0x0/0x28 returned 0 after 0 usecs" + 222.8ms (+0.0) [appliance] "[ 0.071979] calling init_workqueues+0x0/0x374 @ 1" + 223.9ms (+1.1) [appliance] "[ 0.072365] initcall init_workqueues+0x0/0x374 returned 0 after 0 usecs" + 223.9ms (+0.0) [appliance] "[ 0.072826] calling migration_init+0x0/0x3e @ 1" + 223.9ms (+0.0) [appliance] "[ 0.073153] initcall migration_init+0x0/0x3e returned 0 after 0 usecs" + 225.0ms (+1.1) [appliance] "[ 0.073623] calling check_cpu_stall_init+0x0/0x16 @ 1" + 225.0ms (+0.0) [appliance] "[ 0.073984] initcall check_cpu_stall_init+0x0/0x16 returned 0 after 0 usecs" + 226.2ms (+1.1) [appliance] "[ 0.074486] calling rcu_spawn_gp_kthread+0x0/0xf8 @ 1" + 226.2ms (+0.0) [appliance] "[ 0.074861] initcall rcu_spawn_gp_kthread+0x0/0xf8 returned 0 after 0 usecs" + 226.2ms (+0.0) [appliance] "[ 0.075351] calling cpu_stop_init+0x0/0x97 @ 1" + 227.3ms (+1.1) [appliance] "[ 0.075699] initcall cpu_stop_init+0x0/0x97 returned 0 after 0 usecs" + 227.3ms (+0.0) [appliance] "[ 0.076152] calling rand_initialize+0x0/0x30 @ 1" + 227.3ms (+0.0) [appliance] "[ 0.076497] initcall rand_initialize+0x0/0x30 returned 0 after 0 usecs" + 228.4ms (+1.1) [appliance] "[ 0.076979] x86: Booted up 1 node, 1 CPUs" + 228.4ms (+0.0) [appliance] "[ 0.077269] smpboot: Total of 1 processors activated (5187.98 BogoMIPS)" + 229.6ms (+1.2) [appliance] "[ 0.077876] devtmpfs: initialized" + 229.6ms (+0.0) [appliance] "[ 0.078170] x86/mm: Memory block size: 128MB" + 231.3ms (+1.7) [appliance] "[ 0.079559] calling init_mmap_min_addr+0x0/0x11 @ 1" + 231.3ms (+0.0) [appliance] "[ 0.079929] initcall init_mmap_min_addr+0x0/0x11 returned 0 after 0 usecs" + 231.3ms (+0.0) [appliance] "[ 0.080411] calling net_ns_init+0x0/0x1ad @ 1" + 232.4ms (+1.1) [appliance] "[ 0.080740] initcall net_ns_init+0x0/0x1ad returned 0 after 0 usecs" + 232.4ms (+0.0) [appliance] "[ 0.081207] calling e820_mark_nvs_memory+0x0/0x36 @ 1" + 232.4ms (+0.0) [appliance] "[ 0.081568] initcall e820_mark_nvs_memory+0x0/0x36 returned 0 after 0 usecs" + 233.6ms (+1.1) [appliance] "[ 0.082079] calling init_cpu_syscore+0x0/0xf @ 1" + 233.6ms (+0.0) [appliance] "[ 0.082409] initcall init_cpu_syscore+0x0/0xf returned 0 after 0 usecs" + 233.6ms (+0.0) [appliance] "[ 0.082865] calling reboot_init+0x0/0x3 @ 1" + 234.7ms (+1.1) [appliance] "[ 0.083190] initcall reboot_init+0x0/0x3 returned 0 after 0 usecs" + 234.7ms (+0.0) [appliance] "[ 0.083615] calling wq_sysfs_init+0x0/0x26 @ 1" + 234.7ms (+0.0) [appliance] "[ 0.083937] initcall wq_sysfs_init+0x0/0x26 returned 0 after 0 usecs" + 235.8ms (+1.1) [appliance] "[ 0.084407] calling ksysfs_init+0x0/0x8e @ 1" + 235.8ms (+0.0) [appliance] "[ 0.084721] initcall ksysfs_init+0x0/0x8e returned 0 after 0 usecs" + 235.8ms (+0.0) [appliance] "[ 0.085156] calling init_jiffies_clocksource+0x0/0x13 @ 1" + 237.0ms (+1.1) [appliance] "[ 0.085561] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns" + 237.0ms (+0.0) [appliance] "[ 0.086239] initcall init_jiffies_clocksource+0x0/0x13 returned 0 after 0 usecs" + 238.1ms (+1.1) [appliance] "[ 0.086771] calling init_per_zone_wmark_min+0x0/0x9a @ 1" + 238.1ms (+0.0) [appliance] "[ 0.087154] initcall init_per_zone_wmark_min+0x0/0x9a returned 0 after 0 usecs" + 239.2ms (+1.1) [appliance] "[ 0.087679] calling init_zero_pfn+0x0/0x2f @ 1" + 239.2ms (+0.0) [appliance] "[ 0.087996] initcall init_zero_pfn+0x0/0x2f returned 0 after 0 usecs" + 239.2ms (+0.0) [appliance] "[ 0.088444] calling fsnotify_init+0x0/0x1f @ 1" + 240.4ms (+1.1) [appliance] "[ 0.088785] initcall fsnotify_init+0x0/0x1f returned 0 after 0 usecs" + 240.4ms (+0.0) [appliance] "[ 0.089228] calling filelock_init+0x0/0x9a @ 1" + 240.4ms (+0.0) [appliance] "[ 0.089546] initcall filelock_init+0x0/0x9a returned 0 after 0 usecs" + 241.5ms (+1.1) [appliance] "[ 0.090011] calling init_script_binfmt+0x0/0x11 @ 1" + 241.5ms (+0.0) [appliance] "[ 0.090359] initcall init_script_binfmt+0x0/0x11 returned 0 after 0 usecs" + 241.5ms (+0.0) [appliance] "[ 0.090828] calling init_elf_binfmt+0x0/0x11 @ 1" + 242.6ms (+1.1) [appliance] "[ 0.091182] initcall init_elf_binfmt+0x0/0x11 returned 0 after 0 usecs" + 242.6ms (+0.0) [appliance] "[ 0.091636] calling prandom_init+0x0/0xaa @ 1" + 242.6ms (+0.0) [appliance] "[ 0.091947] initcall prandom_init+0x0/0xaa returned 0 after 0 usecs" + 243.8ms (+1.1) [appliance] "[ 0.092407] calling cpuidle_init+0x0/0x36 @ 1" + 243.8ms (+0.0) [appliance] "[ 0.092724] initcall cpuidle_init+0x0/0x36 returned 0 after 0 usecs" + 243.8ms (+0.0) [appliance] "[ 0.093180] calling sock_init+0x0/0x78 @ 1" + 244.9ms (+1.1) [appliance] "[ 0.093493] initcall sock_init+0x0/0x78 returned 0 after 0 usecs" + 244.9ms (+0.0) [appliance] "[ 0.093913] calling netlink_proto_init+0x0/0x158 @ 1" + 244.9ms (+0.0) [appliance] "[ 0.094304] NET: Registered protocol family 16" + 246.0ms (+1.1) [appliance] "[ 0.094630] initcall netlink_proto_init+0x0/0x158 returned 0 after 0 usecs" + 246.0ms (+0.0) [appliance] "[ 0.095131] calling bdi_class_init+0x0/0x2f @ 1" + 247.1ms (+1.1) [appliance] "[ 0.095469] initcall bdi_class_init+0x0/0x2f returned 0 after 0 usecs" + 247.1ms (+0.0) [appliance] "[ 0.095926] calling mm_sysfs_init+0x0/0x24 @ 1" + 247.1ms (+0.0) [appliance] "[ 0.096246] initcall mm_sysfs_init+0x0/0x24 returned 0 after 0 usecs" + 248.3ms (+1.1) [appliance] "[ 0.096711] calling kobject_uevent_init+0x0/0xc @ 1" + 248.3ms (+0.0) [appliance] "[ 0.097064] initcall kobject_uevent_init+0x0/0xc returned 0 after 0 usecs" + 248.3ms (+0.0) [appliance] "[ 0.097533] calling pcibus_class_init+0x0/0x13 @ 1" + 249.4ms (+1.1) [appliance] "[ 0.097898] initcall pcibus_class_init+0x0/0x13 returned 0 after 0 usecs" + 249.4ms (+0.0) [appliance] "[ 0.098368] calling pci_driver_init+0x0/0xc @ 1" + 249.4ms (+0.0) [appliance] "[ 0.098693] initcall pci_driver_init+0x0/0xc returned 0 after 0 usecs" + 250.5ms (+1.1) [appliance] "[ 0.099164] calling tty_class_init+0x0/0x2f @ 1" + 250.5ms (+0.0) [appliance] "[ 0.099487] initcall tty_class_init+0x0/0x2f returned 0 after 0 usecs" + 250.5ms (+0.0) [appliance] "[ 0.099945] calling vtconsole_class_init+0x0/0xd3 @ 1" + 251.7ms (+1.1) [appliance] "[ 0.100321] initcall vtconsole_class_init+0x0/0xd3 returned 0 after 0 usecs" + 251.7ms (+0.0) [appliance] "[ 0.100803] calling init_ladder+0x0/0x16 @ 1" + 252.8ms (+1.1) [appliance] "[ 0.101127] cpuidle: using governor ladder" + 252.8ms (+0.0) [appliance] "[ 0.101427] initcall init_ladder+0x0/0x16 returned 0 after 0 usecs" + 252.8ms (+0.0) [appliance] "[ 0.101876] calling bts_init+0x0/0xa4 @ 1" + 252.8ms (+0.0) [appliance] "[ 0.102167] initcall bts_init+0x0/0xa4 returned -19 after 0 usecs" + 253.9ms (+1.1) [appliance] "[ 0.102612] calling pt_init+0x0/0x30a @ 1" + 253.9ms (+0.0) [appliance] "[ 0.102898] initcall pt_init+0x0/0x30a returned -19 after 0 usecs" + 253.9ms (+0.0) [appliance] "[ 0.103336] calling boot_params_ksysfs_init+0x0/0x22f @ 1" + 255.1ms (+1.1) [appliance] "[ 0.103729] initcall boot_params_ksysfs_init+0x0/0x22f returned 0 after 0 usecs" + 255.1ms (+0.0) [appliance] "[ 0.104237] calling sbf_init+0x0/0xfc @ 1" + 256.2ms (+1.1) [appliance] "[ 0.104546] initcall sbf_init+0x0/0xfc returned 0 after 0 usecs" + 256.2ms (+0.0) [appliance] "[ 0.104958] calling arch_kdebugfs_init+0x0/0xe @ 1" + 256.2ms (+0.0) [appliance] "[ 0.105306] initcall arch_kdebugfs_init+0x0/0xe returned 0 after 0 usecs" + 257.3ms (+1.1) [appliance] "[ 0.105796] calling ffh_cstate_init+0x0/0x25 @ 1" + 257.3ms (+0.0) [appliance] "[ 0.106128] initcall ffh_cstate_init+0x0/0x25 returned 0 after 0 usecs" + 257.3ms (+0.0) [appliance] "[ 0.106582] calling activate_jump_labels+0x0/0x73 @ 1" + 258.5ms (+1.1) [appliance] "[ 0.106962] initcall activate_jump_labels+0x0/0x73 returned 0 after 0 usecs" + 258.5ms (+0.0) [appliance] "[ 0.107447] calling acpi_pci_init+0x0/0x49 @ 1" + 258.5ms (+0.0) [appliance] "[ 0.107764] ACPI: bus type PCI registered" + 259.6ms (+1.1) [appliance] "[ 0.108072] initcall acpi_pci_init+0x0/0x49 returned 0 after 0 usecs" + 259.6ms (+0.0) [appliance] "[ 0.108513] calling pci_arch_init+0x0/0x53 @ 1" + 259.6ms (+0.0) [appliance] "[ 0.108849] PCI: Using configuration type 1 for base access" + 260.8ms (+1.1) [appliance] "[ 0.109262] initcall pci_arch_init+0x0/0x53 returned 0 after 0 usecs" + 260.8ms (+0.0) [appliance] "[ 0.109730] calling init_vdso+0x0/0x2c @ 1" + 260.8ms (+0.0) [appliance] "[ 0.110031] initcall init_vdso+0x0/0x2c returned 0 after 0 usecs" + 261.9ms (+1.1) [appliance] "[ 0.110476] calling fixup_ht_bug+0x0/0xb3 @ 1" + 261.9ms (+0.0) [appliance] "[ 0.110787] initcall fixup_ht_bug+0x0/0xb3 returned 0 after 0 usecs" + 261.9ms (+0.0) [appliance] "[ 0.111226] calling topology_init+0x0/0x49 @ 1" + 263.0ms (+1.1) [appliance] "[ 0.111575] initcall topology_init+0x0/0x49 returned 0 after 0 usecs" + 263.0ms (+0.0) [appliance] "[ 0.112019] calling uid_cache_init+0x0/0xc7 @ 1" + 263.0ms (+0.0) [appliance] "[ 0.112345] initcall uid_cache_init+0x0/0xc7 returned 0 after 0 usecs" + 264.1ms (+1.1) [appliance] "[ 0.112816] calling param_sysfs_init+0x0/0x1ae @ 1" + 264.1ms (+0.0) [appliance] "[ 0.113335] initcall param_sysfs_init+0x0/0x1ae returned 0 after 0 usecs" + 265.3ms (+1.1) [appliance] "[ 0.113831] calling oom_init+0x0/0x5a @ 1" + 265.3ms (+0.0) [appliance] "[ 0.114131] initcall oom_init+0x0/0x5a returned 0 after 0 usecs" + 265.3ms (+0.0) [appliance] "[ 0.114546] calling default_bdi_init+0x0/0x36 @ 1" + 266.4ms (+1.1) [appliance] "[ 0.114918] initcall default_bdi_init+0x0/0x36 returned 0 after 0 usecs" + 266.4ms (+0.0) [appliance] "[ 0.115383] calling percpu_enable_async+0x0/0xa @ 1" + 266.4ms (+0.0) [appliance] "[ 0.115728] initcall percpu_enable_async+0x0/0xa returned 0 after 0 usecs" + 267.5ms (+1.1) [appliance] "[ 0.116224] calling init_reserve_notifier+0x0/0x1f @ 1" + 267.5ms (+0.0) [appliance] "[ 0.116589] initcall init_reserve_notifier+0x0/0x1f returned 0 after 0 usecs" + 268.7ms (+1.1) [appliance] "[ 0.117104] calling init_admin_reserve+0x0/0x40 @ 1" + 268.7ms (+0.0) [appliance] "[ 0.117450] initcall init_admin_reserve+0x0/0x40 returned 0 after 0 usecs" + 268.7ms (+0.0) [appliance] "[ 0.117926] calling init_user_reserve+0x0/0x40 @ 1" + 269.8ms (+1.1) [appliance] "[ 0.118290] initcall init_user_reserve+0x0/0x40 returned 0 after 0 usecs" + 269.8ms (+0.0) [appliance] "[ 0.118769] calling crypto_wq_init+0x0/0x2c @ 1" + 269.8ms (+0.0) [appliance] "[ 0.119104] initcall crypto_wq_init+0x0/0x2c returned 0 after 0 usecs" + 270.9ms (+1.1) [appliance] "[ 0.119580] calling cryptomgr_init+0x0/0xc @ 1" + 270.9ms (+0.0) [appliance] "[ 0.119897] initcall cryptomgr_init+0x0/0xc returned 0 after 0 usecs" + 272.1ms (+1.1) [appliance] "[ 0.120357] calling init_bio+0x0/0xa9 @ 1" + 272.1ms (+0.0) [appliance] "[ 0.120662] initcall init_bio+0x0/0xa9 returned 0 after 0 usecs" + 272.1ms (+0.0) [appliance] "[ 0.121078] calling blk_settings_init+0x0/0x25 @ 1" + 272.1ms (+0.0) [appliance] "[ 0.121417] initcall blk_settings_init+0x0/0x25 returned 0 after 0 usecs" + 273.2ms (+1.1) [appliance] "[ 0.121903] calling blk_ioc_init+0x0/0x25 @ 1" + 273.2ms (+0.0) [appliance] "[ 0.122224] initcall blk_ioc_init+0x0/0x25 returned 0 after 0 usecs" + 274.3ms (+1.1) [appliance] "[ 0.122682] calling blk_softirq_init+0x0/0x59 @ 1" + 274.3ms (+0.0) [appliance] "[ 0.123015] initcall blk_softirq_init+0x0/0x59 returned 0 after 0 usecs" + 274.3ms (+0.0) [appliance] "[ 0.123474] calling blk_mq_init+0x0/0x8 @ 1" + 275.5ms (+1.1) [appliance] "[ 0.123795] initcall blk_mq_init+0x0/0x8 returned 0 after 0 usecs" + 275.5ms (+0.0) [appliance] "[ 0.124220] calling genhd_device_init+0x0/0x71 @ 1" + 275.5ms (+0.0) [appliance] "[ 0.124572] initcall genhd_device_init+0x0/0x71 returned 0 after 0 usecs" + 276.6ms (+1.1) [appliance] "[ 0.125065] calling pci_slot_init+0x0/0x40 @ 1" + 276.6ms (+0.0) [appliance] "[ 0.125385] initcall pci_slot_init+0x0/0x40 returned 0 after 0 usecs" + 276.6ms (+0.0) [appliance] "[ 0.125827] calling acpi_init+0x0/0x28d @ 1" + 277.7ms (+1.1) [appliance] "[ 0.126157] ACPI: Added _OSI(Module Device)" + 277.7ms (+0.0) [appliance] "[ 0.126456] ACPI: Added _OSI(Processor Device)" + 277.7ms (+0.0) [appliance] "[ 0.126768] ACPI: Added _OSI(3.0 _SCP Extensions)" + 277.7ms (+0.0) [appliance] "[ 0.127111] ACPI: Added _OSI(Processor Aggregator Device)" + 280.2ms (+2.5) [appliance] "[ 0.128479] ACPI: 2 ACPI AML tables successfully acquired and loaded" + 280.2ms (+0.0) [appliance] "[ 0.128955] " + 281.5ms (+1.3) [appliance] "[ 0.129763] ACPI: Interpreter enabled" + 281.5ms (+0.0) [appliance] "[ 0.130052] ACPI: (supports S0 S5)" + 281.5ms (+0.0) [appliance] "[ 0.130294] ACPI: Using IOAPIC for interrupt routing" + 281.5ms (+0.0) [appliance] "[ 0.130654] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug" + 285.7ms (+4.2) [appliance] "[ 0.133930] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])" + 285.7ms (+0.0) [appliance] "[ 0.134393] acpi PNP0A03:00: _OSC: OS supports [Segments]" + 285.7ms (+0.0) [appliance] "[ 0.134781] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM" + 286.8ms (+1.1) [appliance] "[ 0.135283] PCI host bridge to bus 0000:00" + 286.8ms (+0.0) [appliance] "[ 0.135573] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]" + 286.8ms (+0.0) [appliance] "[ 0.136045] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]" + 287.9ms (+1.1) [appliance] "[ 0.136536] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]" + 287.9ms (+0.0) [appliance] "[ 0.137056] pci_bus 0000:00: root bus resource [mem 0x1f400000-0xfebfffff window]" + 289.0ms (+1.1) [appliance] "[ 0.137600] pci_bus 0000:00: root bus resource [bus 00-ff]" + 289.0ms (+0.0) [appliance] "[ 0.138006] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000" + 290.4ms (+1.4) [appliance] "[ 0.138685] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100" + 290.4ms (+0.0) [appliance] "[ 0.139462] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180" + 304.9ms (+14.5) [appliance] "[ 0.153159] pci 0000:00:01.1: reg 0x20: [io 0xc080-0xc08f]" + 308.6ms (+3.7) [appliance] "[ 0.156840] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]" + 308.6ms (+0.0) [appliance] "[ 0.157390] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]" + 308.6ms (+0.0) [appliance] "[ 0.157851] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]" + 309.8ms (+1.1) [appliance] "[ 0.158416] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]" + 309.8ms (+0.0) [appliance] "[ 0.158998] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000" + 310.9ms (+1.1) [appliance] "[ 0.159704] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI" + 310.9ms (+0.0) [appliance] "[ 0.160224] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB" + 312.0ms (+1.1) [appliance] "[ 0.160890] pci 0000:00:02.0: [1af4:1005] type 00 class 0x00ff00" + 315.4ms (+3.4) [appliance] "[ 0.163670] pci 0000:00:02.0: reg 0x10: [io 0xc040-0xc05f]" + 324.4ms (+9.0) [appliance] "[ 0.172633] pci 0000:00:03.0: [1af4:1004] type 00 class 0x010000" + 326.9ms (+2.5) [appliance] "[ 0.175204] pci 0000:00:03.0: reg 0x10: [io 0xc000-0xc03f]" + 332.9ms (+6.0) [appliance] "[ 0.181132] pci 0000:00:03.0: reg 0x14: [mem 0xfebfe000-0xfebfefff]" + 352.3ms (+19.4) [appliance] "[ 0.200523] pci 0000:00:04.0: [1af4:1003] type 00 class 0x078000" + 359.6ms (+7.3) [appliance] "[ 0.207840] pci 0000:00:04.0: reg 0x10: [io 0xc060-0xc07f]" + 361.8ms (+2.2) [appliance] "[ 0.210051] pci 0000:00:04.0: reg 0x14: [mem 0xfebff000-0xfebfffff]" + 378.8ms (+17.1) [appliance] "[ 0.227067] pci_bus 0000:00: on NUMA node 0" + 378.8ms (+0.0) [appliance] "[ 0.227578] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)" + 378.8ms (+0.0) [appliance] "[ 0.228086] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)" + 380.0ms (+1.1) [appliance] "[ 0.228605] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)" + 380.0ms (+0.0) [appliance] "[ 0.229101] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)" + 381.1ms (+1.1) [appliance] "[ 0.229602] ACPI: PCI Interrupt Link [LNKS] (IRQs *9)" + 382.2ms (+1.1) [appliance] "[ 0.231538] ACPI: Enabled 16 GPEs in block 00 to 0F" + 383.3ms (+1.1) [appliance] "[ 0.231940] initcall acpi_init+0x0/0x28d returned 0 after 89843 usecs" + 383.3ms (+0.0) [appliance] "[ 0.232404] calling pnp_init+0x0/0xc @ 1" + 383.3ms (+0.0) [appliance] "[ 0.232711] initcall pnp_init+0x0/0xc returned 0 after 0 usecs" + 384.5ms (+1.1) [appliance] "[ 0.233136] calling misc_init+0x0/0xb5 @ 1" + 384.5ms (+0.0) [appliance] "[ 0.233439] initcall misc_init+0x0/0xb5 returned 0 after 0 usecs" + 384.5ms (+0.0) [appliance] "[ 0.233886] calling vga_arb_device_init+0x0/0x19e @ 1" + 385.6ms (+1.2) [appliance] "[ 0.234288] vgaarb: loaded" + 385.6ms (+0.0) [appliance] "[ 0.234487] initcall vga_arb_device_init+0x0/0x19e returned 0 after 0 usecs" + 385.6ms (+0.0) [appliance] "[ 0.234987] calling libnvdimm_init+0x0/0x30 @ 1" + 386.8ms (+1.1) [appliance] "[ 0.235349] initcall libnvdimm_init+0x0/0x30 returned 0 after 0 usecs" + 386.8ms (+0.0) [appliance] "[ 0.235806] calling init_scsi+0x0/0x7e @ 1" + 386.8ms (+0.0) [appliance] "[ 0.236148] SCSI subsystem initialized" + 387.9ms (+1.1) [appliance] "[ 0.236431] initcall init_scsi+0x0/0x7e returned 0 after 0 usecs" + 387.9ms (+0.0) [appliance] "[ 0.236852] calling serio_init+0x0/0x25 @ 1" + 387.9ms (+0.0) [appliance] "[ 0.237162] initcall serio_init+0x0/0x25 returned 0 after 0 usecs" + 389.0ms (+1.1) [appliance] "[ 0.237610] calling input_init+0x0/0xfc @ 1" + 389.1ms (+0.0) [appliance] "[ 0.237923] initcall input_init+0x0/0xfc returned 0 after 0 usecs" + 389.1ms (+0.0) [appliance] "[ 0.238354] calling power_supply_class_init+0x0/0x3b @ 1" + 390.2ms (+1.1) [appliance] "[ 0.238759] initcall power_supply_class_init+0x0/0x3b returned 0 after 0 usecs" + 390.2ms (+0.0) [appliance] "[ 0.239267] calling pci_subsys_init+0x0/0x43 @ 1" + 391.3ms (+1.1) [appliance] "[ 0.239614] PCI: Using ACPI for IRQ routing" + 391.3ms (+0.0) [appliance] "[ 0.239918] PCI: pci_cache_line_size set to 64 bytes" + 391.3ms (+0.0) [appliance] "[ 0.240343] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]" + 392.5ms (+1.1) [appliance] "[ 0.240793] e820: reserve RAM buffer [mem 0x1f3df000-0x1fffffff]" + 392.5ms (+0.0) [appliance] "[ 0.241215] initcall pci_subsys_init+0x0/0x43 returned 0 after 0 usecs" + 392.5ms (+0.0) [appliance] "[ 0.241676] calling proto_init+0x0/0xc @ 1" + 393.6ms (+1.1) [appliance] "[ 0.242000] initcall proto_init+0x0/0xc returned 0 after 0 usecs" + 393.6ms (+0.0) [appliance] "[ 0.242424] calling net_dev_init+0x0/0x1b0 @ 1" + 393.6ms (+0.0) [appliance] "[ 0.242785] initcall net_dev_init+0x0/0x1b0 returned 0 after 0 usecs" + 394.7ms (+1.1) [appliance] "[ 0.243259] calling neigh_init+0x0/0x7b @ 1" + 394.7ms (+0.0) [appliance] "[ 0.243562] initcall neigh_init+0x0/0x7b returned 0 after 0 usecs" + 394.7ms (+0.0) [appliance] "[ 0.243990] calling genl_init+0x0/0x84 @ 1" + 395.9ms (+1.1) [appliance] "[ 0.244316] initcall genl_init+0x0/0x84 returned 0 after 0 usecs" + 395.9ms (+0.0) [appliance] "[ 0.244761] calling nmi_warning_debugfs+0x0/0x3 @ 1" + 395.9ms (+0.0) [appliance] "[ 0.245112] initcall nmi_warning_debugfs+0x0/0x3 returned 0 after 0 usecs" + 397.0ms (+1.1) [appliance] "[ 0.245611] calling hpet_late_init+0x0/0xbc @ 1" + 397.0ms (+0.0) [appliance] "[ 0.245936] initcall hpet_late_init+0x0/0xbc returned -19 after 0 usecs" + 397.0ms (+0.0) [appliance] "[ 0.246419] calling clocksource_done_booting+0x0/0x3d @ 1" + 398.1ms (+1.1) [appliance] "[ 0.246817] clocksource: Switched to clocksource kvm-clock" + 398.1ms (+0.0) [appliance] "[ 0.247206] initcall clocksource_done_booting+0x0/0x3d returned 0 after 380 usecs" + 399.3ms (+1.1) [appliance] "[ 0.247752] calling init_pipe_fs+0x0/0x42 @ 1" + 399.3ms (+0.0) [appliance] "[ 0.248074] initcall init_pipe_fs+0x0/0x42 returned 0 after 5 usecs" + 399.3ms (+0.0) [appliance] "[ 0.248513] calling inotify_user_setup+0x0/0x46 @ 1" + 400.4ms (+1.1) [appliance] "[ 0.248885] initcall inotify_user_setup+0x0/0x46 returned 0 after 2 usecs" + 400.4ms (+0.0) [appliance] "[ 0.249363] calling eventpoll_init+0x0/0xdd @ 1" + 400.4ms (+0.0) [appliance] "[ 0.249690] initcall eventpoll_init+0x0/0xdd returned 0 after 0 usecs" + 401.5ms (+1.1) [appliance] "[ 0.250166] calling anon_inode_init+0x0/0x56 @ 1" + 401.5ms (+0.0) [appliance] "[ 0.250504] initcall anon_inode_init+0x0/0x56 returned 0 after 2 usecs" + 402.7ms (+1.2) [appliance] "[ 0.250974] calling proc_locks_init+0x0/0x1d @ 1" + 402.7ms (+0.0) [appliance] "[ 0.251337] initcall proc_locks_init+0x0/0x1d returned 0 after 1 usecs" + 402.7ms (+0.0) [appliance] "[ 0.251795] calling proc_cmdline_init+0x0/0x1d @ 1" + 403.8ms (+1.1) [appliance] "[ 0.252155] initcall proc_cmdline_init+0x0/0x1d returned 0 after 0 usecs" + 403.8ms (+0.0) [appliance] "[ 0.252641] calling proc_consoles_init+0x0/0x1d @ 1" + 403.8ms (+0.0) [appliance] "[ 0.253002] initcall proc_consoles_init+0x0/0x1d returned 0 after 0 usecs" + 404.9ms (+1.1) [appliance] "[ 0.253496] calling proc_cpuinfo_init+0x0/0x1d @ 1" + 404.9ms (+0.0) [appliance] "[ 0.253850] initcall proc_cpuinfo_init+0x0/0x1d returned 0 after 0 usecs" + 404.9ms (+0.0) [appliance] "[ 0.254335] calling proc_devices_init+0x0/0x1d @ 1" + 406.1ms (+1.1) [appliance] "[ 0.254687] initcall proc_devices_init+0x0/0x1d returned 0 after 0 usecs" + 406.1ms (+0.0) [appliance] "[ 0.255164] calling proc_interrupts_init+0x0/0x1d @ 1" + 407.2ms (+1.1) [appliance] "[ 0.255547] initcall proc_interrupts_init+0x0/0x1d returned 0 after 0 usecs" + 407.2ms (+0.0) [appliance] "[ 0.256035] calling proc_loadavg_init+0x0/0x1d @ 1" + 407.2ms (+0.0) [appliance] "[ 0.256381] initcall proc_loadavg_init+0x0/0x1d returned 0 after 1 usecs" + 408.3ms (+1.1) [appliance] "[ 0.256871] calling proc_meminfo_init+0x0/0x1d @ 1" + 408.3ms (+0.0) [appliance] "[ 0.257217] initcall proc_meminfo_init+0x0/0x1d returned 0 after 0 usecs" + 408.3ms (+0.0) [appliance] "[ 0.257683] calling proc_stat_init+0x0/0x1d @ 1" + 409.5ms (+1.1) [appliance] "[ 0.258029] initcall proc_stat_init+0x0/0x1d returned 0 after 0 usecs" + 409.5ms (+0.0) [appliance] "[ 0.258479] calling proc_uptime_init+0x0/0x1d @ 1" + 409.5ms (+0.0) [appliance] "[ 0.258817] initcall proc_uptime_init+0x0/0x1d returned 0 after 0 usecs" + 410.6ms (+1.2) [appliance] "[ 0.259305] calling proc_version_init+0x0/0x1d @ 1" + 410.6ms (+0.0) [appliance] "[ 0.259647] initcall proc_version_init+0x0/0x1d returned 0 after 0 usecs" + 411.7ms (+1.1) [appliance] "[ 0.260138] calling proc_softirqs_init+0x0/0x1d @ 1" + 411.7ms (+0.0) [appliance] "[ 0.260484] initcall proc_softirqs_init+0x0/0x1d returned 0 after 0 usecs" + 411.7ms (+0.0) [appliance] "[ 0.260955] calling proc_kmsg_init+0x0/0x20 @ 1" + 412.9ms (+1.1) [appliance] "[ 0.261305] initcall proc_kmsg_init+0x0/0x20 returned 0 after 0 usecs" + 412.9ms (+0.0) [appliance] "[ 0.261753] calling proc_page_init+0x0/0x3d @ 1" + 412.9ms (+0.0) [appliance] "[ 0.262080] initcall proc_page_init+0x0/0x3d returned 0 after 0 usecs" + 414.0ms (+1.1) [appliance] "[ 0.262553] calling init_ramfs_fs+0x0/0x1a @ 1" + 414.0ms (+0.0) [appliance] "[ 0.262875] initcall init_ramfs_fs+0x0/0x1a returned 0 after 0 usecs" + 414.0ms (+0.0) [appliance] "[ 0.263319] calling blk_scsi_ioctl_init+0x0/0x365 @ 1" + 415.1ms (+1.1) [appliance] "[ 0.263698] initcall blk_scsi_ioctl_init+0x0/0x365 returned 0 after 0 usecs" + 415.1ms (+0.0) [appliance] "[ 0.264185] calling acpi_event_init+0x0/0x33 @ 1" + 415.1ms (+0.0) [appliance] "[ 0.264528] initcall acpi_event_init+0x0/0x33 returned 0 after 3 usecs" + 416.3ms (+1.1) [appliance] "[ 0.264994] calling pnp_system_init+0x0/0xc @ 1" + 416.3ms (+0.0) [appliance] "[ 0.265325] initcall pnp_system_init+0x0/0xc returned 0 after 5 usecs" + 417.4ms (+1.1) [appliance] "[ 0.265795] calling pnpacpi_init+0x0/0x69 @ 1" + 417.4ms (+0.0) [appliance] "[ 0.266110] pnp: PnP ACPI init" + 417.4ms (+0.0) [appliance] "[ 0.266354] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)" + 418.6ms (+1.2) [appliance] "[ 0.266843] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)" + 418.6ms (+0.0) [appliance] "[ 0.267345] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)" + 418.6ms (+0.0) [appliance] "[ 0.267805] pnp 00:03: [dma 2]" + 419.7ms (+1.1) [appliance] "[ 0.268047] pnp 00:03: Plug and Play ACPI device, IDs PNP0700 (active)" + 419.7ms (+0.0) [appliance] "[ 0.268545] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)" + 421.3ms (+1.6) [appliance] "[ 0.269584] pnp: PnP ACPI: found 5 devices" + 421.3ms (+0.0) [appliance] "[ 0.269896] initcall pnpacpi_init+0x0/0x69 returned 0 after 3696 usecs" + 421.3ms (+0.0) [appliance] "[ 0.270353] calling chr_dev_init+0x0/0xa4 @ 1" + 422.8ms (+1.5) [appliance] "[ 0.271054] initcall chr_dev_init+0x0/0xa4 returned 0 after 379 usecs" + 422.8ms (+0.0) [appliance] "[ 0.271528] calling thermal_init+0x0/0x6f @ 1" + 422.8ms (+0.0) [appliance] "[ 0.271845] initcall thermal_init+0x0/0x6f returned 0 after 5 usecs" + 423.9ms (+1.1) [appliance] "[ 0.272308] calling init_acpi_pm_clocksource+0x0/0xd2 @ 1" + 428.9ms (+5.1) [appliance] "[ 0.277211] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns" + 428.9ms (+0.0) [appliance] "[ 0.277848] initcall init_acpi_pm_clocksource+0x0/0xd2 returned 0 after 5037 usecs" + 430.1ms (+1.1) [appliance] "[ 0.278390] calling pcibios_assign_resources+0x0/0xbb @ 1" + 430.1ms (+0.0) [appliance] "[ 0.278785] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]" + 430.1ms (+0.0) [appliance] "[ 0.279222] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]" + 431.2ms (+1.1) [appliance] "[ 0.279676] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]" + 431.2ms (+0.0) [appliance] "[ 0.280155] pci_bus 0000:00: resource 7 [mem 0x1f400000-0xfebfffff window]" + 432.4ms (+1.1) [appliance] "[ 0.280646] initcall pcibios_assign_resources+0x0/0xbb returned 0 after 1820 usecs" + 432.4ms (+0.0) [appliance] "[ 0.281183] calling sysctl_core_init+0x0/0x26 @ 1" + 432.4ms (+0.0) [appliance] "[ 0.281525] initcall sysctl_core_init+0x0/0x26 returned 0 after 6 usecs" + 433.5ms (+1.1) [appliance] "[ 0.282010] calling eth_offload_init+0x0/0xf @ 1" + 433.5ms (+0.0) [appliance] "[ 0.282342] initcall eth_offload_init+0x0/0xf returned 0 after 0 usecs" + 433.5ms (+0.0) [appliance] "[ 0.282797] calling af_unix_init+0x0/0x49 @ 1" + 434.6ms (+1.1) [appliance] "[ 0.283140] NET: Registered protocol family 1" + 434.6ms (+0.0) [appliance] "[ 0.283451] initcall af_unix_init+0x0/0x49 returned 0 after 304 usecs" + 434.6ms (+0.0) [appliance] "[ 0.283900] calling pci_apply_final_quirks+0x0/0xfe @ 1" + 435.8ms (+1.1) [appliance] "[ 0.284296] pci 0000:00:00.0: Limiting direct PCI/PCI transfers" + 435.8ms (+0.0) [appliance] "[ 0.284716] pci 0000:00:01.0: PIIX3: Enabling Passive Release" + 435.8ms (+0.0) [appliance] "[ 0.285129] pci 0000:00:01.0: Activating ISA DMA hang workarounds" + 436.9ms (+1.1) [appliance] "[ 0.285607] PCI: CLS 0 bytes, default 64" + 436.9ms (+0.0) [appliance] "[ 0.285885] initcall pci_apply_final_quirks+0x0/0xfe returned 0 after 1552 usecs" + 438.0ms (+1.1) [appliance] "[ 0.286423] calling acpi_reserve_resources+0x0/0xe6 @ 1" + 438.0ms (+0.0) [appliance] "[ 0.286798] initcall acpi_reserve_resources+0x0/0xe6 returned 0 after 2 usecs" + 438.0ms (+0.0) [appliance] "[ 0.287303] calling populate_rootfs+0x0/0xa1 @ 1" + 439.1ms (+1.1) [appliance] "[ 0.287675] Unpacking initramfs..." + 439.1ms (+0.0) [appliance] "[ 0.288015] Freeing initrd memory: 164K (ffff88001f3a7000 - ffff88001f3d0000)" + 439.1ms (+0.0) [appliance] "[ 0.288536] initcall populate_rootfs+0x0/0xa1 returned 0 after 860 usecs" + 440.3ms (+1.1) [appliance] "[ 0.289014] calling pci_iommu_init+0x0/0x37 @ 1" + 440.3ms (+0.0) [appliance] "[ 0.289352] initcall pci_iommu_init+0x0/0x37 returned 0 after 0 usecs" + 441.4ms (+1.1) [appliance] "[ 0.289849] calling amd_ibs_init+0x0/0x2d9 @ 1" + 441.4ms (+0.0) [appliance] "[ 0.290171] initcall amd_ibs_init+0x0/0x2d9 returned -19 after 0 usecs" + 441.4ms (+0.0) [appliance] "[ 0.290624] calling msr_init+0x0/0xbe @ 1" + 442.5ms (+1.1) [appliance] "[ 0.290951] initcall msr_init+0x0/0xbe returned 0 after 5 usecs" + 442.5ms (+0.0) [appliance] "[ 0.291369] calling intel_cqm_init+0x0/0x495 @ 1" + 442.5ms (+0.0) [appliance] "[ 0.291699] initcall intel_cqm_init+0x0/0x495 returned -19 after 0 usecs" + 443.7ms (+1.1) [appliance] "[ 0.292188] calling rapl_pmu_init+0x0/0x254 @ 1" + 443.7ms (+0.0) [appliance] "[ 0.292511] initcall rapl_pmu_init+0x0/0x254 returned -1 after 1 usecs" + 443.7ms (+0.0) [appliance] "[ 0.292966] calling intel_uncore_init+0x0/0x2cf @ 1" + 444.8ms (+1.1) [appliance] "[ 0.293335] initcall intel_uncore_init+0x0/0x2cf returned -19 after 0 usecs" + 444.8ms (+0.0) [appliance] "[ 0.293818] calling cstate_pmu_init+0x0/0x179 @ 1" + 444.8ms (+0.0) [appliance] "[ 0.294155] initcall cstate_pmu_init+0x0/0x179 returned -19 after 0 usecs" + 445.9ms (+1.1) [appliance] "[ 0.294649] calling register_kernel_offset_dumper+0x0/0x16 @ 1" + 445.9ms (+0.0) [appliance] "[ 0.295070] initcall register_kernel_offset_dumper+0x0/0x16 returned 0 after 0 usecs" + 447.1ms (+1.1) [appliance] "[ 0.295631] calling i8259A_init_ops+0x0/0x1c @ 1" + 447.1ms (+0.0) [appliance] "[ 0.295959] initcall i8259A_init_ops+0x0/0x1c returned 0 after 0 usecs" + 447.1ms (+0.0) [appliance] "[ 0.296416] calling init_tsc_clocksource+0x0/0xad @ 1" + 448.2ms (+1.1) [appliance] "[ 0.296798] initcall init_tsc_clocksource+0x0/0xad returned 0 after 0 usecs" + 448.2ms (+0.0) [appliance] "[ 0.297282] calling add_rtc_cmos+0x0/0xa0 @ 1" + 448.2ms (+0.0) [appliance] "[ 0.297606] initcall add_rtc_cmos+0x0/0xa0 returned 0 after 0 usecs" + 449.3ms (+1.1) [appliance] "[ 0.298053] calling i8237A_init_ops+0x0/0xf @ 1" + 449.3ms (+0.0) [appliance] "[ 0.298376] initcall i8237A_init_ops+0x0/0xf returned 0 after 0 usecs" + 450.4ms (+1.1) [appliance] "[ 0.298850] calling ioapic_init_ops+0x0/0xf @ 1" + 450.4ms (+0.0) [appliance] "[ 0.299177] initcall ioapic_init_ops+0x0/0xf returned 0 after 0 usecs" + 450.4ms (+0.0) [appliance] "[ 0.299622] calling sysfb_init+0x0/0x6b @ 1" + 451.6ms (+1.1) [appliance] "[ 0.299952] initcall sysfb_init+0x0/0x6b returned 0 after 8 usecs" + 451.6ms (+0.0) [appliance] "[ 0.300382] calling pmc_atom_init+0x0/0xec @ 1" + 451.6ms (+0.0) [appliance] "[ 0.300703] initcall pmc_atom_init+0x0/0xec returned -19 after 1 usecs" + 452.7ms (+1.1) [appliance] "[ 0.301183] calling proc_execdomains_init+0x0/0x1d @ 1" + 452.7ms (+0.0) [appliance] "[ 0.301547] initcall proc_execdomains_init+0x0/0x1d returned 0 after 1 usecs" + 452.7ms (+0.0) [appliance] "[ 0.302037] calling ioresources_init+0x0/0x37 @ 1" + 453.8ms (+1.1) [appliance] "[ 0.302396] initcall ioresources_init+0x0/0x37 returned 0 after 1 usecs" + 453.8ms (+0.0) [appliance] "[ 0.302862] calling init_sched_debug_procfs+0x0/0x27 @ 1" + 453.8ms (+0.0) [appliance] "[ 0.303252] initcall init_sched_debug_procfs+0x0/0x27 returned 0 after 0 usecs" + 455.0ms (+1.1) [appliance] "[ 0.303763] calling init_posix_timers+0x0/0x274 @ 1" + 455.0ms (+0.0) [appliance] "[ 0.304114] initcall init_posix_timers+0x0/0x274 returned 0 after 2 usecs" + 456.1ms (+1.1) [appliance] "[ 0.304608] calling init_posix_cpu_timers+0x0/0xb8 @ 1" + 456.1ms (+0.0) [appliance] "[ 0.304974] initcall init_posix_cpu_timers+0x0/0xb8 returned 0 after 0 usecs" + 456.1ms (+0.0) [appliance] "[ 0.305464] calling timekeeping_init_ops+0x0/0xf @ 1" + 457.2ms (+1.1) [appliance] "[ 0.305839] initcall timekeeping_init_ops+0x0/0xf returned 0 after 0 usecs" + 457.2ms (+0.0) [appliance] "[ 0.306321] calling init_clocksource_sysfs+0x0/0x64 @ 1" + 458.4ms (+1.1) [appliance] "[ 0.306724] initcall init_clocksource_sysfs+0x0/0x64 returned 0 after 11 usecs" + 458.4ms (+0.0) [appliance] "[ 0.307234] calling init_timer_list_procfs+0x0/0x27 @ 1" + 458.4ms (+0.0) [appliance] "[ 0.307604] initcall init_timer_list_procfs+0x0/0x27 returned 0 after 0 usecs" + 459.5ms (+1.1) [appliance] "[ 0.308124] calling alarmtimer_init+0x0/0xee @ 1" + 459.5ms (+0.0) [appliance] "[ 0.308465] initcall alarmtimer_init+0x0/0xee returned 0 after 9 usecs" + 459.5ms (+0.0) [appliance] "[ 0.308932] calling clockevents_init_sysfs+0x0/0xcd @ 1" + 460.6ms (+1.1) [appliance] "[ 0.309324] initcall clockevents_init_sysfs+0x0/0xcd returned 0 after 10 usecs" + 460.6ms (+0.0) [appliance] "[ 0.309827] calling futex_init+0x0/0xad @ 1" + 461.8ms (+1.1) [appliance] "[ 0.310155] futex hash table entries: 16 (order: -2, 1024 bytes)" + 461.8ms (+0.0) [appliance] "[ 0.310572] initcall futex_init+0x0/0xad returned 0 after 407 usecs" + 461.8ms (+0.0) [appliance] "[ 0.311013] calling proc_dma_init+0x0/0x1d @ 1" + 462.9ms (+1.1) [appliance] "[ 0.311355] initcall proc_dma_init+0x0/0x1d returned 0 after 0 usecs" + 462.9ms (+0.0) [appliance] "[ 0.311797] calling proc_modules_init+0x0/0x1d @ 1" + 462.9ms (+0.0) [appliance] "[ 0.312144] initcall proc_modules_init+0x0/0x1d returned 0 after 0 usecs" + 464.0ms (+1.1) [appliance] "[ 0.312631] calling kallsyms_init+0x0/0x20 @ 1" + 464.0ms (+0.0) [appliance] "[ 0.312949] initcall kallsyms_init+0x0/0x20 returned 0 after 0 usecs" + 464.0ms (+0.0) [appliance] "[ 0.313395] calling utsname_sysctl_init+0x0/0xf @ 1" + 465.2ms (+1.1) [appliance] "[ 0.313767] initcall utsname_sysctl_init+0x0/0xf returned 0 after 3 usecs" + 465.2ms (+0.0) [appliance] "[ 0.314240] calling perf_event_sysfs_init+0x0/0x8f @ 1" + 466.4ms (+1.2) [appliance] "[ 0.314652] initcall perf_event_sysfs_init+0x0/0x8f returned 0 after 35 usecs" + 466.4ms (+0.0) [appliance] "[ 0.315177] calling kswapd_init+0x0/0xf @ 1" + 466.4ms (+0.0) [appliance] "[ 0.315509] initcall kswapd_init+0x0/0xf returned 0 after 31 usecs" + 467.5ms (+1.1) [appliance] "[ 0.315962] calling setup_vmstat+0x0/0x1a8 @ 1" + 467.5ms (+0.0) [appliance] "[ 0.316294] initcall setup_vmstat+0x0/0x1a8 returned 0 after 11 usecs" + 467.5ms (+0.0) [appliance] "[ 0.316742] calling mm_compute_batch_init+0x0/0x14 @ 1" + 468.6ms (+1.1) [appliance] "[ 0.317129] initcall mm_compute_batch_init+0x0/0x14 returned 0 after 0 usecs" + 468.6ms (+0.0) [appliance] "[ 0.317635] calling slab_proc_init+0x0/0x20 @ 1" + 468.6ms (+0.0) [appliance] "[ 0.317970] initcall slab_proc_init+0x0/0x20 returned 0 after 0 usecs" + 469.8ms (+1.1) [appliance] "[ 0.318435] calling workingset_init+0x0/0x7a @ 1" + 469.8ms (+0.0) [appliance] "[ 0.318764] workingset: timestamp_bits=60 max_order=17 bucket_order=0" + 470.9ms (+1.1) [appliance] "[ 0.319240] initcall workingset_init+0x0/0x7a returned 0 after 464 usecs" + 470.9ms (+0.0) [appliance] "[ 0.319705] calling proc_vmalloc_init+0x0/0x20 @ 1" + 470.9ms (+0.0) [appliance] "[ 0.320049] initcall proc_vmalloc_init+0x0/0x20 returned 0 after 0 usecs" + 472.0ms (+1.1) [appliance] "[ 0.320535] calling procswaps_init+0x0/0x1d @ 1" + 472.0ms (+0.0) [appliance] "[ 0.320857] initcall procswaps_init+0x0/0x1d returned 0 after 0 usecs" + 472.0ms (+0.0) [appliance] "[ 0.321305] calling slab_sysfs_init+0x0/0xf5 @ 1" + 473.1ms (+1.1) [appliance] "[ 0.322110] initcall slab_sysfs_init+0x0/0xf5 returned 0 after 443 usecs" + 474.3ms (+1.1) [appliance] "[ 0.322590] calling fcntl_init+0x0/0x25 @ 1" + 474.3ms (+0.0) [appliance] "[ 0.322914] initcall fcntl_init+0x0/0x25 returned 0 after 12 usecs" + 474.3ms (+0.0) [appliance] "[ 0.323347] calling proc_filesystems_init+0x0/0x1d @ 1" + 475.4ms (+1.1) [appliance] "[ 0.323735] initcall proc_filesystems_init+0x0/0x1d returned 0 after 1 usecs" + 475.4ms (+0.0) [appliance] "[ 0.324225] calling start_dirtytime_writeback+0x0/0x25 @ 1" + 475.4ms (+0.0) [appliance] "[ 0.324613] initcall start_dirtytime_writeback+0x0/0x25 returned 0 after 0 usecs" + 476.5ms (+1.1) [appliance] "[ 0.325150] calling dio_init+0x0/0x28 @ 1" + 476.5ms (+0.0) [appliance] "[ 0.325449] initcall dio_init+0x0/0x28 returned 0 after 11 usecs" + 476.5ms (+0.0) [appliance] "[ 0.325866] calling dnotify_init+0x0/0x74 @ 1" + 477.7ms (+1.1) [appliance] "[ 0.326205] initcall dnotify_init+0x0/0x74 returned 0 after 2 usecs" + 477.7ms (+0.0) [appliance] "[ 0.326641] calling fanotify_user_setup+0x0/0x4d @ 1" + 477.7ms (+0.0) [appliance] "[ 0.326998] initcall fanotify_user_setup+0x0/0x4d returned 0 after 1 usecs" + 478.8ms (+1.1) [appliance] "[ 0.327503] calling aio_setup+0x0/0x76 @ 1" + 478.8ms (+0.0) [appliance] "[ 0.327803] initcall aio_setup+0x0/0x76 returned 0 after 6 usecs" + 480.0ms (+1.2) [appliance] "[ 0.328236] calling mbcache_init+0x0/0x2c @ 1" + 480.0ms (+0.0) [appliance] "[ 0.328588] initcall mbcache_init+0x0/0x2c returned 0 after 12 usecs" + 480.0ms (+0.0) [appliance] "[ 0.329032] calling init_devpts_fs+0x0/0x5d @ 1" + 480.0ms (+0.0) [appliance] "[ 0.329373] initcall init_devpts_fs+0x0/0x5d returned 0 after 6 usecs" + 481.1ms (+1.1) [appliance] "[ 0.329830] calling ext4_init_fs+0x0/0x197 @ 1" + 481.1ms (+0.0) [appliance] "[ 0.330198] initcall ext4_init_fs+0x0/0x197 returned 0 after 47 usecs" + 482.2ms (+1.1) [appliance] "[ 0.330669] calling journal_init+0x0/0x102 @ 1" + 482.2ms (+0.0) [appliance] "[ 0.331047] initcall journal_init+0x0/0x102 returned 0 after 54 usecs" + 482.2ms (+0.0) [appliance] "[ 0.331496] calling init_nls_utf8+0x0/0x21 @ 1" + 483.3ms (+1.1) [appliance] "[ 0.331831] initcall init_nls_utf8+0x0/0x21 returned 0 after 0 usecs" + 483.3ms (+0.0) [appliance] "[ 0.332287] calling crypto_algapi_init+0x0/0x8 @ 1" + 483.3ms (+0.0) [appliance] "[ 0.332639] initcall crypto_algapi_init+0x0/0x8 returned 0 after 0 usecs" + 484.5ms (+1.1) [appliance] "[ 0.333118] calling chainiv_module_init+0x0/0xc @ 1" + 484.5ms (+0.0) [appliance] "[ 0.333463] initcall chainiv_module_init+0x0/0xc returned 0 after 0 usecs" + 485.6ms (+1.1) [appliance] "[ 0.333954] calling eseqiv_module_init+0x0/0xc @ 1" + 485.6ms (+0.0) [appliance] "[ 0.334295] initcall eseqiv_module_init+0x0/0xc returned 0 after 0 usecs" + 485.6ms (+0.0) [appliance] "[ 0.334758] calling crypto_null_mod_init+0x0/0x43 @ 1" + 486.7ms (+1.1) [appliance] "[ 0.335175] initcall crypto_null_mod_init+0x0/0x43 returned 0 after 29 usecs" + 486.7ms (+0.0) [appliance] "[ 0.335668] calling crc32c_mod_init+0x0/0xc @ 1" + 486.7ms (+0.0) [appliance] "[ 0.335997] initcall crc32c_mod_init+0x0/0xc returned 0 after 5 usecs" + 487.9ms (+1.1) [appliance] "[ 0.336471] calling proc_genhd_init+0x0/0x37 @ 1" + 487.9ms (+0.0) [appliance] "[ 0.336801] initcall proc_genhd_init+0x0/0x37 returned 0 after 1 usecs" + 487.9ms (+0.0) [appliance] "[ 0.337268] calling bsg_init+0x0/0x123 @ 1" + 489.0ms (+1.1) [appliance] "[ 0.337587] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)" + 489.0ms (+0.0) [appliance] "[ 0.338100] initcall bsg_init+0x0/0x123 returned 0 after 515 usecs" + 490.1ms (+1.1) [appliance] "[ 0.338550] calling noop_init+0x0/0xc @ 1" + 490.1ms (+0.0) [appliance] "[ 0.338846] io scheduler noop registered" + 490.1ms (+0.0) [appliance] "[ 0.339125] initcall noop_init+0x0/0xc returned 0 after 272 usecs" + 491.3ms (+1.1) [appliance] "[ 0.339561] calling deadline_init+0x0/0xc @ 1" + 491.3ms (+0.0) [appliance] "[ 0.339880] io scheduler deadline registered" + 491.3ms (+0.0) [appliance] "[ 0.340182] initcall deadline_init+0x0/0xc returned 0 after 294 usecs" + 491.3ms (+0.0) [appliance] "[ 0.340630] calling cfq_init+0x0/0x7f @ 1" + 492.4ms (+1.1) [appliance] "[ 0.340961] io scheduler cfq registered (default)" + 492.4ms (+0.0) [appliance] "[ 0.341293] initcall cfq_init+0x0/0x7f returned 0 after 345 usecs" + 492.4ms (+0.0) [appliance] "[ 0.341715] calling percpu_counter_startup+0x0/0x22 @ 1" + 493.5ms (+1.1) [appliance] "[ 0.342108] initcall percpu_counter_startup+0x0/0x22 returned 0 after 0 usecs" + 493.5ms (+0.0) [appliance] "[ 0.342600] calling pci_proc_init+0x0/0x64 @ 1" + 493.5ms (+0.0) [appliance] "[ 0.342938] initcall pci_proc_init+0x0/0x64 returned 0 after 5 usecs" + 494.7ms (+1.1) [appliance] "[ 0.343394] calling acpi_ac_init+0x0/0x26 @ 1" + 494.7ms (+0.0) [appliance] "[ 0.343715] initcall acpi_ac_init+0x0/0x26 returned 0 after 10 usecs" + 495.8ms (+1.1) [appliance] "[ 0.344183] calling acpi_button_driver_init+0x0/0xc @ 1" + 495.8ms (+0.0) [appliance] "[ 0.344576] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0" + 495.8ms (+0.0) [appliance] "[ 0.345090] ACPI: Power Button [PWRF]" + 496.9ms (+1.1) [appliance] "[ 0.345392] initcall acpi_button_driver_init+0x0/0xc returned 0 after 820 usecs" + 496.9ms (+0.0) [appliance] "[ 0.345899] calling acpi_fan_driver_init+0x0/0xe @ 1" + 496.9ms (+0.0) [appliance] "[ 0.346257] initcall acpi_fan_driver_init+0x0/0xe returned 0 after 3 usecs" + 498.0ms (+1.1) [appliance] "[ 0.346756] calling acpi_processor_driver_init+0x0/0x23 @ 1" + 498.0ms (+0.0) [appliance] "[ 0.347162] Warning: Processor Platform Limit event detected, but not handled." + 499.2ms (+1.1) [appliance] "[ 0.347681] Consider compiling CPUfreq support into your kernel." + 499.2ms (+0.0) [appliance] "[ 0.348111] initcall acpi_processor_driver_init+0x0/0x23 returned 0 after 930 usecs" + 500.3ms (+1.1) [appliance] "[ 0.348663] calling acpi_thermal_init+0x0/0x6c @ 1" + 500.3ms (+0.0) [appliance] "[ 0.349019] initcall acpi_thermal_init+0x0/0x6c returned 0 after 15 usecs" + 500.3ms (+0.0) [appliance] "[ 0.349493] calling acpi_battery_init+0x0/0x2b @ 1" + 501.4ms (+1.1) [appliance] "[ 0.349856] initcall acpi_battery_init+0x0/0x2b returned 0 after 2 usecs" + 501.4ms (+0.0) [appliance] "[ 0.350322] calling pty_init+0x0/0x37b @ 1" + 504.5ms (+3.1) [appliance] "[ 0.352810] initcall pty_init+0x0/0x37b returned 0 after 2141 usecs" + 504.5ms (+0.0) [appliance] "[ 0.353276] calling serial8250_init+0x0/0x163 @ 1" + 504.5ms (+0.0) [appliance] "[ 0.353612] Serial: 8250/16550 driver, 1 ports, IRQ sharing disabled" + 528.0ms (+23.4) [appliance] "[ 0.376308] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A" + 528.0ms (+0.0) [appliance] "[ 0.376874] initcall serial8250_init+0x0/0x163 returned 0 after 22716 usecs" + 528.0ms (+0.0) [appliance] "[ 0.377389] calling serial_pci_driver_init+0x0/0x15 @ 1" + 529.1ms (+1.1) [appliance] "[ 0.377781] initcall serial_pci_driver_init+0x0/0x15 returned 0 after 7 usecs" + 529.1ms (+0.0) [appliance] "[ 0.378302] calling topology_sysfs_init+0x0/0x70 @ 1" + 530.2ms (+1.1) [appliance] "[ 0.378671] initcall topology_sysfs_init+0x0/0x70 returned 0 after 3 usecs" + 530.2ms (+0.0) [appliance] "[ 0.379174] calling cacheinfo_sysfs_init+0x0/0x3aa @ 1" + 530.2ms (+0.0) [appliance] "[ 0.379570] initcall cacheinfo_sysfs_init+0x0/0x3aa returned 0 after 17 usecs" + 531.3ms (+1.1) [appliance] "[ 0.380088] calling pmem_init+0x0/0x15 @ 1" + 531.3ms (+0.0) [appliance] "[ 0.380394] initcall pmem_init+0x0/0x15 returned 0 after 3 usecs" + 532.4ms (+1.1) [appliance] "[ 0.380829] calling nd_btt_init+0x0/0x6 @ 1" + 532.4ms (+0.0) [appliance] "[ 0.381142] initcall nd_btt_init+0x0/0x6 returned -6 after 0 usecs" + 532.4ms (+0.0) [appliance] "[ 0.381586] calling nd_blk_init+0x0/0x15 @ 1" + 533.5ms (+1.1) [appliance] "[ 0.381906] initcall nd_blk_init+0x0/0x15 returned 0 after 3 usecs" + 533.5ms (+0.0) [appliance] "[ 0.382353] calling init_sd+0x0/0x148 @ 1" + 533.5ms (+0.0) [appliance] "[ 0.382659] initcall init_sd+0x0/0x148 returned 0 after 8 usecs" + 534.6ms (+1.1) [appliance] "[ 0.383098] calling init_sg+0x0/0x119 @ 1" + 534.6ms (+0.0) [appliance] "[ 0.383403] initcall init_sg+0x0/0x119 returned 0 after 6 usecs" + 534.6ms (+0.0) [appliance] "[ 0.383831] calling net_olddevs_init+0x0/0x58 @ 1" + 535.7ms (+1.1) [appliance] "[ 0.384182] initcall net_olddevs_init+0x0/0x58 returned 0 after 1 usecs" + 535.7ms (+0.0) [appliance] "[ 0.384657] calling i8042_init+0x0/0x332 @ 1" + 535.7ms (+0.0) [appliance] "[ 0.384984] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12" + 536.8ms (+1.1) [appliance] "[ 0.386058] serio: i8042 KBD port at 0x60,0x64 irq 1" + 537.9ms (+1.1) [appliance] "[ 0.386422] serio: i8042 AUX port at 0x60,0x64 irq 12" + 537.9ms (+0.0) [appliance] "[ 0.386788] initcall i8042_init+0x0/0x332 returned 0 after 1773 usecs" + 537.9ms (+0.0) [appliance] "[ 0.387260] calling serport_init+0x0/0x28 @ 1" + 539.0ms (+1.1) [appliance] "[ 0.387586] initcall serport_init+0x0/0x28 returned 0 after 0 usecs" + 539.0ms (+0.0) [appliance] "[ 0.388036] calling hid_init+0x0/0x38 @ 1" + 539.0ms (+0.0) [appliance] "[ 0.388337] initcall hid_init+0x0/0x38 returned 0 after 4 usecs" + 540.1ms (+1.1) [appliance] "[ 0.388766] calling hid_generic_init+0x0/0x15 @ 1" + 540.1ms (+0.0) [appliance] "[ 0.389119] initcall hid_generic_init+0x0/0x15 returned 0 after 4 usecs" + 541.3ms (+1.1) [appliance] "[ 0.389596] calling sock_diag_init+0x0/0x2f @ 1" + 541.3ms (+0.0) [appliance] "[ 0.389934] initcall sock_diag_init+0x0/0x2f returned 0 after 4 usecs" + 541.3ms (+0.0) [appliance] "[ 0.390421] calling hpet_insert_resource+0x0/0x1e @ 1" + 542.4ms (+1.1) [appliance] "[ 0.390795] initcall hpet_insert_resource+0x0/0x1e returned 1 after 0 usecs" + 542.4ms (+0.0) [appliance] "[ 0.391302] calling update_mp_table+0x0/0x43e @ 1" + 542.4ms (+0.0) [appliance] "[ 0.391649] initcall update_mp_table+0x0/0x43e returned 0 after 0 usecs" + 543.5ms (+1.1) [appliance] "[ 0.392128] calling lapic_insert_resource+0x0/0x3a @ 1" + 543.5ms (+0.0) [appliance] "[ 0.392506] initcall lapic_insert_resource+0x0/0x3a returned 0 after 0 usecs" + 544.6ms (+1.1) [appliance] "[ 0.393012] calling print_ICs+0x0/0xd6 @ 1" + 544.6ms (+0.0) [appliance] "[ 0.393322] initcall print_ICs+0x0/0xd6 returned 0 after 0 usecs" + 544.6ms (+0.0) [appliance] "[ 0.393754] calling create_tlb_single_page_flush_ceiling+0x0/0x3 @ 1" + 545.7ms (+1.1) [appliance] "[ 0.394219] initcall create_tlb_single_page_flush_ceiling+0x0/0x3 returned 0 after 0 usecs" + 545.7ms (+0.0) [appliance] "[ 0.394809] calling init_oops_id+0x0/0x30 @ 1" + 546.8ms (+1.1) [appliance] "[ 0.395144] initcall init_oops_id+0x0/0x30 returned 0 after 1 usecs" + 546.8ms (+0.0) [appliance] "[ 0.395594] calling sched_init_debug+0x0/0x3 @ 1" + 546.8ms (+0.0) [appliance] "[ 0.395934] initcall sched_init_debug+0x0/0x3 returned 0 after 0 usecs" + 547.9ms (+1.1) [appliance] "[ 0.396407] calling pm_qos_power_init+0x0/0x5f @ 1" + 547.9ms (+0.0) [appliance] "[ 0.396803] initcall pm_qos_power_init+0x0/0x5f returned 0 after 43 usecs" + 547.9ms (+0.0) [appliance] "[ 0.397295] calling printk_late_init+0x0/0x54 @ 1" + 549.0ms (+1.1) [appliance] "[ 0.397641] initcall printk_late_init+0x0/0x54 returned 0 after 0 usecs" + 549.0ms (+0.0) [appliance] "[ 0.398114] calling max_swapfiles_check+0x0/0x3 @ 1" + 550.1ms (+1.1) [appliance] "[ 0.398475] initcall max_swapfiles_check+0x0/0x3 returned 0 after 0 usecs" + 550.1ms (+0.0) [appliance] "[ 0.398966] calling check_early_ioremap_leak+0x0/0x3d @ 1" + 550.1ms (+0.0) [appliance] "[ 0.399363] initcall check_early_ioremap_leak+0x0/0x3d returned 0 after 0 usecs" + 551.2ms (+1.1) [appliance] "[ 0.399885] calling prandom_reseed+0x0/0x3b @ 1" + 551.2ms (+0.0) [appliance] "[ 0.400223] initcall prandom_reseed+0x0/0x3b returned 0 after 2 usecs" + 552.3ms (+1.1) [appliance] "[ 0.400686] calling pci_resource_alignment_sysfs_init+0x0/0x17 @ 1" + 552.3ms (+0.0) [appliance] "[ 0.401140] initcall pci_resource_alignment_sysfs_init+0x0/0x17 returned 0 after 0 usecs" + 552.3ms (+0.0) [appliance] "[ 0.401718] calling pci_sysfs_init+0x0/0x4b @ 1" + 553.4ms (+1.1) [appliance] "[ 0.402141] initcall pci_sysfs_init+0x0/0x4b returned 0 after 86 usecs" + 553.4ms (+0.0) [appliance] "[ 0.402610] calling deferred_probe_initcall+0x0/0x60 @ 1" + 554.5ms (+1.1) [appliance] "[ 0.403016] initcall deferred_probe_initcall+0x0/0x60 returned 0 after 12 usecs" + 554.5ms (+0.0) [appliance] "[ 0.403544] calling register_sk_filter_ops+0x0/0x3 @ 1" + 554.5ms (+0.0) [appliance] "[ 0.403921] initcall register_sk_filter_ops+0x0/0x3 returned 0 after 0 usecs" + 555.6ms (+1.1) [appliance] "[ 0.404426] calling init_default_flow_dissectors+0x0/0x33 @ 1" + 555.6ms (+0.0) [appliance] "[ 0.404844] initcall init_default_flow_dissectors+0x0/0x33 returned 0 after 0 usecs" + 556.7ms (+1.1) [appliance] "[ 0.405883] Freeing unused kernel memory: 628K (ffffffff8164a000 - ffffffff816e7000)" + 557.8ms (+1.1) [appliance] "[ 0.406457] Write protecting the kernel read-only data: 6144k" + 557.8ms (+0.0) [appliance] "[ 0.407068] Freeing unused kernel memory: 1236K (ffff8800012cb000 - ffff880001400000)" + 560.7ms (+2.9) [appliance] "[ 0.408994] Freeing unused kernel memory: 868K (ffff880001527000 - ffff880001600000)" + 560.7ms (+0.0) [appliance] "supermin: mounting /proc" + 560.7ms (+0.0) [appliance] "supermin: ext2 mini initrd starting up: 5.1.16 dietlibc" + 561.8ms (+1.2) [appliance] "supermin: cmdline: panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug " + 562.9ms (+1.1) [appliance] "supermin: uptime: 0.34 0.01" + 562.9ms (+0.0) [appliance] "supermin: mounting /sys" + 562.9ms (+0.0) [appliance] "supermin: internal insmod nfit.ko" + 564.2ms (+1.3) [appliance] "[ 0.412534] calling nfit_init+0x0/0xfe [nfit] @ 1" + 565.5ms (+1.3) [appliance] "[ 0.413784] initcall nfit_init+0x0/0xfe [nfit] returned 0 after 871 usecs" + 565.5ms (+0.0) [appliance] "supermin: internal insmod virtio.ko" + 565.5ms (+0.0) [appliance] "[ 0.414644] calling virtio_init+0x0/0x1f [virtio] @ 1" + 566.6ms (+1.1) [appliance] "[ 0.415040] initcall virtio_init+0x0/0x1f [virtio] returned 0 after 4 usecs" + 566.6ms (+0.0) [appliance] "supermin: internal insmod virtio_ring.ko" + 566.6ms (+0.0) [appliance] "supermin: internal insmod virtio_console.ko" + 567.7ms (+1.1) [appliance] "[ 0.416373] calling init+0x0/0xd6 [virtio_console] @ 1" + 567.7ms (+0.0) [appliance] "[ 0.416768] initcall init+0x0/0xd6 [virtio_console] returned 0 after 10 usecs" + 568.8ms (+1.1) [appliance] "supermin: internal insmod virtio_scsi.ko" + 568.8ms (+0.0) [appliance] "[ 0.417668] calling init+0x0/0xc7 [virtio_scsi] @ 1" + 568.8ms (+0.0) [appliance] "[ 0.418046] initcall init+0x0/0xc7 [virtio_scsi] returned 0 after 8 usecs" + 569.9ms (+1.1) [appliance] "supermin: internal insmod virtio_pci.ko" + 569.9ms (+0.0) [appliance] "[ 0.418956] pmem0: detected capacity change from 0 to 4294967296" + 571.0ms (+1.1) [appliance] "[ 0.419486] calling virtio_pci_driver_init+0x0/0x1a [virtio_pci] @ 1" + 583.7ms (+12.8) [appliance] "[ 0.432036] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 10" + 583.7ms (+0.0) [appliance] "[ 0.432478] virtio-pci 0000:00:02.0: virtio_pci: leaving for legacy driver" + 597.1ms (+13.4) [appliance] "[ 0.445404] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11" + 597.1ms (+0.0) [appliance] "[ 0.445855] virtio-pci 0000:00:03.0: virtio_pci: leaving for legacy driver" + 599.0ms (+2.0) [appliance] "[ 0.447339] scsi host0: Virtio SCSI HBA" + 599.0ms (+0.0) [appliance] "[ 0.447829] scsi 0:0:0:0: Direct-Access QEMU QEMU HARDDISK 2.5+ PQ: 0 ANSI: 5" + 600.3ms (+1.3) [appliance] "[ 0.448587] sd 0:0:0:0: Attached scsi generic sg0 type 0" + 600.3ms (+0.0) [appliance] "[ 0.449184] sd 0:0:0:0: [sda] 8 512-byte logical blocks: (4.10 kB/4.00 KiB)" + 601.7ms (+1.4) [appliance] "[ 0.450042] sd 0:0:0:0: [sda] Write Protect is off" + 601.7ms (+0.0) [appliance] "[ 0.450399] sd 0:0:0:0: [sda] Mode Sense: 63 00 00 08" + 601.7ms (+0.0) [appliance] "[ 0.450830] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA" + 604.2ms (+2.4) [appliance] "[ 0.452500] sd 0:0:0:0: [sda] Attached SCSI disk" + 626.7ms (+22.5) [appliance] "[ 0.475000] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11" + 626.7ms (+0.0) [appliance] "[ 0.475453] virtio-pci 0000:00:04.0: virtio_pci: leaving for legacy driver" + 633.4ms (+6.7) [appliance] "[ 0.481693] initcall virtio_pci_driver_init+0x0/0x1a [virtio_pci] returned 0 after 60281 usecs" + 633.4ms (+0.0) [appliance] "supermin: picked /sys/block/pmem0/dev as root device" + 634.5ms (+1.1) [appliance] "supermin: creating /dev/root as block special 259:0" + 634.5ms (+0.0) [appliance] "supermin: mounting new root on /root (dax)" + 634.5ms (+0.0) [appliance] "[ 0.483745] EXT4-fs (pmem0): DAX enabled. Warning: EXPERIMENTAL, use at your own risk" + 635.7ms (+1.1) [appliance] "[ 0.484307] EXT4-fs (pmem0): mounting ext2 file system using the ext4 subsystem" + 635.7ms (+0.0) [appliance] "[ 0.485016] EXT4-fs (pmem0): mounted filesystem without journal. Opts: dax" + 636.8ms (+1.1) [appliance] "supermin: chroot" + 639.3ms (+2.5) [appliance] "Starting /init script ..." + 642.6ms (+3.4) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_network=1* ]]" + 643.8ms (+1.2) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_rescue=1* ]]" + 644.9ms (+1.2) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_noreboot=1* ]]" + 646.1ms (+1.2) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_boot_analysis=1* ]]" + 647.2ms (+1.1) [appliance] "+ guestfs_boot_analysis=1" + 648.4ms (+1.2) [appliance] "+ '[' '!' -d /sys ']'" + 648.4ms (+0.0) [appliance] "+ mkdir -p /sys" + 648.4ms (+0.0) [appliance] "+ mount -t sysfs /sys /sys" + 650.3ms (+2.0) [appliance] "+ mkdir -p /run" + 650.4ms (+0.0) [appliance] "+ mount -t tmpfs -o nosuid,size=20%,mode=0755 tmpfs /run" + 652.2ms (+1.9) [appliance] "+ mkdir -p /run/lock" + 652.2ms (+0.0) [appliance] "+ ln -s ../run/lock /var/lock" + 653.6ms (+1.4) [appliance] "+ ln -s /proc/mounts /etc/mtab" + 653.6ms (+0.0) [appliance] "+ mount -t devtmpfs /dev /dev" + 655.3ms (+1.7) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *selinux=1* ]]" + 656.4ms (+1.1) [appliance] "+ mkdir -p /run/tmpfiles.d" + 656.4ms (+0.0) [appliance] "+ kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf" + 658.8ms (+2.3) [appliance] "++ od -x -A n" + 658.8ms (+0.0) [appliance] "++ dd if=/dev/urandom bs=16 count=1 status=none" + 660.0ms (+1.2) [appliance] "[ 0.508289] random: dd urandom read with 15 bits of entropy available" + 660.0ms (+0.0) [appliance] "+ machine_id=' 8ea4 4a5a cb12 7340 414f 181d a406 02c0'" + 660.0ms (+0.0) [appliance] "+ echo 8ea44a5acb127340414f181da40602c0" + 661.2ms (+1.2) [appliance] "+ systemd-tmpfiles --prefix=/dev --create --boot" + 663.3ms (+2.1) [appliance] "+ for f in /lib/systemd/systemd-udevd /usr/lib/systemd/systemd-udevd /sbin/udevd /lib/udev/udevd /usr/lib/udev/udevd" + 663.3ms (+0.0) [appliance] "+ '[' -x /lib/systemd/systemd-udevd ']'" + 663.3ms (+0.0) [appliance] "+ UDEVD=/lib/systemd/systemd-udevd" + 663.3ms (+0.0) [appliance] "+ break" + 663.3ms (+0.0) [appliance] "+ '[' -z /lib/systemd/systemd-udevd ']'" + 664.4ms (+1.1) [appliance] "+ /lib/systemd/systemd-udevd --daemon" + 666.1ms (+1.7) [appliance] "starting version 229" + 666.1ms (+0.0) [appliance] "+ udevadm trigger" + 699.6ms (+33.4) [appliance] "+ udevadm settle --timeout=600" + 780.5ms (+80.9) [appliance] "+ shopt -s nullglob" + 780.5ms (+0.0) [appliance] "+ for f in '/sys/block/sd*/device/timeout'" + 780.5ms (+0.0) [appliance] "+ echo 300" + 780.5ms (+0.0) [appliance] "+ for f in '/sys/block/{h,s,ub,v}d*/queue/scheduler'" + 780.5ms (+0.0) [appliance] "+ echo noop" + 794.8ms (+14.2) [appliance] "+ shopt -u nullglob" + 794.8ms (+0.0) [appliance] "+ ip addr add 127.0.0.1/8 brd + dev lo scope host" + 794.8ms (+0.0) [appliance] "RTNETLINK answers: Operation not supported" + 795.9ms (+1.1) [appliance] "+ ip link set dev lo up" + 795.9ms (+0.0) [appliance] "+ test '' = 1" + 795.9ms (+0.0) [appliance] "+ mdadm -As --auto=yes --run" + 800.1ms (+4.2) [appliance] "mdadm: No arrays found in config file or automatically" + 800.1ms (+0.0) [appliance] "+ modprobe dm_mod" + 801.3ms (+1.2) [appliance] "modprobe: FATAL: Module dm_mod not found in directory /lib/modules/4.6.0+" + 801.3ms (+0.0) [appliance] "+ :" + 801.3ms (+0.0) [appliance] "+ lvmetad" + 803.5ms (+2.2) [appliance] "+ lvm vgchange -aay --sysinit" + 806.1ms (+2.6) [appliance] " Configuration setting "global/notify_dbus" unknown." + 806.1ms (+0.0) [appliance] " Configuration setting "devices/allow_changes_with_duplicate_pvs" unknown." + 807.4ms (+1.3) [appliance] " lvmetad is not active yet, using direct activation during sysinit" + 808.5ms (+1.1) [appliance] "+ ldmtool create all" + 812.0ms (+3.5) [appliance] "[" + 812.0ms (+0.0) [appliance] "]" + 812.0ms (+0.0) [appliance] "+ test 1 = 1" + 812.0ms (+0.0) [appliance] "+ test 1 '!=' 1" + 812.0ms (+0.0) [appliance] "+ test '' = 1" + 812.0ms (+0.0) [appliance] "+ cmd=guestfsd" + 813.2ms (+1.2) [appliance] "++ grep -Eo 'guestfs_channel=[^[:space:]]+' /proc/cmdline" + 813.2ms (+0.0) [appliance] "+ eval" + 813.2ms (+0.0) [appliance] "+ test x '!=' x" + 814.3ms (+1.1) [appliance] "+ test 1 = 1" + 814.3ms (+0.0) [appliance] "+ cmd='guestfsd --verbose'" + 814.3ms (+0.0) [appliance] "+ test '' = 1" + 814.3ms (+0.0) [appliance] "+ echo guestfsd --verbose" + 814.3ms (+0.0) [appliance] "guestfsd --verbose" + 814.3ms (+0.0) [appliance] "+ guestfsd --verbose" + 819.3ms (+5.0) [appliance] "trying to open virtio-serial channel '/dev/virtio-ports/org.libguestfs.channel.0'" + 819.3ms (+0.0) [appliance] "udevadm --debug settle" + 821.6ms (+2.3) [appliance] "calling: settle" + 821.6ms (+0.0) [launch_done] "launch done callback" + 821.6ms (+0.0) [library] "recv_from_daemon: received GUESTFS_LAUNCH_FLAG" + 821.6ms (+0.0) [library] "appliance is up" + 821.6ms (+0.0) [trace] "launch = 0" + 821.6ms (+0.0) [trace] "close" + 821.6ms (+0.0) [library] "closing guestfs handle 0x55a7d259b890 (state 2)" + 821.6ms (+0.0) [trace] "internal_autosync" + 824.1ms (+2.5) [appliance] "guestfsd: main_loop: new request, len 0x28" + 824.1ms (+0.0) [appliance] "umount-all: /proc/mounts: fsname=/dev/root dir=/ type=ext2 opts=rw,noatime,block_validity,barrier,dax,user_xattr freq=0 passno=0" + 824.1ms (+0.0) [appliance] "umount-all: /proc/mounts: fsname=/proc dir=/proc type=proc opts=rw,relatime freq=0 passno=0" + 825.3ms (+1.1) [appliance] "umount-all: /proc/mounts: fsname=/sys dir=/sys type=sysfs opts=rw,relatime freq=0 passno=0" + 825.3ms (+0.0) [appliance] "umount-all: /proc/mounts: fsname=tmpfs dir=/run type=tmpfs opts=rw,nosuid,relatime,size=99484k,mode=755 freq=0 passno=0" + 826.4ms (+1.1) [appliance] "umount-all: /proc/mounts: fsname=/dev dir=/dev type=devtmpfs opts=rw,relatime,size=247256k,nr_inodes=61814,mode=755 freq=0 passno=0" + 827.6ms (+1.2) [appliance] "fsync /dev/sda" + 834.4ms (+6.8) [trace] "internal_autosync = 0" + 834.4ms (+0.0) [library] "sending SIGTERM to process 8710" + 842.1ms (+7.7) [library] "qemu maxrss 159532K" + 842.2ms (+0.0) [close] "close callback" + 842.2ms (+0.0) [library] "command: run: rm" + 842.2ms (+0.0) [library] "command: run: \ -rf /home/rjones/d/libguestfs/tmp/libguestfsak8rWt" + 843.3ms (+1.1) [library] "command: run: rm" + 843.3ms (+0.0) [library] "command: run: \ -rf /run/user/1000/libguestfsedDEd6" +pass 3 + number of events collected 885 + elapsed time 834616022 ns + 0.1ms [trace] "launch" + 0.1ms (+0.0) [trace] "version" + 0.1ms (+0.0) [trace] "version = " + 0.1ms (+0.0) [trace] "get_backend" + 0.1ms (+0.0) [trace] "get_backend = "direct"" + 0.1ms (+0.0) [library] "launch: program=boot-analysis" + 0.1ms (+0.0) [library] "launch: version=1.33.29" + 0.1ms (+0.0) [library] "launch: backend registered: unix" + 0.1ms (+0.0) [library] "launch: backend registered: uml" + 0.1ms (+0.0) [library] "launch: backend registered: libvirt" + 0.1ms (+0.0) [library] "launch: backend registered: direct" + 0.1ms (+0.0) [library] "launch: backend=direct" + 0.1ms (+0.0) [library] "launch: tmpdir=/home/rjones/d/libguestfs/tmp/libguestfsjr88QK" + 0.7ms (+0.6) [library] "launch: umask=0002" + 0.7ms (+0.0) [library] "launch: euid=1000" + 0.7ms (+0.0) [trace] "get_backend_setting "force_tcg"" + 0.7ms (+0.0) [trace] "get_backend_setting = NULL (error)" + 0.7ms (+0.0) [trace] "get_cachedir" + 0.7ms (+0.0) [trace] "get_cachedir = "/home/rjones/d/libguestfs/tmp"" + 0.7ms (+0.0) [library] "begin building supermin appliance" + 0.7ms (+0.0) [library] "run supermin" + 0.7ms (+0.0) [library] "command: run: /usr/bin/supermin" + 0.7ms (+0.0) [library] "command: run: \ --build" + 0.7ms (+0.0) [library] "command: run: \ --verbose" + 0.7ms (+0.0) [library] "command: run: \ --if-newer" + 0.7ms (+0.0) [library] "command: run: \ --lock /home/rjones/d/libguestfs/tmp/.guestfs-1000/lock" + 0.7ms (+0.0) [library] "command: run: \ --copy-kernel" + 0.7ms (+0.0) [library] "command: run: \ -f ext2" + 0.7ms (+0.0) [library] "command: run: \ --host-cpu x86_64" + 0.7ms (+0.0) [library] "command: run: \ /home/rjones/d/libguestfs/appliance/supermin.d" + 0.7ms (+0.0) [library] "command: run: \ -o /home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d" + 8.7ms (+8.0) [appliance] "supermin: version: 5.1.16" + 8.7ms (+0.0) [appliance] "supermin: rpm: detected RPM version 4.13" + 8.7ms (+0.0) [appliance] "supermin: package handler: fedora/rpm" + 8.7ms (+0.0) [appliance] "supermin: acquiring lock on /home/rjones/d/libguestfs/tmp/.guestfs-1000/lock" + 8.7ms (+0.0) [appliance] "supermin: if-newer: output does not need rebuilding" + 11.4ms (+2.7) [library] "finished building supermin appliance" + 11.4ms (+0.0) [library] "begin testing qemu features" + 11.4ms (+0.0) [trace] "get_cachedir" + 11.4ms (+0.0) [trace] "get_cachedir = "/home/rjones/d/libguestfs/tmp"" + 11.4ms (+0.0) [library] "checking for previously cached test results of /home/rjones/d/qemu/x86_64-softmmu/qemu-system-x86_64, in /home/rjones/d/libguestfs/tmp/.guestfs-1000" + 11.5ms (+0.0) [library] "loading previously cached test results" + 11.5ms (+0.0) [library] "qemu version 2.6" + 11.5ms (+0.0) [trace] "get_sockdir" + 11.5ms (+0.0) [trace] "get_sockdir = "/run/user/1000"" + 11.6ms (+0.1) [library] "finished testing qemu features" + 11.6ms (+0.0) [trace] "get_backend_setting "gdb"" + 11.6ms (+0.0) [trace] "get_backend_setting = NULL (error)" + 11.6ms (+0.0) [trace] "get_backend_setting "dax"" + 11.6ms (+0.0) [trace] "get_backend_setting = "1"" + 13.2ms (+1.7) [appliance] "[00011ms] /home/rjones/d/qemu/x86_64-softmmu/qemu-system-x86_64 \" + 13.2ms (+0.0) [appliance] " -global virtio-blk-pci.scsi=off \" + 13.2ms (+0.0) [appliance] " -nodefconfig \" + 13.2ms (+0.0) [appliance] " -enable-fips \" + 13.2ms (+0.0) [appliance] " -nodefaults \" + 13.2ms (+0.0) [appliance] " -display none \" + 13.2ms (+0.0) [appliance] " -machine pc,nvdimm=on,accel=kvm:tcg \" + 13.2ms (+0.0) [appliance] " -cpu host \" + 13.2ms (+0.0) [appliance] " -m 500,maxmem=32G,slots=32 \" + 13.2ms (+0.0) [appliance] " -no-reboot \" + 13.2ms (+0.0) [appliance] " -rtc driftfix=slew \" + 13.2ms (+0.0) [appliance] " -no-hpet \" + 13.2ms (+0.0) [appliance] " -global kvm-pit.lost_tick_policy=discard \" + 13.2ms (+0.0) [appliance] " -kernel /home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d/kernel \" + 13.3ms (+0.0) [appliance] " -initrd /home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d/initrd \" + 13.3ms (+0.0) [appliance] " -bios bios-fast.bin \" + 13.3ms (+0.0) [appliance] " -object rng-random,filename=/dev/urandom,id=rng0 \" + 13.3ms (+0.0) [appliance] " -device virtio-rng-pci,rng=rng0 \" + 13.3ms (+0.0) [appliance] " -device virtio-scsi-pci,id=scsi \" + 13.3ms (+0.0) [appliance] " -drive file=/home/rjones/d/libguestfs/tmp/libguestfsjr88QK/devnull1,cache=writeback,format=raw,id=hd0,if=none \" + 13.3ms (+0.0) [appliance] " -device scsi-hd,drive=hd0 \" + 13.3ms (+0.0) [appliance] " -object memory-backend-file,id=mem1,share=off,mem-path=/home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d/root,size=4294967296b \" + 13.3ms (+0.0) [appliance] " -device nvdimm,memdev=mem1,id=nv1 \" + 13.3ms (+0.0) [appliance] " -device virtio-serial-pci \" + 13.3ms (+0.0) [appliance] " -serial stdio \" + 13.3ms (+0.0) [appliance] " -device sga \" + 13.3ms (+0.0) [appliance] " -chardev socket,path=/run/user/1000/libguestfsX7AEwp/guestfsd.sock,id=channel0 \" + 13.3ms (+0.0) [appliance] " -device virtserialport,chardev=channel0,name=org.libguestfs.channel.0 \" + 13.3ms (+0.0) [appliance] " -append 'panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug '" + 111.0ms (+97.7) [library] "responding to serial console Device Status Report" + 111.0ms (+0.0) [appliance] "\x1b[1;256r\x1b[256;256H\x1b[6n" + 112.7ms (+1.7) [appliance] "Google, Inc." + 112.7ms (+0.0) [appliance] "Serial Graphics Adapter 11/03/11" + 112.7ms (+0.0) [appliance] "SGABIOS $Id$ (pbonzini@yakj.usersys.redhat.com) Thu Nov 3 13:33:51 UTC 2011" + 112.7ms (+0.0) [appliance] "Term: 80x24" + 112.7ms (+0.0) [appliance] "4 0" + 112.7ms (+0.0) [appliance] "\x1b[2J\x0dSeaBIOS (version rel-1.9.1-0-gb3ef39f-prebuilt.qemu-project.org)" + 123.0ms (+10.4) [appliance] "\x0dBooting from Hard Disk..." + 123.0ms (+0.0) [appliance] "\x0dBoot failed: could not read the boot disk" + 124.1ms (+1.1) [appliance] "" + 124.1ms (+0.0) [appliance] "\x0dBooting from ROM..." + 125.2ms (+1.1) [appliance] "\x1b[2J" + 161.4ms (+36.2) [appliance] "[ 0.000000] Linux version 4.6.0+ (rjones@moo.home.annexia.org) (gcc version 6.1.1 20160427 (Red Hat 6.1.1-1) (GCC) ) #36 SMP Wed May 18 13:36:15 BST 2016" + 161.4ms (+0.0) [appliance] "[ 0.000000] Command line: panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug " + 163.6ms (+2.2) [appliance] "[ 0.000000] KERNEL supported cpus:" + 163.6ms (+0.0) [appliance] "[ 0.000000] Intel GenuineIntel" + 164.7ms (+1.1) [appliance] "[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256" + 164.7ms (+0.0) [appliance] "[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'" + 165.8ms (+1.1) [appliance] "[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'" + 165.8ms (+0.0) [appliance] "[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'" + 165.8ms (+0.0) [appliance] "[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format." + 166.9ms (+1.1) [appliance] "[ 0.000000] x86/fpu: Using 'eager' FPU context switches." + 166.9ms (+0.0) [appliance] "[ 0.000000] e820: BIOS-provided physical RAM map:" + 168.0ms (+1.1) [appliance] "[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable" + 168.0ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved" + 169.2ms (+1.1) [appliance] "[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved" + 169.2ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001f3defff] usable" + 169.2ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x000000001f3df000-0x000000001f3fffff] reserved" + 170.3ms (+1.1) [appliance] "[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved" + 170.3ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved" + 171.4ms (+1.1) [appliance] "[ 0.000000] debug: ignoring loglevel setting." + 171.4ms (+0.0) [appliance] "[ 0.000000] NX (Execute Disable) protection: active" + 171.4ms (+0.0) [appliance] "[ 0.000000] Hypervisor detected: KVM" + 172.5ms (+1.1) [appliance] "[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved" + 172.5ms (+0.0) [appliance] "[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable" + 173.6ms (+1.1) [appliance] "[ 0.000000] e820: last_pfn = 0x1f3df max_arch_pfn = 0x400000000" + 173.6ms (+0.0) [appliance] "[ 0.000000] found SMP MP-table at [mem 0x000f3830-0x000f383f] mapped at [ffff8800000f3830]" + 173.6ms (+0.0) [appliance] "[ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576" + 174.7ms (+1.1) [appliance] "[ 0.000000] Using GB pages for direct mapping" + 174.7ms (+0.0) [appliance] "[ 0.000000] BRK [0x01750000, 0x01750fff] PGTABLE" + 175.8ms (+1.1) [appliance] "[ 0.000000] BRK [0x01751000, 0x01751fff] PGTABLE" + 175.8ms (+0.0) [appliance] "[ 0.000000] BRK [0x01752000, 0x01752fff] PGTABLE" + 175.8ms (+0.0) [appliance] "[ 0.000000] BRK [0x01753000, 0x01753fff] PGTABLE" + 175.8ms (+0.0) [appliance] "[ 0.000000] RAMDISK: [mem 0x1f3a7000-0x1f3cffff]" + 176.9ms (+1.1) [appliance] "[ 0.000000] ACPI: Early table checksum verification disabled" + 176.9ms (+0.0) [appliance] "[ 0.000000] ACPI: RSDP 0x00000000000F3640 000014 (v00 BOCHS )" + 176.9ms (+0.0) [appliance] "[ 0.000000] ACPI: RSDT 0x000000001F3E21EA 000034 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001)" + 178.0ms (+1.1) [appliance] "[ 0.000000] ACPI: FACP 0x000000001F3E1EED 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001)" + 179.1ms (+1.1) [appliance] "[ 0.000000] ACPI: DSDT 0x000000001F3DF040 002EAD (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001)" + 179.1ms (+0.0) [appliance] "[ 0.000000] ACPI: FACS 0x000000001F3DF000 000040" + 179.1ms (+0.0) [appliance] "[ 0.000000] ACPI: APIC 0x000000001F3E1F61 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001)" + 180.2ms (+1.1) [appliance] "[ 0.000000] ACPI: NFIT 0x000000001F3E1FD9 0000E0 (v01 BOCHS BXPCNFIT 00000001 BXPC 00000001)" + 181.3ms (+1.1) [appliance] "[ 0.000000] ACPI: SSDT 0x000000001F3E20B9 000131 (v01 BOCHS NVDIMM 00000001 BXPC 00000001)" + 181.3ms (+0.0) [appliance] "[ 0.000000] ACPI: Local APIC address 0xfee00000" + 181.3ms (+0.0) [appliance] "[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00" + 182.4ms (+1.1) [appliance] "[ 0.000000] kvm-clock: cpu 0, msr 0:1f3de001, primary cpu clock" + 182.4ms (+0.0) [appliance] "[ 0.000000] kvm-clock: using sched offset of 54647210 cycles" + 183.5ms (+1.1) [appliance] "[ 0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns" + 183.5ms (+0.0) [appliance] "[ 0.000000] Zone ranges:" + 183.5ms (+0.0) [appliance] "[ 0.000000] DMA32 [mem 0x0000000000001000-0x000000001f3defff]" + 184.6ms (+1.1) [appliance] "[ 0.000000] Normal empty" + 184.6ms (+0.0) [appliance] "[ 0.000000] Device empty" + 184.6ms (+0.0) [appliance] "[ 0.000000] Movable zone start for each node" + 184.6ms (+0.0) [appliance] "[ 0.000000] Early memory node ranges" + 185.7ms (+1.1) [appliance] "[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]" + 185.7ms (+0.0) [appliance] "[ 0.000000] node 0: [mem 0x0000000000100000-0x000000001f3defff]" + 185.7ms (+0.0) [appliance] "[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000001f3defff]" + 186.9ms (+1.1) [appliance] "[ 0.000000] On node 0 totalpages: 127869" + 186.9ms (+0.0) [appliance] "[ 0.000000] DMA32 zone: 2000 pages used for memmap" + 188.0ms (+1.1) [appliance] "[ 0.000000] DMA32 zone: 21 pages reserved" + 188.0ms (+0.0) [appliance] "[ 0.000000] DMA32 zone: 127869 pages, LIFO batch:31" + 188.0ms (+0.0) [appliance] "[ 0.000000] ACPI: PM-Timer IO Port: 0x608" + 188.0ms (+0.0) [appliance] "[ 0.000000] ACPI: Local APIC address 0xfee00000" + 189.1ms (+1.1) [appliance] "[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])" + 189.1ms (+0.0) [appliance] "[ 0.000000] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23" + 190.2ms (+1.1) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)" + 190.2ms (+0.0) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)" + 190.2ms (+0.0) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)" + 191.3ms (+1.1) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)" + 191.3ms (+0.0) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)" + 192.4ms (+1.1) [appliance] "[ 0.000000] ACPI: IRQ0 used by override." + 192.4ms (+0.0) [appliance] "[ 0.000000] ACPI: IRQ5 used by override." + 192.4ms (+0.0) [appliance] "[ 0.000000] ACPI: IRQ9 used by override." + 192.4ms (+0.0) [appliance] "[ 0.000000] ACPI: IRQ10 used by override." + 193.5ms (+1.1) [appliance] "[ 0.000000] ACPI: IRQ11 used by override." + 193.5ms (+0.0) [appliance] "[ 0.000000] Using ACPI (MADT) for SMP configuration information" + 193.5ms (+0.0) [appliance] "[ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs" + 194.6ms (+1.1) [appliance] "[ 0.000000] e820: [mem 0x1f400000-0xfeffbfff] available for PCI devices" + 194.6ms (+0.0) [appliance] "[ 0.000000] Booting paravirtualized kernel on KVM" + 194.6ms (+0.0) [appliance] "[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns" + 195.7ms (+1.1) [appliance] "[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:1 nr_node_ids:1" + 196.8ms (+1.1) [appliance] "[ 0.000000] percpu: Embedded 29 pages/cpu @ffff88001f000000 s80384 r8192 d30208 u2097152" + 196.8ms (+0.0) [appliance] "[ 0.000000] pcpu-alloc: s80384 r8192 d30208 u2097152 alloc=1*2097152" + 196.8ms (+0.0) [appliance] "[ 0.000000] pcpu-alloc: [0] 0 " + 197.9ms (+1.1) [appliance] "[ 0.000000] KVM setup async PF for cpu 0" + 197.9ms (+0.0) [appliance] "[ 0.000000] kvm-stealtime: cpu 0, msr 1f00c440" + 197.9ms (+0.0) [appliance] "[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 125848" + 199.0ms (+1.1) [appliance] "[ 0.000000] Kernel command line: panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug " + 201.2ms (+2.2) [appliance] "[ 0.000000] PID hash table entries: 2048 (order: 2, 16384 bytes)" + 201.2ms (+0.0) [appliance] "[ 0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)" + 201.2ms (+0.0) [appliance] "[ 0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)" + 202.3ms (+1.1) [appliance] "[ 0.000000] Memory: 494496K/511476K available (2851K kernel code, 290K rwdata, 1180K rodata, 628K init, 404K bss, 16980K reserved, 0K cma-reserved)" + 203.5ms (+1.1) [appliance] "[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1" + 203.5ms (+0.0) [appliance] "[ 0.000000] Hierarchical RCU implementation." + 203.5ms (+0.0) [appliance] "[ 0.000000] \x09Build-time adjustment of leaf fanout to 64." + 204.6ms (+1.1) [appliance] "[ 0.000000] \x09RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=1." + 204.6ms (+0.0) [appliance] "[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=1" + 205.7ms (+1.1) [appliance] "[ 0.000000] NR_IRQS:4352 nr_irqs:256 16" + 205.7ms (+0.0) [appliance] "[ 0.000000] Console: colour *CGA 80x25" + 205.7ms (+0.0) [appliance] "[ 0.000000] console [ttyS0] enabled" + 205.7ms (+0.0) [appliance] "[ 0.000000] tsc: Detected 2593.990 MHz processor" + 206.8ms (+1.1) [appliance] "[ 0.052239] Calibrating delay loop (skipped) preset value.. 5187.98 BogoMIPS (lpj=10375960)" + 206.8ms (+0.0) [appliance] "[ 0.052846] pid_max: default: 4096 minimum: 301" + 207.9ms (+1.1) [appliance] "[ 0.053176] ACPI: Core revision 20160422" + 207.9ms (+0.0) [appliance] "[ 0.053481] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)" + 207.9ms (+0.0) [appliance] "[ 0.053961] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes)" + 209.0ms (+1.1) [appliance] "[ 0.054577] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0" + 209.0ms (+0.0) [appliance] "[ 0.054966] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0" + 214.0ms (+5.0) [appliance] "[ 0.059294] Freeing SMP alternatives memory: 16K (ffffffff816e7000 - ffffffff816eb000)" + 215.8ms (+1.8) [appliance] "[ 0.061063] smpboot: Max logical packages: 1" + 215.8ms (+0.0) [appliance] "[ 0.061379] smpboot: APIC(0) Converting physical 0 to logical package 0" + 217.3ms (+1.5) [appliance] "[ 0.062530] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1" + 217.3ms (+0.0) [appliance] "[ 0.062979] TSC deadline timer enabled" + 217.3ms (+0.0) [appliance] "[ 0.063239] smpboot: CPU0: Intel(R) Core(TM) i7-5600U CPU @ 2.60GHz (family: 0x6, model: 0x3d, stepping: 0x4)" + 218.4ms (+1.1) [appliance] "[ 0.063966] calling init_hw_perf_events+0x0/0x4fa @ 1" + 218.4ms (+0.0) [appliance] "[ 0.064315] Performance Events: 16-deep LBR, Broadwell events, Intel PMU driver." + 219.5ms (+1.1) [appliance] "[ 0.064883] ... version: 2" + 219.5ms (+0.0) [appliance] "[ 0.065157] ... bit width: 48" + 219.5ms (+0.0) [appliance] "[ 0.065437] ... generic registers: 4" + 219.5ms (+0.0) [appliance] "[ 0.065714] ... value mask: 0000ffffffffffff" + 220.7ms (+1.1) [appliance] "[ 0.066095] ... max period: 000000007fffffff" + 220.7ms (+0.0) [appliance] "[ 0.066456] ... fixed-purpose events: 3" + 220.7ms (+0.0) [appliance] "[ 0.066732] ... event mask: 000000070000000f" + 221.8ms (+1.1) [appliance] "[ 0.067119] initcall init_hw_perf_events+0x0/0x4fa returned 0 after 0 usecs" + 221.8ms (+0.0) [appliance] "[ 0.067594] calling set_real_mode_permissions+0x0/0x91 @ 1" + 221.8ms (+0.0) [appliance] "[ 0.067997] initcall set_real_mode_permissions+0x0/0x91 returned 0 after 0 usecs" + 222.9ms (+1.1) [appliance] "[ 0.068519] calling validate_x2apic+0x0/0x2f @ 1" + 222.9ms (+0.0) [appliance] "[ 0.068842] initcall validate_x2apic+0x0/0x2f returned 0 after 0 usecs" + 222.9ms (+0.0) [appliance] "[ 0.069296] calling register_trigger_all_cpu_backtrace+0x0/0x11 @ 1" + 224.0ms (+1.1) [appliance] "[ 0.069736] initcall register_trigger_all_cpu_backtrace+0x0/0x11 returned 0 after 0 usecs" + 224.0ms (+0.0) [appliance] "[ 0.070290] calling spawn_ksoftirqd+0x0/0x28 @ 1" + 225.2ms (+1.1) [appliance] "[ 0.070654] initcall spawn_ksoftirqd+0x0/0x28 returned 0 after 0 usecs" + 225.2ms (+0.0) [appliance] "[ 0.071095] calling init_workqueues+0x0/0x374 @ 1" + 225.2ms (+0.0) [appliance] "[ 0.071445] initcall init_workqueues+0x0/0x374 returned 0 after 0 usecs" + 226.3ms (+1.1) [appliance] "[ 0.071927] calling migration_init+0x0/0x3e @ 1" + 226.3ms (+0.0) [appliance] "[ 0.072242] initcall migration_init+0x0/0x3e returned 0 after 0 usecs" + 226.3ms (+0.0) [appliance] "[ 0.072693] calling check_cpu_stall_init+0x0/0x16 @ 1" + 227.4ms (+1.1) [appliance] "[ 0.073054] initcall check_cpu_stall_init+0x0/0x16 returned 0 after 0 usecs" + 227.4ms (+0.0) [appliance] "[ 0.073528] calling rcu_spawn_gp_kthread+0x0/0xf8 @ 1" + 228.6ms (+1.1) [appliance] "[ 0.073913] initcall rcu_spawn_gp_kthread+0x0/0xf8 returned 0 after 0 usecs" + 228.6ms (+0.0) [appliance] "[ 0.074386] calling cpu_stop_init+0x0/0x97 @ 1" + 228.6ms (+0.0) [appliance] "[ 0.074704] initcall cpu_stop_init+0x0/0x97 returned 0 after 0 usecs" + 229.7ms (+1.1) [appliance] "[ 0.075158] calling rand_initialize+0x0/0x30 @ 1" + 229.7ms (+0.0) [appliance] "[ 0.075491] initcall rand_initialize+0x0/0x30 returned 0 after 0 usecs" + 229.7ms (+0.0) [appliance] "[ 0.075944] x86: Booted up 1 node, 1 CPUs" + 230.8ms (+1.1) [appliance] "[ 0.076242] smpboot: Total of 1 processors activated (5187.98 BogoMIPS)" + 230.8ms (+0.0) [appliance] "[ 0.076828] devtmpfs: initialized" + 230.8ms (+0.0) [appliance] "[ 0.077082] x86/mm: Memory block size: 128MB" + 233.8ms (+3.0) [appliance] "[ 0.079031] calling init_mmap_min_addr+0x0/0x11 @ 1" + 233.8ms (+0.0) [appliance] "[ 0.079391] initcall init_mmap_min_addr+0x0/0x11 returned 0 after 0 usecs" + 233.8ms (+0.0) [appliance] "[ 0.079852] calling net_ns_init+0x0/0x1ad @ 1" + 233.8ms (+0.0) [appliance] "[ 0.080179] initcall net_ns_init+0x0/0x1ad returned 0 after 0 usecs" + 234.9ms (+1.1) [appliance] "[ 0.080639] calling e820_mark_nvs_memory+0x0/0x36 @ 1" + 234.9ms (+0.0) [appliance] "[ 0.080987] initcall e820_mark_nvs_memory+0x0/0x36 returned 0 after 0 usecs" + 236.0ms (+1.1) [appliance] "[ 0.081478] calling init_cpu_syscore+0x0/0xf @ 1" + 236.1ms (+0.0) [appliance] "[ 0.081801] initcall init_cpu_syscore+0x0/0xf returned 0 after 0 usecs" + 236.1ms (+0.0) [appliance] "[ 0.082241] calling reboot_init+0x0/0x3 @ 1" + 237.2ms (+1.1) [appliance] "[ 0.082554] initcall reboot_init+0x0/0x3 returned 0 after 0 usecs" + 237.2ms (+0.0) [appliance] "[ 0.082969] calling wq_sysfs_init+0x0/0x26 @ 1" + 237.2ms (+0.0) [appliance] "[ 0.083282] initcall wq_sysfs_init+0x0/0x26 returned 0 after 0 usecs" + 238.3ms (+1.1) [appliance] "[ 0.083737] calling ksysfs_init+0x0/0x8e @ 1" + 238.3ms (+0.0) [appliance] "[ 0.084036] initcall ksysfs_init+0x0/0x8e returned 0 after 0 usecs" + 238.3ms (+0.0) [appliance] "[ 0.084460] calling init_jiffies_clocksource+0x0/0x13 @ 1" + 239.4ms (+1.1) [appliance] "[ 0.084859] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns" + 239.4ms (+0.0) [appliance] "[ 0.085516] initcall init_jiffies_clocksource+0x0/0x13 returned 0 after 0 usecs" + 240.6ms (+1.1) [appliance] "[ 0.086035] calling init_per_zone_wmark_min+0x0/0x9a @ 1" + 240.6ms (+0.0) [appliance] "[ 0.086402] initcall init_per_zone_wmark_min+0x0/0x9a returned 0 after 0 usecs" + 240.6ms (+0.0) [appliance] "[ 0.086893] calling init_zero_pfn+0x0/0x2f @ 1" + 241.7ms (+1.1) [appliance] "[ 0.087223] initcall init_zero_pfn+0x0/0x2f returned 0 after 0 usecs" + 241.7ms (+0.0) [appliance] "[ 0.087657] calling fsnotify_init+0x0/0x1f @ 1" + 241.7ms (+0.0) [appliance] "[ 0.087967] initcall fsnotify_init+0x0/0x1f returned 0 after 0 usecs" + 242.8ms (+1.1) [appliance] "[ 0.088418] calling filelock_init+0x0/0x9a @ 1" + 242.9ms (+0.0) [appliance] "[ 0.088734] initcall filelock_init+0x0/0x9a returned 0 after 0 usecs" + 242.9ms (+0.0) [appliance] "[ 0.089167] calling init_script_binfmt+0x0/0x11 @ 1" + 244.0ms (+1.1) [appliance] "[ 0.089527] initcall init_script_binfmt+0x0/0x11 returned 0 after 0 usecs" + 244.0ms (+0.0) [appliance] "[ 0.089985] calling init_elf_binfmt+0x0/0x11 @ 1" + 244.0ms (+0.0) [appliance] "[ 0.090305] initcall init_elf_binfmt+0x0/0x11 returned 0 after 0 usecs" + 245.1ms (+1.1) [appliance] "[ 0.090770] calling prandom_init+0x0/0xaa @ 1" + 245.1ms (+0.0) [appliance] "[ 0.091074] initcall prandom_init+0x0/0xaa returned 0 after 0 usecs" + 245.1ms (+0.0) [appliance] "[ 0.091511] calling cpuidle_init+0x0/0x36 @ 1" + 246.3ms (+1.1) [appliance] "[ 0.091828] initcall cpuidle_init+0x0/0x36 returned 0 after 0 usecs" + 246.3ms (+0.0) [appliance] "[ 0.092252] calling sock_init+0x0/0x78 @ 1" + 246.3ms (+0.0) [appliance] "[ 0.092545] initcall sock_init+0x0/0x78 returned 0 after 0 usecs" + 247.4ms (+1.1) [appliance] "[ 0.092986] calling netlink_proto_init+0x0/0x158 @ 1" + 247.4ms (+0.0) [appliance] "[ 0.093354] NET: Registered protocol family 16" + 247.4ms (+0.0) [appliance] "[ 0.093662] initcall netlink_proto_init+0x0/0x158 returned 0 after 0 usecs" + 248.5ms (+1.1) [appliance] "[ 0.094171] calling bdi_class_init+0x0/0x2f @ 1" + 248.5ms (+0.0) [appliance] "[ 0.094488] initcall bdi_class_init+0x0/0x2f returned 0 after 0 usecs" + 249.6ms (+1.1) [appliance] "[ 0.094969] calling mm_sysfs_init+0x0/0x24 @ 1" + 249.6ms (+0.0) [appliance] "[ 0.095279] initcall mm_sysfs_init+0x0/0x24 returned 0 after 0 usecs" + 249.6ms (+0.0) [appliance] "[ 0.095714] calling kobject_uevent_init+0x0/0xc @ 1" + 250.8ms (+1.1) [appliance] "[ 0.096068] initcall kobject_uevent_init+0x0/0xc returned 0 after 0 usecs" + 250.8ms (+0.0) [appliance] "[ 0.096534] calling pcibus_class_init+0x0/0x13 @ 1" + 250.8ms (+0.0) [appliance] "[ 0.096870] initcall pcibus_class_init+0x0/0x13 returned 0 after 0 usecs" + 251.9ms (+1.1) [appliance] "[ 0.097351] calling pci_driver_init+0x0/0xc @ 1" + 251.9ms (+0.0) [appliance] "[ 0.097670] initcall pci_driver_init+0x0/0xc returned 0 after 0 usecs" + 251.9ms (+0.0) [appliance] "[ 0.098104] calling tty_class_init+0x0/0x2f @ 1" + 253.0ms (+1.1) [appliance] "[ 0.098442] initcall tty_class_init+0x0/0x2f returned 0 after 0 usecs" + 253.0ms (+0.0) [appliance] "[ 0.098879] calling vtconsole_class_init+0x0/0xd3 @ 1" + 253.1ms (+0.0) [appliance] "[ 0.099233] initcall vtconsole_class_init+0x0/0xd3 returned 0 after 0 usecs" + 254.2ms (+1.1) [appliance] "[ 0.099727] calling init_ladder+0x0/0x16 @ 1" + 254.2ms (+0.0) [appliance] "[ 0.100022] cpuidle: using governor ladder" + 254.2ms (+0.0) [appliance] "[ 0.100302] initcall init_ladder+0x0/0x16 returned 0 after 0 usecs" + 255.3ms (+1.1) [appliance] "[ 0.100765] calling bts_init+0x0/0xa4 @ 1" + 255.3ms (+0.0) [appliance] "[ 0.101044] initcall bts_init+0x0/0xa4 returned -19 after 0 usecs" + 255.3ms (+0.0) [appliance] "[ 0.101460] calling pt_init+0x0/0x30a @ 1" + 256.5ms (+1.1) [appliance] "[ 0.101765] initcall pt_init+0x0/0x30a returned -19 after 0 usecs" + 256.5ms (+0.0) [appliance] "[ 0.102177] calling boot_params_ksysfs_init+0x0/0x22f @ 1" + 256.5ms (+0.0) [appliance] "[ 0.102549] initcall boot_params_ksysfs_init+0x0/0x22f returned 0 after 0 usecs" + 257.6ms (+1.1) [appliance] "[ 0.103066] calling sbf_init+0x0/0xfc @ 1" + 257.6ms (+0.0) [appliance] "[ 0.103346] initcall sbf_init+0x0/0xfc returned 0 after 0 usecs" + 257.6ms (+0.0) [appliance] "[ 0.103749] calling arch_kdebugfs_init+0x0/0xe @ 1" + 258.7ms (+1.1) [appliance] "[ 0.104103] initcall arch_kdebugfs_init+0x0/0xe returned 0 after 0 usecs" + 258.7ms (+0.0) [appliance] "[ 0.104556] calling ffh_cstate_init+0x0/0x25 @ 1" + 258.7ms (+0.0) [appliance] "[ 0.104878] initcall ffh_cstate_init+0x0/0x25 returned 0 after 0 usecs" + 259.9ms (+1.1) [appliance] "[ 0.105340] calling activate_jump_labels+0x0/0x73 @ 1" + 259.9ms (+0.0) [appliance] "[ 0.105694] initcall activate_jump_labels+0x0/0x73 returned 0 after 0 usecs" + 259.9ms (+0.0) [appliance] "[ 0.106163] calling acpi_pci_init+0x0/0x49 @ 1" + 261.0ms (+1.1) [appliance] "[ 0.106495] ACPI: bus type PCI registered" + 261.0ms (+0.0) [appliance] "[ 0.106830] initcall acpi_pci_init+0x0/0x49 returned 0 after 0 usecs" + 261.0ms (+0.0) [appliance] "[ 0.107272] calling pci_arch_init+0x0/0x53 @ 1" + 262.1ms (+1.1) [appliance] "[ 0.107613] PCI: Using configuration type 1 for base access" + 262.1ms (+0.0) [appliance] "[ 0.108007] initcall pci_arch_init+0x0/0x53 returned 0 after 0 usecs" + 263.2ms (+1.1) [appliance] "[ 0.108471] calling init_vdso+0x0/0x2c @ 1" + 263.2ms (+0.0) [appliance] "[ 0.108776] initcall init_vdso+0x0/0x2c returned 0 after 0 usecs" + 263.2ms (+0.0) [appliance] "[ 0.109194] calling fixup_ht_bug+0x0/0xb3 @ 1" + 263.2ms (+0.0) [appliance] "[ 0.109504] initcall fixup_ht_bug+0x0/0xb3 returned 0 after 0 usecs" + 264.3ms (+1.1) [appliance] "[ 0.109951] calling topology_init+0x0/0x49 @ 1" + 264.3ms (+0.0) [appliance] "[ 0.110285] initcall topology_init+0x0/0x49 returned 0 after 0 usecs" + 265.4ms (+1.1) [appliance] "[ 0.110732] calling uid_cache_init+0x0/0xc7 @ 1" + 265.4ms (+0.0) [appliance] "[ 0.111058] initcall uid_cache_init+0x0/0xc7 returned 0 after 0 usecs" + 265.4ms (+0.0) [appliance] "[ 0.111508] calling param_sysfs_init+0x0/0x1ae @ 1" + 266.5ms (+1.1) [appliance] "[ 0.112036] initcall param_sysfs_init+0x0/0x1ae returned 0 after 0 usecs" + 266.5ms (+0.0) [appliance] "[ 0.112508] calling oom_init+0x0/0x5a @ 1" + 266.5ms (+0.0) [appliance] "[ 0.112810] initcall oom_init+0x0/0x5a returned 0 after 0 usecs" + 267.6ms (+1.1) [appliance] "[ 0.113229] calling default_bdi_init+0x0/0x36 @ 1" + 267.6ms (+0.0) [appliance] "[ 0.113580] initcall default_bdi_init+0x0/0x36 returned 0 after 0 usecs" + 268.7ms (+1.1) [appliance] "[ 0.114055] calling percpu_enable_async+0x0/0xa @ 1" + 268.7ms (+0.0) [appliance] "[ 0.114404] initcall percpu_enable_async+0x0/0xa returned 0 after 0 usecs" + 268.7ms (+0.0) [appliance] "[ 0.114881] calling init_reserve_notifier+0x0/0x1f @ 1" + 269.8ms (+1.1) [appliance] "[ 0.115248] initcall init_reserve_notifier+0x0/0x1f returned 0 after 0 usecs" + 269.8ms (+0.0) [appliance] "[ 0.115743] calling init_admin_reserve+0x0/0x40 @ 1" + 269.8ms (+0.0) [appliance] "[ 0.116092] initcall init_admin_reserve+0x0/0x40 returned 0 after 0 usecs" + 270.9ms (+1.1) [appliance] "[ 0.116567] calling init_user_reserve+0x0/0x40 @ 1" + 270.9ms (+0.0) [appliance] "[ 0.116912] initcall init_user_reserve+0x0/0x40 returned 0 after 0 usecs" + 272.0ms (+1.1) [appliance] "[ 0.117382] calling crypto_wq_init+0x0/0x2c @ 1" + 272.0ms (+0.0) [appliance] "[ 0.117717] initcall crypto_wq_init+0x0/0x2c returned 0 after 0 usecs" + 272.0ms (+0.0) [appliance] "[ 0.118189] calling cryptomgr_init+0x0/0xc @ 1" + 273.1ms (+1.1) [appliance] "[ 0.118512] initcall cryptomgr_init+0x0/0xc returned 0 after 0 usecs" + 273.1ms (+0.0) [appliance] "[ 0.118959] calling init_bio+0x0/0xa9 @ 1" + 273.1ms (+0.0) [appliance] "[ 0.119258] initcall init_bio+0x0/0xa9 returned 0 after 0 usecs" + 274.2ms (+1.1) [appliance] "[ 0.119681] calling blk_settings_init+0x0/0x25 @ 1" + 274.2ms (+0.0) [appliance] "[ 0.120026] initcall blk_settings_init+0x0/0x25 returned 0 after 0 usecs" + 274.2ms (+0.0) [appliance] "[ 0.120495] calling blk_ioc_init+0x0/0x25 @ 1" + 275.3ms (+1.1) [appliance] "[ 0.120814] initcall blk_ioc_init+0x0/0x25 returned 0 after 0 usecs" + 275.3ms (+0.0) [appliance] "[ 0.121252] calling blk_softirq_init+0x0/0x59 @ 1" + 275.3ms (+0.0) [appliance] "[ 0.121589] initcall blk_softirq_init+0x0/0x59 returned 0 after 0 usecs" + 276.4ms (+1.1) [appliance] "[ 0.122057] calling blk_mq_init+0x0/0x8 @ 1" + 276.4ms (+0.0) [appliance] "[ 0.122365] initcall blk_mq_init+0x0/0x8 returned 0 after 0 usecs" + 276.4ms (+0.0) [appliance] "[ 0.122796] calling genhd_device_init+0x0/0x71 @ 1" + 277.5ms (+1.1) [appliance] "[ 0.123151] initcall genhd_device_init+0x0/0x71 returned 0 after 0 usecs" + 277.5ms (+0.0) [appliance] "[ 0.123623] calling pci_slot_init+0x0/0x40 @ 1" + 278.7ms (+1.1) [appliance] "[ 0.123948] initcall pci_slot_init+0x0/0x40 returned 0 after 0 usecs" + 278.7ms (+0.0) [appliance] "[ 0.124394] calling acpi_init+0x0/0x28d @ 1" + 278.7ms (+0.0) [appliance] "[ 0.124703] ACPI: Added _OSI(Module Device)" + 278.7ms (+0.0) [appliance] "[ 0.125000] ACPI: Added _OSI(Processor Device)" + 279.8ms (+1.1) [appliance] "[ 0.125315] ACPI: Added _OSI(3.0 _SCP Extensions)" + 279.8ms (+0.0) [appliance] "[ 0.125647] ACPI: Added _OSI(Processor Aggregator Device)" + 281.7ms (+2.0) [appliance] "[ 0.127024] ACPI: 2 ACPI AML tables successfully acquired and loaded" + 281.7ms (+0.0) [appliance] "[ 0.127484] " + 283.0ms (+1.3) [appliance] "[ 0.128292] ACPI: Interpreter enabled" + 283.0ms (+0.0) [appliance] "[ 0.128563] ACPI: (supports S0 S5)" + 283.0ms (+0.0) [appliance] "[ 0.128808] ACPI: Using IOAPIC for interrupt routing" + 283.0ms (+0.0) [appliance] "[ 0.129164] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug" + 287.2ms (+4.2) [appliance] "[ 0.132479] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])" + 287.2ms (+0.0) [appliance] "[ 0.132924] acpi PNP0A03:00: _OSC: OS supports [Segments]" + 287.2ms (+0.0) [appliance] "[ 0.133305] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM" + 288.3ms (+1.1) [appliance] "[ 0.133790] PCI host bridge to bus 0000:00" + 288.3ms (+0.0) [appliance] "[ 0.134084] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]" + 288.3ms (+0.0) [appliance] "[ 0.134567] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]" + 289.4ms (+1.1) [appliance] "[ 0.135045] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]" + 289.4ms (+0.0) [appliance] "[ 0.135567] pci_bus 0000:00: root bus resource [mem 0x1f400000-0xfebfffff window]" + 290.5ms (+1.1) [appliance] "[ 0.136089] pci_bus 0000:00: root bus resource [bus 00-ff]" + 290.5ms (+0.0) [appliance] "[ 0.136500] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000" + 291.6ms (+1.1) [appliance] "[ 0.137167] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100" + 291.6ms (+0.0) [appliance] "[ 0.137924] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180" + 306.2ms (+14.6) [appliance] "[ 0.151450] pci 0000:00:01.1: reg 0x20: [io 0xc080-0xc08f]" + 309.6ms (+3.5) [appliance] "[ 0.154909] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]" + 309.6ms (+0.0) [appliance] "[ 0.155427] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]" + 309.6ms (+0.0) [appliance] "[ 0.155895] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]" + 310.7ms (+1.1) [appliance] "[ 0.156398] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]" + 310.7ms (+0.0) [appliance] "[ 0.157006] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000" + 311.8ms (+1.1) [appliance] "[ 0.157693] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI" + 311.8ms (+0.0) [appliance] "[ 0.158204] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB" + 312.9ms (+1.1) [appliance] "[ 0.158845] pci 0000:00:02.0: [1af4:1005] type 00 class 0x00ff00" + 316.3ms (+3.3) [appliance] "[ 0.161553] pci 0000:00:02.0: reg 0x10: [io 0xc040-0xc05f]" + 324.8ms (+8.5) [appliance] "[ 0.170079] pci 0000:00:03.0: [1af4:1004] type 00 class 0x010000" + 327.3ms (+2.5) [appliance] "[ 0.171579] pci 0000:00:03.0: reg 0x10: [io 0xc000-0xc03f]" + 329.0ms (+1.7) [appliance] "[ 0.174292] pci 0000:00:03.0: reg 0x14: [mem 0xfebfe000-0xfebfefff]" + 356.5ms (+27.5) [appliance] "[ 0.201811] pci 0000:00:04.0: [1af4:1003] type 00 class 0x078000" + 359.1ms (+2.6) [appliance] "[ 0.204412] pci 0000:00:04.0: reg 0x10: [io 0xc060-0xc07f]" + 363.8ms (+4.7) [appliance] "[ 0.209129] pci 0000:00:04.0: reg 0x14: [mem 0xfebff000-0xfebfffff]" + 374.4ms (+10.6) [appliance] "[ 0.219714] pci_bus 0000:00: on NUMA node 0" + 374.4ms (+0.0) [appliance] "[ 0.220193] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)" + 374.4ms (+0.0) [appliance] "[ 0.220700] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)" + 375.5ms (+1.1) [appliance] "[ 0.221196] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)" + 377.2ms (+1.6) [appliance] "[ 0.222852] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)" + 377.2ms (+0.0) [appliance] "[ 0.223323] ACPI: PCI Interrupt Link [LNKS] (IRQs *9)" + 378.2ms (+1.1) [appliance] "[ 0.224461] ACPI: Enabled 16 GPEs in block 00 to 0F" + 379.3ms (+1.1) [appliance] "[ 0.224847] initcall acpi_init+0x0/0x28d returned 0 after 82031 usecs" + 379.3ms (+0.0) [appliance] "[ 0.225308] calling pnp_init+0x0/0xc @ 1" + 379.3ms (+0.0) [appliance] "[ 0.225599] initcall pnp_init+0x0/0xc returned 0 after 0 usecs" + 380.4ms (+1.1) [appliance] "[ 0.226016] calling misc_init+0x0/0xb5 @ 1" + 380.4ms (+0.0) [appliance] "[ 0.226319] initcall misc_init+0x0/0xb5 returned 0 after 0 usecs" + 380.4ms (+0.0) [appliance] "[ 0.226753] calling vga_arb_device_init+0x0/0x19e @ 1" + 381.6ms (+1.1) [appliance] "[ 0.227144] vgaarb: loaded" + 381.6ms (+0.0) [appliance] "[ 0.227342] initcall vga_arb_device_init+0x0/0x19e returned 0 after 0 usecs" + 381.6ms (+0.0) [appliance] "[ 0.227833] calling libnvdimm_init+0x0/0x30 @ 1" + 382.7ms (+1.1) [appliance] "[ 0.228174] initcall libnvdimm_init+0x0/0x30 returned 0 after 0 usecs" + 382.7ms (+0.0) [appliance] "[ 0.228624] calling init_scsi+0x0/0x7e @ 1" + 382.7ms (+0.0) [appliance] "[ 0.228955] SCSI subsystem initialized" + 383.8ms (+1.1) [appliance] "[ 0.229226] initcall init_scsi+0x0/0x7e returned 0 after 0 usecs" + 383.8ms (+0.0) [appliance] "[ 0.229649] calling serio_init+0x0/0x25 @ 1" + 383.8ms (+0.0) [appliance] "[ 0.229954] initcall serio_init+0x0/0x25 returned 0 after 0 usecs" + 384.9ms (+1.1) [appliance] "[ 0.230381] calling input_init+0x0/0xfc @ 1" + 384.9ms (+0.0) [appliance] "[ 0.230687] initcall input_init+0x0/0xfc returned 0 after 0 usecs" + 384.9ms (+0.0) [appliance] "[ 0.231123] calling power_supply_class_init+0x0/0x3b @ 1" + 386.0ms (+1.1) [appliance] "[ 0.231504] initcall power_supply_class_init+0x0/0x3b returned 0 after 0 usecs" + 386.0ms (+0.0) [appliance] "[ 0.232011] calling pci_subsys_init+0x0/0x43 @ 1" + 386.0ms (+0.0) [appliance] "[ 0.232341] PCI: Using ACPI for IRQ routing" + 387.1ms (+1.1) [appliance] "[ 0.232648] PCI: pci_cache_line_size set to 64 bytes" + 387.1ms (+0.0) [appliance] "[ 0.233075] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]" + 388.2ms (+1.1) [appliance] "[ 0.233498] e820: reserve RAM buffer [mem 0x1f3df000-0x1fffffff]" + 388.2ms (+0.0) [appliance] "[ 0.233923] initcall pci_subsys_init+0x0/0x43 returned 0 after 0 usecs" + 388.2ms (+0.0) [appliance] "[ 0.234384] calling proto_init+0x0/0xc @ 1" + 389.3ms (+1.1) [appliance] "[ 0.234687] initcall proto_init+0x0/0xc returned 0 after 0 usecs" + 389.3ms (+0.0) [appliance] "[ 0.235112] calling net_dev_init+0x0/0x1b0 @ 1" + 389.3ms (+0.0) [appliance] "[ 0.235480] initcall net_dev_init+0x0/0x1b0 returned 0 after 0 usecs" + 390.4ms (+1.1) [appliance] "[ 0.235934] calling neigh_init+0x0/0x7b @ 1" + 390.4ms (+0.0) [appliance] "[ 0.236239] initcall neigh_init+0x0/0x7b returned 0 after 0 usecs" + 390.4ms (+0.0) [appliance] "[ 0.236669] calling genl_init+0x0/0x84 @ 1" + 391.5ms (+1.1) [appliance] "[ 0.236973] initcall genl_init+0x0/0x84 returned 0 after 0 usecs" + 391.5ms (+0.0) [appliance] "[ 0.237418] calling nmi_warning_debugfs+0x0/0x3 @ 1" + 391.5ms (+0.0) [appliance] "[ 0.237772] initcall nmi_warning_debugfs+0x0/0x3 returned 0 after 0 usecs" + 392.6ms (+1.1) [appliance] "[ 0.238247] calling hpet_late_init+0x0/0xbc @ 1" + 392.6ms (+0.0) [appliance] "[ 0.238577] initcall hpet_late_init+0x0/0xbc returned -19 after 0 usecs" + 393.7ms (+1.1) [appliance] "[ 0.239050] calling clocksource_done_booting+0x0/0x3d @ 1" + 393.7ms (+0.0) [appliance] "[ 0.239448] clocksource: Switched to clocksource kvm-clock" + 393.7ms (+0.0) [appliance] "[ 0.239838] initcall clocksource_done_booting+0x0/0x3d returned 0 after 382 usecs" + 394.8ms (+1.1) [appliance] "[ 0.240365] calling init_pipe_fs+0x0/0x42 @ 1" + 394.8ms (+0.0) [appliance] "[ 0.240689] initcall init_pipe_fs+0x0/0x42 returned 0 after 6 usecs" + 394.8ms (+0.0) [appliance] "[ 0.241129] calling inotify_user_setup+0x0/0x46 @ 1" + 395.9ms (+1.1) [appliance] "[ 0.241482] initcall inotify_user_setup+0x0/0x46 returned 0 after 1 usecs" + 395.9ms (+0.0) [appliance] "[ 0.241959] calling eventpoll_init+0x0/0xdd @ 1" + 395.9ms (+0.0) [appliance] "[ 0.242286] initcall eventpoll_init+0x0/0xdd returned 0 after 0 usecs" + 397.0ms (+1.1) [appliance] "[ 0.242743] calling anon_inode_init+0x0/0x56 @ 1" + 397.0ms (+0.0) [appliance] "[ 0.243078] initcall anon_inode_init+0x0/0x56 returned 0 after 2 usecs" + 398.1ms (+1.1) [appliance] "[ 0.243544] calling proc_locks_init+0x0/0x1d @ 1" + 398.1ms (+0.0) [appliance] "[ 0.243881] initcall proc_locks_init+0x0/0x1d returned 0 after 1 usecs" + 398.1ms (+0.0) [appliance] "[ 0.244338] calling proc_cmdline_init+0x0/0x1d @ 1" + 399.2ms (+1.1) [appliance] "[ 0.244686] initcall proc_cmdline_init+0x0/0x1d returned 0 after 0 usecs" + 399.2ms (+0.0) [appliance] "[ 0.245156] calling proc_consoles_init+0x0/0x1d @ 1" + 399.2ms (+0.0) [appliance] "[ 0.245507] initcall proc_consoles_init+0x0/0x1d returned 0 after 0 usecs" + 400.3ms (+1.1) [appliance] "[ 0.245989] calling proc_cpuinfo_init+0x0/0x1d @ 1" + 400.3ms (+0.0) [appliance] "[ 0.246334] initcall proc_cpuinfo_init+0x0/0x1d returned 0 after 0 usecs" + 401.5ms (+1.1) [appliance] "[ 0.246810] calling proc_devices_init+0x0/0x1d @ 1" + 401.5ms (+0.0) [appliance] "[ 0.247155] initcall proc_devices_init+0x0/0x1d returned 0 after 0 usecs" + 401.5ms (+0.0) [appliance] "[ 0.247635] calling proc_interrupts_init+0x0/0x1d @ 1" + 402.6ms (+1.1) [appliance] "[ 0.247998] initcall proc_interrupts_init+0x0/0x1d returned 0 after 0 usecs" + 402.6ms (+0.0) [appliance] "[ 0.248488] calling proc_loadavg_init+0x0/0x1d @ 1" + 402.6ms (+0.0) [appliance] "[ 0.248836] initcall proc_loadavg_init+0x0/0x1d returned 0 after 1 usecs" + 403.7ms (+1.1) [appliance] "[ 0.249309] calling proc_meminfo_init+0x0/0x1d @ 1" + 403.7ms (+0.0) [appliance] "[ 0.249655] initcall proc_meminfo_init+0x0/0x1d returned 0 after 0 usecs" + 404.8ms (+1.1) [appliance] "[ 0.250125] calling proc_stat_init+0x0/0x1d @ 1" + 404.8ms (+0.0) [appliance] "[ 0.250452] initcall proc_stat_init+0x0/0x1d returned 0 after 0 usecs" + 404.8ms (+0.0) [appliance] "[ 0.250906] calling proc_uptime_init+0x0/0x1d @ 1" + 405.9ms (+1.1) [appliance] "[ 0.251246] initcall proc_uptime_init+0x0/0x1d returned 0 after 0 usecs" + 405.9ms (+0.0) [appliance] "[ 0.251716] calling proc_version_init+0x0/0x1d @ 1" + 405.9ms (+0.0) [appliance] "[ 0.252059] initcall proc_version_init+0x0/0x1d returned 0 after 0 usecs" + 407.0ms (+1.1) [appliance] "[ 0.252531] calling proc_softirqs_init+0x0/0x1d @ 1" + 407.0ms (+0.0) [appliance] "[ 0.252882] initcall proc_softirqs_init+0x0/0x1d returned 0 after 0 usecs" + 407.0ms (+0.0) [appliance] "[ 0.253356] calling proc_kmsg_init+0x0/0x20 @ 1" + 408.1ms (+1.1) [appliance] "[ 0.253686] initcall proc_kmsg_init+0x0/0x20 returned 0 after 0 usecs" + 408.1ms (+0.0) [appliance] "[ 0.254136] calling proc_page_init+0x0/0x3d @ 1" + 408.1ms (+0.0) [appliance] "[ 0.254462] initcall proc_page_init+0x0/0x3d returned 0 after 0 usecs" + 409.2ms (+1.1) [appliance] "[ 0.254913] calling init_ramfs_fs+0x0/0x1a @ 1" + 409.2ms (+0.0) [appliance] "[ 0.255233] initcall init_ramfs_fs+0x0/0x1a returned 0 after 0 usecs" + 410.3ms (+1.1) [appliance] "[ 0.255687] calling blk_scsi_ioctl_init+0x0/0x365 @ 1" + 410.3ms (+0.0) [appliance] "[ 0.256049] initcall blk_scsi_ioctl_init+0x0/0x365 returned 0 after 0 usecs" + 410.3ms (+0.0) [appliance] "[ 0.256534] calling acpi_event_init+0x0/0x33 @ 1" + 411.4ms (+1.1) [appliance] "[ 0.256874] initcall acpi_event_init+0x0/0x33 returned 0 after 3 usecs" + 411.4ms (+0.0) [appliance] "[ 0.257329] calling pnp_system_init+0x0/0xc @ 1" + 411.4ms (+0.0) [appliance] "[ 0.257661] initcall pnp_system_init+0x0/0xc returned 0 after 4 usecs" + 412.5ms (+1.1) [appliance] "[ 0.258112] calling pnpacpi_init+0x0/0x69 @ 1" + 412.5ms (+0.0) [appliance] "[ 0.258424] pnp: PnP ACPI init" + 412.5ms (+0.0) [appliance] "[ 0.258671] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)" + 413.6ms (+1.1) [appliance] "[ 0.259146] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)" + 413.6ms (+0.0) [appliance] "[ 0.259621] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)" + 414.7ms (+1.1) [appliance] "[ 0.260087] pnp 00:03: [dma 2]" + 414.7ms (+0.0) [appliance] "[ 0.260311] pnp 00:03: Plug and Play ACPI device, IDs PNP0700 (active)" + 414.7ms (+0.0) [appliance] "[ 0.260808] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)" + 415.8ms (+1.1) [appliance] "[ 0.261844] pnp: PnP ACPI: found 5 devices" + 415.8ms (+0.0) [appliance] "[ 0.262135] initcall pnpacpi_init+0x0/0x69 returned 0 after 3623 usecs" + 416.9ms (+1.1) [appliance] "[ 0.262592] calling chr_dev_init+0x0/0xa4 @ 1" + 418.0ms (+1.1) [appliance] "[ 0.263268] initcall chr_dev_init+0x0/0xa4 returned 0 after 352 usecs" + 418.0ms (+0.0) [appliance] "[ 0.263736] calling thermal_init+0x0/0x6f @ 1" + 418.0ms (+0.0) [appliance] "[ 0.264056] initcall thermal_init+0x0/0x6f returned 0 after 7 usecs" + 419.1ms (+1.1) [appliance] "[ 0.264496] calling init_acpi_pm_clocksource+0x0/0xd2 @ 1" + 424.1ms (+5.1) [appliance] "[ 0.269403] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns" + 424.1ms (+0.0) [appliance] "[ 0.270023] initcall init_acpi_pm_clocksource+0x0/0xd2 returned 0 after 5020 usecs" + 425.2ms (+1.1) [appliance] "[ 0.270554] calling pcibios_assign_resources+0x0/0xbb @ 1" + 425.2ms (+0.0) [appliance] "[ 0.270943] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]" + 425.2ms (+0.0) [appliance] "[ 0.271373] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]" + 426.3ms (+1.1) [appliance] "[ 0.271816] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]" + 426.3ms (+0.0) [appliance] "[ 0.272295] pci_bus 0000:00: resource 7 [mem 0x1f400000-0xfebfffff window]" + 427.5ms (+1.1) [appliance] "[ 0.272775] initcall pcibios_assign_resources+0x0/0xbb returned 0 after 1792 usecs" + 427.5ms (+0.0) [appliance] "[ 0.273301] calling sysctl_core_init+0x0/0x26 @ 1" + 427.5ms (+0.0) [appliance] "[ 0.273647] initcall sysctl_core_init+0x0/0x26 returned 0 after 6 usecs" + 428.6ms (+1.1) [appliance] "[ 0.274113] calling eth_offload_init+0x0/0xf @ 1" + 428.6ms (+0.0) [appliance] "[ 0.274444] initcall eth_offload_init+0x0/0xf returned 0 after 0 usecs" + 428.6ms (+0.0) [appliance] "[ 0.274903] calling af_unix_init+0x0/0x49 @ 1" + 429.7ms (+1.1) [appliance] "[ 0.275218] NET: Registered protocol family 1" + 429.7ms (+0.0) [appliance] "[ 0.275531] initcall af_unix_init+0x0/0x49 returned 0 after 306 usecs" + 429.7ms (+0.0) [appliance] "[ 0.275984] calling pci_apply_final_quirks+0x0/0xfe @ 1" + 430.8ms (+1.1) [appliance] "[ 0.276357] pci 0000:00:00.0: Limiting direct PCI/PCI transfers" + 430.8ms (+0.0) [appliance] "[ 0.276779] pci 0000:00:01.0: PIIX3: Enabling Passive Release" + 431.9ms (+1.1) [appliance] "[ 0.277193] pci 0000:00:01.0: Activating ISA DMA hang workarounds" + 431.9ms (+0.0) [appliance] "[ 0.277653] PCI: CLS 0 bytes, default 64" + 431.9ms (+0.0) [appliance] "[ 0.277931] initcall pci_apply_final_quirks+0x0/0xfe returned 0 after 1538 usecs" + 433.0ms (+1.1) [appliance] "[ 0.278447] calling acpi_reserve_resources+0x0/0xe6 @ 1" + 433.0ms (+0.0) [appliance] "[ 0.278827] initcall acpi_reserve_resources+0x0/0xe6 returned 0 after 2 usecs" + 433.0ms (+0.0) [appliance] "[ 0.279327] calling populate_rootfs+0x0/0xa1 @ 1" + 434.1ms (+1.1) [appliance] "[ 0.279689] Unpacking initramfs..." + 434.1ms (+0.0) [appliance] "[ 0.280018] Freeing initrd memory: 164K (ffff88001f3a7000 - ffff88001f3d0000)" + 435.2ms (+1.1) [appliance] "[ 0.280519] initcall populate_rootfs+0x0/0xa1 returned 0 after 830 usecs" + 435.2ms (+0.0) [appliance] "[ 0.280992] calling pci_iommu_init+0x0/0x37 @ 1" + 435.2ms (+0.0) [appliance] "[ 0.281316] initcall pci_iommu_init+0x0/0x37 returned 0 after 0 usecs" + 436.3ms (+1.1) [appliance] "[ 0.281793] calling amd_ibs_init+0x0/0x2d9 @ 1" + 436.3ms (+0.0) [appliance] "[ 0.282112] initcall amd_ibs_init+0x0/0x2d9 returned -19 after 0 usecs" + 436.3ms (+0.0) [appliance] "[ 0.282569] calling msr_init+0x0/0xbe @ 1" + 437.4ms (+1.1) [appliance] "[ 0.282869] initcall msr_init+0x0/0xbe returned 0 after 5 usecs" + 437.4ms (+0.0) [appliance] "[ 0.283283] calling intel_cqm_init+0x0/0x495 @ 1" + 437.4ms (+0.0) [appliance] "[ 0.283621] initcall intel_cqm_init+0x0/0x495 returned -19 after 0 usecs" + 438.5ms (+1.1) [appliance] "[ 0.284092] calling rapl_pmu_init+0x0/0x254 @ 1" + 438.5ms (+0.0) [appliance] "[ 0.284419] initcall rapl_pmu_init+0x0/0x254 returned -1 after 1 usecs" + 438.5ms (+0.0) [appliance] "[ 0.284875] calling intel_uncore_init+0x0/0x2cf @ 1" + 439.7ms (+1.1) [appliance] "[ 0.285224] initcall intel_uncore_init+0x0/0x2cf returned -19 after 0 usecs" + 439.7ms (+0.0) [appliance] "[ 0.285709] calling cstate_pmu_init+0x0/0x179 @ 1" + 439.7ms (+0.0) [appliance] "[ 0.286046] initcall cstate_pmu_init+0x0/0x179 returned -19 after 0 usecs" + 440.8ms (+1.1) [appliance] "[ 0.286521] calling register_kernel_offset_dumper+0x0/0x16 @ 1" + 440.8ms (+0.0) [appliance] "[ 0.286937] initcall register_kernel_offset_dumper+0x0/0x16 returned 0 after 0 usecs" + 441.9ms (+1.1) [appliance] "[ 0.287478] calling i8259A_init_ops+0x0/0x1c @ 1" + 441.9ms (+0.0) [appliance] "[ 0.287813] initcall i8259A_init_ops+0x0/0x1c returned 0 after 0 usecs" + 443.0ms (+1.1) [appliance] "[ 0.288269] calling init_tsc_clocksource+0x0/0xad @ 1" + 443.0ms (+0.0) [appliance] "[ 0.288634] initcall init_tsc_clocksource+0x0/0xad returned 0 after 0 usecs" + 443.0ms (+0.0) [appliance] "[ 0.289118] calling add_rtc_cmos+0x0/0xa0 @ 1" + 444.1ms (+1.1) [appliance] "[ 0.289432] initcall add_rtc_cmos+0x0/0xa0 returned 0 after 0 usecs" + 444.1ms (+0.0) [appliance] "[ 0.289871] calling i8237A_init_ops+0x0/0xf @ 1" + 444.1ms (+0.0) [appliance] "[ 0.290200] initcall i8237A_init_ops+0x0/0xf returned 0 after 0 usecs" + 445.2ms (+1.1) [appliance] "[ 0.290651] calling ioapic_init_ops+0x0/0xf @ 1" + 445.2ms (+0.0) [appliance] "[ 0.290975] initcall ioapic_init_ops+0x0/0xf returned 0 after 0 usecs" + 445.2ms (+0.0) [appliance] "[ 0.291423] calling sysfb_init+0x0/0x6b @ 1" + 446.3ms (+1.1) [appliance] "[ 0.291743] initcall sysfb_init+0x0/0x6b returned 0 after 9 usecs" + 446.3ms (+0.0) [appliance] "[ 0.292172] calling pmc_atom_init+0x0/0xec @ 1" + 446.3ms (+0.0) [appliance] "[ 0.292491] initcall pmc_atom_init+0x0/0xec returned -19 after 1 usecs" + 447.4ms (+1.1) [appliance] "[ 0.292950] calling proc_execdomains_init+0x0/0x1d @ 1" + 447.4ms (+0.0) [appliance] "[ 0.293317] initcall proc_execdomains_init+0x0/0x1d returned 0 after 1 usecs" + 448.5ms (+1.1) [appliance] "[ 0.293812] calling ioresources_init+0x0/0x37 @ 1" + 448.5ms (+0.0) [appliance] "[ 0.294150] initcall ioresources_init+0x0/0x37 returned 0 after 1 usecs" + 448.5ms (+0.0) [appliance] "[ 0.294612] calling init_sched_debug_procfs+0x0/0x27 @ 1" + 449.6ms (+1.1) [appliance] "[ 0.294996] initcall init_sched_debug_procfs+0x0/0x27 returned 0 after 0 usecs" + 449.6ms (+0.0) [appliance] "[ 0.295505] calling init_posix_timers+0x0/0x274 @ 1" + 449.6ms (+0.0) [appliance] "[ 0.295860] initcall init_posix_timers+0x0/0x274 returned 0 after 2 usecs" + 450.7ms (+1.1) [appliance] "[ 0.296336] calling init_posix_cpu_timers+0x0/0xb8 @ 1" + 450.7ms (+0.0) [appliance] "[ 0.296704] initcall init_posix_cpu_timers+0x0/0xb8 returned 0 after 0 usecs" + 451.8ms (+1.1) [appliance] "[ 0.297198] calling timekeeping_init_ops+0x0/0xf @ 1" + 451.8ms (+0.0) [appliance] "[ 0.297551] initcall timekeeping_init_ops+0x0/0xf returned 0 after 0 usecs" + 451.8ms (+0.0) [appliance] "[ 0.298034] calling init_clocksource_sysfs+0x0/0x64 @ 1" + 452.9ms (+1.1) [appliance] "[ 0.298419] initcall init_clocksource_sysfs+0x0/0x64 returned 0 after 10 usecs" + 452.9ms (+0.0) [appliance] "[ 0.298925] calling init_timer_list_procfs+0x0/0x27 @ 1" + 452.9ms (+0.0) [appliance] "[ 0.299296] initcall init_timer_list_procfs+0x0/0x27 returned 0 after 0 usecs" + 454.0ms (+1.1) [appliance] "[ 0.299802] calling alarmtimer_init+0x0/0xee @ 1" + 454.0ms (+0.0) [appliance] "[ 0.300143] initcall alarmtimer_init+0x0/0xee returned 0 after 9 usecs" + 455.1ms (+1.1) [appliance] "[ 0.300601] calling clockevents_init_sysfs+0x0/0xcd @ 1" + 455.1ms (+0.0) [appliance] "[ 0.300985] initcall clockevents_init_sysfs+0x0/0xcd returned 0 after 10 usecs" + 455.1ms (+0.0) [appliance] "[ 0.301487] calling futex_init+0x0/0xad @ 1" + 456.3ms (+1.1) [appliance] "[ 0.301792] futex hash table entries: 16 (order: -2, 1024 bytes)" + 456.3ms (+0.0) [appliance] "[ 0.302212] initcall futex_init+0x0/0xad returned 0 after 410 usecs" + 457.4ms (+1.1) [appliance] "[ 0.302652] calling proc_dma_init+0x0/0x1d @ 1" + 457.4ms (+0.0) [appliance] "[ 0.302971] initcall proc_dma_init+0x0/0x1d returned 0 after 0 usecs" + 457.4ms (+0.0) [appliance] "[ 0.303414] calling proc_modules_init+0x0/0x1d @ 1" + 458.5ms (+1.1) [appliance] "[ 0.303764] initcall proc_modules_init+0x0/0x1d returned 0 after 0 usecs" + 458.5ms (+0.0) [appliance] "[ 0.304232] calling kallsyms_init+0x0/0x20 @ 1" + 458.5ms (+0.0) [appliance] "[ 0.304550] initcall kallsyms_init+0x0/0x20 returned 0 after 0 usecs" + 459.6ms (+1.1) [appliance] "[ 0.304999] calling utsname_sysctl_init+0x0/0xf @ 1" + 459.6ms (+0.0) [appliance] "[ 0.305350] initcall utsname_sysctl_init+0x0/0xf returned 0 after 3 usecs" + 459.6ms (+0.0) [appliance] "[ 0.305825] calling perf_event_sysfs_init+0x0/0x8f @ 1" + 460.7ms (+1.1) [appliance] "[ 0.306222] initcall perf_event_sysfs_init+0x0/0x8f returned 0 after 27 usecs" + 460.7ms (+0.0) [appliance] "[ 0.306723] calling kswapd_init+0x0/0xf @ 1" + 460.7ms (+0.0) [appliance] "[ 0.307056] initcall kswapd_init+0x0/0xf returned 0 after 32 usecs" + 461.8ms (+1.1) [appliance] "[ 0.307500] calling setup_vmstat+0x0/0x1a8 @ 1" + 461.8ms (+0.0) [appliance] "[ 0.307835] initcall setup_vmstat+0x0/0x1a8 returned 0 after 12 usecs" + 462.9ms (+1.1) [appliance] "[ 0.308292] calling mm_compute_batch_init+0x0/0x14 @ 1" + 462.9ms (+0.0) [appliance] "[ 0.308663] initcall mm_compute_batch_init+0x0/0x14 returned 0 after 0 usecs" + 462.9ms (+0.0) [appliance] "[ 0.309156] calling slab_proc_init+0x0/0x20 @ 1" + 464.0ms (+1.1) [appliance] "[ 0.309484] initcall slab_proc_init+0x0/0x20 returned 0 after 0 usecs" + 464.0ms (+0.0) [appliance] "[ 0.309939] calling workingset_init+0x0/0x7a @ 1" + 464.0ms (+0.0) [appliance] "[ 0.310270] workingset: timestamp_bits=60 max_order=17 bucket_order=0" + 465.1ms (+1.1) [appliance] "[ 0.310725] initcall workingset_init+0x0/0x7a returned 0 after 444 usecs" + 465.1ms (+0.0) [appliance] "[ 0.311195] calling proc_vmalloc_init+0x0/0x20 @ 1" + 466.2ms (+1.1) [appliance] "[ 0.311549] initcall proc_vmalloc_init+0x0/0x20 returned 0 after 0 usecs" + 466.2ms (+0.0) [appliance] "[ 0.312021] calling procswaps_init+0x0/0x1d @ 1" + 466.2ms (+0.0) [appliance] "[ 0.312346] initcall procswaps_init+0x0/0x1d returned 0 after 0 usecs" + 467.3ms (+1.1) [appliance] "[ 0.312800] calling slab_sysfs_init+0x0/0xf5 @ 1" + 467.3ms (+0.0) [appliance] "[ 0.313588] initcall slab_sysfs_init+0x0/0xf5 returned 0 after 447 usecs" + 468.4ms (+1.1) [appliance] "[ 0.314061] calling fcntl_init+0x0/0x25 @ 1" + 468.4ms (+0.0) [appliance] "[ 0.314376] initcall fcntl_init+0x0/0x25 returned 0 after 12 usecs" + 469.5ms (+1.1) [appliance] "[ 0.314811] calling proc_filesystems_init+0x0/0x1d @ 1" + 469.5ms (+0.0) [appliance] "[ 0.315179] initcall proc_filesystems_init+0x0/0x1d returned 0 after 1 usecs" + 469.5ms (+0.0) [appliance] "[ 0.315680] calling start_dirtytime_writeback+0x0/0x25 @ 1" + 470.6ms (+1.1) [appliance] "[ 0.316073] initcall start_dirtytime_writeback+0x0/0x25 returned 0 after 0 usecs" + 470.6ms (+0.0) [appliance] "[ 0.316589] calling dio_init+0x0/0x28 @ 1" + 470.6ms (+0.0) [appliance] "[ 0.316893] initcall dio_init+0x0/0x28 returned 0 after 12 usecs" + 471.7ms (+1.1) [appliance] "[ 0.317317] calling dnotify_init+0x0/0x74 @ 1" + 471.7ms (+0.0) [appliance] "[ 0.317635] initcall dnotify_init+0x0/0x74 returned 0 after 2 usecs" + 471.7ms (+0.0) [appliance] "[ 0.318074] calling fanotify_user_setup+0x0/0x4d @ 1" + 472.8ms (+1.1) [appliance] "[ 0.318433] initcall fanotify_user_setup+0x0/0x4d returned 0 after 1 usecs" + 472.8ms (+0.0) [appliance] "[ 0.318916] calling aio_setup+0x0/0x76 @ 1" + 472.8ms (+0.0) [appliance] "[ 0.319218] initcall aio_setup+0x0/0x76 returned 0 after 6 usecs" + 473.9ms (+1.1) [appliance] "[ 0.319647] calling mbcache_init+0x0/0x2c @ 1" + 473.9ms (+0.0) [appliance] "[ 0.319974] initcall mbcache_init+0x0/0x2c returned 0 after 12 usecs" + 475.0ms (+1.1) [appliance] "[ 0.320422] calling init_devpts_fs+0x0/0x5d @ 1" + 475.0ms (+0.0) [appliance] "[ 0.320757] initcall init_devpts_fs+0x0/0x5d returned 0 after 6 usecs" + 475.0ms (+0.0) [appliance] "[ 0.321207] calling ext4_init_fs+0x0/0x197 @ 1" + 476.1ms (+1.1) [appliance] "[ 0.321579] initcall ext4_init_fs+0x0/0x197 returned 0 after 49 usecs" + 476.2ms (+0.0) [appliance] "[ 0.322034] calling journal_init+0x0/0x102 @ 1" + 476.2ms (+0.0) [appliance] "[ 0.322406] initcall journal_init+0x0/0x102 returned 0 after 53 usecs" + 477.3ms (+1.1) [appliance] "[ 0.322863] calling init_nls_utf8+0x0/0x21 @ 1" + 477.3ms (+0.0) [appliance] "[ 0.323182] initcall init_nls_utf8+0x0/0x21 returned 0 after 0 usecs" + 477.3ms (+0.0) [appliance] "[ 0.323634] calling crypto_algapi_init+0x0/0x8 @ 1" + 478.4ms (+1.1) [appliance] "[ 0.323981] initcall crypto_algapi_init+0x0/0x8 returned 0 after 1 usecs" + 478.4ms (+0.0) [appliance] "[ 0.324450] calling chainiv_module_init+0x0/0xc @ 1" + 479.5ms (+1.1) [appliance] "[ 0.324804] initcall chainiv_module_init+0x0/0xc returned 0 after 0 usecs" + 479.5ms (+0.0) [appliance] "[ 0.325277] calling eseqiv_module_init+0x0/0xc @ 1" + 479.5ms (+0.0) [appliance] "[ 0.325618] initcall eseqiv_module_init+0x0/0xc returned 0 after 0 usecs" + 480.6ms (+1.1) [appliance] "[ 0.326090] calling crypto_null_mod_init+0x0/0x43 @ 1" + 480.6ms (+0.0) [appliance] "[ 0.326482] initcall crypto_null_mod_init+0x0/0x43 returned 0 after 31 usecs" + 481.7ms (+1.1) [appliance] "[ 0.326995] calling crc32c_mod_init+0x0/0xc @ 1" + 481.7ms (+0.0) [appliance] "[ 0.327324] initcall crc32c_mod_init+0x0/0xc returned 0 after 5 usecs" + 481.7ms (+0.0) [appliance] "[ 0.327787] calling proc_genhd_init+0x0/0x37 @ 1" + 482.8ms (+1.1) [appliance] "[ 0.328121] initcall proc_genhd_init+0x0/0x37 returned 0 after 1 usecs" + 482.8ms (+0.0) [appliance] "[ 0.328576] calling bsg_init+0x0/0x123 @ 1" + 482.8ms (+0.0) [appliance] "[ 0.328891] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)" + 483.9ms (+1.1) [appliance] "[ 0.329410] initcall bsg_init+0x0/0x123 returned 0 after 520 usecs" + 483.9ms (+0.0) [appliance] "[ 0.329845] calling noop_init+0x0/0xc @ 1" + 483.9ms (+0.0) [appliance] "[ 0.330135] io scheduler noop registered" + 485.0ms (+1.1) [appliance] "[ 0.330413] initcall noop_init+0x0/0xc returned 0 after 270 usecs" + 485.0ms (+0.0) [appliance] "[ 0.330841] calling deadline_init+0x0/0xc @ 1" + 485.0ms (+0.0) [appliance] "[ 0.331152] io scheduler deadline registered" + 486.1ms (+1.1) [appliance] "[ 0.331462] initcall deadline_init+0x0/0xc returned 0 after 301 usecs" + 486.1ms (+0.0) [appliance] "[ 0.331914] calling cfq_init+0x0/0x7f @ 1" + 486.1ms (+0.0) [appliance] "[ 0.332228] io scheduler cfq registered (default)" + 487.2ms (+1.1) [appliance] "[ 0.332562] initcall cfq_init+0x0/0x7f returned 0 after 348 usecs" + 487.2ms (+0.0) [appliance] "[ 0.332993] calling percpu_counter_startup+0x0/0x22 @ 1" + 487.2ms (+0.0) [appliance] "[ 0.333366] initcall percpu_counter_startup+0x0/0x22 returned 0 after 0 usecs" + 488.3ms (+1.1) [appliance] "[ 0.333869] calling pci_proc_init+0x0/0x64 @ 1" + 488.3ms (+0.0) [appliance] "[ 0.334194] initcall pci_proc_init+0x0/0x64 returned 0 after 5 usecs" + 488.3ms (+0.0) [appliance] "[ 0.334643] calling acpi_ac_init+0x0/0x26 @ 1" + 489.4ms (+1.1) [appliance] "[ 0.334969] initcall acpi_ac_init+0x0/0x26 returned 0 after 11 usecs" + 489.4ms (+0.0) [appliance] "[ 0.335416] calling acpi_button_driver_init+0x0/0xc @ 1" + 490.5ms (+1.1) [appliance] "[ 0.335818] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0" + 490.5ms (+0.0) [appliance] "[ 0.336335] ACPI: Power Button [PWRF]" + 490.5ms (+0.0) [appliance] "[ 0.336618] initcall acpi_button_driver_init+0x0/0xc returned 0 after 802 usecs" + 491.6ms (+1.1) [appliance] "[ 0.337135] calling acpi_fan_driver_init+0x0/0xe @ 1" + 491.6ms (+0.0) [appliance] "[ 0.337494] initcall acpi_fan_driver_init+0x0/0xe returned 0 after 3 usecs" + 491.6ms (+0.0) [appliance] "[ 0.337979] calling acpi_processor_driver_init+0x0/0x23 @ 1" + 492.7ms (+1.1) [appliance] "[ 0.338380] Warning: Processor Platform Limit event detected, but not handled." + 492.7ms (+0.0) [appliance] "[ 0.338886] Consider compiling CPUfreq support into your kernel." + 493.8ms (+1.1) [appliance] "[ 0.339319] initcall acpi_processor_driver_init+0x0/0x23 returned 0 after 920 usecs" + 493.8ms (+0.0) [appliance] "[ 0.339862] calling acpi_thermal_init+0x0/0x6c @ 1" + 493.8ms (+0.0) [appliance] "[ 0.340220] initcall acpi_thermal_init+0x0/0x6c returned 0 after 14 usecs" + 494.9ms (+1.1) [appliance] "[ 0.340701] calling acpi_battery_init+0x0/0x2b @ 1" + 494.9ms (+0.0) [appliance] "[ 0.341044] initcall acpi_battery_init+0x0/0x2b returned 0 after 2 usecs" + 496.0ms (+1.1) [appliance] "[ 0.341512] calling pty_init+0x0/0x37b @ 1" + 498.7ms (+2.7) [appliance] "[ 0.344023] initcall pty_init+0x0/0x37b returned 0 after 2162 usecs" + 498.7ms (+0.0) [appliance] "[ 0.344471] calling serial8250_init+0x0/0x163 @ 1" + 498.7ms (+0.0) [appliance] "[ 0.344813] Serial: 8250/16550 driver, 1 ports, IRQ sharing disabled" + 522.2ms (+23.5) [appliance] "[ 0.367496] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A" + 522.2ms (+0.0) [appliance] "[ 0.368058] initcall serial8250_init+0x0/0x163 returned 0 after 22699 usecs" + 522.2ms (+0.0) [appliance] "[ 0.368548] calling serial_pci_driver_init+0x0/0x15 @ 1" + 523.3ms (+1.1) [appliance] "[ 0.368936] initcall serial_pci_driver_init+0x0/0x15 returned 0 after 8 usecs" + 523.3ms (+0.0) [appliance] "[ 0.369439] calling topology_sysfs_init+0x0/0x70 @ 1" + 524.4ms (+1.1) [appliance] "[ 0.369805] initcall topology_sysfs_init+0x0/0x70 returned 0 after 3 usecs" + 524.4ms (+0.0) [appliance] "[ 0.370285] calling cacheinfo_sysfs_init+0x0/0x3aa @ 1" + 524.4ms (+0.0) [appliance] "[ 0.370673] initcall cacheinfo_sysfs_init+0x0/0x3aa returned 0 after 17 usecs" + 525.5ms (+1.1) [appliance] "[ 0.371175] calling pmem_init+0x0/0x15 @ 1" + 525.5ms (+0.0) [appliance] "[ 0.371482] initcall pmem_init+0x0/0x15 returned 0 after 4 usecs" + 525.5ms (+0.0) [appliance] "[ 0.371909] calling nd_btt_init+0x0/0x6 @ 1" + 526.6ms (+1.1) [appliance] "[ 0.372210] initcall nd_btt_init+0x0/0x6 returned -6 after 0 usecs" + 526.6ms (+0.0) [appliance] "[ 0.372643] calling nd_blk_init+0x0/0x15 @ 1" + 526.6ms (+0.0) [appliance] "[ 0.372953] initcall nd_blk_init+0x0/0x15 returned 0 after 2 usecs" + 527.7ms (+1.1) [appliance] "[ 0.373390] calling init_sd+0x0/0x148 @ 1" + 527.7ms (+0.0) [appliance] "[ 0.373691] initcall init_sd+0x0/0x148 returned 0 after 8 usecs" + 527.7ms (+0.0) [appliance] "[ 0.374107] calling init_sg+0x0/0x119 @ 1" + 528.8ms (+1.1) [appliance] "[ 0.374402] initcall init_sg+0x0/0x119 returned 0 after 6 usecs" + 528.8ms (+0.0) [appliance] "[ 0.374821] calling net_olddevs_init+0x0/0x58 @ 1" + 528.8ms (+0.0) [appliance] "[ 0.375158] initcall net_olddevs_init+0x0/0x58 returned 0 after 1 usecs" + 529.9ms (+1.1) [appliance] "[ 0.375630] calling i8042_init+0x0/0x332 @ 1" + 529.9ms (+0.0) [appliance] "[ 0.375948] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12" + 531.0ms (+1.1) [appliance] "[ 0.376989] serio: i8042 KBD port at 0x60,0x64 irq 1" + 531.0ms (+0.0) [appliance] "[ 0.377341] serio: i8042 AUX port at 0x60,0x64 irq 12" + 532.1ms (+1.1) [appliance] "[ 0.377705] initcall i8042_init+0x0/0x332 returned 0 after 1727 usecs" + 532.2ms (+0.0) [appliance] "[ 0.378156] calling serport_init+0x0/0x28 @ 1" + 532.2ms (+0.0) [appliance] "[ 0.378470] initcall serport_init+0x0/0x28 returned 0 after 0 usecs" + 533.3ms (+1.1) [appliance] "[ 0.378913] calling hid_init+0x0/0x38 @ 1" + 533.3ms (+0.0) [appliance] "[ 0.379205] initcall hid_init+0x0/0x38 returned 0 after 4 usecs" + 533.3ms (+0.0) [appliance] "[ 0.379629] calling hid_generic_init+0x0/0x15 @ 1" + 534.4ms (+1.1) [appliance] "[ 0.379974] initcall hid_generic_init+0x0/0x15 returned 0 after 4 usecs" + 534.4ms (+0.0) [appliance] "[ 0.380438] calling sock_diag_init+0x0/0x2f @ 1" + 534.4ms (+0.0) [appliance] "[ 0.380771] initcall sock_diag_init+0x0/0x2f returned 0 after 4 usecs" + 535.5ms (+1.1) [appliance] "[ 0.381246] calling hpet_insert_resource+0x0/0x1e @ 1" + 535.5ms (+0.0) [appliance] "[ 0.381608] initcall hpet_insert_resource+0x0/0x1e returned 1 after 0 usecs" + 536.6ms (+1.1) [appliance] "[ 0.382099] calling update_mp_table+0x0/0x43e @ 1" + 536.6ms (+0.0) [appliance] "[ 0.382436] initcall update_mp_table+0x0/0x43e returned 0 after 0 usecs" + 536.6ms (+0.0) [appliance] "[ 0.382904] calling lapic_insert_resource+0x0/0x3a @ 1" + 537.7ms (+1.1) [appliance] "[ 0.383273] initcall lapic_insert_resource+0x0/0x3a returned 0 after 0 usecs" + 537.7ms (+0.0) [appliance] "[ 0.383775] calling print_ICs+0x0/0xd6 @ 1" + 537.7ms (+0.0) [appliance] "[ 0.384072] initcall print_ICs+0x0/0xd6 returned 0 after 0 usecs" + 538.8ms (+1.1) [appliance] "[ 0.384493] calling create_tlb_single_page_flush_ceiling+0x0/0x3 @ 1" + 538.8ms (+0.0) [appliance] "[ 0.384948] initcall create_tlb_single_page_flush_ceiling+0x0/0x3 returned 0 after 0 usecs" + 539.9ms (+1.1) [appliance] "[ 0.385526] calling init_oops_id+0x0/0x30 @ 1" + 539.9ms (+0.0) [appliance] "[ 0.385845] initcall init_oops_id+0x0/0x30 returned 0 after 1 usecs" + 539.9ms (+0.0) [appliance] "[ 0.386286] calling sched_init_debug+0x0/0x3 @ 1" + 541.0ms (+1.1) [appliance] "[ 0.386622] initcall sched_init_debug+0x0/0x3 returned 0 after 0 usecs" + 541.0ms (+0.0) [appliance] "[ 0.387082] calling pm_qos_power_init+0x0/0x5f @ 1" + 542.2ms (+1.2) [appliance] "[ 0.387479] initcall pm_qos_power_init+0x0/0x5f returned 0 after 51 usecs" + 542.2ms (+0.0) [appliance] "[ 0.387964] calling printk_late_init+0x0/0x54 @ 1" + 542.2ms (+0.0) [appliance] "[ 0.388301] initcall printk_late_init+0x0/0x54 returned 0 after 0 usecs" + 543.3ms (+1.1) [appliance] "[ 0.388769] calling max_swapfiles_check+0x0/0x3 @ 1" + 543.3ms (+0.0) [appliance] "[ 0.389118] initcall max_swapfiles_check+0x0/0x3 returned 0 after 0 usecs" + 543.3ms (+0.0) [appliance] "[ 0.389591] calling check_early_ioremap_leak+0x0/0x3d @ 1" + 544.4ms (+1.1) [appliance] "[ 0.389980] initcall check_early_ioremap_leak+0x0/0x3d returned 0 after 0 usecs" + 544.4ms (+0.0) [appliance] "[ 0.390488] calling prandom_reseed+0x0/0x3b @ 1" + 545.5ms (+1.1) [appliance] "[ 0.390819] initcall prandom_reseed+0x0/0x3b returned 0 after 2 usecs" + 545.5ms (+0.0) [appliance] "[ 0.391270] calling pci_resource_alignment_sysfs_init+0x0/0x17 @ 1" + 545.5ms (+0.0) [appliance] "[ 0.391717] initcall pci_resource_alignment_sysfs_init+0x0/0x17 returned 0 after 1 usecs" + 546.6ms (+1.1) [appliance] "[ 0.392281] calling pci_sysfs_init+0x0/0x4b @ 1" + 546.6ms (+0.0) [appliance] "[ 0.392693] initcall pci_sysfs_init+0x0/0x4b returned 0 after 84 usecs" + 547.7ms (+1.1) [appliance] "[ 0.393154] calling deferred_probe_initcall+0x0/0x60 @ 1" + 547.7ms (+0.0) [appliance] "[ 0.393545] initcall deferred_probe_initcall+0x0/0x60 returned 0 after 11 usecs" + 547.7ms (+0.0) [appliance] "[ 0.394058] calling register_sk_filter_ops+0x0/0x3 @ 1" + 548.8ms (+1.1) [appliance] "[ 0.394427] initcall register_sk_filter_ops+0x0/0x3 returned 0 after 0 usecs" + 548.8ms (+0.0) [appliance] "[ 0.394920] calling init_default_flow_dissectors+0x0/0x33 @ 1" + 549.9ms (+1.1) [appliance] "[ 0.395330] initcall init_default_flow_dissectors+0x0/0x33 returned 0 after 0 usecs" + 551.1ms (+1.2) [appliance] "[ 0.396366] Freeing unused kernel memory: 628K (ffffffff8164a000 - ffffffff816e7000)" + 551.1ms (+0.0) [appliance] "[ 0.396920] Write protecting the kernel read-only data: 6144k" + 552.2ms (+1.1) [appliance] "[ 0.397510] Freeing unused kernel memory: 1236K (ffff8800012cb000 - ffff880001400000)" + 554.1ms (+1.9) [appliance] "[ 0.399419] Freeing unused kernel memory: 868K (ffff880001527000 - ffff880001600000)" + 554.1ms (+0.0) [appliance] "supermin: mounting /proc" + 554.1ms (+0.0) [appliance] "supermin: ext2 mini initrd starting up: 5.1.16 dietlibc" + 555.3ms (+1.1) [appliance] "supermin: cmdline: panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug " + 556.4ms (+1.1) [appliance] "supermin: uptime: 0.33 0.01" + 556.4ms (+0.0) [appliance] "supermin: mounting /sys" + 556.4ms (+0.0) [appliance] "supermin: internal insmod nfit.ko" + 557.6ms (+1.2) [appliance] "[ 0.402902] calling nfit_init+0x0/0xfe [nfit] @ 1" + 558.9ms (+1.3) [appliance] "[ 0.404162] initcall nfit_init+0x0/0xfe [nfit] returned 0 after 894 usecs" + 558.9ms (+0.0) [appliance] "supermin: internal insmod virtio.ko" + 558.9ms (+0.0) [appliance] "[ 0.404995] calling virtio_init+0x0/0x1f [virtio] @ 1" + 560.0ms (+1.1) [appliance] "[ 0.405367] initcall virtio_init+0x0/0x1f [virtio] returned 0 after 4 usecs" + 560.0ms (+0.0) [appliance] "supermin: internal insmod virtio_ring.ko" + 560.0ms (+0.0) [appliance] "supermin: internal insmod virtio_console.ko" + 561.1ms (+1.1) [appliance] "[ 0.406610] calling init+0x0/0xd6 [virtio_console] @ 1" + 561.1ms (+0.0) [appliance] "[ 0.406997] initcall init+0x0/0xd6 [virtio_console] returned 0 after 10 usecs" + 562.2ms (+1.1) [appliance] "supermin: internal insmod virtio_scsi.ko" + 562.2ms (+0.0) [appliance] "[ 0.407953] calling init+0x0/0xc7 [virtio_scsi] @ 1" + 562.2ms (+0.0) [appliance] "[ 0.408315] initcall init+0x0/0xc7 [virtio_scsi] returned 0 after 8 usecs" + 563.3ms (+1.1) [appliance] "supermin: internal insmod virtio_pci.ko" + 563.3ms (+0.0) [appliance] "[ 0.409160] calling virtio_pci_driver_init+0x0/0x1a [virtio_pci] @ 1" + 576.4ms (+13.1) [appliance] "[ 0.421699] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 10" + 576.4ms (+0.0) [appliance] "[ 0.422129] virtio-pci 0000:00:02.0: virtio_pci: leaving for legacy driver" + 589.7ms (+13.3) [appliance] "[ 0.435036] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11" + 589.7ms (+0.0) [appliance] "[ 0.435479] virtio-pci 0000:00:03.0: virtio_pci: leaving for legacy driver" + 591.5ms (+1.8) [appliance] "[ 0.436802] pmem0: detected capacity change from 0 to 4294967296" + 591.5ms (+0.0) [appliance] "[ 0.437377] scsi host0: Virtio SCSI HBA" + 591.5ms (+0.0) [appliance] "[ 0.437856] scsi 0:0:0:0: Direct-Access QEMU QEMU HARDDISK 2.5+ PQ: 0 ANSI: 5" + 592.7ms (+1.1) [appliance] "[ 0.438587] sd 0:0:0:0: Attached scsi generic sg0 type 0" + 593.8ms (+1.2) [appliance] "[ 0.439122] sd 0:0:0:0: [sda] 8 512-byte logical blocks: (4.10 kB/4.00 KiB)" + 593.8ms (+0.0) [appliance] "[ 0.439962] sd 0:0:0:0: [sda] Write Protect is off" + 595.0ms (+1.1) [appliance] "[ 0.440308] sd 0:0:0:0: [sda] Mode Sense: 63 00 00 08" + 595.0ms (+0.0) [appliance] "[ 0.440735] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA" + 596.9ms (+2.0) [appliance] "[ 0.442229] sd 0:0:0:0: [sda] Attached SCSI disk" + 617.1ms (+20.2) [appliance] "[ 0.462379] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11" + 617.1ms (+0.0) [appliance] "[ 0.462834] virtio-pci 0000:00:04.0: virtio_pci: leaving for legacy driver" + 623.0ms (+5.9) [appliance] "[ 0.468266] initcall virtio_pci_driver_init+0x0/0x1a [virtio_pci] returned 0 after 57278 usecs" + 623.0ms (+0.0) [appliance] "supermin: picked /sys/block/pmem0/dev as root device" + 624.2ms (+1.1) [appliance] "supermin: creating /dev/root as block special 259:0" + 624.2ms (+0.0) [appliance] "supermin: mounting new root on /root (dax)" + 624.2ms (+0.0) [appliance] "[ 0.470368] EXT4-fs (pmem0): DAX enabled. Warning: EXPERIMENTAL, use at your own risk" + 625.3ms (+1.1) [appliance] "[ 0.470933] EXT4-fs (pmem0): mounting ext2 file system using the ext4 subsystem" + 626.5ms (+1.2) [appliance] "[ 0.471717] EXT4-fs (pmem0): mounted filesystem without journal. Opts: dax" + 626.5ms (+0.0) [appliance] "supermin: chroot" + 629.0ms (+2.5) [appliance] "Starting /init script ..." + 632.3ms (+3.4) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_network=1* ]]" + 633.5ms (+1.2) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_rescue=1* ]]" + 634.6ms (+1.2) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_noreboot=1* ]]" + 635.8ms (+1.2) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_boot_analysis=1* ]]" + 636.9ms (+1.1) [appliance] "+ guestfs_boot_analysis=1" + 638.0ms (+1.1) [appliance] "+ '[' '!' -d /sys ']'" + 638.0ms (+0.0) [appliance] "+ mkdir -p /sys" + 638.0ms (+0.0) [appliance] "+ mount -t sysfs /sys /sys" + 639.1ms (+1.1) [appliance] "+ mkdir -p /run" + 640.3ms (+1.2) [appliance] "+ mount -t tmpfs -o nosuid,size=20%,mode=0755 tmpfs /run" + 642.1ms (+1.8) [appliance] "+ mkdir -p /run/lock" + 642.1ms (+0.0) [appliance] "+ ln -s ../run/lock /var/lock" + 643.5ms (+1.4) [appliance] "+ ln -s /proc/mounts /etc/mtab" + 643.5ms (+0.0) [appliance] "+ mount -t devtmpfs /dev /dev" + 645.2ms (+1.7) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *selinux=1* ]]" + 646.3ms (+1.1) [appliance] "+ mkdir -p /run/tmpfiles.d" + 646.3ms (+0.0) [appliance] "+ kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf" + 648.7ms (+2.4) [appliance] "++ od -x -A n" + 648.7ms (+0.0) [appliance] "++ dd if=/dev/urandom bs=16 count=1 status=none" + 649.9ms (+1.2) [appliance] "[ 0.495179] random: dd urandom read with 15 bits of entropy available" + 649.9ms (+0.0) [appliance] "+ machine_id=' da6f 7f5e 178d ff45 38e7 3d8d 4f31 3919'" + 649.9ms (+0.0) [appliance] "+ echo da6f7f5e178dff4538e73d8d4f313919" + 651.0ms (+1.1) [appliance] "+ systemd-tmpfiles --prefix=/dev --create --boot" + 653.3ms (+2.2) [appliance] "+ for f in /lib/systemd/systemd-udevd /usr/lib/systemd/systemd-udevd /sbin/udevd /lib/udev/udevd /usr/lib/udev/udevd" + 653.3ms (+0.0) [appliance] "+ '[' -x /lib/systemd/systemd-udevd ']'" + 653.3ms (+0.0) [appliance] "+ UDEVD=/lib/systemd/systemd-udevd" + 653.3ms (+0.0) [appliance] "+ break" + 654.4ms (+1.2) [appliance] "+ '[' -z /lib/systemd/systemd-udevd ']'" + 654.4ms (+0.0) [appliance] "+ /lib/systemd/systemd-udevd --daemon" + 656.2ms (+1.7) [appliance] "starting version 229" + 656.2ms (+0.0) [appliance] "+ udevadm trigger" + 681.5ms (+25.4) [appliance] "+ udevadm settle --timeout=600" + 770.7ms (+89.2) [appliance] "+ shopt -s nullglob" + 770.7ms (+0.0) [appliance] "+ for f in '/sys/block/sd*/device/timeout'" + 770.7ms (+0.0) [appliance] "+ echo 300" + 770.7ms (+0.0) [appliance] "+ for f in '/sys/block/{h,s,ub,v}d*/queue/scheduler'" + 770.7ms (+0.0) [appliance] "+ echo noop" + 786.4ms (+15.7) [appliance] "+ shopt -u nullglob" + 786.4ms (+0.0) [appliance] "+ ip addr add 127.0.0.1/8 brd + dev lo scope host" + 786.4ms (+0.0) [appliance] "RTNETLINK answers: Operation not supported" + 787.5ms (+1.1) [appliance] "+ ip link set dev lo up" + 787.5ms (+0.0) [appliance] "+ test '' = 1" + 787.5ms (+0.0) [appliance] "+ mdadm -As --auto=yes --run" + 791.9ms (+4.4) [appliance] "mdadm: No arrays found in config file or automatically" + 791.9ms (+0.0) [appliance] "+ modprobe dm_mod" + 793.2ms (+1.3) [appliance] "modprobe: FATAL: Module dm_mod not found in directory /lib/modules/4.6.0+" + 793.2ms (+0.0) [appliance] "+ :" + 793.2ms (+0.0) [appliance] "+ lvmetad" + 795.4ms (+2.2) [appliance] "+ lvm vgchange -aay --sysinit" + 798.0ms (+2.6) [appliance] " Configuration setting "global/notify_dbus" unknown." + 798.0ms (+0.0) [appliance] " Configuration setting "devices/allow_changes_with_duplicate_pvs" unknown." + 799.4ms (+1.3) [appliance] " lvmetad is not active yet, using direct activation during sysinit" + 800.5ms (+1.1) [appliance] "+ ldmtool create all" + 804.1ms (+3.6) [appliance] "[" + 804.1ms (+0.0) [appliance] "]" + 804.1ms (+0.0) [appliance] "+ test 1 = 1" + 804.1ms (+0.0) [appliance] "+ test 1 '!=' 1" + 804.1ms (+0.0) [appliance] "+ test '' = 1" + 804.1ms (+0.0) [appliance] "+ cmd=guestfsd" + 805.3ms (+1.2) [appliance] "++ grep -Eo 'guestfs_channel=[^[:space:]]+' /proc/cmdline" + 805.3ms (+0.0) [appliance] "+ eval" + 805.3ms (+0.0) [appliance] "+ test x '!=' x" + 806.5ms (+1.1) [appliance] "+ test 1 = 1" + 806.5ms (+0.0) [appliance] "+ cmd='guestfsd --verbose'" + 806.5ms (+0.0) [appliance] "+ test '' = 1" + 806.5ms (+0.0) [appliance] "+ echo guestfsd --verbose" + 806.5ms (+0.0) [appliance] "guestfsd --verbose" + 806.5ms (+0.0) [appliance] "+ guestfsd --verbose" + 811.4ms (+4.9) [appliance] "trying to open virtio-serial channel '/dev/virtio-ports/org.libguestfs.channel.0'" + 811.4ms (+0.0) [appliance] "udevadm --debug settle" + 813.7ms (+2.3) [appliance] "calling: settle" + 813.7ms (+0.0) [launch_done] "launch done callback" + 813.7ms (+0.0) [library] "recv_from_daemon: received GUESTFS_LAUNCH_FLAG" + 813.7ms (+0.0) [library] "appliance is up" + 813.8ms (+0.0) [trace] "launch = 0" + 813.8ms (+0.0) [trace] "close" + 813.8ms (+0.0) [library] "closing guestfs handle 0x55a7d259b890 (state 2)" + 813.8ms (+0.0) [trace] "internal_autosync" + 816.3ms (+2.6) [appliance] "guestfsd: main_loop: new request, len 0x28" + 816.3ms (+0.0) [appliance] "umount-all: /proc/mounts: fsname=/dev/root dir=/ type=ext2 opts=rw,noatime,block_validity,barrier,dax,user_xattr freq=0 passno=0" + 816.3ms (+0.0) [appliance] "umount-all: /proc/mounts: fsname=/proc dir=/proc type=proc opts=rw,relatime freq=0 passno=0" + 817.5ms (+1.1) [appliance] "umount-all: /proc/mounts: fsname=/sys dir=/sys type=sysfs opts=rw,relatime freq=0 passno=0" + 817.5ms (+0.0) [appliance] "umount-all: /proc/mounts: fsname=tmpfs dir=/run type=tmpfs opts=rw,nosuid,relatime,size=99484k,mode=755 freq=0 passno=0" + 818.7ms (+1.2) [appliance] "umount-all: /proc/mounts: fsname=/dev dir=/dev type=devtmpfs opts=rw,relatime,size=247256k,nr_inodes=61814,mode=755 freq=0 passno=0" + 819.8ms (+1.1) [appliance] "fsync /dev/sda" + 826.8ms (+7.0) [trace] "internal_autosync = 0" + 826.8ms (+0.0) [library] "sending SIGTERM to process 8721" + 834.6ms (+7.8) [library] "qemu maxrss 158668K" + 834.6ms (+0.0) [close] "close callback" + 834.6ms (+0.0) [library] "command: run: rm" + 834.6ms (+0.0) [library] "command: run: \ -rf /home/rjones/d/libguestfs/tmp/libguestfsjr88QK" + 835.8ms (+1.2) [library] "command: run: rm" + 835.8ms (+0.0) [library] "command: run: \ -rf /run/user/1000/libguestfsX7AEwp" +pass 4 + number of events collected 885 + elapsed time 846690974 ns + 0.1ms [trace] "launch" + 0.1ms (+0.0) [trace] "version" + 0.1ms (+0.0) [trace] "version = " + 0.1ms (+0.0) [trace] "get_backend" + 0.1ms (+0.0) [trace] "get_backend = "direct"" + 0.1ms (+0.0) [library] "launch: program=boot-analysis" + 0.1ms (+0.0) [library] "launch: version=1.33.29" + 0.1ms (+0.0) [library] "launch: backend registered: unix" + 0.1ms (+0.0) [library] "launch: backend registered: uml" + 0.1ms (+0.0) [library] "launch: backend registered: libvirt" + 0.1ms (+0.0) [library] "launch: backend registered: direct" + 0.1ms (+0.0) [library] "launch: backend=direct" + 0.1ms (+0.0) [library] "launch: tmpdir=/home/rjones/d/libguestfs/tmp/libguestfs6w82w6" + 0.6ms (+0.5) [library] "launch: umask=0002" + 0.6ms (+0.0) [library] "launch: euid=1000" + 0.6ms (+0.0) [trace] "get_backend_setting "force_tcg"" + 0.6ms (+0.0) [trace] "get_backend_setting = NULL (error)" + 0.6ms (+0.0) [trace] "get_cachedir" + 0.6ms (+0.0) [trace] "get_cachedir = "/home/rjones/d/libguestfs/tmp"" + 0.7ms (+0.0) [library] "begin building supermin appliance" + 0.7ms (+0.0) [library] "run supermin" + 0.7ms (+0.0) [library] "command: run: /usr/bin/supermin" + 0.7ms (+0.0) [library] "command: run: \ --build" + 0.7ms (+0.0) [library] "command: run: \ --verbose" + 0.7ms (+0.0) [library] "command: run: \ --if-newer" + 0.7ms (+0.0) [library] "command: run: \ --lock /home/rjones/d/libguestfs/tmp/.guestfs-1000/lock" + 0.7ms (+0.0) [library] "command: run: \ --copy-kernel" + 0.7ms (+0.0) [library] "command: run: \ -f ext2" + 0.7ms (+0.0) [library] "command: run: \ --host-cpu x86_64" + 0.7ms (+0.0) [library] "command: run: \ /home/rjones/d/libguestfs/appliance/supermin.d" + 0.7ms (+0.0) [library] "command: run: \ -o /home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d" + 8.6ms (+7.9) [appliance] "supermin: version: 5.1.16" + 8.6ms (+0.0) [appliance] "supermin: rpm: detected RPM version 4.13" + 8.6ms (+0.0) [appliance] "supermin: package handler: fedora/rpm" + 8.6ms (+0.0) [appliance] "supermin: acquiring lock on /home/rjones/d/libguestfs/tmp/.guestfs-1000/lock" + 8.6ms (+0.0) [appliance] "supermin: if-newer: output does not need rebuilding" + 11.1ms (+2.5) [library] "finished building supermin appliance" + 11.1ms (+0.0) [library] "begin testing qemu features" + 11.1ms (+0.0) [trace] "get_cachedir" + 11.1ms (+0.0) [trace] "get_cachedir = "/home/rjones/d/libguestfs/tmp"" + 11.1ms (+0.0) [library] "checking for previously cached test results of /home/rjones/d/qemu/x86_64-softmmu/qemu-system-x86_64, in /home/rjones/d/libguestfs/tmp/.guestfs-1000" + 11.1ms (+0.0) [library] "loading previously cached test results" + 11.1ms (+0.0) [library] "qemu version 2.6" + 11.1ms (+0.0) [trace] "get_sockdir" + 11.2ms (+0.0) [trace] "get_sockdir = "/run/user/1000"" + 11.2ms (+0.1) [library] "finished testing qemu features" + 11.2ms (+0.0) [trace] "get_backend_setting "gdb"" + 11.2ms (+0.0) [trace] "get_backend_setting = NULL (error)" + 11.2ms (+0.0) [trace] "get_backend_setting "dax"" + 11.2ms (+0.0) [trace] "get_backend_setting = "1"" + 12.9ms (+1.6) [appliance] "[00011ms] /home/rjones/d/qemu/x86_64-softmmu/qemu-system-x86_64 \" + 12.9ms (+0.0) [appliance] " -global virtio-blk-pci.scsi=off \" + 12.9ms (+0.0) [appliance] " -nodefconfig \" + 12.9ms (+0.0) [appliance] " -enable-fips \" + 12.9ms (+0.0) [appliance] " -nodefaults \" + 12.9ms (+0.0) [appliance] " -display none \" + 12.9ms (+0.0) [appliance] " -machine pc,nvdimm=on,accel=kvm:tcg \" + 12.9ms (+0.0) [appliance] " -cpu host \" + 12.9ms (+0.0) [appliance] " -m 500,maxmem=32G,slots=32 \" + 12.9ms (+0.0) [appliance] " -no-reboot \" + 12.9ms (+0.0) [appliance] " -rtc driftfix=slew \" + 12.9ms (+0.0) [appliance] " -no-hpet \" + 12.9ms (+0.0) [appliance] " -global kvm-pit.lost_tick_policy=discard \" + 12.9ms (+0.0) [appliance] " -kernel /home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d/kernel \" + 12.9ms (+0.0) [appliance] " -initrd /home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d/initrd \" + 12.9ms (+0.0) [appliance] " -bios bios-fast.bin \" + 12.9ms (+0.0) [appliance] " -object rng-random,filename=/dev/urandom,id=rng0 \" + 12.9ms (+0.0) [appliance] " -device virtio-rng-pci,rng=rng0 \" + 12.9ms (+0.0) [appliance] " -device virtio-scsi-pci,id=scsi \" + 12.9ms (+0.0) [appliance] " -drive file=/home/rjones/d/libguestfs/tmp/libguestfs6w82w6/devnull1,cache=writeback,format=raw,id=hd0,if=none \" + 12.9ms (+0.0) [appliance] " -device scsi-hd,drive=hd0 \" + 12.9ms (+0.0) [appliance] " -object memory-backend-file,id=mem1,share=off,mem-path=/home/rjones/d/libguestfs/tmp/.guestfs-1000/appliance.d/root,size=4294967296b \" + 12.9ms (+0.0) [appliance] " -device nvdimm,memdev=mem1,id=nv1 \" + 12.9ms (+0.0) [appliance] " -device virtio-serial-pci \" + 12.9ms (+0.0) [appliance] " -serial stdio \" + 12.9ms (+0.0) [appliance] " -device sga \" + 12.9ms (+0.0) [appliance] " -chardev socket,path=/run/user/1000/libguestfsxMWozN/guestfsd.sock,id=channel0 \" + 12.9ms (+0.0) [appliance] " -device virtserialport,chardev=channel0,name=org.libguestfs.channel.0 \" + 12.9ms (+0.0) [appliance] " -append 'panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug '" + 109.2ms (+96.3) [library] "responding to serial console Device Status Report" + 109.2ms (+0.0) [appliance] "\x1b[1;256r\x1b[256;256H\x1b[6n" + 111.6ms (+2.4) [appliance] "Google, Inc." + 111.6ms (+0.0) [appliance] "Serial Graphics Adapter 11/03/11" + 111.6ms (+0.0) [appliance] "SGABIOS $Id$ (pbonzini@yakj.usersys.redhat.com) Thu Nov 3 13:33:51 UTC 2011" + 111.6ms (+0.0) [appliance] "Term: 80x24" + 111.6ms (+0.0) [appliance] "4 0" + 111.6ms (+0.0) [appliance] "\x1b[2J\x0dSeaBIOS (version rel-1.9.1-0-gb3ef39f-prebuilt.qemu-project.org)" + 121.1ms (+9.4) [appliance] "\x0dBooting from Hard Disk..." + 121.1ms (+0.0) [appliance] "\x0dBoot failed: could not read the boot disk" + 122.2ms (+1.1) [appliance] "" + 122.2ms (+0.0) [appliance] "\x0dBooting from ROM..." + 123.2ms (+1.1) [appliance] "\x1b[2J" + 159.9ms (+36.7) [appliance] "[ 0.000000] Linux version 4.6.0+ (rjones@moo.home.annexia.org) (gcc version 6.1.1 20160427 (Red Hat 6.1.1-1) (GCC) ) #36 SMP Wed May 18 13:36:15 BST 2016" + 159.9ms (+0.0) [appliance] "[ 0.000000] Command line: panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug " + 162.2ms (+2.2) [appliance] "[ 0.000000] KERNEL supported cpus:" + 162.2ms (+0.0) [appliance] "[ 0.000000] Intel GenuineIntel" + 163.3ms (+1.1) [appliance] "[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256" + 163.3ms (+0.0) [appliance] "[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'" + 163.3ms (+0.0) [appliance] "[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'" + 164.4ms (+1.1) [appliance] "[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'" + 164.4ms (+0.0) [appliance] "[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format." + 165.5ms (+1.1) [appliance] "[ 0.000000] x86/fpu: Using 'eager' FPU context switches." + 165.5ms (+0.0) [appliance] "[ 0.000000] e820: BIOS-provided physical RAM map:" + 165.5ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable" + 166.6ms (+1.1) [appliance] "[ 0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved" + 166.6ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved" + 167.7ms (+1.1) [appliance] "[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001f3defff] usable" + 167.7ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x000000001f3df000-0x000000001f3fffff] reserved" + 168.8ms (+1.1) [appliance] "[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved" + 168.8ms (+0.0) [appliance] "[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved" + 168.8ms (+0.0) [appliance] "[ 0.000000] debug: ignoring loglevel setting." + 169.9ms (+1.1) [appliance] "[ 0.000000] NX (Execute Disable) protection: active" + 169.9ms (+0.0) [appliance] "[ 0.000000] Hypervisor detected: KVM" + 169.9ms (+0.0) [appliance] "[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved" + 171.0ms (+1.1) [appliance] "[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable" + 171.0ms (+0.0) [appliance] "[ 0.000000] e820: last_pfn = 0x1f3df max_arch_pfn = 0x400000000" + 171.0ms (+0.0) [appliance] "[ 0.000000] found SMP MP-table at [mem 0x000f3830-0x000f383f] mapped at [ffff8800000f3830]" + 172.1ms (+1.1) [appliance] "[ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576" + 172.1ms (+0.0) [appliance] "[ 0.000000] Using GB pages for direct mapping" + 173.2ms (+1.1) [appliance] "[ 0.000000] BRK [0x01750000, 0x01750fff] PGTABLE" + 173.2ms (+0.0) [appliance] "[ 0.000000] BRK [0x01751000, 0x01751fff] PGTABLE" + 173.2ms (+0.0) [appliance] "[ 0.000000] BRK [0x01752000, 0x01752fff] PGTABLE" + 173.2ms (+0.0) [appliance] "[ 0.000000] BRK [0x01753000, 0x01753fff] PGTABLE" + 174.4ms (+1.1) [appliance] "[ 0.000000] RAMDISK: [mem 0x1f3a7000-0x1f3cffff]" + 174.4ms (+0.0) [appliance] "[ 0.000000] ACPI: Early table checksum verification disabled" + 174.4ms (+0.0) [appliance] "[ 0.000000] ACPI: RSDP 0x00000000000F3640 000014 (v00 BOCHS )" + 175.5ms (+1.1) [appliance] "[ 0.000000] ACPI: RSDT 0x000000001F3E21EA 000034 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001)" + 175.5ms (+0.0) [appliance] "[ 0.000000] ACPI: FACP 0x000000001F3E1EED 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001)" + 176.6ms (+1.1) [appliance] "[ 0.000000] ACPI: DSDT 0x000000001F3DF040 002EAD (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001)" + 176.6ms (+0.0) [appliance] "[ 0.000000] ACPI: FACS 0x000000001F3DF000 000040" + 177.7ms (+1.1) [appliance] "[ 0.000000] ACPI: APIC 0x000000001F3E1F61 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001)" + 177.7ms (+0.0) [appliance] "[ 0.000000] ACPI: NFIT 0x000000001F3E1FD9 0000E0 (v01 BOCHS BXPCNFIT 00000001 BXPC 00000001)" + 178.8ms (+1.1) [appliance] "[ 0.000000] ACPI: SSDT 0x000000001F3E20B9 000131 (v01 BOCHS NVDIMM 00000001 BXPC 00000001)" + 178.8ms (+0.0) [appliance] "[ 0.000000] ACPI: Local APIC address 0xfee00000" + 179.9ms (+1.1) [appliance] "[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00" + 179.9ms (+0.0) [appliance] "[ 0.000000] kvm-clock: cpu 0, msr 0:1f3de001, primary cpu clock" + 179.9ms (+0.0) [appliance] "[ 0.000000] kvm-clock: using sched offset of 54655108 cycles" + 181.0ms (+1.1) [appliance] "[ 0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns" + 181.0ms (+0.0) [appliance] "[ 0.000000] Zone ranges:" + 181.0ms (+0.0) [appliance] "[ 0.000000] DMA32 [mem 0x0000000000001000-0x000000001f3defff]" + 182.1ms (+1.1) [appliance] "[ 0.000000] Normal empty" + 182.1ms (+0.0) [appliance] "[ 0.000000] Device empty" + 182.1ms (+0.0) [appliance] "[ 0.000000] Movable zone start for each node" + 182.1ms (+0.0) [appliance] "[ 0.000000] Early memory node ranges" + 183.2ms (+1.1) [appliance] "[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]" + 183.2ms (+0.0) [appliance] "[ 0.000000] node 0: [mem 0x0000000000100000-0x000000001f3defff]" + 183.2ms (+0.0) [appliance] "[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000001f3defff]" + 184.3ms (+1.1) [appliance] "[ 0.000000] On node 0 totalpages: 127869" + 184.3ms (+0.0) [appliance] "[ 0.000000] DMA32 zone: 2000 pages used for memmap" + 184.3ms (+0.0) [appliance] "[ 0.000000] DMA32 zone: 21 pages reserved" + 185.5ms (+1.1) [appliance] "[ 0.000000] DMA32 zone: 127869 pages, LIFO batch:31" + 185.5ms (+0.0) [appliance] "[ 0.000000] ACPI: PM-Timer IO Port: 0x608" + 185.5ms (+0.0) [appliance] "[ 0.000000] ACPI: Local APIC address 0xfee00000" + 186.6ms (+1.1) [appliance] "[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])" + 186.6ms (+0.0) [appliance] "[ 0.000000] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23" + 186.6ms (+0.0) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)" + 187.7ms (+1.1) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)" + 187.7ms (+0.0) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)" + 188.8ms (+1.1) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)" + 188.8ms (+0.0) [appliance] "[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)" + 188.8ms (+0.0) [appliance] "[ 0.000000] ACPI: IRQ0 used by override." + 189.9ms (+1.1) [appliance] "[ 0.000000] ACPI: IRQ5 used by override." + 189.9ms (+0.0) [appliance] "[ 0.000000] ACPI: IRQ9 used by override." + 189.9ms (+0.0) [appliance] "[ 0.000000] ACPI: IRQ10 used by override." + 189.9ms (+0.0) [appliance] "[ 0.000000] ACPI: IRQ11 used by override." + 191.0ms (+1.1) [appliance] "[ 0.000000] Using ACPI (MADT) for SMP configuration information" + 191.0ms (+0.0) [appliance] "[ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs" + 191.0ms (+0.0) [appliance] "[ 0.000000] e820: [mem 0x1f400000-0xfeffbfff] available for PCI devices" + 192.1ms (+1.1) [appliance] "[ 0.000000] Booting paravirtualized kernel on KVM" + 192.1ms (+0.0) [appliance] "[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns" + 193.2ms (+1.1) [appliance] "[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:1 nr_node_ids:1" + 193.2ms (+0.0) [appliance] "[ 0.000000] percpu: Embedded 29 pages/cpu @ffff88001f000000 s80384 r8192 d30208 u2097152" + 194.3ms (+1.1) [appliance] "[ 0.000000] pcpu-alloc: s80384 r8192 d30208 u2097152 alloc=1*2097152" + 194.3ms (+0.0) [appliance] "[ 0.000000] pcpu-alloc: [0] 0 " + 194.3ms (+0.0) [appliance] "[ 0.000000] KVM setup async PF for cpu 0" + 195.4ms (+1.1) [appliance] "[ 0.000000] kvm-stealtime: cpu 0, msr 1f00c440" + 195.4ms (+0.0) [appliance] "[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 125848" + 195.4ms (+0.0) [appliance] "[ 0.000000] Kernel command line: panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug " + 197.7ms (+2.2) [appliance] "[ 0.000000] PID hash table entries: 2048 (order: 2, 16384 bytes)" + 197.7ms (+0.0) [appliance] "[ 0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)" + 198.8ms (+1.1) [appliance] "[ 0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)" + 198.8ms (+0.0) [appliance] "[ 0.000000] Memory: 494496K/511476K available (2851K kernel code, 290K rwdata, 1180K rodata, 628K init, 404K bss, 16980K reserved, 0K cma-reserved)" + 199.9ms (+1.1) [appliance] "[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1" + 201.0ms (+1.1) [appliance] "[ 0.000000] Hierarchical RCU implementation." + 201.0ms (+0.0) [appliance] "[ 0.000000] \x09Build-time adjustment of leaf fanout to 64." + 201.0ms (+0.0) [appliance] "[ 0.000000] \x09RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=1." + 202.1ms (+1.1) [appliance] "[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=1" + 202.1ms (+0.0) [appliance] "[ 0.000000] NR_IRQS:4352 nr_irqs:256 16" + 202.1ms (+0.0) [appliance] "[ 0.000000] Console: colour *CGA 80x25" + 202.1ms (+0.0) [appliance] "[ 0.000000] console [ttyS0] enabled" + 203.2ms (+1.1) [appliance] "[ 0.000000] tsc: Detected 2593.990 MHz processor" + 203.2ms (+0.0) [appliance] "[ 0.050502] Calibrating delay loop (skipped) preset value.. 5187.98 BogoMIPS (lpj=10375960)" + 204.3ms (+1.1) [appliance] "[ 0.051087] pid_max: default: 4096 minimum: 301" + 204.3ms (+0.0) [appliance] "[ 0.051407] ACPI: Core revision 20160422" + 204.3ms (+0.0) [appliance] "[ 0.051702] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)" + 204.3ms (+0.0) [appliance] "[ 0.052161] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes)" + 205.4ms (+1.1) [appliance] "[ 0.052756] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0" + 205.4ms (+0.0) [appliance] "[ 0.053130] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0" + 210.6ms (+5.2) [appliance] "[ 0.057437] Freeing SMP alternatives memory: 16K (ffffffff816e7000 - ffffffff816eb000)" + 212.4ms (+1.7) [appliance] "[ 0.059177] smpboot: Max logical packages: 1" + 212.4ms (+0.0) [appliance] "[ 0.059486] smpboot: APIC(0) Converting physical 0 to logical package 0" + 213.8ms (+1.4) [appliance] "[ 0.060608] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1" + 213.8ms (+0.0) [appliance] "[ 0.061034] TSC deadline timer enabled" + 213.8ms (+0.0) [appliance] "[ 0.061294] smpboot: CPU0: Intel(R) Core(TM) i7-5600U CPU @ 2.60GHz (family: 0x6, model: 0x3d, stepping: 0x4)" + 214.9ms (+1.1) [appliance] "[ 0.061994] calling init_hw_perf_events+0x0/0x4fa @ 1" + 214.9ms (+0.0) [appliance] "[ 0.062354] Performance Events: 16-deep LBR, Broadwell events, Intel PMU driver." + 216.0ms (+1.1) [appliance] "[ 0.062898] ... version: 2" + 216.0ms (+0.0) [appliance] "[ 0.063171] ... bit width: 48" + 216.0ms (+0.0) [appliance] "[ 0.063454] ... generic registers: 4" + 216.0ms (+0.0) [appliance] "[ 0.063729] ... value mask: 0000ffffffffffff" + 217.1ms (+1.1) [appliance] "[ 0.064091] ... max period: 000000007fffffff" + 217.1ms (+0.0) [appliance] "[ 0.064453] ... fixed-purpose events: 3" + 217.1ms (+0.0) [appliance] "[ 0.064728] ... event mask: 000000070000000f" + 218.2ms (+1.1) [appliance] "[ 0.065092] initcall init_hw_perf_events+0x0/0x4fa returned 0 after 0 usecs" + 218.2ms (+0.0) [appliance] "[ 0.065576] calling set_real_mode_permissions+0x0/0x91 @ 1" + 218.2ms (+0.0) [appliance] "[ 0.065957] initcall set_real_mode_permissions+0x0/0x91 returned 0 after 0 usecs" + 219.4ms (+1.1) [appliance] "[ 0.066463] calling validate_x2apic+0x0/0x2f @ 1" + 219.4ms (+0.0) [appliance] "[ 0.066785] initcall validate_x2apic+0x0/0x2f returned 0 after 0 usecs" + 219.4ms (+0.0) [appliance] "[ 0.067229] calling register_trigger_all_cpu_backtrace+0x0/0x11 @ 1" + 220.5ms (+1.1) [appliance] "[ 0.067661] initcall register_trigger_all_cpu_backtrace+0x0/0x11 returned 0 after 0 usecs" + 220.5ms (+0.0) [appliance] "[ 0.068214] calling spawn_ksoftirqd+0x0/0x28 @ 1" + 221.6ms (+1.1) [appliance] "[ 0.068547] initcall spawn_ksoftirqd+0x0/0x28 returned 0 after 0 usecs" + 221.6ms (+0.0) [appliance] "[ 0.068990] calling init_workqueues+0x0/0x374 @ 1" + 221.6ms (+0.0) [appliance] "[ 0.069345] initcall init_workqueues+0x0/0x374 returned 0 after 0 usecs" + 222.7ms (+1.1) [appliance] "[ 0.069802] calling migration_init+0x0/0x3e @ 1" + 222.7ms (+0.0) [appliance] "[ 0.070117] initcall migration_init+0x0/0x3e returned 0 after 0 usecs" + 222.7ms (+0.0) [appliance] "[ 0.070556] calling check_cpu_stall_init+0x0/0x16 @ 1" + 223.8ms (+1.1) [appliance] "[ 0.070906] initcall check_cpu_stall_init+0x0/0x16 returned 0 after 0 usecs" + 223.8ms (+0.0) [appliance] "[ 0.071378] calling rcu_spawn_gp_kthread+0x0/0xf8 @ 1" + 224.9ms (+1.1) [appliance] "[ 0.071739] initcall rcu_spawn_gp_kthread+0x0/0xf8 returned 0 after 0 usecs" + 224.9ms (+0.0) [appliance] "[ 0.072226] calling cpu_stop_init+0x0/0x97 @ 1" + 224.9ms (+0.0) [appliance] "[ 0.072534] initcall cpu_stop_init+0x0/0x97 returned 0 after 0 usecs" + 226.1ms (+1.1) [appliance] "[ 0.072975] calling rand_initialize+0x0/0x30 @ 1" + 226.1ms (+0.0) [appliance] "[ 0.073297] initcall rand_initialize+0x0/0x30 returned 0 after 0 usecs" + 226.1ms (+0.0) [appliance] "[ 0.073751] x86: Booted up 1 node, 1 CPUs" + 227.2ms (+1.1) [appliance] "[ 0.074044] smpboot: Total of 1 processors activated (5187.98 BogoMIPS)" + 227.2ms (+0.0) [appliance] "[ 0.074614] devtmpfs: initialized" + 227.2ms (+0.0) [appliance] "[ 0.074859] x86/mm: Memory block size: 128MB" + 229.8ms (+2.7) [appliance] "[ 0.076579] calling init_mmap_min_addr+0x0/0x11 @ 1" + 229.8ms (+0.0) [appliance] "[ 0.076930] initcall init_mmap_min_addr+0x0/0x11 returned 0 after 0 usecs" + 229.8ms (+0.0) [appliance] "[ 0.077377] calling net_ns_init+0x0/0x1ad @ 1" + 229.8ms (+0.0) [appliance] "[ 0.077683] initcall net_ns_init+0x0/0x1ad returned 0 after 0 usecs" + 231.0ms (+1.1) [appliance] "[ 0.078135] calling e820_mark_nvs_memory+0x0/0x36 @ 1" + 231.0ms (+0.0) [appliance] "[ 0.078477] initcall e820_mark_nvs_memory+0x0/0x36 returned 0 after 0 usecs" + 232.1ms (+1.1) [appliance] "[ 0.078954] calling init_cpu_syscore+0x0/0xf @ 1" + 232.1ms (+0.0) [appliance] "[ 0.079263] initcall init_cpu_syscore+0x0/0xf returned 0 after 0 usecs" + 232.1ms (+0.0) [appliance] "[ 0.079705] calling reboot_init+0x0/0x3 @ 1" + 232.1ms (+0.0) [appliance] "[ 0.080000] initcall reboot_init+0x0/0x3 returned 0 after 0 usecs" + 233.2ms (+1.1) [appliance] "[ 0.080417] calling wq_sysfs_init+0x0/0x26 @ 1" + 233.2ms (+0.0) [appliance] "[ 0.080720] initcall wq_sysfs_init+0x0/0x26 returned 0 after 0 usecs" + 234.4ms (+1.1) [appliance] "[ 0.081153] calling ksysfs_init+0x0/0x8e @ 1" + 234.4ms (+0.0) [appliance] "[ 0.081462] initcall ksysfs_init+0x0/0x8e returned 0 after 0 usecs" + 234.4ms (+0.0) [appliance] "[ 0.081870] calling init_jiffies_clocksource+0x0/0x13 @ 1" + 234.4ms (+0.0) [appliance] "[ 0.082247] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns" + 235.5ms (+1.1) [appliance] "[ 0.082897] initcall init_jiffies_clocksource+0x0/0x13 returned 0 after 0 usecs" + 235.5ms (+0.0) [appliance] "[ 0.083390] calling init_per_zone_wmark_min+0x0/0x9a @ 1" + 236.7ms (+1.1) [appliance] "[ 0.083761] initcall init_per_zone_wmark_min+0x0/0x9a returned 0 after 0 usecs" + 236.7ms (+0.0) [appliance] "[ 0.084236] calling init_zero_pfn+0x0/0x2f @ 1" + 236.7ms (+0.0) [appliance] "[ 0.084553] initcall init_zero_pfn+0x0/0x2f returned 0 after 0 usecs" + 237.8ms (+1.1) [appliance] "[ 0.084978] calling fsnotify_init+0x0/0x1f @ 1" + 237.8ms (+0.0) [appliance] "[ 0.085280] initcall fsnotify_init+0x0/0x1f returned 0 after 0 usecs" + 238.9ms (+1.1) [appliance] "[ 0.085715] calling filelock_init+0x0/0x9a @ 1" + 238.9ms (+0.0) [appliance] "[ 0.086025] initcall filelock_init+0x0/0x9a returned 0 after 0 usecs" + 238.9ms (+0.0) [appliance] "[ 0.086449] calling init_script_binfmt+0x0/0x11 @ 1" + 238.9ms (+0.0) [appliance] "[ 0.086787] initcall init_script_binfmt+0x0/0x11 returned 0 after 0 usecs" + 240.1ms (+1.1) [appliance] "[ 0.087241] calling init_elf_binfmt+0x0/0x11 @ 1" + 240.1ms (+0.0) [appliance] "[ 0.087554] initcall init_elf_binfmt+0x0/0x11 returned 0 after 0 usecs" + 241.2ms (+1.1) [appliance] "[ 0.088003] calling prandom_init+0x0/0xaa @ 1" + 241.2ms (+0.0) [appliance] "[ 0.088298] initcall prandom_init+0x0/0xaa returned 0 after 0 usecs" + 241.2ms (+0.0) [appliance] "[ 0.088711] calling cpuidle_init+0x0/0x36 @ 1" + 241.2ms (+0.0) [appliance] "[ 0.089007] initcall cpuidle_init+0x0/0x36 returned 0 after 0 usecs" + 242.3ms (+1.1) [appliance] "[ 0.089444] calling sock_init+0x0/0x78 @ 1" + 242.3ms (+0.0) [appliance] "[ 0.089729] initcall sock_init+0x0/0x78 returned 0 after 0 usecs" + 242.3ms (+0.0) [appliance] "[ 0.090125] calling netlink_proto_init+0x0/0x158 @ 1" + 243.5ms (+1.1) [appliance] "[ 0.090510] NET: Registered protocol family 16" + 243.5ms (+0.0) [appliance] "[ 0.090809] initcall netlink_proto_init+0x0/0x158 returned 0 after 0 usecs" + 243.5ms (+0.0) [appliance] "[ 0.091280] calling bdi_class_init+0x0/0x2f @ 1" + 244.6ms (+1.1) [appliance] "[ 0.091613] initcall bdi_class_init+0x0/0x2f returned 0 after 0 usecs" + 244.6ms (+0.0) [appliance] "[ 0.092036] calling mm_sysfs_init+0x0/0x24 @ 1" + 244.6ms (+0.0) [appliance] "[ 0.092339] initcall mm_sysfs_init+0x0/0x24 returned 0 after 0 usecs" + 245.7ms (+1.1) [appliance] "[ 0.092781] calling kobject_uevent_init+0x0/0xc @ 1" + 245.7ms (+0.0) [appliance] "[ 0.093109] initcall kobject_uevent_init+0x0/0xc returned 0 after 0 usecs" + 245.7ms (+0.0) [appliance] "[ 0.093557] calling pcibus_class_init+0x0/0x13 @ 1" + 246.9ms (+1.1) [appliance] "[ 0.093904] initcall pcibus_class_init+0x0/0x13 returned 0 after 0 usecs" + 246.9ms (+0.0) [appliance] "[ 0.094345] calling pci_driver_init+0x0/0xc @ 1" + 246.9ms (+0.0) [appliance] "[ 0.094657] initcall pci_driver_init+0x0/0xc returned 0 after 0 usecs" + 248.0ms (+1.1) [appliance] "[ 0.095102] calling tty_class_init+0x0/0x2f @ 1" + 248.0ms (+0.0) [appliance] "[ 0.095410] initcall tty_class_init+0x0/0x2f returned 0 after 0 usecs" + 248.0ms (+0.0) [appliance] "[ 0.095843] calling vtconsole_class_init+0x0/0xd3 @ 1" + 249.1ms (+1.1) [appliance] "[ 0.096199] initcall vtconsole_class_init+0x0/0xd3 returned 0 after 0 usecs" + 249.1ms (+0.0) [appliance] "[ 0.096658] calling init_ladder+0x0/0x16 @ 1" + 249.1ms (+0.0) [appliance] "[ 0.096945] cpuidle: using governor ladder" + 250.3ms (+1.1) [appliance] "[ 0.097238] initcall init_ladder+0x0/0x16 returned 0 after 0 usecs" + 250.3ms (+0.0) [appliance] "[ 0.097664] calling bts_init+0x0/0xa4 @ 1" + 250.3ms (+0.0) [appliance] "[ 0.097938] initcall bts_init+0x0/0xa4 returned -19 after 0 usecs" + 251.4ms (+1.1) [appliance] "[ 0.098362] calling pt_init+0x0/0x30a @ 1" + 251.4ms (+0.0) [appliance] "[ 0.098633] initcall pt_init+0x0/0x30a returned -19 after 0 usecs" + 251.4ms (+0.0) [appliance] "[ 0.099037] calling boot_params_ksysfs_init+0x0/0x22f @ 1" + 252.5ms (+1.1) [appliance] "[ 0.099424] initcall boot_params_ksysfs_init+0x0/0x22f returned 0 after 0 usecs" + 252.5ms (+0.0) [appliance] "[ 0.099901] calling sbf_init+0x0/0xfc @ 1" + 252.5ms (+0.0) [appliance] "[ 0.100172] initcall sbf_init+0x0/0xfc returned 0 after 0 usecs" + 253.7ms (+1.1) [appliance] "[ 0.100587] calling arch_kdebugfs_init+0x0/0xe @ 1" + 253.7ms (+0.0) [appliance] "[ 0.100908] initcall arch_kdebugfs_init+0x0/0xe returned 0 after 0 usecs" + 253.7ms (+0.0) [appliance] "[ 0.101348] calling ffh_cstate_init+0x0/0x25 @ 1" + 254.8ms (+1.1) [appliance] "[ 0.101681] initcall ffh_cstate_init+0x0/0x25 returned 0 after 0 usecs" + 254.8ms (+0.0) [appliance] "[ 0.102109] calling activate_jump_labels+0x0/0x73 @ 1" + 254.8ms (+0.0) [appliance] "[ 0.102448] initcall activate_jump_labels+0x0/0x73 returned 0 after 0 usecs" + 256.0ms (+1.1) [appliance] "[ 0.102925] calling acpi_pci_init+0x0/0x49 @ 1" + 256.0ms (+0.0) [appliance] "[ 0.103227] ACPI: bus type PCI registered" + 256.0ms (+0.0) [appliance] "[ 0.103494] initcall acpi_pci_init+0x0/0x49 returned 0 after 0 usecs" + 257.1ms (+1.1) [appliance] "[ 0.103933] calling pci_arch_init+0x0/0x53 @ 1" + 257.1ms (+0.0) [appliance] "[ 0.104251] PCI: Using configuration type 1 for base access" + 257.1ms (+0.0) [appliance] "[ 0.104630] initcall pci_arch_init+0x0/0x53 returned 0 after 0 usecs" + 258.2ms (+1.1) [appliance] "[ 0.105090] calling init_vdso+0x0/0x2c @ 1" + 258.2ms (+0.0) [appliance] "[ 0.105374] initcall init_vdso+0x0/0x2c returned 0 after 0 usecs" + 258.2ms (+0.0) [appliance] "[ 0.105768] calling fixup_ht_bug+0x0/0xb3 @ 1" + 258.2ms (+0.0) [appliance] "[ 0.106071] initcall fixup_ht_bug+0x0/0xb3 returned 0 after 0 usecs" + 259.4ms (+1.1) [appliance] "[ 0.106495] calling topology_init+0x0/0x49 @ 1" + 259.4ms (+0.0) [appliance] "[ 0.106803] initcall topology_init+0x0/0x49 returned 0 after 0 usecs" + 259.4ms (+0.0) [appliance] "[ 0.107237] calling uid_cache_init+0x0/0xc7 @ 1" + 260.5ms (+1.1) [appliance] "[ 0.107555] initcall uid_cache_init+0x0/0xc7 returned 0 after 0 usecs" + 260.5ms (+0.0) [appliance] "[ 0.107976] calling param_sysfs_init+0x0/0x1ae @ 1" + 261.8ms (+1.3) [appliance] "[ 0.108495] initcall param_sysfs_init+0x0/0x1ae returned 0 after 0 usecs" + 261.8ms (+0.0) [appliance] "[ 0.108958] calling oom_init+0x0/0x5a @ 1" + 261.8ms (+0.0) [appliance] "[ 0.109239] initcall oom_init+0x0/0x5a returned 0 after 0 usecs" + 261.8ms (+0.0) [appliance] "[ 0.109647] calling default_bdi_init+0x0/0x36 @ 1" + 262.9ms (+1.1) [appliance] "[ 0.109986] initcall default_bdi_init+0x0/0x36 returned 0 after 0 usecs" + 262.9ms (+0.0) [appliance] "[ 0.110424] calling percpu_enable_async+0x0/0xa @ 1" + 262.9ms (+0.0) [appliance] "[ 0.110763] initcall percpu_enable_async+0x0/0xa returned 0 after 0 usecs" + 264.0ms (+1.1) [appliance] "[ 0.111218] calling init_reserve_notifier+0x0/0x1f @ 1" + 264.0ms (+0.0) [appliance] "[ 0.111570] initcall init_reserve_notifier+0x0/0x1f returned 0 after 0 usecs" + 265.1ms (+1.1) [appliance] "[ 0.112053] calling init_admin_reserve+0x0/0x40 @ 1" + 265.1ms (+0.0) [appliance] "[ 0.112381] initcall init_admin_reserve+0x0/0x40 returned 0 after 0 usecs" + 265.1ms (+0.0) [appliance] "[ 0.112824] calling init_user_reserve+0x0/0x40 @ 1" + 266.3ms (+1.1) [appliance] "[ 0.113165] initcall init_user_reserve+0x0/0x40 returned 0 after 0 usecs" + 266.3ms (+0.0) [appliance] "[ 0.113603] calling crypto_wq_init+0x0/0x2c @ 1" + 266.3ms (+0.0) [appliance] "[ 0.113914] initcall crypto_wq_init+0x0/0x2c returned 0 after 0 usecs" + 267.4ms (+1.1) [appliance] "[ 0.114361] calling cryptomgr_init+0x0/0xc @ 1" + 267.4ms (+0.0) [appliance] "[ 0.114659] initcall cryptomgr_init+0x0/0xc returned 0 after 0 usecs" + 267.4ms (+0.0) [appliance] "[ 0.115072] calling init_bio+0x0/0xa9 @ 1" + 268.6ms (+1.1) [appliance] "[ 0.115375] initcall init_bio+0x0/0xa9 returned 0 after 0 usecs" + 268.6ms (+0.0) [appliance] "[ 0.115769] calling blk_settings_init+0x0/0x25 @ 1" + 268.6ms (+0.0) [appliance] "[ 0.116118] initcall blk_settings_init+0x0/0x25 returned 0 after 0 usecs" + 269.7ms (+1.1) [appliance] "[ 0.116582] calling blk_ioc_init+0x0/0x25 @ 1" + 269.7ms (+0.0) [appliance] "[ 0.116876] initcall blk_ioc_init+0x0/0x25 returned 0 after 0 usecs" + 269.7ms (+0.0) [appliance] "[ 0.117287] calling blk_softirq_init+0x0/0x59 @ 1" + 270.8ms (+1.1) [appliance] "[ 0.117628] initcall blk_softirq_init+0x0/0x59 returned 0 after 0 usecs" + 270.8ms (+0.0) [appliance] "[ 0.118059] calling blk_mq_init+0x0/0x8 @ 1" + 270.8ms (+0.0) [appliance] "[ 0.118344] initcall blk_mq_init+0x0/0x8 returned 0 after 0 usecs" + 272.0ms (+1.1) [appliance] "[ 0.118765] calling genhd_device_init+0x0/0x71 @ 1" + 272.0ms (+0.0) [appliance] "[ 0.119097] initcall genhd_device_init+0x0/0x71 returned 0 after 0 usecs" + 272.0ms (+0.0) [appliance] "[ 0.119540] calling pci_slot_init+0x0/0x40 @ 1" + 273.1ms (+1.1) [appliance] "[ 0.119857] initcall pci_slot_init+0x0/0x40 returned 0 after 0 usecs" + 273.1ms (+0.0) [appliance] "[ 0.120282] calling acpi_init+0x0/0x28d @ 1" + 273.1ms (+0.0) [appliance] "[ 0.120570] ACPI: Added _OSI(Module Device)" + 273.1ms (+0.0) [appliance] "[ 0.120846] ACPI: Added _OSI(Processor Device)" + 274.2ms (+1.1) [appliance] "[ 0.121160] ACPI: Added _OSI(3.0 _SCP Extensions)" + 274.2ms (+0.0) [appliance] "[ 0.121471] ACPI: Added _OSI(Processor Aggregator Device)" + 276.0ms (+1.8) [appliance] "[ 0.122809] ACPI: 2 ACPI AML tables successfully acquired and loaded" + 276.0ms (+0.0) [appliance] "[ 0.123256] " + 277.3ms (+1.3) [appliance] "[ 0.124050] ACPI: Interpreter enabled" + 277.3ms (+0.0) [appliance] "[ 0.124326] ACPI: (supports S0 S5)" + 277.3ms (+0.0) [appliance] "[ 0.124552] ACPI: Using IOAPIC for interrupt routing" + 277.3ms (+0.0) [appliance] "[ 0.124884] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug" + 281.4ms (+4.1) [appliance] "[ 0.128120] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])" + 281.4ms (+0.0) [appliance] "[ 0.128557] acpi PNP0A03:00: _OSC: OS supports [Segments]" + 281.4ms (+0.0) [appliance] "[ 0.128913] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM" + 282.5ms (+1.1) [appliance] "[ 0.129385] PCI host bridge to bus 0000:00" + 282.5ms (+0.0) [appliance] "[ 0.129659] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]" + 282.5ms (+0.0) [appliance] "[ 0.130101] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]" + 283.7ms (+1.1) [appliance] "[ 0.130569] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]" + 283.7ms (+0.0) [appliance] "[ 0.131054] pci_bus 0000:00: root bus resource [mem 0x1f400000-0xfebfffff window]" + 284.8ms (+1.1) [appliance] "[ 0.131558] pci_bus 0000:00: root bus resource [bus 00-ff]" + 284.8ms (+0.0) [appliance] "[ 0.131957] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000" + 284.8ms (+0.0) [appliance] "[ 0.132576] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100" + 285.9ms (+1.1) [appliance] "[ 0.133302] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180" + 299.7ms (+13.8) [appliance] "[ 0.146425] pci 0000:00:01.1: reg 0x20: [io 0xc080-0xc08f]" + 303.0ms (+3.4) [appliance] "[ 0.149742] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]" + 303.0ms (+0.0) [appliance] "[ 0.150247] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]" + 303.0ms (+0.0) [appliance] "[ 0.150690] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]" + 304.2ms (+1.1) [appliance] "[ 0.151195] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]" + 304.2ms (+0.0) [appliance] "[ 0.151746] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000" + 305.3ms (+1.1) [appliance] "[ 0.152406] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI" + 305.3ms (+0.0) [appliance] "[ 0.152888] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB" + 306.4ms (+1.1) [appliance] "[ 0.153514] pci 0000:00:02.0: [1af4:1005] type 00 class 0x00ff00" + 310.3ms (+3.9) [appliance] "[ 0.156488] pci 0000:00:02.0: reg 0x10: [io 0xc040-0xc05f]" + 317.7ms (+7.5) [appliance] "[ 0.164482] pci 0000:00:03.0: [1af4:1004] type 00 class 0x010000" + 319.3ms (+1.5) [appliance] "[ 0.166011] pci 0000:00:03.0: reg 0x10: [io 0xc000-0xc03f]" + 322.0ms (+2.7) [appliance] "[ 0.167458] pci 0000:00:03.0: reg 0x14: [mem 0xfebfe000-0xfebfefff]" + 344.1ms (+22.2) [appliance] "[ 0.190874] pci 0000:00:04.0: [1af4:1003] type 00 class 0x078000" + 348.3ms (+4.1) [appliance] "[ 0.195017] pci 0000:00:04.0: reg 0x10: [io 0xc060-0xc07f]" + 350.6ms (+2.3) [appliance] "[ 0.197349] pci 0000:00:04.0: reg 0x14: [mem 0xfebff000-0xfebfffff]" + 360.3ms (+9.7) [appliance] "[ 0.207043] pci_bus 0000:00: on NUMA node 0" + 360.3ms (+0.0) [appliance] "[ 0.207520] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)" + 360.3ms (+0.0) [appliance] "[ 0.207990] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)" + 361.5ms (+1.1) [appliance] "[ 0.208481] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)" + 361.5ms (+0.0) [appliance] "[ 0.208956] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)" + 362.6ms (+1.1) [appliance] "[ 0.209426] ACPI: PCI Interrupt Link [LNKS] (IRQs *9)" + 363.8ms (+1.2) [appliance] "[ 0.210516] ACPI: Enabled 16 GPEs in block 00 to 0F" + 363.8ms (+0.0) [appliance] "[ 0.210894] initcall acpi_init+0x0/0x28d returned 0 after 74218 usecs" + 363.8ms (+0.0) [appliance] "[ 0.211324] calling pnp_init+0x0/0xc @ 1" + 363.8ms (+0.0) [appliance] "[ 0.211600] initcall pnp_init+0x0/0xc returned 0 after 0 usecs" + 364.9ms (+1.1) [appliance] "[ 0.212010] calling misc_init+0x0/0xb5 @ 1" + 364.9ms (+0.0) [appliance] "[ 0.212295] initcall misc_init+0x0/0xb5 returned 0 after 0 usecs" + 364.9ms (+0.0) [appliance] "[ 0.212697] calling vga_arb_device_init+0x0/0x19e @ 1" + 366.0ms (+1.1) [appliance] "[ 0.213091] vgaarb: loaded" + 366.0ms (+0.0) [appliance] "[ 0.213277] initcall vga_arb_device_init+0x0/0x19e returned 0 after 0 usecs" + 366.0ms (+0.0) [appliance] "[ 0.213736] calling libnvdimm_init+0x0/0x30 @ 1" + 367.2ms (+1.1) [appliance] "[ 0.214072] initcall libnvdimm_init+0x0/0x30 returned 0 after 0 usecs" + 367.2ms (+0.0) [appliance] "[ 0.214499] calling init_scsi+0x0/0x7e @ 1" + 367.2ms (+0.0) [appliance] "[ 0.214802] SCSI subsystem initialized" + 368.3ms (+1.1) [appliance] "[ 0.215069] initcall init_scsi+0x0/0x7e returned 0 after 0 usecs" + 368.3ms (+0.0) [appliance] "[ 0.215479] calling serio_init+0x0/0x25 @ 1" + 368.3ms (+0.0) [appliance] "[ 0.215762] initcall serio_init+0x0/0x25 returned 0 after 0 usecs" + 369.7ms (+1.4) [appliance] "[ 0.216441] calling input_init+0x0/0xfc @ 1" + 369.7ms (+0.0) [appliance] "[ 0.216737] initcall input_init+0x0/0xfc returned 0 after 0 usecs" + 369.7ms (+0.0) [appliance] "[ 0.217148] calling power_supply_class_init+0x0/0x3b @ 1" + 369.7ms (+0.0) [appliance] "[ 0.217531] initcall power_supply_class_init+0x0/0x3b returned 0 after 0 usecs" + 370.8ms (+1.1) [appliance] "[ 0.218016] calling pci_subsys_init+0x0/0x43 @ 1" + 370.8ms (+0.0) [appliance] "[ 0.218328] PCI: Using ACPI for IRQ routing" + 370.8ms (+0.0) [appliance] "[ 0.218605] PCI: pci_cache_line_size set to 64 bytes" + 371.9ms (+1.1) [appliance] "[ 0.219025] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]" + 371.9ms (+0.0) [appliance] "[ 0.219424] e820: reserve RAM buffer [mem 0x1f3df000-0x1fffffff]" + 373.1ms (+1.1) [appliance] "[ 0.219836] initcall pci_subsys_init+0x0/0x43 returned 0 after 0 usecs" + 373.1ms (+0.0) [appliance] "[ 0.220272] calling proto_init+0x0/0xc @ 1" + 373.1ms (+0.0) [appliance] "[ 0.220552] initcall proto_init+0x0/0xc returned 0 after 0 usecs" + 374.2ms (+1.1) [appliance] "[ 0.220963] calling net_dev_init+0x0/0x1b0 @ 1" + 374.2ms (+0.0) [appliance] "[ 0.221327] initcall net_dev_init+0x0/0x1b0 returned 0 after 0 usecs" + 374.2ms (+0.0) [appliance] "[ 0.221748] calling neigh_init+0x0/0x7b @ 1" + 374.2ms (+0.0) [appliance] "[ 0.222031] initcall neigh_init+0x0/0x7b returned 0 after 0 usecs" + 375.3ms (+1.1) [appliance] "[ 0.222457] calling genl_init+0x0/0x84 @ 1" + 375.3ms (+0.0) [appliance] "[ 0.222737] initcall genl_init+0x0/0x84 returned 0 after 0 usecs" + 375.3ms (+0.0) [appliance] "[ 0.223153] calling nmi_warning_debugfs+0x0/0x3 @ 1" + 376.5ms (+1.1) [appliance] "[ 0.223549] initcall nmi_warning_debugfs+0x0/0x3 returned 0 after 0 usecs" + 376.5ms (+0.0) [appliance] "[ 0.223992] calling hpet_late_init+0x0/0xbc @ 1" + 376.5ms (+0.0) [appliance] "[ 0.224298] initcall hpet_late_init+0x0/0xbc returned -19 after 0 usecs" + 377.6ms (+1.1) [appliance] "[ 0.224756] calling clocksource_done_booting+0x0/0x3d @ 1" + 377.6ms (+0.0) [appliance] "[ 0.225127] clocksource: Switched to clocksource kvm-clock" + 378.8ms (+1.2) [appliance] "[ 0.225519] initcall clocksource_done_booting+0x0/0x3d returned 0 after 383 usecs" + 378.8ms (+0.0) [appliance] "[ 0.226045] calling init_pipe_fs+0x0/0x42 @ 1" + 378.8ms (+0.0) [appliance] "[ 0.226351] initcall init_pipe_fs+0x0/0x42 returned 0 after 5 usecs" + 379.9ms (+1.2) [appliance] "[ 0.226794] calling inotify_user_setup+0x0/0x46 @ 1" + 379.9ms (+0.0) [appliance] "[ 0.227125] initcall inotify_user_setup+0x0/0x46 returned 0 after 2 usecs" + 379.9ms (+0.0) [appliance] "[ 0.227576] calling eventpoll_init+0x0/0xdd @ 1" + 381.1ms (+1.1) [appliance] "[ 0.227909] initcall eventpoll_init+0x0/0xdd returned 0 after 0 usecs" + 381.1ms (+0.0) [appliance] "[ 0.228337] calling anon_inode_init+0x0/0x56 @ 1" + 381.1ms (+0.0) [appliance] "[ 0.228652] initcall anon_inode_init+0x0/0x56 returned 0 after 2 usecs" + 382.2ms (+1.1) [appliance] "[ 0.229104] calling proc_locks_init+0x0/0x1d @ 1" + 382.2ms (+0.0) [appliance] "[ 0.229420] initcall proc_locks_init+0x0/0x1d returned 0 after 1 usecs" + 382.2ms (+0.0) [appliance] "[ 0.229848] calling proc_cmdline_init+0x0/0x1d @ 1" + 383.3ms (+1.1) [appliance] "[ 0.230195] initcall proc_cmdline_init+0x0/0x1d returned 0 after 0 usecs" + 383.3ms (+0.0) [appliance] "[ 0.230636] calling proc_consoles_init+0x0/0x1d @ 1" + 383.3ms (+0.0) [appliance] "[ 0.230966] initcall proc_consoles_init+0x0/0x1d returned 0 after 0 usecs" + 384.5ms (+1.1) [appliance] "[ 0.231443] calling proc_cpuinfo_init+0x0/0x1d @ 1" + 384.5ms (+0.0) [appliance] "[ 0.231767] initcall proc_cpuinfo_init+0x0/0x1d returned 0 after 0 usecs" + 384.5ms (+0.0) [appliance] "[ 0.232210] calling proc_devices_init+0x0/0x1d @ 1" + 385.6ms (+1.1) [appliance] "[ 0.232563] initcall proc_devices_init+0x0/0x1d returned 0 after 0 usecs" + 385.6ms (+0.0) [appliance] "[ 0.233004] calling proc_interrupts_init+0x0/0x1d @ 1" + 385.6ms (+0.0) [appliance] "[ 0.233349] initcall proc_interrupts_init+0x0/0x1d returned 0 after 0 usecs" + 386.7ms (+1.1) [appliance] "[ 0.233829] calling proc_loadavg_init+0x0/0x1d @ 1" + 386.7ms (+0.0) [appliance] "[ 0.234153] initcall proc_loadavg_init+0x0/0x1d returned 0 after 1 usecs" + 386.7ms (+0.0) [appliance] "[ 0.234609] calling proc_meminfo_init+0x0/0x1d @ 1" + 387.9ms (+1.1) [appliance] "[ 0.234945] initcall proc_meminfo_init+0x0/0x1d returned 0 after 0 usecs" + 387.9ms (+0.0) [appliance] "[ 0.235387] calling proc_stat_init+0x0/0x1d @ 1" + 387.9ms (+0.0) [appliance] "[ 0.235695] initcall proc_stat_init+0x0/0x1d returned 0 after 0 usecs" + 389.0ms (+1.1) [appliance] "[ 0.236137] calling proc_uptime_init+0x0/0x1d @ 1" + 389.0ms (+0.0) [appliance] "[ 0.236456] initcall proc_uptime_init+0x0/0x1d returned 0 after 0 usecs" + 389.0ms (+0.0) [appliance] "[ 0.236902] calling proc_version_init+0x0/0x1d @ 1" + 390.2ms (+1.1) [appliance] "[ 0.237238] initcall proc_version_init+0x0/0x1d returned 0 after 0 usecs" + 390.2ms (+0.0) [appliance] "[ 0.237684] calling proc_softirqs_init+0x0/0x1d @ 1" + 390.2ms (+0.0) [appliance] "[ 0.238023] initcall proc_softirqs_init+0x0/0x1d returned 0 after 0 usecs" + 391.3ms (+1.1) [appliance] "[ 0.238479] calling proc_kmsg_init+0x0/0x20 @ 1" + 391.3ms (+0.0) [appliance] "[ 0.238784] initcall proc_kmsg_init+0x0/0x20 returned 0 after 0 usecs" + 392.4ms (+1.1) [appliance] "[ 0.239231] calling proc_page_init+0x0/0x3d @ 1" + 392.4ms (+0.0) [appliance] "[ 0.239538] initcall proc_page_init+0x0/0x3d returned 0 after 0 usecs" + 392.4ms (+0.0) [appliance] "[ 0.239960] calling init_ramfs_fs+0x0/0x1a @ 1" + 392.4ms (+0.0) [appliance] "[ 0.240268] initcall init_ramfs_fs+0x0/0x1a returned 0 after 0 usecs" + 393.6ms (+1.1) [appliance] "[ 0.240701] calling blk_scsi_ioctl_init+0x0/0x365 @ 1" + 393.6ms (+0.0) [appliance] "[ 0.241039] initcall blk_scsi_ioctl_init+0x0/0x365 returned 0 after 0 usecs" + 394.7ms (+1.1) [appliance] "[ 0.241524] calling acpi_event_init+0x0/0x33 @ 1" + 394.7ms (+0.0) [appliance] "[ 0.241836] initcall acpi_event_init+0x0/0x33 returned 0 after 3 usecs" + 394.7ms (+0.0) [appliance] "[ 0.242262] calling pnp_system_init+0x0/0xc @ 1" + 394.7ms (+0.0) [appliance] "[ 0.242584] initcall pnp_system_init+0x0/0xc returned 0 after 5 usecs" + 395.8ms (+1.1) [appliance] "[ 0.243014] calling pnpacpi_init+0x0/0x69 @ 1" + 395.8ms (+0.0) [appliance] "[ 0.243306] pnp: PnP ACPI init" + 395.8ms (+0.0) [appliance] "[ 0.243540] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)" + 397.0ms (+1.1) [appliance] "[ 0.244007] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)" + 397.0ms (+0.0) [appliance] "[ 0.244449] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)" + 398.1ms (+1.1) [appliance] "[ 0.244904] pnp 00:03: [dma 2]" + 398.1ms (+0.0) [appliance] "[ 0.245112] pnp 00:03: Plug and Play ACPI device, IDs PNP0700 (active)" + 398.1ms (+0.0) [appliance] "[ 0.245583] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)" + 399.2ms (+1.1) [appliance] "[ 0.246593] pnp: PnP ACPI: found 5 devices" + 399.2ms (+0.0) [appliance] "[ 0.246866] initcall pnpacpi_init+0x0/0x69 returned 0 after 3475 usecs" + 400.3ms (+1.1) [appliance] "[ 0.247316] calling chr_dev_init+0x0/0xa4 @ 1" + 400.3ms (+0.0) [appliance] "[ 0.247962] initcall chr_dev_init+0x0/0xa4 returned 0 after 345 usecs" + 401.5ms (+1.1) [appliance] "[ 0.248413] calling thermal_init+0x0/0x6f @ 1" + 401.5ms (+0.0) [appliance] "[ 0.248710] initcall thermal_init+0x0/0x6f returned 0 after 4 usecs" + 401.5ms (+0.0) [appliance] "[ 0.249120] calling init_acpi_pm_clocksource+0x0/0xd2 @ 1" + 407.3ms (+5.8) [appliance] "[ 0.254030] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns" + 407.3ms (+0.0) [appliance] "[ 0.254628] initcall init_acpi_pm_clocksource+0x0/0xd2 returned 0 after 4998 usecs" + 407.3ms (+0.0) [appliance] "[ 0.255131] calling pcibios_assign_resources+0x0/0xbb @ 1" + 408.4ms (+1.1) [appliance] "[ 0.255511] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]" + 408.4ms (+0.0) [appliance] "[ 0.255916] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]" + 409.6ms (+1.1) [appliance] "[ 0.256335] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]" + 409.6ms (+0.0) [appliance] "[ 0.256790] pci_bus 0000:00: resource 7 [mem 0x1f400000-0xfebfffff window]" + 409.6ms (+0.0) [appliance] "[ 0.257243] initcall pcibios_assign_resources+0x0/0xbb returned 0 after 1694 usecs" + 410.7ms (+1.1) [appliance] "[ 0.257766] calling sysctl_core_init+0x0/0x26 @ 1" + 410.7ms (+0.0) [appliance] "[ 0.258089] initcall sysctl_core_init+0x0/0x26 returned 0 after 6 usecs" + 410.7ms (+0.0) [appliance] "[ 0.258523] calling eth_offload_init+0x0/0xf @ 1" + 411.8ms (+1.1) [appliance] "[ 0.258854] initcall eth_offload_init+0x0/0xf returned 0 after 0 usecs" + 411.8ms (+0.0) [appliance] "[ 0.259282] calling af_unix_init+0x0/0x49 @ 1" + 411.8ms (+0.0) [appliance] "[ 0.259603] NET: Registered protocol family 1" + 413.0ms (+1.1) [appliance] "[ 0.259914] initcall af_unix_init+0x0/0x49 returned 0 after 304 usecs" + 413.0ms (+0.0) [appliance] "[ 0.260338] calling pci_apply_final_quirks+0x0/0xfe @ 1" + 413.0ms (+0.0) [appliance] "[ 0.260687] pci 0000:00:00.0: Limiting direct PCI/PCI transfers" + 414.1ms (+1.1) [appliance] "[ 0.261101] pci 0000:00:01.0: PIIX3: Enabling Passive Release" + 414.1ms (+0.0) [appliance] "[ 0.261496] pci 0000:00:01.0: Activating ISA DMA hang workarounds" + 414.1ms (+0.0) [appliance] "[ 0.261924] PCI: CLS 0 bytes, default 64" + 415.2ms (+1.1) [appliance] "[ 0.262208] initcall pci_apply_final_quirks+0x0/0xfe returned 0 after 1486 usecs" + 415.2ms (+0.0) [appliance] "[ 0.262692] calling acpi_reserve_resources+0x0/0xe6 @ 1" + 415.2ms (+0.0) [appliance] "[ 0.263043] initcall acpi_reserve_resources+0x0/0xe6 returned 0 after 2 usecs" + 416.4ms (+1.1) [appliance] "[ 0.263533] calling populate_rootfs+0x0/0xa1 @ 1" + 416.4ms (+0.0) [appliance] "[ 0.263864] Unpacking initramfs..." + 416.4ms (+0.0) [appliance] "[ 0.264173] Freeing initrd memory: 164K (ffff88001f3a7000 - ffff88001f3d0000)" + 417.5ms (+1.1) [appliance] "[ 0.264666] initcall populate_rootfs+0x0/0xa1 returned 0 after 803 usecs" + 417.5ms (+0.0) [appliance] "[ 0.265102] calling pci_iommu_init+0x0/0x37 @ 1" + 418.6ms (+1.1) [appliance] "[ 0.265441] initcall pci_iommu_init+0x0/0x37 returned 0 after 0 usecs" + 418.6ms (+0.0) [appliance] "[ 0.265883] calling amd_ibs_init+0x0/0x2d9 @ 1" + 418.6ms (+0.0) [appliance] "[ 0.266184] initcall amd_ibs_init+0x0/0x2d9 returned -19 after 0 usecs" + 419.8ms (+1.1) [appliance] "[ 0.266639] calling msr_init+0x0/0xbe @ 1" + 419.8ms (+0.0) [appliance] "[ 0.266915] initcall msr_init+0x0/0xbe returned 0 after 5 usecs" + 419.8ms (+0.0) [appliance] "[ 0.267304] calling intel_cqm_init+0x0/0x495 @ 1" + 419.8ms (+0.0) [appliance] "[ 0.267628] initcall intel_cqm_init+0x0/0x495 returned -19 after 0 usecs" + 420.9ms (+1.1) [appliance] "[ 0.268077] calling rapl_pmu_init+0x0/0x254 @ 1" + 420.9ms (+0.0) [appliance] "[ 0.268388] initcall rapl_pmu_init+0x0/0x254 returned -1 after 1 usecs" + 422.0ms (+1.1) [appliance] "[ 0.268838] calling intel_uncore_init+0x0/0x2cf @ 1" + 422.0ms (+0.0) [appliance] "[ 0.269170] initcall intel_uncore_init+0x0/0x2cf returned -19 after 0 usecs" + 422.0ms (+0.0) [appliance] "[ 0.269626] calling cstate_pmu_init+0x0/0x179 @ 1" + 423.2ms (+1.1) [appliance] "[ 0.269955] initcall cstate_pmu_init+0x0/0x179 returned -19 after 0 usecs" + 423.2ms (+0.0) [appliance] "[ 0.270409] calling register_kernel_offset_dumper+0x0/0x16 @ 1" + 423.2ms (+0.0) [appliance] "[ 0.270798] initcall register_kernel_offset_dumper+0x0/0x16 returned 0 after 0 usecs" + 424.3ms (+1.1) [appliance] "[ 0.271326] calling i8259A_init_ops+0x0/0x1c @ 1" + 424.3ms (+0.0) [appliance] "[ 0.271636] initcall i8259A_init_ops+0x0/0x1c returned 0 after 0 usecs" + 424.3ms (+0.0) [appliance] "[ 0.272064] calling init_tsc_clocksource+0x0/0xad @ 1" + 425.4ms (+1.1) [appliance] "[ 0.272427] initcall init_tsc_clocksource+0x0/0xad returned 0 after 0 usecs" + 425.4ms (+0.0) [appliance] "[ 0.272879] calling add_rtc_cmos+0x0/0xa0 @ 1" + 425.4ms (+0.0) [appliance] "[ 0.273177] initcall add_rtc_cmos+0x0/0xa0 returned 0 after 0 usecs" + 426.6ms (+1.1) [appliance] "[ 0.273612] calling i8237A_init_ops+0x0/0xf @ 1" + 426.6ms (+0.0) [appliance] "[ 0.273915] initcall i8237A_init_ops+0x0/0xf returned 0 after 0 usecs" + 426.6ms (+0.0) [appliance] "[ 0.274339] calling ioapic_init_ops+0x0/0xf @ 1" + 427.7ms (+1.1) [appliance] "[ 0.274666] initcall ioapic_init_ops+0x0/0xf returned 0 after 0 usecs" + 427.7ms (+0.0) [appliance] "[ 0.275086] calling sysfb_init+0x0/0x6b @ 1" + 427.7ms (+0.0) [appliance] "[ 0.275377] initcall sysfb_init+0x0/0x6b returned 0 after 8 usecs" + 428.8ms (+1.1) [appliance] "[ 0.275799] calling pmc_atom_init+0x0/0xec @ 1" + 428.8ms (+0.0) [appliance] "[ 0.276098] initcall pmc_atom_init+0x0/0xec returned -19 after 1 usecs" + 428.8ms (+0.0) [appliance] "[ 0.276528] calling proc_execdomains_init+0x0/0x1d @ 1" + 430.0ms (+1.1) [appliance] "[ 0.276896] initcall proc_execdomains_init+0x0/0x1d returned 0 after 1 usecs" + 430.0ms (+0.0) [appliance] "[ 0.277363] calling ioresources_init+0x0/0x37 @ 1" + 430.0ms (+0.0) [appliance] "[ 0.277681] initcall ioresources_init+0x0/0x37 returned 0 after 1 usecs" + 431.1ms (+1.1) [appliance] "[ 0.278134] calling init_sched_debug_procfs+0x0/0x27 @ 1" + 431.1ms (+0.0) [appliance] "[ 0.278490] initcall init_sched_debug_procfs+0x0/0x27 returned 0 after 0 usecs" + 431.1ms (+0.0) [appliance] "[ 0.278972] calling init_posix_timers+0x0/0x274 @ 1" + 432.3ms (+1.1) [appliance] "[ 0.279315] initcall init_posix_timers+0x0/0x274 returned 0 after 2 usecs" + 432.3ms (+0.0) [appliance] "[ 0.279759] calling init_posix_cpu_timers+0x0/0xb8 @ 1" + 432.3ms (+0.0) [appliance] "[ 0.280111] initcall init_posix_cpu_timers+0x0/0xb8 returned 0 after 0 usecs" + 433.4ms (+1.1) [appliance] "[ 0.280585] calling timekeeping_init_ops+0x0/0xf @ 1" + 433.4ms (+0.0) [appliance] "[ 0.280917] initcall timekeeping_init_ops+0x0/0xf returned 0 after 0 usecs" + 434.5ms (+1.1) [appliance] "[ 0.281393] calling init_clocksource_sysfs+0x0/0x64 @ 1" + 434.5ms (+0.0) [appliance] "[ 0.281753] initcall init_clocksource_sysfs+0x0/0x64 returned 0 after 10 usecs" + 434.5ms (+0.0) [appliance] "[ 0.282225] calling init_timer_list_procfs+0x0/0x27 @ 1" + 435.7ms (+1.1) [appliance] "[ 0.282600] initcall init_timer_list_procfs+0x0/0x27 returned 0 after 0 usecs" + 435.7ms (+0.0) [appliance] "[ 0.283064] calling alarmtimer_init+0x0/0xee @ 1" + 435.7ms (+0.0) [appliance] "[ 0.283387] initcall alarmtimer_init+0x0/0xee returned 0 after 9 usecs" + 436.8ms (+1.1) [appliance] "[ 0.283838] calling clockevents_init_sysfs+0x0/0xcd @ 1" + 436.8ms (+0.0) [appliance] "[ 0.284197] initcall clockevents_init_sysfs+0x0/0xcd returned 0 after 9 usecs" + 436.8ms (+0.0) [appliance] "[ 0.284676] calling futex_init+0x0/0xad @ 1" + 437.9ms (+1.1) [appliance] "[ 0.284968] futex hash table entries: 16 (order: -2, 1024 bytes)" + 437.9ms (+0.0) [appliance] "[ 0.285368] initcall futex_init+0x0/0xad returned 0 after 390 usecs" + 437.9ms (+0.0) [appliance] "[ 0.285790] calling proc_dma_init+0x0/0x1d @ 1" + 439.1ms (+1.1) [appliance] "[ 0.286102] initcall proc_dma_init+0x0/0x1d returned 0 after 0 usecs" + 439.1ms (+0.0) [appliance] "[ 0.286521] calling proc_modules_init+0x0/0x1d @ 1" + 439.1ms (+0.0) [appliance] "[ 0.286842] initcall proc_modules_init+0x0/0x1d returned 0 after 0 usecs" + 440.2ms (+1.1) [appliance] "[ 0.287301] calling kallsyms_init+0x0/0x20 @ 1" + 440.2ms (+0.0) [appliance] "[ 0.287604] initcall kallsyms_init+0x0/0x20 returned 0 after 0 usecs" + 440.2ms (+0.0) [appliance] "[ 0.288019] calling utsname_sysctl_init+0x0/0xf @ 1" + 441.3ms (+1.1) [appliance] "[ 0.288375] initcall utsname_sysctl_init+0x0/0xf returned 0 after 3 usecs" + 441.3ms (+0.0) [appliance] "[ 0.288821] calling perf_event_sysfs_init+0x0/0x8f @ 1" + 441.3ms (+0.0) [appliance] "[ 0.289206] initcall perf_event_sysfs_init+0x0/0x8f returned 0 after 27 usecs" + 442.5ms (+1.1) [appliance] "[ 0.289684] calling kswapd_init+0x0/0xf @ 1" + 442.5ms (+0.0) [appliance] "[ 0.289996] initcall kswapd_init+0x0/0xf returned 0 after 30 usecs" + 443.6ms (+1.1) [appliance] "[ 0.290428] calling setup_vmstat+0x0/0x1a8 @ 1" + 443.6ms (+0.0) [appliance] "[ 0.290737] initcall setup_vmstat+0x0/0x1a8 returned 0 after 11 usecs" + 443.6ms (+0.0) [appliance] "[ 0.291159] calling mm_compute_batch_init+0x0/0x14 @ 1" + 444.7ms (+1.1) [appliance] "[ 0.291516] initcall mm_compute_batch_init+0x0/0x14 returned 0 after 0 usecs" + 444.7ms (+0.0) [appliance] "[ 0.291983] calling slab_proc_init+0x0/0x20 @ 1" + 444.7ms (+0.0) [appliance] "[ 0.292288] initcall slab_proc_init+0x0/0x20 returned 0 after 0 usecs" + 445.9ms (+1.1) [appliance] "[ 0.292737] calling workingset_init+0x0/0x7a @ 1" + 445.9ms (+0.0) [appliance] "[ 0.293045] workingset: timestamp_bits=60 max_order=17 bucket_order=0" + 445.9ms (+0.0) [appliance] "[ 0.293472] initcall workingset_init+0x0/0x7a returned 0 after 416 usecs" + 447.0ms (+1.1) [appliance] "[ 0.293933] calling proc_vmalloc_init+0x0/0x20 @ 1" + 447.0ms (+0.0) [appliance] "[ 0.294253] initcall proc_vmalloc_init+0x0/0x20 returned 0 after 0 usecs" + 447.0ms (+0.0) [appliance] "[ 0.294690] calling procswaps_init+0x0/0x1d @ 1" + 448.1ms (+1.1) [appliance] "[ 0.295017] initcall procswaps_init+0x0/0x1d returned 0 after 0 usecs" + 448.1ms (+0.0) [appliance] "[ 0.295440] calling slab_sysfs_init+0x0/0xf5 @ 1" + 449.5ms (+1.3) [appliance] "[ 0.296212] initcall slab_sysfs_init+0x0/0xf5 returned 0 after 453 usecs" + 449.5ms (+0.0) [appliance] "[ 0.296674] calling fcntl_init+0x0/0x25 @ 1" + 449.5ms (+0.0) [appliance] "[ 0.296966] initcall fcntl_init+0x0/0x25 returned 0 after 12 usecs" + 450.6ms (+1.1) [appliance] "[ 0.297392] calling proc_filesystems_init+0x0/0x1d @ 1" + 450.6ms (+0.0) [appliance] "[ 0.297743] initcall proc_filesystems_init+0x0/0x1d returned 0 after 1 usecs" + 450.6ms (+0.0) [appliance] "[ 0.298198] calling start_dirtytime_writeback+0x0/0x25 @ 1" + 451.7ms (+1.1) [appliance] "[ 0.298588] initcall start_dirtytime_writeback+0x0/0x25 returned 0 after 0 usecs" + 451.7ms (+0.0) [appliance] "[ 0.299065] calling dio_init+0x0/0x28 @ 1" + 451.7ms (+0.0) [appliance] "[ 0.299350] initcall dio_init+0x0/0x28 returned 0 after 11 usecs" + 452.9ms (+1.1) [appliance] "[ 0.299766] calling dnotify_init+0x0/0x74 @ 1" + 452.9ms (+0.0) [appliance] "[ 0.300059] initcall dnotify_init+0x0/0x74 returned 0 after 2 usecs" + 452.9ms (+0.0) [appliance] "[ 0.300470] calling fanotify_user_setup+0x0/0x4d @ 1" + 454.0ms (+1.1) [appliance] "[ 0.300825] initcall fanotify_user_setup+0x0/0x4d returned 0 after 1 usecs" + 454.0ms (+0.0) [appliance] "[ 0.301277] calling aio_setup+0x0/0x76 @ 1" + 454.0ms (+0.0) [appliance] "[ 0.301564] initcall aio_setup+0x0/0x76 returned 0 after 7 usecs" + 455.2ms (+1.1) [appliance] "[ 0.301980] calling mbcache_init+0x0/0x2c @ 1" + 455.2ms (+0.0) [appliance] "[ 0.302284] initcall mbcache_init+0x0/0x2c returned 0 after 11 usecs" + 455.2ms (+0.0) [appliance] "[ 0.302701] calling init_devpts_fs+0x0/0x5d @ 1" + 455.2ms (+0.0) [appliance] "[ 0.303020] initcall init_devpts_fs+0x0/0x5d returned 0 after 6 usecs" + 456.3ms (+1.1) [appliance] "[ 0.303458] calling ext4_init_fs+0x0/0x197 @ 1" + 456.3ms (+0.0) [appliance] "[ 0.303815] initcall ext4_init_fs+0x0/0x197 returned 0 after 49 usecs" + 457.4ms (+1.1) [appliance] "[ 0.304257] calling journal_init+0x0/0x102 @ 1" + 457.4ms (+0.0) [appliance] "[ 0.304609] initcall journal_init+0x0/0x102 returned 0 after 51 usecs" + 457.4ms (+0.0) [appliance] "[ 0.305032] calling init_nls_utf8+0x0/0x21 @ 1" + 458.5ms (+1.1) [appliance] "[ 0.305361] initcall init_nls_utf8+0x0/0x21 returned 0 after 0 usecs" + 458.5ms (+0.0) [appliance] "[ 0.305778] calling crypto_algapi_init+0x0/0x8 @ 1" + 458.5ms (+0.0) [appliance] "[ 0.306099] initcall crypto_algapi_init+0x0/0x8 returned 0 after 1 usecs" + 459.7ms (+1.1) [appliance] "[ 0.306563] calling chainiv_module_init+0x0/0xc @ 1" + 459.7ms (+0.0) [appliance] "[ 0.306890] initcall chainiv_module_init+0x0/0xc returned 0 after 0 usecs" + 459.7ms (+0.0) [appliance] "[ 0.307335] calling eseqiv_module_init+0x0/0xc @ 1" + 460.8ms (+1.1) [appliance] "[ 0.307678] initcall eseqiv_module_init+0x0/0xc returned 0 after 0 usecs" + 460.8ms (+0.0) [appliance] "[ 0.308114] calling crypto_null_mod_init+0x0/0x43 @ 1" + 460.8ms (+0.0) [appliance] "[ 0.308484] initcall crypto_null_mod_init+0x0/0x43 returned 0 after 29 usecs" + 461.9ms (+1.1) [appliance] "[ 0.308968] calling crc32c_mod_init+0x0/0xc @ 1" + 461.9ms (+0.0) [appliance] "[ 0.309285] initcall crc32c_mod_init+0x0/0xc returned 0 after 6 usecs" + 461.9ms (+0.0) [appliance] "[ 0.309710] calling proc_genhd_init+0x0/0x37 @ 1" + 463.1ms (+1.1) [appliance] "[ 0.310043] initcall proc_genhd_init+0x0/0x37 returned 0 after 1 usecs" + 463.1ms (+0.0) [appliance] "[ 0.310471] calling bsg_init+0x0/0x123 @ 1" + 463.1ms (+0.0) [appliance] "[ 0.310761] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)" + 464.2ms (+1.1) [appliance] "[ 0.311262] initcall bsg_init+0x0/0x123 returned 0 after 503 usecs" + 464.2ms (+0.0) [appliance] "[ 0.311668] calling noop_init+0x0/0xc @ 1" + 464.2ms (+0.0) [appliance] "[ 0.311937] io scheduler noop registered" + 465.3ms (+1.1) [appliance] "[ 0.312218] initcall noop_init+0x0/0xc returned 0 after 274 usecs" + 465.3ms (+0.0) [appliance] "[ 0.312618] calling deadline_init+0x0/0xc @ 1" + 465.3ms (+0.0) [appliance] "[ 0.312908] io scheduler deadline registered" + 465.3ms (+0.0) [appliance] "[ 0.313208] initcall deadline_init+0x0/0xc returned 0 after 292 usecs" + 466.5ms (+1.1) [appliance] "[ 0.313640] calling cfq_init+0x0/0x7f @ 1" + 466.5ms (+0.0) [appliance] "[ 0.313932] io scheduler cfq registered (default)" + 466.5ms (+0.0) [appliance] "[ 0.314241] initcall cfq_init+0x0/0x7f returned 0 after 323 usecs" + 467.6ms (+1.1) [appliance] "[ 0.314664] calling percpu_counter_startup+0x0/0x22 @ 1" + 467.6ms (+0.0) [appliance] "[ 0.315012] initcall percpu_counter_startup+0x0/0x22 returned 0 after 0 usecs" + 467.6ms (+0.0) [appliance] "[ 0.315490] calling pci_proc_init+0x0/0x64 @ 1" + 468.7ms (+1.1) [appliance] "[ 0.315803] initcall pci_proc_init+0x0/0x64 returned 0 after 5 usecs" + 468.7ms (+0.0) [appliance] "[ 0.316217] calling acpi_ac_init+0x0/0x26 @ 1" + 468.7ms (+0.0) [appliance] "[ 0.316522] initcall acpi_ac_init+0x0/0x26 returned 0 after 11 usecs" + 469.9ms (+1.1) [appliance] "[ 0.316961] calling acpi_button_driver_init+0x0/0xc @ 1" + 469.9ms (+0.0) [appliance] "[ 0.317339] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0" + 471.0ms (+1.1) [appliance] "[ 0.317844] ACPI: Power Button [PWRF]" + 471.0ms (+0.0) [appliance] "[ 0.318106] initcall acpi_button_driver_init+0x0/0xc returned 0 after 772 usecs" + 471.0ms (+0.0) [appliance] "[ 0.318586] calling acpi_fan_driver_init+0x0/0xe @ 1" + 472.1ms (+1.1) [appliance] "[ 0.318944] initcall acpi_fan_driver_init+0x0/0xe returned 0 after 11 usecs" + 472.1ms (+0.0) [appliance] "[ 0.319399] calling acpi_processor_driver_init+0x0/0x23 @ 1" + 472.1ms (+0.0) [appliance] "[ 0.319773] Warning: Processor Platform Limit event detected, but not handled." + 473.3ms (+1.1) [appliance] "[ 0.320262] Consider compiling CPUfreq support into your kernel." + 473.3ms (+0.0) [appliance] "[ 0.320667] initcall acpi_processor_driver_init+0x0/0x23 returned 0 after 877 usecs" + 474.4ms (+1.2) [appliance] "[ 0.321186] calling acpi_thermal_init+0x0/0x6c @ 1" + 474.4ms (+0.0) [appliance] "[ 0.321556] initcall acpi_thermal_init+0x0/0x6c returned 0 after 15 usecs" + 474.4ms (+0.0) [appliance] "[ 0.322016] calling acpi_battery_init+0x0/0x2b @ 1" + 475.5ms (+1.1) [appliance] "[ 0.322353] initcall acpi_battery_init+0x0/0x2b returned 0 after 2 usecs" + 475.5ms (+0.0) [appliance] "[ 0.322805] calling pty_init+0x0/0x37b @ 1" + 478.6ms (+3.0) [appliance] "[ 0.325289] initcall pty_init+0x0/0x37b returned 0 after 2147 usecs" + 478.6ms (+0.0) [appliance] "[ 0.325730] calling serial8250_init+0x0/0x163 @ 1" + 478.6ms (+0.0) [appliance] "[ 0.326045] Serial: 8250/16550 driver, 1 ports, IRQ sharing disabled" + 501.8ms (+23.3) [appliance] "[ 0.348635] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A" + 501.8ms (+0.0) [appliance] "[ 0.349169] initcall serial8250_init+0x0/0x163 returned 0 after 22581 usecs" + 501.8ms (+0.0) [appliance] "[ 0.349652] calling serial_pci_driver_init+0x0/0x15 @ 1" + 503.0ms (+1.1) [appliance] "[ 0.350023] initcall serial_pci_driver_init+0x0/0x15 returned 0 after 8 usecs" + 503.0ms (+0.0) [appliance] "[ 0.350513] calling topology_sysfs_init+0x0/0x70 @ 1" + 504.1ms (+1.1) [appliance] "[ 0.350863] initcall topology_sysfs_init+0x0/0x70 returned 0 after 2 usecs" + 504.1ms (+0.0) [appliance] "[ 0.351331] calling cacheinfo_sysfs_init+0x0/0x3aa @ 1" + 504.1ms (+0.0) [appliance] "[ 0.351703] initcall cacheinfo_sysfs_init+0x0/0x3aa returned 0 after 17 usecs" + 505.2ms (+1.1) [appliance] "[ 0.352190] calling pmem_init+0x0/0x15 @ 1" + 505.2ms (+0.0) [appliance] "[ 0.352481] initcall pmem_init+0x0/0x15 returned 0 after 4 usecs" + 505.2ms (+0.0) [appliance] "[ 0.352887] calling nd_btt_init+0x0/0x6 @ 1" + 506.3ms (+1.1) [appliance] "[ 0.353186] initcall nd_btt_init+0x0/0x6 returned -6 after 0 usecs" + 506.3ms (+0.0) [appliance] "[ 0.353609] calling nd_blk_init+0x0/0x15 @ 1" + 506.3ms (+0.0) [appliance] "[ 0.353909] initcall nd_blk_init+0x0/0x15 returned 0 after 3 usecs" + 507.4ms (+1.1) [appliance] "[ 0.354333] calling init_sd+0x0/0x148 @ 1" + 507.4ms (+0.0) [appliance] "[ 0.354621] initcall init_sd+0x0/0x148 returned 0 after 8 usecs" + 507.4ms (+0.0) [appliance] "[ 0.355025] calling init_sg+0x0/0x119 @ 1" + 507.4ms (+0.0) [appliance] "[ 0.355314] initcall init_sg+0x0/0x119 returned 0 after 8 usecs" + 508.5ms (+1.1) [appliance] "[ 0.355721] calling net_olddevs_init+0x0/0x58 @ 1" + 508.5ms (+0.0) [appliance] "[ 0.356049] initcall net_olddevs_init+0x0/0x58 returned 0 after 1 usecs" + 509.6ms (+1.1) [appliance] "[ 0.356501] calling i8042_init+0x0/0x332 @ 1" + 509.6ms (+0.0) [appliance] "[ 0.356810] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12" + 511.0ms (+1.4) [appliance] "[ 0.357831] serio: i8042 KBD port at 0x60,0x64 irq 1" + 511.0ms (+0.0) [appliance] "[ 0.358172] serio: i8042 AUX port at 0x60,0x64 irq 12" + 511.0ms (+0.0) [appliance] "[ 0.358524] initcall i8042_init+0x0/0x332 returned 0 after 1685 usecs" + 512.2ms (+1.1) [appliance] "[ 0.358963] calling serport_init+0x0/0x28 @ 1" + 512.2ms (+0.0) [appliance] "[ 0.359267] initcall serport_init+0x0/0x28 returned 0 after 0 usecs" + 512.2ms (+0.0) [appliance] "[ 0.359693] calling hid_init+0x0/0x38 @ 1" + 512.2ms (+0.0) [appliance] "[ 0.359976] initcall hid_init+0x0/0x38 returned 0 after 4 usecs" + 513.3ms (+1.1) [appliance] "[ 0.360390] calling hid_generic_init+0x0/0x15 @ 1" + 513.3ms (+0.0) [appliance] "[ 0.360719] initcall hid_generic_init+0x0/0x15 returned 0 after 4 usecs" + 514.4ms (+1.1) [appliance] "[ 0.361173] calling sock_diag_init+0x0/0x2f @ 1" + 514.4ms (+0.0) [appliance] "[ 0.361498] initcall sock_diag_init+0x0/0x2f returned 0 after 4 usecs" + 514.4ms (+0.0) [appliance] "[ 0.361956] calling hpet_insert_resource+0x0/0x1e @ 1" + 515.5ms (+1.1) [appliance] "[ 0.362307] initcall hpet_insert_resource+0x0/0x1e returned 1 after 0 usecs" + 515.5ms (+0.0) [appliance] "[ 0.362779] calling update_mp_table+0x0/0x43e @ 1" + 515.5ms (+0.0) [appliance] "[ 0.363107] initcall update_mp_table+0x0/0x43e returned 0 after 0 usecs" + 516.6ms (+1.1) [appliance] "[ 0.363562] calling lapic_insert_resource+0x0/0x3a @ 1" + 516.6ms (+0.0) [appliance] "[ 0.363918] initcall lapic_insert_resource+0x0/0x3a returned 0 after 0 usecs" + 516.6ms (+0.0) [appliance] "[ 0.364398] calling print_ICs+0x0/0xd6 @ 1" + 517.7ms (+1.1) [appliance] "[ 0.364686] initcall print_ICs+0x0/0xd6 returned 0 after 0 usecs" + 517.7ms (+0.0) [appliance] "[ 0.365093] calling create_tlb_single_page_flush_ceiling+0x0/0x3 @ 1" + 517.7ms (+0.0) [appliance] "[ 0.365535] initcall create_tlb_single_page_flush_ceiling+0x0/0x3 returned 0 after 0 usecs" + 518.8ms (+1.1) [appliance] "[ 0.366093] calling init_oops_id+0x0/0x30 @ 1" + 518.8ms (+0.0) [appliance] "[ 0.366400] initcall init_oops_id+0x0/0x30 returned 0 after 1 usecs" + 519.9ms (+1.1) [appliance] "[ 0.366826] calling sched_init_debug+0x0/0x3 @ 1" + 519.9ms (+0.0) [appliance] "[ 0.367147] initcall sched_init_debug+0x0/0x3 returned 0 after 0 usecs" + 519.9ms (+0.0) [appliance] "[ 0.367589] calling pm_qos_power_init+0x0/0x5f @ 1" + 521.0ms (+1.1) [appliance] "[ 0.367966] initcall pm_qos_power_init+0x0/0x5f returned 0 after 42 usecs" + 521.0ms (+0.0) [appliance] "[ 0.368430] calling printk_late_init+0x0/0x54 @ 1" + 521.0ms (+0.0) [appliance] "[ 0.368757] initcall printk_late_init+0x0/0x54 returned 0 after 0 usecs" + 522.2ms (+1.1) [appliance] "[ 0.369211] calling max_swapfiles_check+0x0/0x3 @ 1" + 522.2ms (+0.0) [appliance] "[ 0.369552] initcall max_swapfiles_check+0x0/0x3 returned 0 after 0 usecs" + 522.2ms (+0.0) [appliance] "[ 0.370009] calling check_early_ioremap_leak+0x0/0x3d @ 1" + 523.3ms (+1.1) [appliance] "[ 0.370384] initcall check_early_ioremap_leak+0x0/0x3d returned 0 after 0 usecs" + 523.3ms (+0.0) [appliance] "[ 0.370875] calling prandom_reseed+0x0/0x3b @ 1" + 524.4ms (+1.1) [appliance] "[ 0.371195] initcall prandom_reseed+0x0/0x3b returned 0 after 2 usecs" + 524.4ms (+0.0) [appliance] "[ 0.371634] calling pci_resource_alignment_sysfs_init+0x0/0x17 @ 1" + 524.4ms (+0.0) [appliance] "[ 0.372058] initcall pci_resource_alignment_sysfs_init+0x0/0x17 returned 0 after 1 usecs" + 525.5ms (+1.1) [appliance] "[ 0.372606] calling pci_sysfs_init+0x0/0x4b @ 1" + 525.5ms (+0.0) [appliance] "[ 0.373001] initcall pci_sysfs_init+0x0/0x4b returned 0 after 80 usecs" + 526.6ms (+1.1) [appliance] "[ 0.373452] calling deferred_probe_initcall+0x0/0x60 @ 1" + 526.6ms (+0.0) [appliance] "[ 0.373830] initcall deferred_probe_initcall+0x0/0x60 returned 0 after 12 usecs" + 526.6ms (+0.0) [appliance] "[ 0.374327] calling register_sk_filter_ops+0x0/0x3 @ 1" + 527.7ms (+1.1) [appliance] "[ 0.374682] initcall register_sk_filter_ops+0x0/0x3 returned 0 after 0 usecs" + 527.7ms (+0.0) [appliance] "[ 0.375157] calling init_default_flow_dissectors+0x0/0x33 @ 1" + 527.7ms (+0.0) [appliance] "[ 0.375552] initcall init_default_flow_dissectors+0x0/0x33 returned 0 after 0 usecs" + 528.8ms (+1.1) [appliance] "[ 0.376562] Freeing unused kernel memory: 628K (ffffffff8164a000 - ffffffff816e7000)" + 529.9ms (+1.1) [appliance] "[ 0.377090] Write protecting the kernel read-only data: 6144k" + 529.9ms (+0.0) [appliance] "[ 0.377679] Freeing unused kernel memory: 1236K (ffff8800012cb000 - ffff880001400000)" + 532.8ms (+2.9) [appliance] "[ 0.379559] Freeing unused kernel memory: 868K (ffff880001527000 - ffff880001600000)" + 532.8ms (+0.0) [appliance] "supermin: mounting /proc" + 532.8ms (+0.0) [appliance] "supermin: ext2 mini initrd starting up: 5.1.16 dietlibc" + 532.8ms (+0.0) [appliance] "supermin: cmdline: panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug " + 535.0ms (+2.2) [appliance] "supermin: uptime: 0.31 0.01" + 535.0ms (+0.0) [appliance] "supermin: mounting /sys" + 535.0ms (+0.0) [appliance] "supermin: internal insmod nfit.ko" + 536.1ms (+1.1) [appliance] "[ 0.382950] calling nfit_init+0x0/0xfe [nfit] @ 1" + 537.4ms (+1.3) [appliance] "[ 0.384176] initcall nfit_init+0x0/0xfe [nfit] returned 0 after 868 usecs" + 537.4ms (+0.0) [appliance] "supermin: internal insmod virtio.ko" + 537.4ms (+0.0) [appliance] "[ 0.384986] calling virtio_init+0x0/0x1f [virtio] @ 1" + 538.5ms (+1.1) [appliance] "[ 0.385362] initcall virtio_init+0x0/0x1f [virtio] returned 0 after 4 usecs" + 538.5ms (+0.0) [appliance] "supermin: internal insmod virtio_ring.ko" + 538.5ms (+0.0) [appliance] "supermin: internal insmod virtio_console.ko" + 539.6ms (+1.1) [appliance] "[ 0.386636] calling init+0x0/0xd6 [virtio_console] @ 1" + 539.6ms (+0.0) [appliance] "[ 0.387005] initcall init+0x0/0xd6 [virtio_console] returned 0 after 10 usecs" + 540.7ms (+1.1) [appliance] "supermin: internal insmod virtio_scsi.ko" + 540.7ms (+0.0) [appliance] "[ 0.387847] calling init+0x0/0xc7 [virtio_scsi] @ 1" + 540.7ms (+0.0) [appliance] "[ 0.388196] initcall init+0x0/0xc7 [virtio_scsi] returned 0 after 7 usecs" + 541.8ms (+1.1) [appliance] "supermin: internal insmod virtio_pci.ko" + 541.8ms (+0.0) [appliance] "[ 0.389011] calling virtio_pci_driver_init+0x0/0x1a [virtio_pci] @ 1" + 554.7ms (+12.9) [appliance] "[ 0.401529] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 10" + 554.7ms (+0.0) [appliance] "[ 0.401942] virtio-pci 0000:00:02.0: virtio_pci: leaving for legacy driver" + 568.2ms (+13.4) [appliance] "[ 0.414970] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11" + 568.2ms (+0.0) [appliance] "[ 0.415398] virtio-pci 0000:00:03.0: virtio_pci: leaving for legacy driver" + 569.8ms (+1.6) [appliance] "[ 0.416575] pmem0: detected capacity change from 0 to 4294967296" + 569.8ms (+0.0) [appliance] "[ 0.417147] scsi host0: Virtio SCSI HBA" + 569.8ms (+0.0) [appliance] "[ 0.417624] scsi 0:0:0:0: Direct-Access QEMU QEMU HARDDISK 2.5+ PQ: 0 ANSI: 5" + 570.9ms (+1.1) [appliance] "[ 0.418361] sd 0:0:0:0: Attached scsi generic sg0 type 0" + 572.1ms (+1.2) [appliance] "[ 0.418866] sd 0:0:0:0: [sda] 8 512-byte logical blocks: (4.10 kB/4.00 KiB)" + 572.1ms (+0.0) [appliance] "[ 0.419666] sd 0:0:0:0: [sda] Write Protect is off" + 572.1ms (+0.0) [appliance] "[ 0.420002] sd 0:0:0:0: [sda] Mode Sense: 63 00 00 08" + 573.2ms (+1.1) [appliance] "[ 0.420414] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA" + 575.3ms (+2.0) [appliance] "[ 0.422059] sd 0:0:0:0: [sda] Attached SCSI disk" + 597.5ms (+22.3) [appliance] "[ 0.444255] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11" + 597.5ms (+0.0) [appliance] "[ 0.444722] virtio-pci 0000:00:04.0: virtio_pci: leaving for legacy driver" + 635.1ms (+37.5) [appliance] "[ 0.481778] initcall virtio_pci_driver_init+0x0/0x1a [virtio_pci] returned 0 after 90146 usecs" + 635.1ms (+0.0) [appliance] "supermin: picked /sys/block/pmem0/dev as root device" + 636.2ms (+1.1) [appliance] "supermin: creating /dev/root as block special 259:0" + 636.2ms (+0.0) [appliance] "supermin: mounting new root on /root (dax)" + 636.2ms (+0.0) [appliance] "[ 0.483930] EXT4-fs (pmem0): DAX enabled. Warning: EXPERIMENTAL, use at your own risk" + 637.3ms (+1.1) [appliance] "[ 0.484497] EXT4-fs (pmem0): mounting ext2 file system using the ext4 subsystem" + 638.5ms (+1.2) [appliance] "[ 0.485263] EXT4-fs (pmem0): mounted filesystem without journal. Opts: dax" + 638.5ms (+0.0) [appliance] "supermin: chroot" + 641.1ms (+2.5) [appliance] "Starting /init script ..." + 644.5ms (+3.5) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_network=1* ]]" + 645.7ms (+1.2) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_rescue=1* ]]" + 646.9ms (+1.2) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_noreboot=1* ]]" + 648.0ms (+1.1) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *guestfs_boot_analysis=1* ]]" + 650.3ms (+2.3) [appliance] "+ guestfs_boot_analysis=1" + 650.3ms (+0.0) [appliance] "+ '[' '!' -d /sys ']'" + 650.3ms (+0.0) [appliance] "+ mkdir -p /sys" + 651.6ms (+1.3) [appliance] "+ mount -t sysfs /sys /sys" + 651.6ms (+0.0) [appliance] "+ mkdir -p /run" + 652.7ms (+1.1) [appliance] "+ mount -t tmpfs -o nosuid,size=20%,mode=0755 tmpfs /run" + 654.6ms (+1.9) [appliance] "+ mkdir -p /run/lock" + 654.6ms (+0.0) [appliance] "+ ln -s ../run/lock /var/lock" + 656.0ms (+1.4) [appliance] "+ ln -s /proc/mounts /etc/mtab" + 656.0ms (+0.0) [appliance] "+ mount -t devtmpfs /dev /dev" + 657.8ms (+1.8) [appliance] "+ [[ panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/pmem0 selinux=0 guestfs_verbose=1 TERM=xterm-256color guestfs_boot_analysis=1 ignore_loglevel initcall_debug == *selinux=1* ]]" + 658.9ms (+1.1) [appliance] "+ mkdir -p /run/tmpfiles.d" + 658.9ms (+0.0) [appliance] "+ kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf" + 661.3ms (+2.4) [appliance] "++ od -x -A n" + 661.3ms (+0.0) [appliance] "++ dd if=/dev/urandom bs=16 count=1 status=none" + 662.6ms (+1.3) [appliance] "[ 0.509375] random: dd urandom read with 15 bits of entropy available" + 662.6ms (+0.0) [appliance] "+ machine_id=' 558d 9fa1 0e8f 7898 5d05 7aeb 8201 2ab9'" + 662.6ms (+0.0) [appliance] "+ echo 558d9fa10e8f78985d057aeb82012ab9" + 663.8ms (+1.2) [appliance] "+ systemd-tmpfiles --prefix=/dev --create --boot" + 665.9ms (+2.2) [appliance] "+ for f in /lib/systemd/systemd-udevd /usr/lib/systemd/systemd-udevd /sbin/udevd /lib/udev/udevd /usr/lib/udev/udevd" + 666.0ms (+0.0) [appliance] "+ '[' -x /lib/systemd/systemd-udevd ']'" + 666.0ms (+0.0) [appliance] "+ UDEVD=/lib/systemd/systemd-udevd" + 666.0ms (+0.0) [appliance] "+ break" + 667.1ms (+1.2) [appliance] "+ '[' -z /lib/systemd/systemd-udevd ']'" + 667.1ms (+0.0) [appliance] "+ /lib/systemd/systemd-udevd --daemon" + 668.9ms (+1.8) [appliance] "starting version 229" + 668.9ms (+0.0) [appliance] "+ udevadm trigger" + 694.4ms (+25.5) [appliance] "+ udevadm settle --timeout=600" + 783.5ms (+89.1) [appliance] "+ shopt -s nullglob" + 783.5ms (+0.0) [appliance] "+ for f in '/sys/block/sd*/device/timeout'" + 783.5ms (+0.0) [appliance] "+ echo 300" + 783.5ms (+0.0) [appliance] "+ for f in '/sys/block/{h,s,ub,v}d*/queue/scheduler'" + 783.5ms (+0.0) [appliance] "+ echo noop" + 798.4ms (+15.0) [appliance] "+ shopt -u nullglob" + 798.4ms (+0.0) [appliance] "+ ip addr add 127.0.0.1/8 brd + dev lo scope host" + 798.4ms (+0.0) [appliance] "RTNETLINK answers: Operation not supported" + 799.6ms (+1.1) [appliance] "+ ip link set dev lo up" + 799.6ms (+0.0) [appliance] "+ test '' = 1" + 799.6ms (+0.0) [appliance] "+ mdadm -As --auto=yes --run" + 803.7ms (+4.2) [appliance] "mdadm: No arrays found in config file or automatically" + 803.7ms (+0.0) [appliance] "+ modprobe dm_mod" + 804.9ms (+1.2) [appliance] "modprobe: FATAL: Module dm_mod not found in directory /lib/modules/4.6.0+" + 804.9ms (+0.0) [appliance] "+ :" + 804.9ms (+0.0) [appliance] "+ lvmetad" + 807.2ms (+2.2) [appliance] "+ lvm vgchange -aay --sysinit" + 809.8ms (+2.6) [appliance] " Configuration setting "global/notify_dbus" unknown." + 809.8ms (+0.0) [appliance] " Configuration setting "devices/allow_changes_with_duplicate_pvs" unknown." + 811.1ms (+1.4) [appliance] " lvmetad is not active yet, using direct activation during sysinit" + 812.3ms (+1.1) [appliance] "+ ldmtool create all" + 815.8ms (+3.6) [appliance] "[" + 815.8ms (+0.0) [appliance] "]" + 815.8ms (+0.0) [appliance] "+ test 1 = 1" + 815.8ms (+0.0) [appliance] "+ test 1 '!=' 1" + 815.8ms (+0.0) [appliance] "+ test '' = 1" + 815.8ms (+0.0) [appliance] "+ cmd=guestfsd" + 817.0ms (+1.2) [appliance] "++ grep -Eo 'guestfs_channel=[^[:space:]]+' /proc/cmdline" + 817.0ms (+0.0) [appliance] "+ eval" + 817.0ms (+0.0) [appliance] "+ test x '!=' x" + 818.2ms (+1.2) [appliance] "+ test 1 = 1" + 818.2ms (+0.0) [appliance] "+ cmd='guestfsd --verbose'" + 818.2ms (+0.0) [appliance] "+ test '' = 1" + 818.2ms (+0.0) [appliance] "+ echo guestfsd --verbose" + 818.2ms (+0.0) [appliance] "guestfsd --verbose" + 818.2ms (+0.0) [appliance] "+ guestfsd --verbose" + 823.0ms (+4.8) [appliance] "trying to open virtio-serial channel '/dev/virtio-ports/org.libguestfs.channel.0'" + 823.0ms (+0.0) [appliance] "udevadm --debug settle" + 825.3ms (+2.3) [appliance] "calling: settle" + 825.3ms (+0.0) [launch_done] "launch done callback" + 825.3ms (+0.0) [library] "recv_from_daemon: received GUESTFS_LAUNCH_FLAG" + 825.3ms (+0.0) [library] "appliance is up" + 825.4ms (+0.0) [trace] "launch = 0" + 825.4ms (+0.0) [trace] "close" + 825.4ms (+0.0) [library] "closing guestfs handle 0x55a7d259b890 (state 2)" + 825.4ms (+0.0) [trace] "internal_autosync" + 827.9ms (+2.6) [appliance] "guestfsd: main_loop: new request, len 0x28" + 827.9ms (+0.0) [appliance] "umount-all: /proc/mounts: fsname=/dev/root dir=/ type=ext2 opts=rw,noatime,block_validity,barrier,dax,user_xattr freq=0 passno=0" + 828.0ms (+0.0) [appliance] "umount-all: /proc/mounts: fsname=/proc dir=/proc type=proc opts=rw,relatime freq=0 passno=0" + 829.1ms (+1.1) [appliance] "umount-all: /proc/mounts: fsname=/sys dir=/sys type=sysfs opts=rw,relatime freq=0 passno=0" + 829.1ms (+0.0) [appliance] "umount-all: /proc/mounts: fsname=tmpfs dir=/run type=tmpfs opts=rw,nosuid,relatime,size=99484k,mode=755 freq=0 passno=0" + 830.2ms (+1.1) [appliance] "umount-all: /proc/mounts: fsname=/dev dir=/dev type=devtmpfs opts=rw,relatime,size=247256k,nr_inodes=61814,mode=755 freq=0 passno=0" + 831.4ms (+1.2) [appliance] "fsync /dev/sda" + 838.6ms (+7.2) [trace] "internal_autosync = 0" + 838.6ms (+0.0) [library] "sending SIGTERM to process 8732" + 846.6ms (+8.0) [library] "qemu maxrss 157348K" + 846.7ms (+0.0) [close] "close callback" + 846.7ms (+0.0) [library] "command: run: rm" + 846.7ms (+0.0) [library] "command: run: \ -rf /home/rjones/d/libguestfs/tmp/libguestfs6w82w6" + 847.9ms (+1.2) [library] "command: run: rm" + 847.9ms (+0.0) [library] "command: run: \ -rf /run/user/1000/libguestfsxMWozN" +Analyzing the results ... +activity 0: + name = run + start - end = 0.0 - 838375280.4 + mean elapsed = 838375281.4 + variance = 29809951899429.0 + s.d = 5459849.1 + percent = 100.0 +activity 1: + name = supermin:build + start - end = 560829.0 - 11163688.6 + mean elapsed = 10602860.6 + variance = 42298353930.2 + s.d = 205665.6 + percent = 1.3 +activity 2: + name = qemu:feature-detect + start - end = 11182756.2 - 11325774.2 + mean elapsed = 143019.0 + variance = 16410822.4 + s.d = 4051.0 + percent = 0.0 +activity 3: + name = qemu + start - end = 12997552.8 - 838375280.4 + mean elapsed = 825377728.6 + variance = 31365411204467.4 + s.d = 5600483.1 + percent = 98.4 +activity 4: + name = qemu:overhead + start - end = 12997552.8 - 109673734.6 + mean elapsed = 96676182.8 + variance = 990621311867.0 + s.d = 995299.6 + percent = 11.5 +activity 5: + name = bios:overhead + start - end = 109673735.6 - 160156413.0 + mean elapsed = 50482678.4 + variance = 208590955709.4 + s.d = 456717.6 + percent = 6.0 +activity 6: + name = sgabios + start - end = 109673735.6 - 111703712.8 + mean elapsed = 2029978.2 + variance = 140498159357.0 + s.d = 374830.8 + percent = 0.2 +activity 7: + name = seabios + start - end = 111703713.8 - 160156413.0 + mean elapsed = 48452700.2 + variance = 43411068801.4 + s.d = 208353.2 + percent = 5.8 +activity 8: + name = kernel + start - end = 160156414.0 - 838375280.4 + mean elapsed = 678218867.4 + variance = 38624741126473.4 + s.d = 6214880.6 + percent = 80.9 +activity 9: + name = kernel:overhead + start - end = 160156414.0 - 549519374.8 + mean elapsed = 389362961.8 + variance = 91878047763099.8 + s.d = 9585303.7 + percent = 46.4 +activity 10: + name = kernel:alternatives + start - end = 207558585.0 - 212461210.0 + mean elapsed = 4902626.0 + variance = 60443497452.4 + s.d = 245852.6 + percent = 0.6 +activity 11: + name = kernel:initcalls-before-userspace + start - end = 216825491.8 - 545901783.4 + mean elapsed = 329076292.6 + variance = 77048577057884.2 + s.d = 8777731.9 + percent = 39.3 +activity 12: + name = initcall kernel.init_hw_perf_events + start - end = 216825491.8 - 220181016.4 + mean elapsed = 3355525.6 + variance = 1227240327.0 + s.d = 35032.0 + percent = 0.4 +activity 13: + name = initcall kernel.set_real_mode_permissions + start - end = 220181521.2 - 220857949.4 + mean elapsed = 676429.2 + variance = 304915795976.6 + s.d = 552191.8 + percent = 0.1 +activity 14: + name = initcall kernel.validate_x2apic + start - end = 221306401.6 - 221306729.2 + mean elapsed = 328.6 + variance = 15774.6 + s.d = 125.6 + percent = 0.0 +activity 15: + name = initcall kernel.register_trigger_all_cpu_backtrace + start - end = 221981057.0 - 222429066.2 + mean elapsed = 448010.2 + variance = 300175563181.8 + s.d = 547882.8 + percent = 0.1 +activity 16: + name = initcall kernel.spawn_ksoftirqd + start - end = 223101265.4 - 223546644.8 + mean elapsed = 445380.4 + variance = 296685880688.2 + s.d = 544688.8 + percent = 0.1 +activity 17: + name = initcall kernel.init_workqueues + start - end = 223548203.2 - 224221776.2 + mean elapsed = 673574.0 + variance = 302333012301.2 + s.d = 549848.2 + percent = 0.1 +activity 18: + name = initcall kernel.migration_init + start - end = 224669601.6 - 224669946.8 + mean elapsed = 346.2 + variance = 52613.4 + s.d = 229.4 + percent = 0.0 +activity 19: + name = initcall kernel.check_cpu_stall_init + start - end = 225344466.0 - 225794707.4 + mean elapsed = 450242.4 + variance = 303138628068.2 + s.d = 550580.3 + percent = 0.1 +activity 20: + name = initcall kernel.rcu_spawn_gp_kthread + start - end = 226242334.6 - 226920717.2 + mean elapsed = 678383.6 + variance = 306232147283.0 + s.d = 553382.5 + percent = 0.1 +activity 21: + name = initcall kernel.cpu_stop_init + start - end = 226921831.6 - 227605047.8 + mean elapsed = 683217.2 + variance = 311553695317.4 + s.d = 558170.0 + percent = 0.1 +activity 22: + name = initcall kernel.rand_initialize + start - end = 228056825.0 - 228057306.4 + mean elapsed = 482.4 + variance = 75572.2 + s.d = 274.9 + percent = 0.0 +activity 23: + name = initcall kernel.init_mmap_min_addr + start - end = 231961876.6 - 231962717.6 + mean elapsed = 842.0 + variance = 48671.6 + s.d = 220.6 + percent = 0.0 +activity 24: + name = initcall kernel.net_ns_init + start - end = 231963024.0 - 232410186.0 + mean elapsed = 447163.0 + variance = 299744186665.2 + s.d = 547489.0 + percent = 0.1 +activity 25: + name = initcall kernel.e820_mark_nvs_memory + start - end = 233089686.6 - 233090191.2 + mean elapsed = 505.6 + variance = 63477.0 + s.d = 251.9 + percent = 0.0 +activity 26: + name = initcall kernel.init_cpu_syscore + start - end = 234217248.4 - 234217981.8 + mean elapsed = 734.4 + variance = 29462.6 + s.d = 171.6 + percent = 0.0 +activity 27: + name = initcall kernel.reboot_init + start - end = 234218235.8 - 235120143.6 + mean elapsed = 901908.8 + variance = 203362017676.6 + s.d = 450956.8 + percent = 0.1 +activity 28: + name = initcall kernel.wq_sysfs_init + start - end = 235347668.6 - 235347982.6 + mean elapsed = 315.0 + variance = 24410.4 + s.d = 156.2 + percent = 0.0 +activity 29: + name = initcall kernel.ksysfs_init + start - end = 236477801.6 - 236478519.2 + mean elapsed = 718.6 + variance = 32125.8 + s.d = 179.2 + percent = 0.0 +activity 30: + name = initcall kernel.init_jiffies_clocksource + start - end = 236478832.8 - 237606911.4 + mean elapsed = 1128079.6 + variance = 93202517.8 + s.d = 9654.1 + percent = 0.1 +activity 31: + name = initcall kernel.init_per_zone_wmark_min + start - end = 238511108.0 - 238739109.6 + mean elapsed = 228002.6 + variance = 206717743375.4 + s.d = 454662.2 + percent = 0.0 +activity 32: + name = initcall kernel.init_zero_pfn + start - end = 239185950.6 - 239639700.0 + mean elapsed = 453750.4 + variance = 308206916512.2 + s.d = 555163.9 + percent = 0.1 +activity 33: + name = initcall kernel.fsnotify_init + start - end = 239867062.2 - 240314595.8 + mean elapsed = 447534.6 + variance = 299982053691.8 + s.d = 547706.2 + percent = 0.1 +activity 34: + name = initcall kernel.filelock_init + start - end = 240993538.8 - 240994089.0 + mean elapsed = 551.2 + variance = 87672.6 + s.d = 296.1 + percent = 0.0 +activity 35: + name = initcall kernel.init_script_binfmt + start - end = 241441234.8 - 241894114.4 + mean elapsed = 452880.6 + variance = 307005393827.8 + s.d = 554080.7 + percent = 0.1 +activity 36: + name = initcall kernel.init_elf_binfmt + start - end = 242342327.8 - 242807925.0 + mean elapsed = 465598.2 + variance = 324757082985.8 + s.d = 569874.6 + percent = 0.1 +activity 37: + name = initcall kernel.prandom_init + start - end = 243261240.2 - 243483354.2 + mean elapsed = 222115.0 + variance = 196318622860.8 + s.d = 443078.6 + percent = 0.0 +activity 38: + name = initcall kernel.cpuidle_init + start - end = 243935138.8 - 244163457.0 + mean elapsed = 228319.2 + variance = 207696180985.0 + s.d = 455737.0 + percent = 0.0 +activity 39: + name = initcall kernel.sock_init + start - end = 244611395.4 - 244837014.6 + mean elapsed = 225620.2 + variance = 202975859735.8 + s.d = 450528.4 + percent = 0.0 +activity 40: + name = initcall kernel.netlink_proto_init + start - end = 245288722.6 - 245962004.0 + mean elapsed = 673282.4 + variance = 301471626096.2 + s.d = 549064.3 + percent = 0.1 +activity 41: + name = initcall kernel.bdi_class_init + start - end = 246413674.4 - 247088362.6 + mean elapsed = 674689.2 + variance = 302897207661.8 + s.d = 550361.0 + percent = 0.1 +activity 42: + name = initcall kernel.mm_sysfs_init + start - end = 247541940.2 - 247542400.4 + mean elapsed = 461.2 + variance = 84233.0 + s.d = 290.2 + percent = 0.0 +activity 43: + name = initcall kernel.kobject_uevent_init + start - end = 248215681.8 - 248671343.0 + mean elapsed = 455662.2 + variance = 310541125373.0 + s.d = 557262.2 + percent = 0.1 +activity 44: + name = initcall kernel.pcibus_class_init + start - end = 248671825.2 - 249344577.4 + mean elapsed = 672753.2 + variance = 301585267216.2 + s.d = 549167.8 + percent = 0.1 +activity 45: + name = initcall kernel.pci_driver_init + start - end = 249796867.8 - 250018218.0 + mean elapsed = 221351.2 + variance = 194997287724.6 + s.d = 441585.0 + percent = 0.0 +activity 46: + name = initcall kernel.tty_class_init + start - end = 250471085.2 - 250923203.8 + mean elapsed = 452119.6 + variance = 305988384889.0 + s.d = 553162.2 + percent = 0.1 +activity 47: + name = initcall kernel.vtconsole_class_init + start - end = 251145323.0 - 251603856.2 + mean elapsed = 458534.2 + variance = 307074351575.8 + s.d = 554142.9 + percent = 0.1 +activity 48: + name = initcall kernel.init_ladder + start - end = 252057829.8 - 252731890.8 + mean elapsed = 674062.0 + variance = 302190134840.0 + s.d = 549718.2 + percent = 0.1 +activity 49: + name = initcall kernel.bts_init + start - end = 253186758.6 - 253408469.0 + mean elapsed = 221711.4 + variance = 195683146755.4 + s.d = 442360.9 + percent = 0.0 +activity 50: + name = initcall kernel.pt_init + start - end = 253864043.0 - 254316349.0 + mean elapsed = 452307.0 + variance = 306113724629.2 + s.d = 553275.5 + percent = 0.1 +activity 51: + name = initcall kernel.boot_params_ksysfs_init + start - end = 254537477.4 - 254990499.0 + mean elapsed = 453022.6 + variance = 307441349253.8 + s.d = 554473.9 + percent = 0.1 +activity 52: + name = initcall kernel.sbf_init + start - end = 255443367.8 - 255890315.4 + mean elapsed = 446948.6 + variance = 298868386395.0 + s.d = 546688.6 + percent = 0.1 +activity 53: + name = initcall kernel.arch_kdebugfs_init + start - end = 256118152.6 - 256570720.8 + mean elapsed = 452569.2 + variance = 306670218767.4 + s.d = 553778.1 + percent = 0.1 +activity 54: + name = initcall kernel.ffh_cstate_init + start - end = 257020075.8 - 257247094.6 + mean elapsed = 227019.8 + variance = 205364549807.8 + s.d = 453171.7 + percent = 0.0 +activity 55: + name = initcall kernel.activate_jump_labels + start - end = 257920457.4 - 258147366.0 + mean elapsed = 226909.6 + variance = 204992291384.6 + s.d = 452760.7 + percent = 0.0 +activity 56: + name = initcall kernel.acpi_pci_init + start - end = 258600485.4 - 259274964.8 + mean elapsed = 674480.4 + variance = 302499321152.2 + s.d = 549999.4 + percent = 0.1 +activity 57: + name = initcall kernel.pci_arch_init + start - end = 259501753.6 - 260394437.0 + mean elapsed = 892684.4 + variance = 198894384165.4 + s.d = 445975.8 + percent = 0.1 +activity 58: + name = initcall kernel.init_vdso + start - end = 261080748.6 - 261302803.4 + mean elapsed = 222055.8 + variance = 196117606032.6 + s.d = 442851.7 + percent = 0.0 +activity 59: + name = initcall kernel.fixup_ht_bug + start - end = 261529183.8 - 261529440.4 + mean elapsed = 257.6 + variance = 21790.2 + s.d = 147.6 + percent = 0.0 +activity 60: + name = initcall kernel.topology_init + start - end = 262419013.0 - 262645365.2 + mean elapsed = 226353.2 + variance = 204181444455.0 + s.d = 451864.4 + percent = 0.0 +activity 61: + name = initcall kernel.uid_cache_init + start - end = 263095386.2 - 263541000.6 + mean elapsed = 445615.4 + variance = 297227478037.8 + s.d = 545185.7 + percent = 0.1 +activity 62: + name = initcall kernel.param_sysfs_init + start - end = 263765670.8 - 264733367.2 + mean elapsed = 967697.4 + variance = 239960910828.6 + s.d = 489858.1 + percent = 0.1 +activity 63: + name = initcall kernel.oom_init + start - end = 264959710.0 - 264960065.8 + mean elapsed = 356.8 + variance = 55728.6 + s.d = 236.1 + percent = 0.0 +activity 64: + name = initcall kernel.default_bdi_init + start - end = 265622114.0 - 266074797.6 + mean elapsed = 452684.6 + variance = 306784343807.8 + s.d = 553881.2 + percent = 0.1 +activity 65: + name = initcall kernel.percpu_enable_async + start - end = 266295470.8 - 266737822.2 + mean elapsed = 442352.4 + variance = 293119570575.0 + s.d = 541405.2 + percent = 0.1 +activity 66: + name = initcall kernel.init_reserve_notifier + start - end = 267191364.4 - 267413225.2 + mean elapsed = 221861.8 + variance = 196187999276.2 + s.d = 442931.1 + percent = 0.0 +activity 67: + name = initcall kernel.init_admin_reserve + start - end = 268305503.2 - 268305939.4 + mean elapsed = 437.2 + variance = 53605.8 + s.d = 231.5 + percent = 0.0 +activity 68: + name = initcall kernel.init_user_reserve + start - end = 268971927.0 - 269424119.4 + mean elapsed = 452193.4 + variance = 306171386186.2 + s.d = 553327.6 + percent = 0.1 +activity 69: + name = initcall kernel.crypto_wq_init + start - end = 269645693.4 - 270086203.8 + mean elapsed = 440511.4 + variance = 290671823968.2 + s.d = 539139.9 + percent = 0.1 +activity 70: + name = initcall kernel.cryptomgr_init + start - end = 270542874.4 - 270763683.0 + mean elapsed = 220809.6 + variance = 194257716207.0 + s.d = 440746.8 + percent = 0.0 +activity 71: + name = initcall kernel.init_bio + start - end = 271432770.6 - 271658358.8 + mean elapsed = 225589.2 + variance = 202742596767.8 + s.d = 450269.5 + percent = 0.0 +activity 72: + name = initcall kernel.blk_settings_init + start - end = 271882083.0 - 272323403.0 + mean elapsed = 441321.0 + variance = 291769863420.8 + s.d = 540157.3 + percent = 0.1 +activity 73: + name = initcall kernel.blk_ioc_init + start - end = 272777214.6 - 272998551.2 + mean elapsed = 221337.6 + variance = 195184834893.0 + s.d = 441797.3 + percent = 0.0 +activity 74: + name = initcall kernel.blk_softirq_init + start - end = 273667538.2 - 273894642.8 + mean elapsed = 227105.6 + variance = 205548219490.2 + s.d = 453374.3 + percent = 0.0 +activity 75: + name = initcall kernel.blk_mq_init + start - end = 274557651.0 - 274783759.0 + mean elapsed = 226109.0 + variance = 203795819473.6 + s.d = 451437.5 + percent = 0.0 +activity 76: + name = initcall kernel.genhd_device_init + start - end = 275009974.4 - 275671087.2 + mean elapsed = 661113.8 + variance = 290882312124.2 + s.d = 539335.1 + percent = 0.1 +activity 77: + name = initcall kernel.pci_slot_init + start - end = 275897375.8 - 276346900.4 + mean elapsed = 449525.6 + variance = 298990134819.4 + s.d = 546799.9 + percent = 0.1 +activity 78: + name = initcall kernel.acpi_init + start - end = 276788731.6 - 375518521.2 + mean elapsed = 98729790.6 + variance = 32035984253253.8 + s.d = 5660033.9 + percent = 11.8 +activity 79: + name = initcall kernel.pnp_init + start - end = 375518962.0 - 375745486.6 + mean elapsed = 226525.6 + variance = 204856446058.6 + s.d = 452610.7 + percent = 0.0 +activity 80: + name = initcall kernel.misc_init + start - end = 376646497.4 - 376647108.4 + mean elapsed = 612.0 + variance = 73226.0 + s.d = 270.6 + percent = 0.0 +activity 81: + name = initcall kernel.vga_arb_device_init + start - end = 376870941.8 - 377777941.2 + mean elapsed = 907000.4 + variance = 205659659720.6 + s.d = 453497.1 + percent = 0.1 +activity 82: + name = initcall kernel.libnvdimm_init + start - end = 378001956.8 - 378901974.0 + mean elapsed = 900018.2 + variance = 202480202511.0 + s.d = 449978.0 + percent = 0.1 +activity 83: + name = initcall kernel.init_scsi + start - end = 378902681.4 - 380023641.0 + mean elapsed = 1120960.6 + variance = 199134526.6 + s.d = 14111.5 + percent = 0.1 +activity 84: + name = initcall kernel.serio_init + start - end = 380024278.2 - 380024505.4 + mean elapsed = 228.2 + variance = 2924.6 + s.d = 54.1 + percent = 0.0 +activity 85: + name = initcall kernel.input_init + start - end = 381189379.2 - 381189900.8 + mean elapsed = 522.6 + variance = 47979.4 + s.d = 219.0 + percent = 0.0 +activity 86: + name = initcall kernel.power_supply_class_init + start - end = 381411086.6 - 382083112.6 + mean elapsed = 672027.0 + variance = 300936886910.0 + s.d = 548577.1 + percent = 0.1 +activity 87: + name = initcall kernel.pci_subsys_init + start - end = 382309797.2 - 384557871.2 + mean elapsed = 2248075.0 + variance = 905160822.8 + s.d = 30085.9 + percent = 0.3 +activity 88: + name = initcall kernel.proto_init + start - end = 384778745.0 - 385451091.2 + mean elapsed = 672347.2 + variance = 301166891641.0 + s.d = 548786.7 + percent = 0.1 +activity 89: + name = initcall kernel.net_dev_init + start - end = 385680702.8 - 385908746.2 + mean elapsed = 228044.4 + variance = 207269755053.8 + s.d = 455268.9 + percent = 0.0 +activity 90: + name = initcall kernel.neigh_init + start - end = 386584473.2 - 386584908.0 + mean elapsed = 435.8 + variance = 56678.2 + s.d = 238.1 + percent = 0.0 +activity 91: + name = initcall kernel.genl_init + start - end = 387034639.2 - 387707262.2 + mean elapsed = 672624.0 + variance = 301174345214.0 + s.d = 548793.5 + percent = 0.1 +activity 92: + name = initcall kernel.nmi_warning_debugfs + start - end = 387707697.4 - 388155189.4 + mean elapsed = 447493.0 + variance = 300147685604.4 + s.d = 547857.4 + percent = 0.1 +activity 93: + name = initcall kernel.hpet_late_init + start - end = 388828310.2 - 388828753.0 + mean elapsed = 443.8 + variance = 51580.2 + s.d = 227.1 + percent = 0.0 +activity 94: + name = initcall kernel.clocksource_done_booting + start - end = 389497753.6 - 390187480.2 + mean elapsed = 689727.6 + variance = 317010480056.2 + s.d = 563036.8 + percent = 0.1 +activity 95: + name = initcall kernel.init_pipe_fs + start - end = 390856240.2 - 391083517.4 + mean elapsed = 227278.2 + variance = 204058874348.6 + s.d = 451728.8 + percent = 0.0 +activity 96: + name = initcall kernel.inotify_user_setup + start - end = 391535743.6 - 391982524.8 + mean elapsed = 446782.2 + variance = 298878810348.6 + s.d = 546698.1 + percent = 0.1 +activity 97: + name = initcall kernel.eventpoll_init + start - end = 392209150.8 - 392656565.2 + mean elapsed = 447415.4 + variance = 299823227195.4 + s.d = 547561.2 + percent = 0.1 +activity 98: + name = initcall kernel.anon_inode_init + start - end = 393331322.0 - 393331770.2 + mean elapsed = 449.2 + variance = 55538.6 + s.d = 235.7 + percent = 0.0 +activity 99: + name = initcall kernel.proc_locks_init + start - end = 394237847.0 - 394464251.2 + mean elapsed = 226405.2 + variance = 203868473250.2 + s.d = 451518.0 + percent = 0.0 +activity 100: + name = initcall kernel.proc_cmdline_init + start - end = 394685631.4 - 395358996.0 + mean elapsed = 673365.6 + variance = 302037129817.8 + s.d = 549579.0 + percent = 0.1 +activity 101: + name = initcall kernel.proc_consoles_init + start - end = 395585841.2 - 395806820.2 + mean elapsed = 220980.0 + variance = 194671609121.2 + s.d = 441216.1 + percent = 0.0 +activity 102: + name = initcall kernel.proc_cpuinfo_init + start - end = 396475679.6 - 396702238.2 + mean elapsed = 226559.6 + variance = 204514011086.6 + s.d = 452232.3 + percent = 0.0 +activity 103: + name = initcall kernel.proc_devices_init + start - end = 397145866.2 - 397598399.6 + mean elapsed = 452534.4 + variance = 306772583660.6 + s.d = 553870.5 + percent = 0.1 +activity 104: + name = initcall kernel.proc_interrupts_init + start - end = 398050511.8 - 398497195.4 + mean elapsed = 446684.6 + variance = 298716628791.4 + s.d = 546549.7 + percent = 0.1 +activity 105: + name = initcall kernel.proc_loadavg_init + start - end = 398950557.4 - 399171621.0 + mean elapsed = 221064.6 + variance = 194683699851.0 + s.d = 441229.8 + percent = 0.0 +activity 106: + name = initcall kernel.proc_meminfo_init + start - end = 399618213.6 - 400071460.8 + mean elapsed = 453248.2 + variance = 307549674136.6 + s.d = 554571.6 + percent = 0.1 +activity 107: + name = initcall kernel.proc_stat_init + start - end = 400514217.2 - 400740454.0 + mean elapsed = 226237.8 + variance = 204175294062.2 + s.d = 451857.6 + percent = 0.0 +activity 108: + name = initcall kernel.proc_uptime_init + start - end = 401195569.6 - 401637901.4 + mean elapsed = 442332.8 + variance = 292679132513.4 + s.d = 540998.3 + percent = 0.1 +activity 109: + name = initcall kernel.proc_version_init + start - end = 401868385.6 - 402542061.8 + mean elapsed = 673677.2 + variance = 302286717760.6 + s.d = 549806.1 + percent = 0.1 +activity 110: + name = initcall kernel.proc_softirqs_init + start - end = 402989754.6 - 402990144.4 + mean elapsed = 390.8 + variance = 60565.8 + s.d = 246.1 + percent = 0.0 +activity 111: + name = initcall kernel.proc_kmsg_init + start - end = 403665472.8 - 404113510.2 + mean elapsed = 448038.4 + variance = 300191903717.0 + s.d = 547897.7 + percent = 0.1 +activity 112: + name = initcall kernel.proc_page_init + start - end = 404343512.8 - 404792199.0 + mean elapsed = 448687.2 + variance = 301473571256.6 + s.d = 549066.1 + percent = 0.1 +activity 113: + name = initcall kernel.init_ramfs_fs + start - end = 405239084.0 - 405239403.2 + mean elapsed = 320.2 + variance = 20618.2 + s.d = 143.6 + percent = 0.0 +activity 114: + name = initcall kernel.blk_scsi_ioctl_init + start - end = 406134017.2 - 406360393.6 + mean elapsed = 226377.4 + variance = 203878304211.8 + s.d = 451528.9 + percent = 0.0 +activity 115: + name = initcall kernel.acpi_event_init + start - end = 407033354.6 - 407254760.2 + mean elapsed = 221406.6 + variance = 195041715072.2 + s.d = 441635.3 + percent = 0.0 +activity 116: + name = initcall kernel.pnp_system_init + start - end = 407482039.2 - 407702623.8 + mean elapsed = 220585.6 + variance = 194089799660.2 + s.d = 440556.2 + percent = 0.0 +activity 117: + name = initcall kernel.pnpacpi_init + start - end = 408599292.6 - 412271348.2 + mean elapsed = 3672056.6 + variance = 188863200023.0 + s.d = 434583.9 + percent = 0.4 +activity 118: + name = initcall kernel.chr_dev_init + start - end = 412936448.8 - 413716628.6 + mean elapsed = 780180.8 + variance = 418792894909.8 + s.d = 647142.1 + percent = 0.1 +activity 119: + name = initcall kernel.thermal_init + start - end = 414171545.8 - 414172048.8 + mean elapsed = 504.0 + variance = 66178.0 + s.d = 257.3 + percent = 0.0 +activity 120: + name = initcall kernel.init_acpi_pm_clocksource + start - end = 414824872.6 - 420220515.2 + mean elapsed = 5395643.6 + variance = 177853049409.0 + s.d = 421726.3 + percent = 0.6 +activity 121: + name = initcall kernel.pcibios_assign_resources + start - end = 420892722.0 - 423147390.0 + mean elapsed = 2254669.0 + variance = 966726084.8 + s.d = 31092.2 + percent = 0.3 +activity 122: + name = initcall kernel.sysctl_core_init + start - end = 423603284.2 - 423603725.2 + mean elapsed = 442.0 + variance = 63082.0 + s.d = 251.2 + percent = 0.0 +activity 123: + name = initcall kernel.eth_offload_init + start - end = 424499343.6 - 424725350.4 + mean elapsed = 226007.8 + variance = 203201841198.6 + s.d = 450779.1 + percent = 0.0 +activity 124: + name = initcall kernel.af_unix_init + start - end = 424946868.6 - 425850369.2 + mean elapsed = 903501.6 + variance = 203977638202.2 + s.d = 451638.8 + percent = 0.1 +activity 125: + name = initcall kernel.pci_apply_final_quirks + start - end = 426073350.0 - 428099775.4 + mean elapsed = 2026426.4 + variance = 212742064323.4 + s.d = 461239.7 + percent = 0.2 +activity 126: + name = initcall kernel.acpi_reserve_resources + start - end = 428770516.2 - 428991427.0 + mean elapsed = 220911.8 + variance = 194314030260.6 + s.d = 440810.7 + percent = 0.0 +activity 127: + name = initcall kernel.populate_rootfs + start - end = 429440112.4 - 430782887.0 + mean elapsed = 1342775.6 + variance = 197531445853.4 + s.d = 444445.1 + percent = 0.2 +activity 128: + name = initcall kernel.pci_iommu_init + start - end = 431236302.4 - 431462888.8 + mean elapsed = 226587.4 + variance = 204482454580.6 + s.d = 452197.4 + percent = 0.0 +activity 129: + name = initcall kernel.amd_ibs_init + start - end = 432135512.2 - 432361771.8 + mean elapsed = 226260.6 + variance = 203869168452.2 + s.d = 451518.7 + percent = 0.0 +activity 130: + name = initcall kernel.msr_init + start - end = 432589199.4 - 433262785.0 + mean elapsed = 673586.6 + variance = 302118808041.0 + s.d = 549653.4 + percent = 0.1 +activity 131: + name = initcall kernel.intel_cqm_init + start - end = 433487984.0 - 433488314.6 + mean elapsed = 331.6 + variance = 52451.8 + s.d = 229.0 + percent = 0.0 +activity 132: + name = initcall kernel.rapl_pmu_init + start - end = 434384682.8 - 434609527.4 + mean elapsed = 224845.6 + variance = 201222429549.0 + s.d = 448578.2 + percent = 0.0 +activity 133: + name = initcall kernel.intel_uncore_init + start - end = 435061221.6 - 435507931.4 + mean elapsed = 446710.8 + variance = 298724668331.4 + s.d = 546557.1 + percent = 0.1 +activity 134: + name = initcall kernel.cstate_pmu_init + start - end = 435732590.6 - 436183131.4 + mean elapsed = 450541.8 + variance = 304091587975.0 + s.d = 551445.0 + percent = 0.1 +activity 135: + name = initcall kernel.register_kernel_offset_dumper + start - end = 436630419.2 - 436855897.4 + mean elapsed = 225479.2 + variance = 202699323373.4 + s.d = 450221.4 + percent = 0.0 +activity 136: + name = initcall kernel.i8259A_init_ops + start - end = 437753600.8 - 437977854.6 + mean elapsed = 224254.8 + variance = 200047449783.4 + s.d = 447266.6 + percent = 0.0 +activity 137: + name = initcall kernel.init_tsc_clocksource + start - end = 438425781.2 - 438880557.4 + mean elapsed = 454777.2 + variance = 309689526254.6 + s.d = 556497.6 + percent = 0.1 +activity 138: + name = initcall kernel.add_rtc_cmos + start - end = 439106919.6 - 439553792.2 + mean elapsed = 446873.6 + variance = 298935998693.0 + s.d = 546750.4 + percent = 0.1 +activity 139: + name = initcall kernel.i8237A_init_ops + start - end = 440006914.6 - 440233938.6 + mean elapsed = 227025.0 + variance = 205326395073.2 + s.d = 453129.6 + percent = 0.0 +activity 140: + name = initcall kernel.ioapic_init_ops + start - end = 440904701.0 - 441131634.8 + mean elapsed = 226934.8 + variance = 205076869617.8 + s.d = 452854.1 + percent = 0.0 +activity 141: + name = initcall kernel.sysfb_init + start - end = 441357656.6 - 442030684.2 + mean elapsed = 673028.6 + variance = 301606030565.0 + s.d = 549186.7 + percent = 0.1 +activity 142: + name = initcall kernel.pmc_atom_init + start - end = 442257689.2 - 442487177.0 + mean elapsed = 229488.8 + variance = 209993665393.0 + s.d = 458250.7 + percent = 0.0 +activity 143: + name = initcall kernel.proc_execdomains_init + start - end = 443158333.8 - 443385809.6 + mean elapsed = 227476.8 + variance = 206056655047.8 + s.d = 453934.6 + percent = 0.0 +activity 144: + name = initcall kernel.ioresources_init + start - end = 444059675.2 - 444285711.6 + mean elapsed = 226037.4 + variance = 203434692207.0 + s.d = 451037.4 + percent = 0.0 +activity 145: + name = initcall kernel.init_sched_debug_procfs + start - end = 444738763.6 - 445185673.2 + mean elapsed = 446910.6 + variance = 298770996607.0 + s.d = 546599.5 + percent = 0.1 +activity 146: + name = initcall kernel.init_posix_timers + start - end = 445412500.8 - 445865572.0 + mean elapsed = 453072.2 + variance = 307445045547.0 + s.d = 554477.3 + percent = 0.1 +activity 147: + name = initcall kernel.init_posix_cpu_timers + start - end = 446538720.2 - 446539155.0 + mean elapsed = 435.8 + variance = 35190.2 + s.d = 187.6 + percent = 0.0 +activity 148: + name = initcall kernel.timekeeping_init_ops + start - end = 447439988.4 - 447666774.8 + mean elapsed = 226787.4 + variance = 204517706000.2 + s.d = 452236.3 + percent = 0.0 +activity 149: + name = initcall kernel.init_clocksource_sysfs + start - end = 448122991.4 - 448794806.8 + mean elapsed = 671816.4 + variance = 300153174599.0 + s.d = 547862.4 + percent = 0.1 +activity 150: + name = initcall kernel.init_timer_list_procfs + start - end = 448797422.6 - 449475568.0 + mean elapsed = 678146.4 + variance = 306298321529.0 + s.d = 553442.2 + percent = 0.1 +activity 151: + name = initcall kernel.alarmtimer_init + start - end = 449922444.6 - 449922811.4 + mean elapsed = 367.8 + variance = 26122.6 + s.d = 161.6 + percent = 0.0 +activity 152: + name = initcall kernel.clockevents_init_sysfs + start - end = 450821498.2 - 451049049.4 + mean elapsed = 227552.2 + variance = 204659867678.6 + s.d = 452393.5 + percent = 0.0 +activity 153: + name = initcall kernel.futex_init + start - end = 451275427.8 - 452175581.4 + mean elapsed = 900154.6 + variance = 202044432669.8 + s.d = 449493.5 + percent = 0.1 +activity 154: + name = initcall kernel.proc_dma_init + start - end = 452858161.8 - 453311971.4 + mean elapsed = 453810.6 + variance = 308105135440.6 + s.d = 555072.2 + percent = 0.1 +activity 155: + name = initcall kernel.proc_modules_init + start - end = 453312461.0 - 453760570.4 + mean elapsed = 448110.4 + variance = 300916292493.0 + s.d = 548558.4 + percent = 0.1 +activity 156: + name = initcall kernel.kallsyms_init + start - end = 454441204.0 - 454441805.4 + mean elapsed = 602.4 + variance = 96372.2 + s.d = 310.4 + percent = 0.0 +activity 157: + name = initcall kernel.utsname_sysctl_init + start - end = 455114632.6 - 455566307.2 + mean elapsed = 451675.6 + variance = 305258059573.0 + s.d = 552501.6 + percent = 0.1 +activity 158: + name = initcall kernel.perf_event_sysfs_init + start - end = 455566727.4 - 456476606.6 + mean elapsed = 909880.2 + variance = 207917749501.8 + s.d = 455980.0 + percent = 0.1 +activity 159: + name = initcall kernel.kswapd_init + start - end = 456705551.6 - 456705909.4 + mean elapsed = 358.8 + variance = 53067.8 + s.d = 230.4 + percent = 0.0 +activity 160: + name = initcall kernel.setup_vmstat + start - end = 457829147.8 - 457829815.0 + mean elapsed = 668.2 + variance = 34897.0 + s.d = 186.8 + percent = 0.0 +activity 161: + name = initcall kernel.mm_compute_batch_init + start - end = 458275980.0 - 458952826.0 + mean elapsed = 676847.0 + variance = 305050630125.2 + s.d = 552313.9 + percent = 0.1 +activity 162: + name = initcall kernel.slab_proc_init + start - end = 458953370.2 - 459400430.4 + mean elapsed = 447061.2 + variance = 299539508802.6 + s.d = 547302.0 + percent = 0.1 +activity 163: + name = initcall kernel.workingset_init + start - end = 460079791.0 - 460751838.8 + mean elapsed = 672048.8 + variance = 300168676018.2 + s.d = 547876.5 + percent = 0.1 +activity 164: + name = initcall kernel.proc_vmalloc_init + start - end = 461205056.8 - 461425952.8 + mean elapsed = 220897.0 + variance = 194195405790.8 + s.d = 440676.1 + percent = 0.0 +activity 165: + name = initcall kernel.procswaps_init + start - end = 462104581.2 - 462328547.6 + mean elapsed = 223967.4 + variance = 199567129465.0 + s.d = 446729.4 + percent = 0.0 +activity 166: + name = initcall kernel.slab_sysfs_init + start - end = 462767931.0 - 463481849.6 + mean elapsed = 713919.6 + variance = 346444242824.6 + s.d = 588595.1 + percent = 0.1 +activity 167: + name = initcall kernel.fcntl_init + start - end = 464153635.8 - 464380266.2 + mean elapsed = 226631.4 + variance = 204542584351.4 + s.d = 452263.8 + percent = 0.0 +activity 168: + name = initcall kernel.proc_filesystems_init + start - end = 464828689.2 - 465279460.6 + mean elapsed = 450772.4 + variance = 304109395468.2 + s.d = 551461.1 + percent = 0.1 +activity 169: + name = initcall kernel.start_dirtytime_writeback + start - end = 465506717.4 - 466179190.4 + mean elapsed = 672474.0 + variance = 301065645264.0 + s.d = 548694.5 + percent = 0.1 +activity 170: + name = initcall kernel.dio_init + start - end = 466631482.4 - 466631963.6 + mean elapsed = 482.2 + variance = 83682.6 + s.d = 289.3 + percent = 0.0 +activity 171: + name = initcall kernel.dnotify_init + start - end = 467305060.0 - 467534912.0 + mean elapsed = 229853.0 + variance = 202415861620.4 + s.d = 449906.5 + percent = 0.0 +activity 172: + name = initcall kernel.fanotify_user_setup + start - end = 467761715.0 - 468432387.6 + mean elapsed = 670673.6 + variance = 299477067096.6 + s.d = 547245.0 + percent = 0.1 +activity 173: + name = initcall kernel.aio_setup + start - end = 468884927.4 - 468885359.6 + mean elapsed = 433.2 + variance = 58999.0 + s.d = 242.9 + percent = 0.0 +activity 174: + name = initcall kernel.mbcache_init + start - end = 469791924.6 - 469792495.8 + mean elapsed = 572.2 + variance = 75202.6 + s.d = 274.2 + percent = 0.0 +activity 175: + name = initcall kernel.init_devpts_fs + start - end = 470239791.4 - 470462885.6 + mean elapsed = 223095.2 + variance = 198345053041.4 + s.d = 445359.5 + percent = 0.0 +activity 176: + name = initcall kernel.ext4_init_fs + start - end = 471135611.4 - 471356503.8 + mean elapsed = 220893.4 + variance = 194268359465.8 + s.d = 440758.8 + percent = 0.0 +activity 177: + name = initcall kernel.journal_init + start - end = 472032399.8 - 472259799.2 + mean elapsed = 227400.4 + variance = 205765089811.4 + s.d = 453613.4 + percent = 0.0 +activity 178: + name = initcall kernel.init_nls_utf8 + start - end = 472706247.4 - 473153655.8 + mean elapsed = 447409.4 + variance = 299841497723.0 + s.d = 547577.8 + percent = 0.1 +activity 179: + name = initcall kernel.crypto_algapi_init + start - end = 473380310.6 - 473826826.6 + mean elapsed = 446517.0 + variance = 298531090201.2 + s.d = 546380.0 + percent = 0.1 +activity 180: + name = initcall kernel.chainiv_module_init + start - end = 474280616.6 - 474728349.6 + mean elapsed = 447734.0 + variance = 299993417171.6 + s.d = 547716.5 + percent = 0.1 +activity 181: + name = initcall kernel.eseqiv_module_init + start - end = 475181651.8 - 475408548.8 + mean elapsed = 226898.0 + variance = 205137484972.8 + s.d = 452921.1 + percent = 0.0 +activity 182: + name = initcall kernel.crypto_null_mod_init + start - end = 475857828.2 - 476307693.2 + mean elapsed = 449866.0 + variance = 302912108040.0 + s.d = 550374.5 + percent = 0.1 +activity 183: + name = initcall kernel.crc32c_mod_init + start - end = 476981406.0 - 477205697.0 + mean elapsed = 224292.0 + variance = 200242441558.8 + s.d = 447484.6 + percent = 0.0 +activity 184: + name = initcall kernel.proc_genhd_init + start - end = 477431736.0 - 478108965.0 + mean elapsed = 677230.0 + variance = 305524898256.8 + s.d = 552743.1 + percent = 0.1 +activity 185: + name = initcall kernel.bsg_init + start - end = 478335894.2 - 479237927.2 + mean elapsed = 902034.0 + variance = 203126989616.0 + s.d = 450696.1 + percent = 0.1 +activity 186: + name = initcall kernel.noop_init + start - end = 479688407.6 - 480135756.4 + mean elapsed = 447349.8 + variance = 299261511249.4 + s.d = 547048.0 + percent = 0.1 +activity 187: + name = initcall kernel.deadline_init + start - end = 480813992.2 - 481035820.6 + mean elapsed = 221829.4 + variance = 195344875440.6 + s.d = 441978.4 + percent = 0.0 +activity 188: + name = initcall kernel.cfq_init + start - end = 481712990.6 - 482161118.8 + mean elapsed = 448129.2 + variance = 299999332285.4 + s.d = 547721.9 + percent = 0.1 +activity 189: + name = initcall kernel.percpu_counter_startup + start - end = 482838510.6 - 483064343.2 + mean elapsed = 225833.6 + variance = 202913997428.2 + s.d = 450459.8 + percent = 0.0 +activity 190: + name = initcall kernel.pci_proc_init + start - end = 483285823.6 - 483964228.0 + mean elapsed = 678405.4 + variance = 306638214726.2 + s.d = 553749.2 + percent = 0.1 +activity 191: + name = initcall kernel.acpi_ac_init + start - end = 484190509.8 - 484410231.2 + mean elapsed = 219722.4 + variance = 192511494683.8 + s.d = 438761.3 + percent = 0.0 +activity 192: + name = initcall kernel.acpi_button_driver_init + start - end = 485313962.6 - 486438844.6 + mean elapsed = 1124883.0 + variance = 87446834.8 + s.d = 9351.3 + percent = 0.1 +activity 193: + name = initcall kernel.acpi_fan_driver_init + start - end = 486660027.0 - 487338898.0 + mean elapsed = 678872.0 + variance = 306951782570.8 + s.d = 554032.3 + percent = 0.1 +activity 194: + name = initcall kernel.acpi_processor_driver_init + start - end = 487565539.0 - 488910447.0 + mean elapsed = 1344909.0 + variance = 185976779923.6 + s.d = 431250.3 + percent = 0.2 +activity 195: + name = initcall kernel.acpi_thermal_init + start - end = 489820048.2 - 489820672.4 + mean elapsed = 625.2 + variance = 71986.2 + s.d = 268.3 + percent = 0.0 +activity 196: + name = initcall kernel.acpi_battery_init + start - end = 490041599.6 - 490930415.0 + mean elapsed = 888816.4 + variance = 197423328591.0 + s.d = 444323.5 + percent = 0.1 +activity 197: + name = initcall kernel.pty_init + start - end = 491146958.4 - 494208956.8 + mean elapsed = 3061999.4 + variance = 41945217101.4 + s.d = 204805.3 + percent = 0.4 +activity 198: + name = initcall kernel.serial8250_init + start - end = 494209786.6 - 517617247.2 + mean elapsed = 23407461.6 + variance = 3710854693.0 + s.d = 60916.8 + percent = 2.8 +activity 199: + name = initcall kernel.serial_pci_driver_init + start - end = 517617508.0 - 518724567.6 + mean elapsed = 1107060.6 + variance = 10850749.0 + s.d = 3294.0 + percent = 0.1 +activity 200: + name = initcall kernel.topology_sysfs_init + start - end = 518725007.6 - 519832081.0 + mean elapsed = 1107074.4 + variance = 14245377.8 + s.d = 3774.3 + percent = 0.1 +activity 201: + name = initcall kernel.cacheinfo_sysfs_init + start - end = 519832477.2 - 519832679.6 + mean elapsed = 203.4 + variance = 166.6 + s.d = 12.9 + percent = 0.0 +activity 202: + name = initcall kernel.pmem_init + start - end = 520939862.0 - 520940269.2 + mean elapsed = 408.2 + variance = 979.8 + s.d = 31.3 + percent = 0.0 +activity 203: + name = initcall kernel.nd_btt_init + start - end = 521383544.2 - 522047825.8 + mean elapsed = 664282.6 + variance = 293790171952.2 + s.d = 542024.1 + percent = 0.1 +activity 204: + name = initcall kernel.nd_blk_init + start - end = 522048154.2 - 522272707.2 + mean elapsed = 224554.0 + variance = 192735556382.0 + s.d = 439016.6 + percent = 0.0 +activity 205: + name = initcall kernel.init_sd + start - end = 523159731.0 - 523160076.8 + mean elapsed = 346.8 + variance = 8352.6 + s.d = 91.4 + percent = 0.0 +activity 206: + name = initcall kernel.init_sg + start - end = 523384040.0 - 524047856.8 + mean elapsed = 663817.8 + variance = 293520924089.4 + s.d = 541775.7 + percent = 0.1 +activity 207: + name = initcall kernel.net_olddevs_init + start - end = 524271088.2 - 524491734.8 + mean elapsed = 220647.6 + variance = 194351990058.6 + s.d = 440853.7 + percent = 0.0 +activity 208: + name = initcall kernel.i8042_init + start - end = 525375120.4 - 527414999.2 + mean elapsed = 2039879.8 + variance = 100717041303.0 + s.d = 317359.5 + percent = 0.2 +activity 209: + name = initcall kernel.serport_init + start - end = 527644842.0 - 527865782.4 + mean elapsed = 220941.4 + variance = 194749050434.2 + s.d = 441303.8 + percent = 0.0 +activity 210: + name = initcall kernel.hid_init + start - end = 528530812.4 - 528531074.2 + mean elapsed = 262.8 + variance = 6930.6 + s.d = 83.2 + percent = 0.0 +activity 211: + name = initcall kernel.hid_generic_init + start - end = 529195307.8 - 529637143.6 + mean elapsed = 441836.8 + variance = 292310001507.0 + s.d = 540657.0 + percent = 0.1 +activity 212: + name = initcall kernel.sock_diag_init + start - end = 530083863.8 - 530304636.4 + mean elapsed = 220773.6 + variance = 194336593732.2 + s.d = 440836.2 + percent = 0.0 +activity 213: + name = initcall kernel.hpet_insert_resource + start - end = 530746388.2 - 531188886.4 + mean elapsed = 442499.2 + variance = 293267573615.8 + s.d = 541541.8 + percent = 0.1 +activity 214: + name = initcall kernel.update_mp_table + start - end = 531853938.6 - 531854212.2 + mean elapsed = 274.6 + variance = 7521.8 + s.d = 86.7 + percent = 0.0 +activity 215: + name = initcall kernel.lapic_insert_resource + start - end = 532520947.0 - 532963624.2 + mean elapsed = 442678.2 + variance = 293413347205.4 + s.d = 541676.4 + percent = 0.1 +activity 216: + name = initcall kernel.print_ICs + start - end = 533185344.4 - 533628409.4 + mean elapsed = 443066.0 + variance = 294144265918.8 + s.d = 542350.7 + percent = 0.1 +activity 217: + name = initcall kernel.create_tlb_single_page_flush_ceiling + start - end = 534071794.0 - 534293666.4 + mean elapsed = 221873.4 + variance = 196416322809.8 + s.d = 443188.8 + percent = 0.0 +activity 218: + name = initcall kernel.init_oops_id + start - end = 535182836.0 - 535403548.2 + mean elapsed = 220713.2 + variance = 194208028954.2 + s.d = 440690.4 + percent = 0.0 +activity 219: + name = initcall kernel.sched_init_debug + start - end = 535849936.0 - 536292252.6 + mean elapsed = 442317.6 + variance = 293028399582.2 + s.d = 541321.0 + percent = 0.1 +activity 220: + name = initcall kernel.pm_qos_power_init + start - end = 536512563.2 - 537189487.4 + mean elapsed = 676925.2 + variance = 305735021879.4 + s.d = 552933.1 + percent = 0.1 +activity 221: + name = initcall kernel.printk_late_init + start - end = 537411171.2 - 537631963.6 + mean elapsed = 220793.4 + variance = 194614474800.6 + s.d = 441151.3 + percent = 0.0 +activity 222: + name = initcall kernel.max_swapfiles_check + start - end = 538516875.0 - 538738690.6 + mean elapsed = 221816.6 + variance = 196144201291.8 + s.d = 442881.7 + percent = 0.0 +activity 223: + name = initcall kernel.check_early_ioremap_leak + start - end = 538960352.2 - 539626580.8 + mean elapsed = 666229.6 + variance = 295663580581.8 + s.d = 543749.6 + percent = 0.1 +activity 224: + name = initcall kernel.prandom_reseed + start - end = 539847959.4 - 540512349.0 + mean elapsed = 664390.6 + variance = 294037146762.6 + s.d = 542251.9 + percent = 0.1 +activity 225: + name = initcall kernel.pci_resource_alignment_sysfs_init + start - end = 540955345.0 - 541176474.0 + mean elapsed = 221130.0 + variance = 195095810472.4 + s.d = 441696.5 + percent = 0.0 +activity 226: + name = initcall kernel.pci_sysfs_init + start - end = 541838366.4 - 542058438.2 + mean elapsed = 220072.8 + variance = 193201219651.8 + s.d = 439546.6 + percent = 0.0 +activity 227: + name = initcall kernel.deferred_probe_initcall + start - end = 542722025.2 - 543163412.2 + mean elapsed = 441388.0 + variance = 291693277947.2 + s.d = 540086.4 + percent = 0.1 +activity 228: + name = initcall kernel.register_sk_filter_ops + start - end = 543384304.8 - 544048747.8 + mean elapsed = 664444.0 + variance = 294084257024.8 + s.d = 542295.4 + percent = 0.1 +activity 229: + name = initcall kernel.init_default_flow_dissectors + start - end = 544272523.0 - 544716080.6 + mean elapsed = 443558.6 + variance = 295063890674.6 + s.d = 543197.8 + percent = 0.1 +activity 230: + name = supermin:mini-initrd + start - end = 549519375.8 - 631619872.8 + mean elapsed = 82100498.0 + variance = 145769678219239.6 + s.d = 12073511.4 + percent = 9.8 +activity 231: + name = insmod nfit + start - end = 551764245.8 - 554248217.0 + mean elapsed = 2483972.2 + variance = 2609339079.8 + s.d = 51081.7 + percent = 0.3 +activity 232: + name = initcall nfit.nfit_init + start - end = 552969520.6 - 554247667.2 + mean elapsed = 1278147.6 + variance = 150933318.6 + s.d = 12285.5 + percent = 0.2 +activity 233: + name = insmod virtio + start - end = 554248218.0 - 555358789.8 + mean elapsed = 1110572.8 + variance = 94127595.4 + s.d = 9701.9 + percent = 0.1 +activity 234: + name = initcall virtio.virtio_init + start - end = 554248441.6 - 555358304.2 + mean elapsed = 1109863.6 + variance = 89720793.8 + s.d = 9472.1 + percent = 0.1 +activity 235: + name = insmod virtio_ring + start - end = 555358790.8 - 555358980.4 + mean elapsed = 190.6 + variance = 1719.0 + s.d = 41.5 + percent = 0.0 +activity 236: + name = insmod virtio_console + start - end = 555358981.4 - 557367173.0 + mean elapsed = 2008192.6 + variance = 170277781492.2 + s.d = 412647.3 + percent = 0.2 +activity 237: + name = initcall virtio_console.init + start - end = 556483470.0 - 556483941.4 + mean elapsed = 472.4 + variance = 39851.8 + s.d = 199.6 + percent = 0.0 +activity 238: + name = insmod virtio_scsi + start - end = 557367174.0 - 558692285.6 + mean elapsed = 1325112.6 + variance = 210564717586.6 + s.d = 458873.3 + percent = 0.2 +activity 239: + name = initcall virtio_scsi.init + start - end = 557593014.8 - 557593909.0 + mean elapsed = 895.2 + variance = 1162507.8 + s.d = 1078.2 + percent = 0.0 +activity 240: + name = insmod virtio_pci + start - end = 558692286.6 - 628193329.0 + mean elapsed = 69501043.4 + variance = 146888268121386.7 + s.d = 12119747.0 + percent = 8.3 +activity 241: + name = initcall virtio_pci.virtio_pci_driver_init + start - end = 558909412.0 - 628192172.8 + mean elapsed = 69282761.8 + variance = 149662807537470.2 + s.d = 12233675.1 + percent = 8.3 +activity 242: + name = /init + start - end = 631619873.8 - 810356058.6 + mean elapsed = 178736185.8 + variance = 961980039402.6 + s.d = 980805.8 + percent = 21.3 +activity 243: + name = bash:overhead + start - end = 631619873.8 - 634072408.0 + mean elapsed = 2452535.2 + variance = 4078588089.8 + s.d = 63863.8 + percent = 0.3 +activity 244: + name = /init:mount-special + start - end = 640907508.4 - 651367800.0 + mean elapsed = 10460292.6 + variance = 55182502837.0 + s.d = 234909.6 + percent = 1.2 +activity 245: + name = /init:kmod-static-nodes + start - end = 651367801.0 - 656108416.2 + mean elapsed = 4740616.2 + variance = 6213398088.6 + s.d = 78825.1 + percent = 0.6 +activity 246: + name = /init:systemd-tmpfiles + start - end = 656108417.2 - 658263499.6 + mean elapsed = 2155083.4 + variance = 830951805.4 + s.d = 28826.2 + percent = 0.3 +activity 247: + name = /init:udev-overhead + start - end = 659397497.6 - 776008572.4 + mean elapsed = 116611075.8 + variance = 255197518577.4 + s.d = 505170.8 + percent = 13.9 +activity 248: + name = /init:network-overhead + start - end = 790626008.0 - 791743033.4 + mean elapsed = 1117026.4 + variance = 3802540.2 + s.d = 1950.0 + percent = 0.1 +activity 249: + name = /init:md-probe + start - end = 791743252.2 - 795975974.4 + mean elapsed = 4232723.2 + variance = 7270689541.0 + s.d = 85268.3 + percent = 0.5 +activity 250: + name = /init:lvm-probe + start - end = 795975975.4 - 804258245.2 + mean elapsed = 8282270.8 + variance = 214839935089.4 + s.d = 463508.3 + percent = 1.0 +activity 251: + name = /init:windows-dynamic-disks-probe + start - end = 804258246.2 - 808028645.2 + mean elapsed = 3770400.0 + variance = 188522977232.0 + s.d = 434192.3 + percent = 0.4 +activity 252: + name = guestfsd + start - end = 810356059.6 - 823110311.6 + mean elapsed = 12754253.0 + variance = 411115405446.4 + s.d = 641182.8 + percent = 1.5 +activity 253: + name = shutdown + start - end = 817539083.2 - 838375280.4 + mean elapsed = 20836198.2 + variance = 78555377028.2 + s.d = 280277.3 + percent = 2.5 + +test version: libguestfs 1.33.29 + test passes: 5 +host version: Linux moo.home.annexia.org 4.4.4-301.fc23.x86_64 #1 SMP Fri Mar 4 17:42:42 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux + host CPU: Intel(R) Core(TM) i7-5600U CPU @ 2.60GHz + backend: direct [to change set $LIBGUESTFS_BACKEND] + qemu: /home/rjones/d/qemu/x86_64-softmmu/qemu-system-x86_64 [to change set $LIBGUESTFS_HV] +qemu version: QEMU emulator version 2.6.50, Copyright (c) 2003-2008 Fabrice Bellard + smp: 1 [to change use --smp option] + memsize: 500 [to change use --memsize option] + append: guestfs_boot_analysis=1 ignore_loglevel initcall_debug [to change use --append option] + + 0.0ms: ▲ run 838.4ms ±5.5ms (100.0%)  + 0.6ms: │ ▲ supermin:build 10.6ms ±0.2ms (1.3%)  + │ │  + 11.2ms: │ ▼  + 11.2ms: │ ▲ qemu:feature-detect 0.1ms ±0.0ms (0.0%)  + 11.3ms: │ ▼  + │  + 13.0ms: │ ▲ ▲ qemu 825.4ms ±5.6ms (98.4%) qemu:overhead 96.7ms ±1.0ms (11.5%)  + │ │ │  + 109.7ms: │ │ ▼  + 109.7ms: │ │ ▲ ▲ bios:overhead 50.5ms ±0.5ms (6.0%) sgabios 2.0ms ±0.4ms (0.2%)  + │ │ │ │  + 111.7ms: │ │ │ ▼  + 111.7ms: │ │ │ ▲ seabios 48.5ms ±0.2ms (5.8%)  + │ │ │ │  + 160.2ms: │ │ ▼ ▼  + 160.2ms: │ │ ▲ ▲ kernel 678.2ms ±6.2ms (80.9%) kernel:overhead 389.4ms ±9.6ms (46.4%)  + │ │ │ │  + 207.6ms: │ │ │ │ ▲ kernel:alternatives 4.9ms ±0.2ms (0.6%)  + │ │ │ │ │  + 212.5ms: │ │ │ │ ▼  + │ │ │ │  + 216.8ms: │ │ │ │ ▲ ▲ kernel:initcalls-before-userspace 329.1ms ±8.8ms (39.3%) initcall kernel.init_hw_perf_events 3.4ms ±0.0ms (0.4%)  + │ │ │ │ │ │  + 220.2ms: │ │ │ │ │ ▼  + 220.2ms: │ │ │ │ │ ▲ initcall kernel.set_real_mode_permissions 0.7ms ±0.6ms (0.1%)  + 220.9ms: │ │ │ │ │ ▼  + 221.3ms: │ │ │ │ │ ▲ initcall kernel.validate_x2apic 0.0ms ±0.0ms (0.0%)  + 221.3ms: │ │ │ │ │ ▼  + 222.0ms: │ │ │ │ │ ▲ initcall kernel.register_trigger_all_cpu_backtrace 0.4ms ±0.5ms (0.1%)  + 222.4ms: │ │ │ │ │ ▼  + 223.1ms: │ │ │ │ │ ▲ initcall kernel.spawn_ksoftirqd 0.4ms ±0.5ms (0.1%)  + 223.5ms: │ │ │ │ │ ▼  + 223.5ms: │ │ │ │ │ ▲ initcall kernel.init_workqueues 0.7ms ±0.5ms (0.1%)  + 224.2ms: │ │ │ │ │ ▼  + 224.7ms: │ │ │ │ │ ▲ initcall kernel.migration_init 0.0ms ±0.0ms (0.0%)  + 224.7ms: │ │ │ │ │ ▼  + 225.3ms: │ │ │ │ │ ▲ initcall kernel.check_cpu_stall_init 0.5ms ±0.6ms (0.1%)  + 225.8ms: │ │ │ │ │ ▼  + 226.2ms: │ │ │ │ │ ▲ initcall kernel.rcu_spawn_gp_kthread 0.7ms ±0.6ms (0.1%)  + 226.9ms: │ │ │ │ │ ▼  + 226.9ms: │ │ │ │ │ ▲ initcall kernel.cpu_stop_init 0.7ms ±0.6ms (0.1%)  + 227.6ms: │ │ │ │ │ ▼  + 228.1ms: │ │ │ │ │ ▲ initcall kernel.rand_initialize 0.0ms ±0.0ms (0.0%)  + 228.1ms: │ │ │ │ │ ▼  + │ │ │ │ │  + 232.0ms: │ │ │ │ │ ▲ initcall kernel.init_mmap_min_addr 0.0ms ±0.0ms (0.0%)  + 232.0ms: │ │ │ │ │ ▼  + 232.0ms: │ │ │ │ │ ▲ initcall kernel.net_ns_init 0.4ms ±0.5ms (0.1%)  + 232.4ms: │ │ │ │ │ ▼  + 233.1ms: │ │ │ │ │ ▲ initcall kernel.e820_mark_nvs_memory 0.0ms ±0.0ms (0.0%)  + 233.1ms: │ │ │ │ │ ▼  + │ │ │ │ │  + 234.2ms: │ │ │ │ │ ▲ initcall kernel.init_cpu_syscore 0.0ms ±0.0ms (0.0%)  + 234.2ms: │ │ │ │ │ ▼  + 234.2ms: │ │ │ │ │ ▲ initcall kernel.reboot_init 0.9ms ±0.5ms (0.1%)  + 235.1ms: │ │ │ │ │ ▼  + 235.3ms: │ │ │ │ │ ▲ initcall kernel.wq_sysfs_init 0.0ms ±0.0ms (0.0%)  + 235.3ms: │ │ │ │ │ ▼  + │ │ │ │ │  + 236.5ms: │ │ │ │ │ ▲ initcall kernel.ksysfs_init 0.0ms ±0.0ms (0.0%)  + 236.5ms: │ │ │ │ │ ▼  + 236.5ms: │ │ │ │ │ ▲ initcall kernel.init_jiffies_clocksource 1.1ms ±0.0ms (0.1%)  + │ │ │ │ │ │  + 237.6ms: │ │ │ │ │ ▼  + 238.5ms: │ │ │ │ │ ▲ initcall kernel.init_per_zone_wmark_min 0.2ms ±0.5ms (0.0%)  + 238.7ms: │ │ │ │ │ ▼  + 239.2ms: │ │ │ │ │ ▲ initcall kernel.init_zero_pfn 0.5ms ±0.6ms (0.1%)  + 239.6ms: │ │ │ │ │ ▼  + 239.9ms: │ │ │ │ │ ▲ initcall kernel.fsnotify_init 0.4ms ±0.5ms (0.1%)  + 240.3ms: │ │ │ │ │ ▼  + 241.0ms: │ │ │ │ │ ▲ initcall kernel.filelock_init 0.0ms ±0.0ms (0.0%)  + 241.0ms: │ │ │ │ │ ▼  + 241.4ms: │ │ │ │ │ ▲ initcall kernel.init_script_binfmt 0.5ms ±0.6ms (0.1%)  + 241.9ms: │ │ │ │ │ ▼  + 242.3ms: │ │ │ │ │ ▲ initcall kernel.init_elf_binfmt 0.5ms ±0.6ms (0.1%)  + 242.8ms: │ │ │ │ │ ▼  + 243.3ms: │ │ │ │ │ ▲ initcall kernel.prandom_init 0.2ms ±0.4ms (0.0%)  + 243.5ms: │ │ │ │ │ ▼  + 243.9ms: │ │ │ │ │ ▲ initcall kernel.cpuidle_init 0.2ms ±0.5ms (0.0%)  + 244.2ms: │ │ │ │ │ ▼  + 244.6ms: │ │ │ │ │ ▲ initcall kernel.sock_init 0.2ms ±0.5ms (0.0%)  + 244.8ms: │ │ │ │ │ ▼  + 245.3ms: │ │ │ │ │ ▲ initcall kernel.netlink_proto_init 0.7ms ±0.5ms (0.1%)  + 246.0ms: │ │ │ │ │ ▼  + 246.4ms: │ │ │ │ │ ▲ initcall kernel.bdi_class_init 0.7ms ±0.6ms (0.1%)  + 247.1ms: │ │ │ │ │ ▼  + 247.5ms: │ │ │ │ │ ▲ initcall kernel.mm_sysfs_init 0.0ms ±0.0ms (0.0%)  + 247.5ms: │ │ │ │ │ ▼  + 248.2ms: │ │ │ │ │ ▲ initcall kernel.kobject_uevent_init 0.5ms ±0.6ms (0.1%)  + 248.7ms: │ │ │ │ │ ▼  + 248.7ms: │ │ │ │ │ ▲ initcall kernel.pcibus_class_init 0.7ms ±0.5ms (0.1%)  + 249.3ms: │ │ │ │ │ ▼  + 249.8ms: │ │ │ │ │ ▲ initcall kernel.pci_driver_init 0.2ms ±0.4ms (0.0%)  + 250.0ms: │ │ │ │ │ ▼  + 250.5ms: │ │ │ │ │ ▲ initcall kernel.tty_class_init 0.5ms ±0.6ms (0.1%)  + 250.9ms: │ │ │ │ │ ▼  + 251.1ms: │ │ │ │ │ ▲ initcall kernel.vtconsole_class_init 0.5ms ±0.6ms (0.1%)  + 251.6ms: │ │ │ │ │ ▼  + 252.1ms: │ │ │ │ │ ▲ initcall kernel.init_ladder 0.7ms ±0.5ms (0.1%)  + 252.7ms: │ │ │ │ │ ▼  + 253.2ms: │ │ │ │ │ ▲ initcall kernel.bts_init 0.2ms ±0.4ms (0.0%)  + 253.4ms: │ │ │ │ │ ▼  + 253.9ms: │ │ │ │ │ ▲ initcall kernel.pt_init 0.5ms ±0.6ms (0.1%)  + 254.3ms: │ │ │ │ │ ▼  + 254.5ms: │ │ │ │ │ ▲ initcall kernel.boot_params_ksysfs_init 0.5ms ±0.6ms (0.1%)  + 255.0ms: │ │ │ │ │ ▼  + 255.4ms: │ │ │ │ │ ▲ initcall kernel.sbf_init 0.4ms ±0.5ms (0.1%)  + 255.9ms: │ │ │ │ │ ▼  + 256.1ms: │ │ │ │ │ ▲ initcall kernel.arch_kdebugfs_init 0.5ms ±0.6ms (0.1%)  + 256.6ms: │ │ │ │ │ ▼  + 257.0ms: │ │ │ │ │ ▲ initcall kernel.ffh_cstate_init 0.2ms ±0.5ms (0.0%)  + 257.2ms: │ │ │ │ │ ▼  + 257.9ms: │ │ │ │ │ ▲ initcall kernel.activate_jump_labels 0.2ms ±0.5ms (0.0%)  + 258.1ms: │ │ │ │ │ ▼  + 258.6ms: │ │ │ │ │ ▲ initcall kernel.acpi_pci_init 0.7ms ±0.5ms (0.1%)  + 259.3ms: │ │ │ │ │ ▼  + 259.5ms: │ │ │ │ │ ▲ initcall kernel.pci_arch_init 0.9ms ±0.4ms (0.1%)  + 260.4ms: │ │ │ │ │ ▼  + 261.1ms: │ │ │ │ │ ▲ initcall kernel.init_vdso 0.2ms ±0.4ms (0.0%)  + 261.3ms: │ │ │ │ │ ▼  + 261.5ms: │ │ │ │ │ ▲ initcall kernel.fixup_ht_bug 0.0ms ±0.0ms (0.0%)  + 261.5ms: │ │ │ │ │ ▼  + 262.4ms: │ │ │ │ │ ▲ initcall kernel.topology_init 0.2ms ±0.5ms (0.0%)  + 262.6ms: │ │ │ │ │ ▼  + 263.1ms: │ │ │ │ │ ▲ initcall kernel.uid_cache_init 0.4ms ±0.5ms (0.1%)  + 263.5ms: │ │ │ │ │ ▼  + 263.8ms: │ │ │ │ │ ▲ initcall kernel.param_sysfs_init 1.0ms ±0.5ms (0.1%)  + 264.7ms: │ │ │ │ │ ▼  + 265.0ms: │ │ │ │ │ ▲ initcall kernel.oom_init 0.0ms ±0.0ms (0.0%)  + 265.0ms: │ │ │ │ │ ▼  + 265.6ms: │ │ │ │ │ ▲ initcall kernel.default_bdi_init 0.5ms ±0.6ms (0.1%)  + 266.1ms: │ │ │ │ │ ▼  + 266.3ms: │ │ │ │ │ ▲ initcall kernel.percpu_enable_async 0.4ms ±0.5ms (0.1%)  + 266.7ms: │ │ │ │ │ ▼  + 267.2ms: │ │ │ │ │ ▲ initcall kernel.init_reserve_notifier 0.2ms ±0.4ms (0.0%)  + 267.4ms: │ │ │ │ │ ▼  + 268.3ms: │ │ │ │ │ ▲ initcall kernel.init_admin_reserve 0.0ms ±0.0ms (0.0%)  + 268.3ms: │ │ │ │ │ ▼  + 269.0ms: │ │ │ │ │ ▲ initcall kernel.init_user_reserve 0.5ms ±0.6ms (0.1%)  + 269.4ms: │ │ │ │ │ ▼  + 269.6ms: │ │ │ │ │ ▲ initcall kernel.crypto_wq_init 0.4ms ±0.5ms (0.1%)  + 270.1ms: │ │ │ │ │ ▼  + 270.5ms: │ │ │ │ │ ▲ initcall kernel.cryptomgr_init 0.2ms ±0.4ms (0.0%)  + 270.8ms: │ │ │ │ │ ▼  + 271.4ms: │ │ │ │ │ ▲ initcall kernel.init_bio 0.2ms ±0.5ms (0.0%)  + 271.7ms: │ │ │ │ │ ▼  + 271.9ms: │ │ │ │ │ ▲ initcall kernel.blk_settings_init 0.4ms ±0.5ms (0.1%)  + 272.3ms: │ │ │ │ │ ▼  + 272.8ms: │ │ │ │ │ ▲ initcall kernel.blk_ioc_init 0.2ms ±0.4ms (0.0%)  + 273.0ms: │ │ │ │ │ ▼  + 273.7ms: │ │ │ │ │ ▲ initcall kernel.blk_softirq_init 0.2ms ±0.5ms (0.0%)  + 273.9ms: │ │ │ │ │ ▼  + 274.6ms: │ │ │ │ │ ▲ initcall kernel.blk_mq_init 0.2ms ±0.5ms (0.0%)  + 274.8ms: │ │ │ │ │ ▼  + 275.0ms: │ │ │ │ │ ▲ initcall kernel.genhd_device_init 0.7ms ±0.5ms (0.1%)  + 275.7ms: │ │ │ │ │ ▼  + 275.9ms: │ │ │ │ │ ▲ initcall kernel.pci_slot_init 0.4ms ±0.5ms (0.1%)  + 276.3ms: │ │ │ │ │ ▼  + 276.8ms: │ │ │ │ │ ▲ initcall kernel.acpi_init 98.7ms ±5.7ms (11.8%)  + │ │ │ │ │ │  + 375.5ms: │ │ │ │ │ ▼  + 375.5ms: │ │ │ │ │ ▲ initcall kernel.pnp_init 0.2ms ±0.5ms (0.0%)  + 375.7ms: │ │ │ │ │ ▼  + 376.6ms: │ │ │ │ │ ▲ initcall kernel.misc_init 0.0ms ±0.0ms (0.0%)  + 376.6ms: │ │ │ │ │ ▼  + 376.9ms: │ │ │ │ │ ▲ initcall kernel.vga_arb_device_init 0.9ms ±0.5ms (0.1%)  + 377.8ms: │ │ │ │ │ ▼  + 378.0ms: │ │ │ │ │ ▲ initcall kernel.libnvdimm_init 0.9ms ±0.4ms (0.1%)  + 378.9ms: │ │ │ │ │ ▼  + 378.9ms: │ │ │ │ │ ▲ initcall kernel.init_scsi 1.1ms ±0.0ms (0.1%)  + │ │ │ │ │ │  + 380.0ms: │ │ │ │ │ ▼  + 380.0ms: │ │ │ │ │ ▲ initcall kernel.serio_init 0.0ms ±0.0ms (0.0%)  + 380.0ms: │ │ │ │ │ ▼  + │ │ │ │ │  + 381.2ms: │ │ │ │ │ ▲ initcall kernel.input_init 0.0ms ±0.0ms (0.0%)  + 381.2ms: │ │ │ │ │ ▼  + 381.4ms: │ │ │ │ │ ▲ initcall kernel.power_supply_class_init 0.7ms ±0.5ms (0.1%)  + 382.1ms: │ │ │ │ │ ▼  + 382.3ms: │ │ │ │ │ ▲ initcall kernel.pci_subsys_init 2.2ms ±0.0ms (0.3%)  + │ │ │ │ │ │  + 384.6ms: │ │ │ │ │ ▼  + 384.8ms: │ │ │ │ │ ▲ initcall kernel.proto_init 0.7ms ±0.5ms (0.1%)  + 385.5ms: │ │ │ │ │ ▼  + 385.7ms: │ │ │ │ │ ▲ initcall kernel.net_dev_init 0.2ms ±0.5ms (0.0%)  + 385.9ms: │ │ │ │ │ ▼  + 386.6ms: │ │ │ │ │ ▲ initcall kernel.neigh_init 0.0ms ±0.0ms (0.0%)  + 386.6ms: │ │ │ │ │ ▼  + 387.0ms: │ │ │ │ │ ▲ initcall kernel.genl_init 0.7ms ±0.5ms (0.1%)  + 387.7ms: │ │ │ │ │ ▼  + 387.7ms: │ │ │ │ │ ▲ initcall kernel.nmi_warning_debugfs 0.4ms ±0.5ms (0.1%)  + 388.2ms: │ │ │ │ │ ▼  + 388.8ms: │ │ │ │ │ ▲ initcall kernel.hpet_late_init 0.0ms ±0.0ms (0.0%)  + 388.8ms: │ │ │ │ │ ▼  + 389.5ms: │ │ │ │ │ ▲ initcall kernel.clocksource_done_booting 0.7ms ±0.6ms (0.1%)  + 390.2ms: │ │ │ │ │ ▼  + 390.9ms: │ │ │ │ │ ▲ initcall kernel.init_pipe_fs 0.2ms ±0.5ms (0.0%)  + 391.1ms: │ │ │ │ │ ▼  + 391.5ms: │ │ │ │ │ ▲ initcall kernel.inotify_user_setup 0.4ms ±0.5ms (0.1%)  + 392.0ms: │ │ │ │ │ ▼  + 392.2ms: │ │ │ │ │ ▲ initcall kernel.eventpoll_init 0.4ms ±0.5ms (0.1%)  + 392.7ms: │ │ │ │ │ ▼  + 393.3ms: │ │ │ │ │ ▲ initcall kernel.anon_inode_init 0.0ms ±0.0ms (0.0%)  + 393.3ms: │ │ │ │ │ ▼  + 394.2ms: │ │ │ │ │ ▲ initcall kernel.proc_locks_init 0.2ms ±0.5ms (0.0%)  + 394.5ms: │ │ │ │ │ ▼  + 394.7ms: │ │ │ │ │ ▲ initcall kernel.proc_cmdline_init 0.7ms ±0.5ms (0.1%)  + 395.4ms: │ │ │ │ │ ▼  + 395.6ms: │ │ │ │ │ ▲ initcall kernel.proc_consoles_init 0.2ms ±0.4ms (0.0%)  + 395.8ms: │ │ │ │ │ ▼  + 396.5ms: │ │ │ │ │ ▲ initcall kernel.proc_cpuinfo_init 0.2ms ±0.5ms (0.0%)  + 396.7ms: │ │ │ │ │ ▼  + 397.1ms: │ │ │ │ │ ▲ initcall kernel.proc_devices_init 0.5ms ±0.6ms (0.1%)  + 397.6ms: │ │ │ │ │ ▼  + 398.1ms: │ │ │ │ │ ▲ initcall kernel.proc_interrupts_init 0.4ms ±0.5ms (0.1%)  + 398.5ms: │ │ │ │ │ ▼  + 399.0ms: │ │ │ │ │ ▲ initcall kernel.proc_loadavg_init 0.2ms ±0.4ms (0.0%)  + 399.2ms: │ │ │ │ │ ▼  + 399.6ms: │ │ │ │ │ ▲ initcall kernel.proc_meminfo_init 0.5ms ±0.6ms (0.1%)  + 400.1ms: │ │ │ │ │ ▼  + 400.5ms: │ │ │ │ │ ▲ initcall kernel.proc_stat_init 0.2ms ±0.5ms (0.0%)  + 400.7ms: │ │ │ │ │ ▼  + 401.2ms: │ │ │ │ │ ▲ initcall kernel.proc_uptime_init 0.4ms ±0.5ms (0.1%)  + 401.6ms: │ │ │ │ │ ▼  + 401.9ms: │ │ │ │ │ ▲ initcall kernel.proc_version_init 0.7ms ±0.5ms (0.1%)  + 402.5ms: │ │ │ │ │ ▼  + 403.0ms: │ │ │ │ │ ▲ initcall kernel.proc_softirqs_init 0.0ms ±0.0ms (0.0%)  + 403.0ms: │ │ │ │ │ ▼  + 403.7ms: │ │ │ │ │ ▲ initcall kernel.proc_kmsg_init 0.4ms ±0.5ms (0.1%)  + 404.1ms: │ │ │ │ │ ▼  + 404.3ms: │ │ │ │ │ ▲ initcall kernel.proc_page_init 0.4ms ±0.5ms (0.1%)  + 404.8ms: │ │ │ │ │ ▼  + 405.2ms: │ │ │ │ │ ▲ initcall kernel.init_ramfs_fs 0.0ms ±0.0ms (0.0%)  + 405.2ms: │ │ │ │ │ ▼  + 406.1ms: │ │ │ │ │ ▲ initcall kernel.blk_scsi_ioctl_init 0.2ms ±0.5ms (0.0%)  + 406.4ms: │ │ │ │ │ ▼  + 407.0ms: │ │ │ │ │ ▲ initcall kernel.acpi_event_init 0.2ms ±0.4ms (0.0%)  + 407.3ms: │ │ │ │ │ ▼  + 407.5ms: │ │ │ │ │ ▲ initcall kernel.pnp_system_init 0.2ms ±0.4ms (0.0%)  + 407.7ms: │ │ │ │ │ ▼  + 408.6ms: │ │ │ │ │ ▲ initcall kernel.pnpacpi_init 3.7ms ±0.4ms (0.4%)  + │ │ │ │ │ │  + 412.3ms: │ │ │ │ │ ▼  + 412.9ms: │ │ │ │ │ ▲ initcall kernel.chr_dev_init 0.8ms ±0.6ms (0.1%)  + 413.7ms: │ │ │ │ │ ▼  + 414.2ms: │ │ │ │ │ ▲ initcall kernel.thermal_init 0.0ms ±0.0ms (0.0%)  + 414.2ms: │ │ │ │ │ ▼  + 414.8ms: │ │ │ │ │ ▲ initcall kernel.init_acpi_pm_clocksource 5.4ms ±0.4ms (0.6%)  + │ │ │ │ │ │  + 420.2ms: │ │ │ │ │ ▼  + 420.9ms: │ │ │ │ │ ▲ initcall kernel.pcibios_assign_resources 2.3ms ±0.0ms (0.3%)  + │ │ │ │ │ │  + 423.1ms: │ │ │ │ │ ▼  + 423.6ms: │ │ │ │ │ ▲ initcall kernel.sysctl_core_init 0.0ms ±0.0ms (0.0%)  + 423.6ms: │ │ │ │ │ ▼  + 424.5ms: │ │ │ │ │ ▲ initcall kernel.eth_offload_init 0.2ms ±0.5ms (0.0%)  + 424.7ms: │ │ │ │ │ ▼  + 424.9ms: │ │ │ │ │ ▲ initcall kernel.af_unix_init 0.9ms ±0.5ms (0.1%)  + 425.9ms: │ │ │ │ │ ▼  + 426.1ms: │ │ │ │ │ ▲ initcall kernel.pci_apply_final_quirks 2.0ms ±0.5ms (0.2%)  + │ │ │ │ │ │  + 428.1ms: │ │ │ │ │ ▼  + 428.8ms: │ │ │ │ │ ▲ initcall kernel.acpi_reserve_resources 0.2ms ±0.4ms (0.0%)  + 429.0ms: │ │ │ │ │ ▼  + 429.4ms: │ │ │ │ │ ▲ initcall kernel.populate_rootfs 1.3ms ±0.4ms (0.2%)  + │ │ │ │ │ │  + 430.8ms: │ │ │ │ │ ▼  + 431.2ms: │ │ │ │ │ ▲ initcall kernel.pci_iommu_init 0.2ms ±0.5ms (0.0%)  + 431.5ms: │ │ │ │ │ ▼  + 432.1ms: │ │ │ │ │ ▲ initcall kernel.amd_ibs_init 0.2ms ±0.5ms (0.0%)  + 432.4ms: │ │ │ │ │ ▼  + 432.6ms: │ │ │ │ │ ▲ initcall kernel.msr_init 0.7ms ±0.5ms (0.1%)  + 433.3ms: │ │ │ │ │ ▼  + 433.5ms: │ │ │ │ │ ▲ initcall kernel.intel_cqm_init 0.0ms ±0.0ms (0.0%)  + 433.5ms: │ │ │ │ │ ▼  + 434.4ms: │ │ │ │ │ ▲ initcall kernel.rapl_pmu_init 0.2ms ±0.4ms (0.0%)  + 434.6ms: │ │ │ │ │ ▼  + 435.1ms: │ │ │ │ │ ▲ initcall kernel.intel_uncore_init 0.4ms ±0.5ms (0.1%)  + 435.5ms: │ │ │ │ │ ▼  + 435.7ms: │ │ │ │ │ ▲ initcall kernel.cstate_pmu_init 0.5ms ±0.6ms (0.1%)  + 436.2ms: │ │ │ │ │ ▼  + 436.6ms: │ │ │ │ │ ▲ initcall kernel.register_kernel_offset_dumper 0.2ms ±0.5ms (0.0%)  + 436.9ms: │ │ │ │ │ ▼  + 437.8ms: │ │ │ │ │ ▲ initcall kernel.i8259A_init_ops 0.2ms ±0.4ms (0.0%)  + 438.0ms: │ │ │ │ │ ▼  + 438.4ms: │ │ │ │ │ ▲ initcall kernel.init_tsc_clocksource 0.5ms ±0.6ms (0.1%)  + 438.9ms: │ │ │ │ │ ▼  + 439.1ms: │ │ │ │ │ ▲ initcall kernel.add_rtc_cmos 0.4ms ±0.5ms (0.1%)  + 439.6ms: │ │ │ │ │ ▼  + 440.0ms: │ │ │ │ │ ▲ initcall kernel.i8237A_init_ops 0.2ms ±0.5ms (0.0%)  + 440.2ms: │ │ │ │ │ ▼  + 440.9ms: │ │ │ │ │ ▲ initcall kernel.ioapic_init_ops 0.2ms ±0.5ms (0.0%)  + 441.1ms: │ │ │ │ │ ▼  + 441.4ms: │ │ │ │ │ ▲ initcall kernel.sysfb_init 0.7ms ±0.5ms (0.1%)  + 442.0ms: │ │ │ │ │ ▼  + 442.3ms: │ │ │ │ │ ▲ initcall kernel.pmc_atom_init 0.2ms ±0.5ms (0.0%)  + 442.5ms: │ │ │ │ │ ▼  + 443.2ms: │ │ │ │ │ ▲ initcall kernel.proc_execdomains_init 0.2ms ±0.5ms (0.0%)  + 443.4ms: │ │ │ │ │ ▼  + 444.1ms: │ │ │ │ │ ▲ initcall kernel.ioresources_init 0.2ms ±0.5ms (0.0%)  + 444.3ms: │ │ │ │ │ ▼  + 444.7ms: │ │ │ │ │ ▲ initcall kernel.init_sched_debug_procfs 0.4ms ±0.5ms (0.1%)  + 445.2ms: │ │ │ │ │ ▼  + 445.4ms: │ │ │ │ │ ▲ initcall kernel.init_posix_timers 0.5ms ±0.6ms (0.1%)  + 445.9ms: │ │ │ │ │ ▼  + 446.5ms: │ │ │ │ │ ▲ initcall kernel.init_posix_cpu_timers 0.0ms ±0.0ms (0.0%)  + 446.5ms: │ │ │ │ │ ▼  + 447.4ms: │ │ │ │ │ ▲ initcall kernel.timekeeping_init_ops 0.2ms ±0.5ms (0.0%)  + 447.7ms: │ │ │ │ │ ▼  + 448.1ms: │ │ │ │ │ ▲ initcall kernel.init_clocksource_sysfs 0.7ms ±0.5ms (0.1%)  + 448.8ms: │ │ │ │ │ ▼  + 448.8ms: │ │ │ │ │ ▲ initcall kernel.init_timer_list_procfs 0.7ms ±0.6ms (0.1%)  + 449.5ms: │ │ │ │ │ ▼  + 449.9ms: │ │ │ │ │ ▲ initcall kernel.alarmtimer_init 0.0ms ±0.0ms (0.0%)  + 449.9ms: │ │ │ │ │ ▼  + 450.8ms: │ │ │ │ │ ▲ initcall kernel.clockevents_init_sysfs 0.2ms ±0.5ms (0.0%)  + 451.0ms: │ │ │ │ │ ▼  + 451.3ms: │ │ │ │ │ ▲ initcall kernel.futex_init 0.9ms ±0.4ms (0.1%)  + 452.2ms: │ │ │ │ │ ▼  + 452.9ms: │ │ │ │ │ ▲ initcall kernel.proc_dma_init 0.5ms ±0.6ms (0.1%)  + 453.3ms: │ │ │ │ │ ▼  + 453.3ms: │ │ │ │ │ ▲ initcall kernel.proc_modules_init 0.4ms ±0.5ms (0.1%)  + 453.8ms: │ │ │ │ │ ▼  + 454.4ms: │ │ │ │ │ ▲ initcall kernel.kallsyms_init 0.0ms ±0.0ms (0.0%)  + 454.4ms: │ │ │ │ │ ▼  + 455.1ms: │ │ │ │ │ ▲ initcall kernel.utsname_sysctl_init 0.5ms ±0.6ms (0.1%)  + 455.6ms: │ │ │ │ │ ▼  + 455.6ms: │ │ │ │ │ ▲ initcall kernel.perf_event_sysfs_init 0.9ms ±0.5ms (0.1%)  + 456.5ms: │ │ │ │ │ ▼  + 456.7ms: │ │ │ │ │ ▲ initcall kernel.kswapd_init 0.0ms ±0.0ms (0.0%)  + 456.7ms: │ │ │ │ │ ▼  + │ │ │ │ │  + 457.8ms: │ │ │ │ │ ▲ initcall kernel.setup_vmstat 0.0ms ±0.0ms (0.0%)  + 457.8ms: │ │ │ │ │ ▼  + 458.3ms: │ │ │ │ │ ▲ initcall kernel.mm_compute_batch_init 0.7ms ±0.6ms (0.1%)  + 459.0ms: │ │ │ │ │ ▼  + 459.0ms: │ │ │ │ │ ▲ initcall kernel.slab_proc_init 0.4ms ±0.5ms (0.1%)  + 459.4ms: │ │ │ │ │ ▼  + 460.1ms: │ │ │ │ │ ▲ initcall kernel.workingset_init 0.7ms ±0.5ms (0.1%)  + 460.8ms: │ │ │ │ │ ▼  + 461.2ms: │ │ │ │ │ ▲ initcall kernel.proc_vmalloc_init 0.2ms ±0.4ms (0.0%)  + 461.4ms: │ │ │ │ │ ▼  + 462.1ms: │ │ │ │ │ ▲ initcall kernel.procswaps_init 0.2ms ±0.4ms (0.0%)  + 462.3ms: │ │ │ │ │ ▼  + 462.8ms: │ │ │ │ │ ▲ initcall kernel.slab_sysfs_init 0.7ms ±0.6ms (0.1%)  + 463.5ms: │ │ │ │ │ ▼  + 464.2ms: │ │ │ │ │ ▲ initcall kernel.fcntl_init 0.2ms ±0.5ms (0.0%)  + 464.4ms: │ │ │ │ │ ▼  + 464.8ms: │ │ │ │ │ ▲ initcall kernel.proc_filesystems_init 0.5ms ±0.6ms (0.1%)  + 465.3ms: │ │ │ │ │ ▼  + 465.5ms: │ │ │ │ │ ▲ initcall kernel.start_dirtytime_writeback 0.7ms ±0.5ms (0.1%)  + 466.2ms: │ │ │ │ │ ▼  + 466.6ms: │ │ │ │ │ ▲ initcall kernel.dio_init 0.0ms ±0.0ms (0.0%)  + 466.6ms: │ │ │ │ │ ▼  + 467.3ms: │ │ │ │ │ ▲ initcall kernel.dnotify_init 0.2ms ±0.4ms (0.0%)  + 467.5ms: │ │ │ │ │ ▼  + 467.8ms: │ │ │ │ │ ▲ initcall kernel.fanotify_user_setup 0.7ms ±0.5ms (0.1%)  + 468.4ms: │ │ │ │ │ ▼  + 468.9ms: │ │ │ │ │ ▲ initcall kernel.aio_setup 0.0ms ±0.0ms (0.0%)  + 468.9ms: │ │ │ │ │ ▼  + 469.8ms: │ │ │ │ │ ▲ initcall kernel.mbcache_init 0.0ms ±0.0ms (0.0%)  + 469.8ms: │ │ │ │ │ ▼  + 470.2ms: │ │ │ │ │ ▲ initcall kernel.init_devpts_fs 0.2ms ±0.4ms (0.0%)  + 470.5ms: │ │ │ │ │ ▼  + 471.1ms: │ │ │ │ │ ▲ initcall kernel.ext4_init_fs 0.2ms ±0.4ms (0.0%)  + 471.4ms: │ │ │ │ │ ▼  + 472.0ms: │ │ │ │ │ ▲ initcall kernel.journal_init 0.2ms ±0.5ms (0.0%)  + 472.3ms: │ │ │ │ │ ▼  + 472.7ms: │ │ │ │ │ ▲ initcall kernel.init_nls_utf8 0.4ms ±0.5ms (0.1%)  + 473.2ms: │ │ │ │ │ ▼  + 473.4ms: │ │ │ │ │ ▲ initcall kernel.crypto_algapi_init 0.4ms ±0.5ms (0.1%)  + 473.8ms: │ │ │ │ │ ▼  + 474.3ms: │ │ │ │ │ ▲ initcall kernel.chainiv_module_init 0.4ms ±0.5ms (0.1%)  + 474.7ms: │ │ │ │ │ ▼  + 475.2ms: │ │ │ │ │ ▲ initcall kernel.eseqiv_module_init 0.2ms ±0.5ms (0.0%)  + 475.4ms: │ │ │ │ │ ▼  + 475.9ms: │ │ │ │ │ ▲ initcall kernel.crypto_null_mod_init 0.4ms ±0.6ms (0.1%)  + 476.3ms: │ │ │ │ │ ▼  + 477.0ms: │ │ │ │ │ ▲ initcall kernel.crc32c_mod_init 0.2ms ±0.4ms (0.0%)  + 477.2ms: │ │ │ │ │ ▼  + 477.4ms: │ │ │ │ │ ▲ initcall kernel.proc_genhd_init 0.7ms ±0.6ms (0.1%)  + 478.1ms: │ │ │ │ │ ▼  + 478.3ms: │ │ │ │ │ ▲ initcall kernel.bsg_init 0.9ms ±0.5ms (0.1%)  + 479.2ms: │ │ │ │ │ ▼  + 479.7ms: │ │ │ │ │ ▲ initcall kernel.noop_init 0.4ms ±0.5ms (0.1%)  + 480.1ms: │ │ │ │ │ ▼  + 480.8ms: │ │ │ │ │ ▲ initcall kernel.deadline_init 0.2ms ±0.4ms (0.0%)  + 481.0ms: │ │ │ │ │ ▼  + 481.7ms: │ │ │ │ │ ▲ initcall kernel.cfq_init 0.4ms ±0.5ms (0.1%)  + 482.2ms: │ │ │ │ │ ▼  + 482.8ms: │ │ │ │ │ ▲ initcall kernel.percpu_counter_startup 0.2ms ±0.5ms (0.0%)  + 483.1ms: │ │ │ │ │ ▼  + 483.3ms: │ │ │ │ │ ▲ initcall kernel.pci_proc_init 0.7ms ±0.6ms (0.1%)  + 484.0ms: │ │ │ │ │ ▼  + 484.2ms: │ │ │ │ │ ▲ initcall kernel.acpi_ac_init 0.2ms ±0.4ms (0.0%)  + 484.4ms: │ │ │ │ │ ▼  + 485.3ms: │ │ │ │ │ ▲ initcall kernel.acpi_button_driver_init 1.1ms ±0.0ms (0.1%)  + │ │ │ │ │ │  + 486.4ms: │ │ │ │ │ ▼  + 486.7ms: │ │ │ │ │ ▲ initcall kernel.acpi_fan_driver_init 0.7ms ±0.6ms (0.1%)  + 487.3ms: │ │ │ │ │ ▼  + 487.6ms: │ │ │ │ │ ▲ initcall kernel.acpi_processor_driver_init 1.3ms ±0.4ms (0.2%)  + │ │ │ │ │ │  + 488.9ms: │ │ │ │ │ ▼  + 489.8ms: │ │ │ │ │ ▲ initcall kernel.acpi_thermal_init 0.0ms ±0.0ms (0.0%)  + 489.8ms: │ │ │ │ │ ▼  + 490.0ms: │ │ │ │ │ ▲ initcall kernel.acpi_battery_init 0.9ms ±0.4ms (0.1%)  + 490.9ms: │ │ │ │ │ ▼  + 491.1ms: │ │ │ │ │ ▲ initcall kernel.pty_init 3.1ms ±0.2ms (0.4%)  + │ │ │ │ │ │  + 494.2ms: │ │ │ │ │ ▼  + 494.2ms: │ │ │ │ │ ▲ initcall kernel.serial8250_init 23.4ms ±0.1ms (2.8%)  + │ │ │ │ │ │  + 517.6ms: │ │ │ │ │ ▼  + 517.6ms: │ │ │ │ │ ▲ initcall kernel.serial_pci_driver_init 1.1ms ±0.0ms (0.1%)  + │ │ │ │ │ │  + 518.7ms: │ │ │ │ │ ▼  + 518.7ms: │ │ │ │ │ ▲ initcall kernel.topology_sysfs_init 1.1ms ±0.0ms (0.1%)  + │ │ │ │ │ │  + 519.8ms: │ │ │ │ │ ▼  + 519.8ms: │ │ │ │ │ ▲ initcall kernel.cacheinfo_sysfs_init 0.0ms ±0.0ms (0.0%)  + 519.8ms: │ │ │ │ │ ▼  + │ │ │ │ │  + 520.9ms: │ │ │ │ │ ▲ initcall kernel.pmem_init 0.0ms ±0.0ms (0.0%)  + 520.9ms: │ │ │ │ │ ▼  + 521.4ms: │ │ │ │ │ ▲ initcall kernel.nd_btt_init 0.7ms ±0.5ms (0.1%)  + 522.0ms: │ │ │ │ │ ▼  + 522.0ms: │ │ │ │ │ ▲ initcall kernel.nd_blk_init 0.2ms ±0.4ms (0.0%)  + 522.3ms: │ │ │ │ │ ▼  + 523.2ms: │ │ │ │ │ ▲ initcall kernel.init_sd 0.0ms ±0.0ms (0.0%)  + 523.2ms: │ │ │ │ │ ▼  + 523.4ms: │ │ │ │ │ ▲ initcall kernel.init_sg 0.7ms ±0.5ms (0.1%)  + 524.0ms: │ │ │ │ │ ▼  + 524.3ms: │ │ │ │ │ ▲ initcall kernel.net_olddevs_init 0.2ms ±0.4ms (0.0%)  + 524.5ms: │ │ │ │ │ ▼  + 525.4ms: │ │ │ │ │ ▲ initcall kernel.i8042_init 2.0ms ±0.3ms (0.2%)  + │ │ │ │ │ │  + 527.4ms: │ │ │ │ │ ▼  + 527.6ms: │ │ │ │ │ ▲ initcall kernel.serport_init 0.2ms ±0.4ms (0.0%)  + 527.9ms: │ │ │ │ │ ▼  + 528.5ms: │ │ │ │ │ ▲ initcall kernel.hid_init 0.0ms ±0.0ms (0.0%)  + 528.5ms: │ │ │ │ │ ▼  + 529.2ms: │ │ │ │ │ ▲ initcall kernel.hid_generic_init 0.4ms ±0.5ms (0.1%)  + 529.6ms: │ │ │ │ │ ▼  + 530.1ms: │ │ │ │ │ ▲ initcall kernel.sock_diag_init 0.2ms ±0.4ms (0.0%)  + 530.3ms: │ │ │ │ │ ▼  + 530.7ms: │ │ │ │ │ ▲ initcall kernel.hpet_insert_resource 0.4ms ±0.5ms (0.1%)  + 531.2ms: │ │ │ │ │ ▼  + 531.9ms: │ │ │ │ │ ▲ initcall kernel.update_mp_table 0.0ms ±0.0ms (0.0%)  + 531.9ms: │ │ │ │ │ ▼  + 532.5ms: │ │ │ │ │ ▲ initcall kernel.lapic_insert_resource 0.4ms ±0.5ms (0.1%)  + 533.0ms: │ │ │ │ │ ▼  + 533.2ms: │ │ │ │ │ ▲ initcall kernel.print_ICs 0.4ms ±0.5ms (0.1%)  + 533.6ms: │ │ │ │ │ ▼  + 534.1ms: │ │ │ │ │ ▲ initcall kernel.create_tlb_single_page_flush_ceiling 0.2ms ±0.4ms (0.0%)  + 534.3ms: │ │ │ │ │ ▼  + 535.2ms: │ │ │ │ │ ▲ initcall kernel.init_oops_id 0.2ms ±0.4ms (0.0%)  + 535.4ms: │ │ │ │ │ ▼  + 535.8ms: │ │ │ │ │ ▲ initcall kernel.sched_init_debug 0.4ms ±0.5ms (0.1%)  + 536.3ms: │ │ │ │ │ ▼  + 536.5ms: │ │ │ │ │ ▲ initcall kernel.pm_qos_power_init 0.7ms ±0.6ms (0.1%)  + 537.2ms: │ │ │ │ │ ▼  + 537.4ms: │ │ │ │ │ ▲ initcall kernel.printk_late_init 0.2ms ±0.4ms (0.0%)  + 537.6ms: │ │ │ │ │ ▼  + 538.5ms: │ │ │ │ │ ▲ initcall kernel.max_swapfiles_check 0.2ms ±0.4ms (0.0%)  + 538.7ms: │ │ │ │ │ ▼  + 539.0ms: │ │ │ │ │ ▲ initcall kernel.check_early_ioremap_leak 0.7ms ±0.5ms (0.1%)  + 539.6ms: │ │ │ │ │ ▼  + 539.8ms: │ │ │ │ │ ▲ initcall kernel.prandom_reseed 0.7ms ±0.5ms (0.1%)  + 540.5ms: │ │ │ │ │ ▼  + 541.0ms: │ │ │ │ │ ▲ initcall kernel.pci_resource_alignment_sysfs_init 0.2ms ±0.4ms (0.0%)  + 541.2ms: │ │ │ │ │ ▼  + 541.8ms: │ │ │ │ │ ▲ initcall kernel.pci_sysfs_init 0.2ms ±0.4ms (0.0%)  + 542.1ms: │ │ │ │ │ ▼  + 542.7ms: │ │ │ │ │ ▲ initcall kernel.deferred_probe_initcall 0.4ms ±0.5ms (0.1%)  + 543.2ms: │ │ │ │ │ ▼  + 543.4ms: │ │ │ │ │ ▲ initcall kernel.register_sk_filter_ops 0.7ms ±0.5ms (0.1%)  + 544.0ms: │ │ │ │ │ ▼  + 544.3ms: │ │ │ │ │ ▲ initcall kernel.init_default_flow_dissectors 0.4ms ±0.5ms (0.1%)  + 544.7ms: │ │ │ │ │ ▼  + │ │ │ │ │  + 545.9ms: │ │ │ │ ▼  + │ │ │ │  + 549.5ms: │ │ │ ▼  + 549.5ms: │ │ │ ▲ supermin:mini-initrd 82.1ms ±12.1ms (9.8%)  + │ │ │ │  + 551.8ms: │ │ │ │ ▲ insmod nfit 2.5ms ±0.1ms (0.3%)  + │ │ │ │ │  + 553.0ms: │ │ │ │ │ ▲ initcall nfit.nfit_init 1.3ms ±0.0ms (0.2%)  + │ │ │ │ │ │  + 554.2ms: │ │ │ │ │ ▼  + 554.2ms: │ │ │ │ ▼  + 554.2ms: │ │ │ │ ▲ insmod virtio 1.1ms ±0.0ms (0.1%)  + 554.2ms: │ │ │ │ │ ▲ initcall virtio.virtio_init 1.1ms ±0.0ms (0.1%)  + │ │ │ │ │ │  + 555.4ms: │ │ │ │ │ ▼  + 555.4ms: │ │ │ │ ▼  + 555.4ms: │ │ │ │ ▲ insmod virtio_ring 0.0ms ±0.0ms (0.0%)  + 555.4ms: │ │ │ │ ▼  + 555.4ms: │ │ │ │ ▲ insmod virtio_console 2.0ms ±0.4ms (0.2%)  + │ │ │ │ │  + 556.5ms: │ │ │ │ │ ▲ initcall virtio_console.init 0.0ms ±0.0ms (0.0%)  + 556.5ms: │ │ │ │ │ ▼  + 557.4ms: │ │ │ │ ▼  + 557.4ms: │ │ │ │ ▲ insmod virtio_scsi 1.3ms ±0.5ms (0.2%)  + 557.6ms: │ │ │ │ │ ▲ initcall virtio_scsi.init 0.0ms ±0.0ms (0.0%)  + 557.6ms: │ │ │ │ │ ▼  + │ │ │ │ │  + 558.7ms: │ │ │ │ ▼  + 558.7ms: │ │ │ │ ▲ insmod virtio_pci 69.5ms ±12.1ms (8.3%)  + 558.9ms: │ │ │ │ │ ▲ initcall virtio_pci.virtio_pci_driver_init 69.3ms ±12.2ms (8.3%)  + │ │ │ │ │ │  + 628.2ms: │ │ │ │ │ ▼  + 628.2ms: │ │ │ │ ▼  + │ │ │ │  + 631.6ms: │ │ │ ▼  + 631.6ms: │ │ │ ▲ ▲ /init 178.7ms ±1.0ms (21.3%) bash:overhead 2.5ms ±0.1ms (0.3%)  + │ │ │ │ │  + 634.1ms: │ │ │ │ ▼  + │ │ │ │  + 640.9ms: │ │ │ │ ▲ /init:mount-special 10.5ms ±0.2ms (1.2%)  + │ │ │ │ │  + 651.4ms: │ │ │ │ ▼  + 651.4ms: │ │ │ │ ▲ /init:kmod-static-nodes 4.7ms ±0.1ms (0.6%)  + │ │ │ │ │  + 656.1ms: │ │ │ │ ▼  + 656.1ms: │ │ │ │ ▲ /init:systemd-tmpfiles 2.2ms ±0.0ms (0.3%)  + │ │ │ │ │  + 658.3ms: │ │ │ │ ▼  + │ │ │ │  + 659.4ms: │ │ │ │ ▲ /init:udev-overhead 116.6ms ±0.5ms (13.9%)  + │ │ │ │ │  + 776.0ms: │ │ │ │ ▼  + │ │ │ │  + 790.6ms: │ │ │ │ ▲ /init:network-overhead 1.1ms ±0.0ms (0.1%)  + │ │ │ │ │  + 791.7ms: │ │ │ │ ▼  + 791.7ms: │ │ │ │ ▲ /init:md-probe 4.2ms ±0.1ms (0.5%)  + │ │ │ │ │  + 796.0ms: │ │ │ │ ▼  + 796.0ms: │ │ │ │ ▲ /init:lvm-probe 8.3ms ±0.5ms (1.0%)  + │ │ │ │ │  + 804.3ms: │ │ │ │ ▼  + 804.3ms: │ │ │ │ ▲ /init:windows-dynamic-disks-probe 3.8ms ±0.4ms (0.4%)  + │ │ │ │ │  + 808.0ms: │ │ │ │ ▼  + │ │ │ │  + 810.4ms: │ │ │ ▼  + 810.4ms: │ │ │ ▲ guestfsd 12.8ms ±0.6ms (1.5%)  + │ │ │ │  + 817.5ms: │ │ │ │ ▲ shutdown 20.8ms ±0.3ms (2.5%)  + │ │ │ │ │  + 823.1ms: │ │ │ ▼ │  + │ │ │ │  + 838.4ms: ▼ ▼ ▼ │  + 838.4ms:  ▼  + +Longest activities: + +run 838.4ms ±5.5ms (100.0%)  +qemu 825.4ms ±5.6ms (98.4%)  +kernel 678.2ms ±6.2ms (80.9%)  +kernel:overhead 389.4ms ±9.6ms (46.4%)  +kernel:initcalls-before-userspace 329.1ms ±8.8ms (39.3%)  +/init 178.7ms ±1.0ms (21.3%)  +/init:udev-overhead 116.6ms ±0.5ms (13.9%)  +initcall kernel.acpi_init 98.7ms ±5.7ms (11.8%)  +qemu:overhead 96.7ms ±1.0ms (11.5%)  +supermin:mini-initrd 82.1ms ±12.1ms (9.8%)  +insmod virtio_pci 69.5ms ±12.1ms (8.3%)  +initcall virtio_pci.virtio_pci_driver_init 69.3ms ±12.2ms (8.3%)  +bios:overhead 50.5ms ±0.5ms (6.0%)  +seabios 48.5ms ±0.2ms (5.8%)  +initcall kernel.serial8250_init 23.4ms ±0.1ms (2.8%)  +shutdown 20.8ms ±0.3ms (2.5%)  +guestfsd 12.8ms ±0.6ms (1.5%)  +supermin:build 10.6ms ±0.2ms (1.3%)  +/init:mount-special 10.5ms ±0.2ms (1.2%)  +/init:lvm-probe 8.3ms ±0.5ms (1.0%)  +initcall kernel.init_acpi_pm_clocksource 5.4ms ±0.4ms (0.6%)  +kernel:alternatives 4.9ms ±0.2ms (0.6%)  +/init:kmod-static-nodes 4.7ms ±0.1ms (0.6%)  +/init:md-probe 4.2ms ±0.1ms (0.5%)  +/init:windows-dynamic-disks-probe 3.8ms ±0.4ms (0.4%)  +initcall kernel.pnpacpi_init 3.7ms ±0.4ms (0.4%)  +initcall kernel.init_hw_perf_events 3.4ms ±0.0ms (0.4%)  +initcall kernel.pty_init 3.1ms ±0.2ms (0.4%)  +insmod nfit 2.5ms ±0.1ms (0.3%)  +bash:overhead 2.5ms ±0.1ms (0.3%)  +initcall kernel.pcibios_assign_resources 2.3ms ±0.0ms (0.3%)  +initcall kernel.pci_subsys_init 2.2ms ±0.0ms (0.3%)  +/init:systemd-tmpfiles 2.2ms ±0.0ms (0.3%)  +initcall kernel.i8042_init 2.0ms ±0.3ms (0.2%)  +sgabios 2.0ms ±0.4ms (0.2%)  +initcall kernel.pci_apply_final_quirks 2.0ms ±0.5ms (0.2%)  +insmod virtio_console 2.0ms ±0.4ms (0.2%)  +initcall kernel.acpi_processor_driver_init 1.3ms ±0.4ms (0.2%)  +initcall kernel.populate_rootfs 1.3ms ±0.4ms (0.2%)  +insmod virtio_scsi 1.3ms ±0.5ms (0.2%)  +initcall nfit.nfit_init 1.3ms ±0.0ms (0.2%)  +initcall kernel.init_jiffies_clocksource 1.1ms ±0.0ms (0.1%)  +initcall kernel.acpi_button_driver_init 1.1ms ±0.0ms (0.1%)  +initcall kernel.init_scsi 1.1ms ±0.0ms (0.1%)  +/init:network-overhead 1.1ms ±0.0ms (0.1%)  +insmod virtio 1.1ms ±0.0ms (0.1%)  +initcall virtio.virtio_init 1.1ms ±0.0ms (0.1%)  +initcall kernel.topology_sysfs_init 1.1ms ±0.0ms (0.1%)  +initcall kernel.serial_pci_driver_init 1.1ms ±0.0ms (0.1%)  +initcall kernel.param_sysfs_init 1.0ms ±0.5ms (0.1%)  +initcall kernel.perf_event_sysfs_init 0.9ms ±0.5ms (0.1%)  +initcall kernel.vga_arb_device_init 0.9ms ±0.5ms (0.1%)  +initcall kernel.af_unix_init 0.9ms ±0.5ms (0.1%)  +initcall kernel.bsg_init 0.9ms ±0.5ms (0.1%)  +initcall kernel.reboot_init 0.9ms ±0.5ms (0.1%)  +initcall kernel.futex_init 0.9ms ±0.4ms (0.1%)  +initcall kernel.libnvdimm_init 0.9ms ±0.4ms (0.1%)  +initcall kernel.pci_arch_init 0.9ms ±0.4ms (0.1%)  +initcall kernel.acpi_battery_init 0.9ms ±0.4ms (0.1%)  +initcall kernel.chr_dev_init 0.8ms ±0.6ms (0.1%)  +initcall kernel.slab_sysfs_init 0.7ms ±0.6ms (0.1%)  +initcall kernel.clocksource_done_booting 0.7ms ±0.6ms (0.1%)  +initcall kernel.cpu_stop_init 0.7ms ±0.6ms (0.1%)  +initcall kernel.acpi_fan_driver_init 0.7ms ±0.6ms (0.1%)  +initcall kernel.pci_proc_init 0.7ms ±0.6ms (0.1%)  +initcall kernel.rcu_spawn_gp_kthread 0.7ms ±0.6ms (0.1%)  +initcall kernel.init_timer_list_procfs 0.7ms ±0.6ms (0.1%)  +initcall kernel.proc_genhd_init 0.7ms ±0.6ms (0.1%)  +initcall kernel.pm_qos_power_init 0.7ms ±0.6ms (0.1%)  +initcall kernel.mm_compute_batch_init 0.7ms ±0.6ms (0.1%)  +initcall kernel.set_real_mode_permissions 0.7ms ±0.6ms (0.1%)  +initcall kernel.bdi_class_init 0.7ms ±0.6ms (0.1%)  +initcall kernel.acpi_pci_init 0.7ms ±0.5ms (0.1%)  +initcall kernel.init_ladder 0.7ms ±0.5ms (0.1%)  +initcall kernel.proc_version_init 0.7ms ±0.5ms (0.1%)  +initcall kernel.msr_init 0.7ms ±0.5ms (0.1%)  +initcall kernel.init_workqueues 0.7ms ±0.5ms (0.1%)  +initcall kernel.proc_cmdline_init 0.7ms ±0.5ms (0.1%)  +initcall kernel.netlink_proto_init 0.7ms ±0.5ms (0.1%)  +initcall kernel.sysfb_init 0.7ms ±0.5ms (0.1%)  +initcall kernel.pcibus_class_init 0.7ms ±0.5ms (0.1%)  +initcall kernel.genl_init 0.7ms ±0.5ms (0.1%)  +initcall kernel.start_dirtytime_writeback 0.7ms ±0.5ms (0.1%)  +initcall kernel.proto_init 0.7ms ±0.5ms (0.1%)  +initcall kernel.workingset_init 0.7ms ±0.5ms (0.1%)  +initcall kernel.power_supply_class_init 0.7ms ±0.5ms (0.1%)  +initcall kernel.init_clocksource_sysfs 0.7ms ±0.5ms (0.1%)  +initcall kernel.fanotify_user_setup 0.7ms ±0.5ms (0.1%)  +initcall kernel.check_early_ioremap_leak 0.7ms ±0.5ms (0.1%)  +initcall kernel.register_sk_filter_ops 0.7ms ±0.5ms (0.1%)  +initcall kernel.prandom_reseed 0.7ms ±0.5ms (0.1%)  +initcall kernel.nd_btt_init 0.7ms ±0.5ms (0.1%)  +initcall kernel.init_sg 0.7ms ±0.5ms (0.1%)  +initcall kernel.genhd_device_init 0.7ms ±0.5ms (0.1%)  +initcall kernel.init_elf_binfmt 0.5ms ±0.6ms (0.1%)  +initcall kernel.vtconsole_class_init 0.5ms ±0.6ms (0.1%)  +initcall kernel.kobject_uevent_init 0.5ms ±0.6ms (0.1%)  +initcall kernel.init_tsc_clocksource 0.5ms ±0.6ms (0.1%)  +initcall kernel.proc_dma_init 0.5ms ±0.6ms (0.1%)  +initcall kernel.init_zero_pfn 0.5ms ±0.6ms (0.1%)  +initcall kernel.proc_meminfo_init 0.5ms ±0.6ms (0.1%)  +initcall kernel.init_posix_timers 0.5ms ±0.6ms (0.1%)  +initcall kernel.boot_params_ksysfs_init 0.5ms ±0.6ms (0.1%)  +initcall kernel.init_script_binfmt 0.5ms ±0.6ms (0.1%)  +initcall kernel.default_bdi_init 0.5ms ±0.6ms (0.1%)  +initcall kernel.arch_kdebugfs_init 0.5ms ±0.6ms (0.1%)  +initcall kernel.proc_devices_init 0.5ms ±0.6ms (0.1%)  +initcall kernel.pt_init 0.5ms ±0.6ms (0.1%)  +initcall kernel.init_user_reserve 0.5ms ±0.6ms (0.1%)  +initcall kernel.tty_class_init 0.5ms ±0.6ms (0.1%)  +initcall kernel.utsname_sysctl_init 0.5ms ±0.6ms (0.1%)  +initcall kernel.proc_filesystems_init 0.5ms ±0.6ms (0.1%)  +initcall kernel.cstate_pmu_init 0.5ms ±0.6ms (0.1%)  +initcall kernel.check_cpu_stall_init 0.5ms ±0.6ms (0.1%)  +initcall kernel.crypto_null_mod_init 0.4ms ±0.6ms (0.1%)  +initcall kernel.pci_slot_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.proc_page_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.cfq_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.proc_modules_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.proc_kmsg_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.register_trigger_all_cpu_backtrace 0.4ms ±0.5ms (0.1%)  +initcall kernel.chainiv_module_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.fsnotify_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.nmi_warning_debugfs 0.4ms ±0.5ms (0.1%)  +initcall kernel.eventpoll_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.init_nls_utf8 0.4ms ±0.5ms (0.1%)  +initcall kernel.noop_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.net_ns_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.slab_proc_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.sbf_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.init_sched_debug_procfs 0.4ms ±0.5ms (0.1%)  +initcall kernel.add_rtc_cmos 0.4ms ±0.5ms (0.1%)  +initcall kernel.inotify_user_setup 0.4ms ±0.5ms (0.1%)  +initcall kernel.intel_uncore_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.proc_interrupts_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.crypto_algapi_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.uid_cache_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.spawn_ksoftirqd 0.4ms ±0.5ms (0.1%)  +initcall kernel.init_default_flow_dissectors 0.4ms ±0.5ms (0.1%)  +initcall kernel.print_ICs 0.4ms ±0.5ms (0.1%)  +initcall kernel.lapic_insert_resource 0.4ms ±0.5ms (0.1%)  +initcall kernel.hpet_insert_resource 0.4ms ±0.5ms (0.1%)  +initcall kernel.percpu_enable_async 0.4ms ±0.5ms (0.1%)  +initcall kernel.proc_uptime_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.sched_init_debug 0.4ms ±0.5ms (0.1%)  +initcall kernel.hid_generic_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.deferred_probe_initcall 0.4ms ±0.5ms (0.1%)  +initcall kernel.blk_settings_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.crypto_wq_init 0.4ms ±0.5ms (0.1%)  +initcall kernel.dnotify_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.pmc_atom_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.cpuidle_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.net_dev_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.init_per_zone_wmark_min 0.2ms ±0.5ms (0.0%)  +initcall kernel.clockevents_init_sysfs 0.2ms ±0.5ms (0.0%)  +initcall kernel.proc_execdomains_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.journal_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.init_pipe_fs 0.2ms ±0.5ms (0.0%)  +initcall kernel.blk_softirq_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.i8237A_init_ops 0.2ms ±0.5ms (0.0%)  +initcall kernel.ffh_cstate_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.ioapic_init_ops 0.2ms ±0.5ms (0.0%)  +initcall kernel.activate_jump_labels 0.2ms ±0.5ms (0.0%)  +initcall kernel.eseqiv_module_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.timekeeping_init_ops 0.2ms ±0.5ms (0.0%)  +initcall kernel.fcntl_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.pci_iommu_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.proc_cpuinfo_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.pnp_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.proc_locks_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.blk_scsi_ioctl_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.topology_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.amd_ibs_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.proc_stat_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.blk_mq_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.ioresources_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.eth_offload_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.percpu_counter_startup 0.2ms ±0.5ms (0.0%)  +initcall kernel.sock_init 0.2ms ±0.5ms (0.0%)  +initcall kernel.init_bio 0.2ms ±0.5ms (0.0%)  +initcall kernel.register_kernel_offset_dumper 0.2ms ±0.5ms (0.0%)  +initcall kernel.rapl_pmu_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.nd_blk_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.crc32c_mod_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.i8259A_init_ops 0.2ms ±0.4ms (0.0%)  +initcall kernel.procswaps_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.init_devpts_fs 0.2ms ±0.4ms (0.0%)  +initcall kernel.prandom_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.init_vdso 0.2ms ±0.4ms (0.0%)  +initcall kernel.create_tlb_single_page_flush_ceiling 0.2ms ±0.4ms (0.0%)  +initcall kernel.init_reserve_notifier 0.2ms ±0.4ms (0.0%)  +initcall kernel.deadline_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.max_swapfiles_check 0.2ms ±0.4ms (0.0%)  +initcall kernel.bts_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.acpi_event_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.pci_driver_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.blk_ioc_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.pci_resource_alignment_sysfs_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.proc_loadavg_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.proc_consoles_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.serport_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.acpi_reserve_resources 0.2ms ±0.4ms (0.0%)  +initcall kernel.proc_vmalloc_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.ext4_init_fs 0.2ms ±0.4ms (0.0%)  +initcall kernel.cryptomgr_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.printk_late_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.sock_diag_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.init_oops_id 0.2ms ±0.4ms (0.0%)  +initcall kernel.net_olddevs_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.pnp_system_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.pci_sysfs_init 0.2ms ±0.4ms (0.0%)  +initcall kernel.acpi_ac_init 0.2ms ±0.4ms (0.0%)  +qemu:feature-detect 0.1ms ±0.0ms (0.0%)  +initcall virtio_scsi.init 0.0ms ±0.0ms (0.0%)  +initcall kernel.init_mmap_min_addr 0.0ms ±0.0ms (0.0%)  +initcall kernel.init_cpu_syscore 0.0ms ±0.0ms (0.0%)  +initcall kernel.ksysfs_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.setup_vmstat 0.0ms ±0.0ms (0.0%)  +initcall kernel.acpi_thermal_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.misc_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.kallsyms_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.mbcache_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.filelock_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.input_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.e820_mark_nvs_memory 0.0ms ±0.0ms (0.0%)  +initcall kernel.thermal_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.rand_initialize 0.0ms ±0.0ms (0.0%)  +initcall kernel.dio_init 0.0ms ±0.0ms (0.0%)  +initcall virtio_console.init 0.0ms ±0.0ms (0.0%)  +initcall kernel.mm_sysfs_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.anon_inode_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.hpet_late_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.sysctl_core_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.init_admin_reserve 0.0ms ±0.0ms (0.0%)  +initcall kernel.neigh_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.init_posix_cpu_timers 0.0ms ±0.0ms (0.0%)  +initcall kernel.aio_setup 0.0ms ±0.0ms (0.0%)  +initcall kernel.pmem_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.proc_softirqs_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.alarmtimer_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.kswapd_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.oom_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.init_sd 0.0ms ±0.0ms (0.0%)  +initcall kernel.migration_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.intel_cqm_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.validate_x2apic 0.0ms ±0.0ms (0.0%)  +initcall kernel.init_ramfs_fs 0.0ms ±0.0ms (0.0%)  +initcall kernel.wq_sysfs_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.update_mp_table 0.0ms ±0.0ms (0.0%)  +initcall kernel.hid_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.fixup_ht_bug 0.0ms ±0.0ms (0.0%)  +initcall kernel.serio_init 0.0ms ±0.0ms (0.0%)  +initcall kernel.cacheinfo_sysfs_init 0.0ms ±0.0ms (0.0%)  +insmod virtio_ring 0.0ms ±0.0ms (0.0%)  diff --git a/2016-kvm-forum/boot-analysis-screenshot-2.png b/2016-kvm-forum/boot-analysis-screenshot-2.png new file mode 100644 index 0000000000000000000000000000000000000000..9227a3b2ce28efbf842c86d6ac9239e46e24fa73 GIT binary patch literal 79611 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 OpM;34aKRIuH~$|c11Pcp literal 0 HcmV?d00001 diff --git a/2016-kvm-forum/boot-analysis-screenshot-2.xcf b/2016-kvm-forum/boot-analysis-screenshot-2.xcf new file mode 100644 index 0000000000000000000000000000000000000000..d84aaaa87655264cda0948238c66e0a26b716772 GIT binary patch literal 175623 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

ro2gFf_&2);kN_f-=4+N6lLKFqIQ! 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 literal 0 HcmV?d00001 diff --git a/2016-kvm-forum/boot-analysis-screenshot.xcf b/2016-kvm-forum/boot-analysis-screenshot.xcf new file mode 100644 index 0000000000000000000000000000000000000000..ffd8f6fcf670edb07ab7458b49049ebdd70d5362 GIT binary patch literal 176716 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ⅅ`o+ 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 IeH}snA9J1YW&i*H literal 0 HcmV?d00001 diff --git a/2016-kvm-forum/kernel-config-minimal b/2016-kvm-forum/kernel-config-minimal new file mode 100644 index 0000000..4d06670 --- /dev/null +++ b/2016-kvm-forum/kernel-config-minimal @@ -0,0 +1,1837 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 4.6.0 Kernel Configuration +# +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11" +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_DEBUG_RODATA=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_CROSS_COMPILE="" +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_KERNEL_GZIP=y +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_XZ is not set +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SWAP=y +# CONFIG_SYSVIPC is not set +# CONFIG_POSIX_MQUEUE is not set +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_FHANDLE is not set +# CONFIG_USELIB is not set +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_HZ_PERIODIC=y +# CONFIG_NO_HZ_IDLE is not set +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ is not set +# CONFIG_HIGH_RES_TIMERS is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +# CONFIG_TASKS_RCU is not set +CONFIG_RCU_STALL_COMMON=y +# CONFIG_TREE_RCU_TRACE is not set +# CONFIG_RCU_EXPEDITE_BOOT is not set +# CONFIG_BUILD_BIN2C is not set +# CONFIG_IKCONFIG is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_CGROUPS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="" +CONFIG_RD_GZIP=y +CONFIG_RD_BZIP2=y +CONFIG_RD_LZMA=y +CONFIG_RD_XZ=y +CONFIG_RD_LZO=y +CONFIG_RD_LZ4=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_SYSCTL=y +CONFIG_ANON_INODES=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +# CONFIG_MULTIUSER is not set +# CONFIG_SGETMASK_SYSCALL is not set +# CONFIG_SYSFS_SYSCALL is not set +# CONFIG_SYSCTL_SYSCALL is not set +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_PRINTK=y +CONFIG_BUG=y +# CONFIG_PCSPKR_PLATFORM is not set +# CONFIG_BASE_FULL is not set +CONFIG_FUTEX=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +# CONFIG_BPF_SYSCALL is not set +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_ADVISE_SYSCALLS=y +# CONFIG_USERFAULTFD is not set +CONFIG_PCI_QUIRKS=y +# CONFIG_MEMBARRIER is not set +CONFIG_EMBEDDED=y +CONFIG_HAVE_PERF_EVENTS=y + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# CONFIG_VM_EVENT_COUNTERS is not set +CONFIG_SLUB_DEBUG=y +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +# CONFIG_SLOB is not set +CONFIG_SLUB_CPU_PARTIAL=y +# CONFIG_SYSTEM_DATA_VERIFICATION is not set +# CONFIG_PROFILING is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +# CONFIG_KPROBES is not set +# CONFIG_JUMP_LABEL is not set +# CONFIG_UPROBES is not set +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_CC_STACKPROTECTOR=y +# CONFIG_CC_STACKPROTECTOR is not set +CONFIG_CC_STACKPROTECTOR_NONE=y +# CONFIG_CC_STACKPROTECTOR_REGULAR is not set +# CONFIG_CC_STACKPROTECTOR_STRONG is not set +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y + +# +# GCOV-based kernel profiling +# +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_SLABINFO=y +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=1 +CONFIG_MODULES=y +# CONFIG_MODULE_FORCE_LOAD is not set +# CONFIG_MODULE_UNLOAD is not set +# CONFIG_MODVERSIONS is not set +# CONFIG_MODULE_SRCVERSION_ALL is not set +# CONFIG_MODULE_SIG is not set +# CONFIG_MODULE_COMPRESS is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_DEV_BSG=y +# CONFIG_BLK_DEV_BSGLIB is not set +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_CMDLINE_PARSER is not set + +# +# Partition Types +# +# CONFIG_PARTITION_ADVANCED is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_EFI_PARTITION=y + +# +# IO Schedulers +# +CONFIG_IOSCHED_NOOP=y +CONFIG_IOSCHED_DEADLINE=y +CONFIG_IOSCHED_CFQ=y +# CONFIG_DEFAULT_DEADLINE is not set +CONFIG_DEFAULT_CFQ=y +# CONFIG_DEFAULT_NOOP is not set +CONFIG_DEFAULT_IOSCHED="cfq" +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +# CONFIG_FREEZER is not set + +# +# Processor type and features +# +# CONFIG_ZONE_DMA is not set +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +# CONFIG_X86_FAST_FEATURE_TESTS is not set +# CONFIG_X86_X2APIC is not set +CONFIG_X86_MPPARSE=y +# CONFIG_GOLDFISH is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +# CONFIG_SCHED_OMIT_FRAME_POINTER is not set +CONFIG_HYPERVISOR_GUEST=y +CONFIG_PARAVIRT=y +# CONFIG_PARAVIRT_DEBUG is not set +# CONFIG_PARAVIRT_SPINLOCKS is not set +# CONFIG_XEN is not set +CONFIG_KVM_GUEST=y +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_PARAVIRT_CLOCK=y +CONFIG_NO_BOOTMEM=y +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +CONFIG_MCORE2=y +# CONFIG_MATOM is not set +# CONFIG_GENERIC_CPU is not set +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_INTEL_USERCOPY=y +CONFIG_X86_USE_PPRO_CHECKSUM=y +CONFIG_X86_P6_NOP=y +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_PROCESSOR_SELECT=y +CONFIG_CPU_SUP_INTEL=y +# CONFIG_CPU_SUP_AMD is not set +# CONFIG_CPU_SUP_CENTAUR is not set +CONFIG_HPET_TIMER=y +# CONFIG_DMI is not set +# CONFIG_CALGARY_IOMMU is not set +CONFIG_SWIOTLB=y +CONFIG_IOMMU_HELPER=y +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS=64 +# CONFIG_SCHED_SMT is not set +CONFIG_SCHED_MC=y +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREEMPT is not set +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +# CONFIG_X86_MCE is not set + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_VM86 is not set +CONFIG_X86_VSYSCALL_EMULATION=y +# CONFIG_I8K is not set +# CONFIG_MICROCODE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_NUMA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +# CONFIG_ARCH_MEMORY_PROBE is not set +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_MEMBLOCK=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_ARCH_DISCARD_MEMBLOCK=y +CONFIG_MEMORY_ISOLATION=y +CONFIG_HAVE_BOOTMEM_INFO_NODE=y +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG_SPARSE=y +CONFIG_MEMORY_HOTREMOVE=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +# CONFIG_COMPACTION is not set +CONFIG_MIGRATION=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_ZONE_DMA_FLAG=0 +CONFIG_VIRT_TO_BUS=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +# CONFIG_TRANSPARENT_HUGEPAGE is not set +# CONFIG_CLEANCACHE is not set +# CONFIG_FRONTSWAP is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ZONE_DEVICE=y +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y +# CONFIG_X86_PMEM_LEGACY is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +# CONFIG_MTRR is not set +# CONFIG_ARCH_RANDOM is not set +# CONFIG_X86_SMAP is not set +# CONFIG_X86_INTEL_MPX is not set +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +# CONFIG_EFI is not set +# CONFIG_SECCOMP is not set +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +# CONFIG_SCHED_HRTICK is not set +# CONFIG_KEXEC is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +# CONFIG_RELOCATABLE is not set +CONFIG_PHYSICAL_ALIGN=0x200000 +# CONFIG_HOTPLUG_CPU is not set +# CONFIG_LEGACY_VSYSCALL_NATIVE is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_NONE is not set +# CONFIG_CMDLINE_BOOL is not set +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y + +# +# Power management and ACPI options +# +# CONFIG_SUSPEND is not set +# CONFIG_HIBERNATION is not set +# CONFIG_PM is not set +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +# CONFIG_ACPI_PROCFS_POWER is not set +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_PROCESSOR=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y +CONFIG_ACPI_CUSTOM_DSDT_FILE="" +# CONFIG_ACPI_CUSTOM_DSDT is not set +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +CONFIG_X86_PM_TIMER=y +# CONFIG_ACPI_CONTAINER is not set +# CONFIG_ACPI_HOTPLUG_MEMORY is not set +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +CONFIG_ACPI_NFIT=m +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +# CONFIG_CPU_FREQ is not set + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +# CONFIG_CPU_IDLE_GOV_MENU is not set +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +# CONFIG_INTEL_IDLE is not set + +# +# Memory power savings +# +# CONFIG_I7300_IDLE is not set + +# +# Bus options (PCI etc.) +# +CONFIG_PCI=y +CONFIG_PCI_DIRECT=y +# CONFIG_PCI_MMCONFIG is not set +CONFIG_PCI_DOMAINS=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_PCIEPORTBUS is not set +CONFIG_PCI_BUS_ADDR_T_64BIT=y +# CONFIG_PCI_MSI is not set +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set +# CONFIG_PCI_STUB is not set +CONFIG_HT_IRQ=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_HOTPLUG_PCI is not set + +# +# PCI host controller drivers +# +# CONFIG_PCIE_DW_PLAT is not set +CONFIG_ISA_DMA_API=y +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set +# CONFIG_X86_SYSFB is not set + +# +# Executable file formats / Emulations +# +CONFIG_BINFMT_ELF=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_HAVE_AOUT is not set +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +CONFIG_X86_DEV_DMA_OPS=y +CONFIG_PMC_ATOM=y +CONFIG_NET=y + +# +# Networking options +# +# CONFIG_PACKET is not set +CONFIG_UNIX=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_NET_KEY is not set +# CONFIG_INET is not set +# CONFIG_NETWORK_SECMARK is not set +# CONFIG_NET_PTP_CLASSIFY is not set +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_ATM is not set +# CONFIG_BRIDGE is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_IPX is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_DIAG is not set +# CONFIG_MPLS is not set +# CONFIG_HSR is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +# CONFIG_SOCK_CGROUP_DATA is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +# CONFIG_BPF_JIT is not set +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_IRDA is not set +# CONFIG_BT is not set +CONFIG_WIRELESS=y +# CONFIG_CFG80211 is not set +# CONFIG_LIB80211 is not set + +# +# CFG80211 needs to be enabled for MAC80211 +# +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +# CONFIG_NET_9P is not set +# CONFIG_CAIF is not set +# CONFIG_NFC is not set +# CONFIG_LWTUNNEL is not set +# CONFIG_DST_CACHE is not set +# CONFIG_NET_DEVLINK is not set +CONFIG_MAY_USE_DEVLINK=y +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +# CONFIG_DEVTMPFS_MOUNT is not set +# CONFIG_STANDALONE is not set +# CONFIG_PREVENT_FIRMWARE_BUILD is not set +# CONFIG_FW_LOADER is not set +# CONFIG_ALLOW_DEV_COREDUMP is not set +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_SYS_HYPERVISOR is not set +# CONFIG_GENERIC_CPU_DEVICES is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +# CONFIG_DMA_SHARED_BUFFER is not set + +# +# Bus devices +# +# CONFIG_CONNECTOR is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_FD is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_CPQ_CISS_DA is not set +# CONFIG_BLK_DEV_DAC960 is not set +# CONFIG_BLK_DEV_UMEM is not set +# CONFIG_BLK_DEV_COW_COMMON is not set +# CONFIG_BLK_DEV_LOOP is not set + +# +# DRBD disabled because PROC_FS or INET not selected +# +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +CONFIG_BLK_DEV_RAM=m +CONFIG_BLK_DEV_RAM_COUNT=16 +CONFIG_BLK_DEV_RAM_SIZE=4096 +# CONFIG_BLK_DEV_RAM_DAX is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_VIRTIO_BLK is not set +# CONFIG_BLK_DEV_HD is not set +# CONFIG_BLK_DEV_RSXX is not set +# CONFIG_BLK_DEV_NVME is not set + +# +# Misc devices +# +# CONFIG_SENSORS_LIS3LV02D is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_SGI_IOC4 is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_SRAM is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# + +# +# Altera FPGA firmware download module +# +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC Bus Driver +# +# CONFIG_INTEL_MIC_BUS is not set + +# +# SCIF Bus Driver +# +# CONFIG_SCIF_BUS is not set + +# +# VOP Bus Driver +# +# CONFIG_VOP_BUS is not set + +# +# Intel MIC Host Driver +# + +# +# Intel MIC Card Driver +# + +# +# SCIF Driver +# + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# + +# +# VOP Driver +# +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_CXL_BASE is not set +# CONFIG_CXL_KERNEL_API is not set +# CONFIG_CXL_EEH is not set +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +# CONFIG_SCSI_NETLINK is not set +# CONFIG_SCSI_MQ_DEFAULT is not set +CONFIG_SCSI_PROC_FS=y + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_CHR_DEV_OSST is not set +# CONFIG_BLK_DEV_SR is not set +CONFIG_CHR_DEV_SG=y +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +# CONFIG_SCSI_SPI_ATTRS is not set +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_ISCSI_ATTRS is not set +# CONFIG_SCSI_SAS_ATTRS is not set +# CONFIG_SCSI_SAS_LIBSAS is not set +# CONFIG_SCSI_SRP_ATTRS is not set +CONFIG_SCSI_LOWLEVEL=y +# CONFIG_ISCSI_BOOT_SYSFS is not set +# CONFIG_SCSI_BNX2_ISCSI is not set +# CONFIG_BE2ISCSI is not set +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set +# CONFIG_SCSI_HPSA is not set +# CONFIG_SCSI_3W_9XXX is not set +# CONFIG_SCSI_3W_SAS is not set +# CONFIG_SCSI_ACARD is not set +# CONFIG_SCSI_AACRAID is not set +# CONFIG_SCSI_AIC7XXX is not set +# CONFIG_SCSI_AIC79XX is not set +# CONFIG_SCSI_AIC94XX is not set +# CONFIG_SCSI_MVSAS is not set +# CONFIG_SCSI_MVUMI is not set +# CONFIG_SCSI_DPT_I2O is not set +# CONFIG_SCSI_ADVANSYS is not set +# CONFIG_SCSI_ARCMSR is not set +# CONFIG_SCSI_ESAS2R is not set +# CONFIG_MEGARAID_NEWGEN is not set +# CONFIG_MEGARAID_LEGACY is not set +# CONFIG_MEGARAID_SAS is not set +# CONFIG_SCSI_MPT3SAS is not set +# CONFIG_SCSI_MPT2SAS is not set +# CONFIG_SCSI_UFSHCD is not set +# CONFIG_SCSI_HPTIOP is not set +# CONFIG_SCSI_BUSLOGIC is not set +# CONFIG_VMWARE_PVSCSI is not set +# CONFIG_SCSI_SNIC is not set +# CONFIG_SCSI_DMX3191D is not set +# CONFIG_SCSI_EATA is not set +# CONFIG_SCSI_FUTURE_DOMAIN is not set +# CONFIG_SCSI_GDTH is not set +# CONFIG_SCSI_ISCI is not set +# CONFIG_SCSI_IPS is not set +# CONFIG_SCSI_INITIO is not set +# CONFIG_SCSI_INIA100 is not set +# CONFIG_SCSI_STEX is not set +# CONFIG_SCSI_SYM53C8XX_2 is not set +# CONFIG_SCSI_QLOGIC_1280 is not set +# CONFIG_SCSI_QLA_ISCSI is not set +# CONFIG_SCSI_DC395x is not set +# CONFIG_SCSI_AM53C974 is not set +# CONFIG_SCSI_WD719X is not set +# CONFIG_SCSI_DEBUG is not set +# CONFIG_SCSI_PMCRAID is not set +# CONFIG_SCSI_PM8001 is not set +CONFIG_SCSI_VIRTIO=m +# CONFIG_SCSI_DH is not set +# CONFIG_SCSI_OSD_INITIATOR is not set +# CONFIG_ATA is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# CONFIG_MACINTOSH_DRIVERS is not set +# CONFIG_NETDEVICES is not set +# CONFIG_VHOST_NET is not set +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +# CONFIG_INPUT_KEYBOARD is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_HW_CONSOLE=y +# CONFIG_VT_HW_CONSOLE_BINDING is not set +CONFIG_UNIX98_PTYS=y +# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=256 +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_NOZOMI is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set +CONFIG_DEVMEM=y +CONFIG_DEVKMEM=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +# CONFIG_SERIAL_8250_EXTENDED is not set +# CONFIG_SERIAL_8250_FSL is not set +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_RT288X is not set +# CONFIG_SERIAL_8250_FINTEK is not set +# CONFIG_SERIAL_8250_MID is not set +# CONFIG_SERIAL_8250_MOXA is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_MVEBU_UART is not set +# CONFIG_TTY_PRINTK is not set +CONFIG_HVC_DRIVER=y +CONFIG_VIRTIO_CONSOLE=m +# CONFIG_IPMI_HANDLER is not set +# CONFIG_HW_RANDOM is not set +# CONFIG_NVRAM is not set +# CONFIG_R3964 is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +# CONFIG_RAW_DRIVER is not set +# CONFIG_HPET is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +CONFIG_DEVPORT=y +# CONFIG_XILLYBUS is not set + +# +# I2C support +# +# CONFIG_I2C is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set + +# +# PPS support +# +# CONFIG_PPS is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +# CONFIG_PTP_1588_CLOCK is not set + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_CHARGER_MAX8903 is not set +CONFIG_POWER_RESET=y +# CONFIG_POWER_RESET_RESTART is not set +# CONFIG_POWER_AVS is not set +# CONFIG_HWMON is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_WRITABLE_TRIPS is not set +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set +# CONFIG_THERMAL_GOV_FAIR_SHARE is not set +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_BANG_BANG is not set +# CONFIG_THERMAL_GOV_USER_SPACE is not set +# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set +# CONFIG_THERMAL_EMULATION is not set +# CONFIG_INTEL_POWERCLAMP is not set +# CONFIG_INTEL_SOC_DTS_THERMAL is not set + +# +# ACPI INT340X thermal drivers +# +# CONFIG_INT340X_THERMAL is not set +# CONFIG_INTEL_PCH_THERMAL is not set +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y + +# +# Sonics Silicon Backplane +# +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y + +# +# Broadcom specific AMBA +# +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_CORE is not set +# CONFIG_MFD_CROS_EC is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RTSX_PCI is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_TMIO is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_REGULATOR is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +# CONFIG_VGA_SWITCHEROO is not set +# CONFIG_DRM is not set + +# +# ACP (Audio CoProcessor) Configuration +# +# CONFIG_DRM_AMD_ACP is not set + +# +# Frame buffer Devices +# +# CONFIG_FB is not set +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set +# CONFIG_VGASTATE is not set + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +# CONFIG_VGACON_SOFT_SCROLLBACK is not set +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +# CONFIG_HIDRAW is not set +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +# CONFIG_USB_SUPPORT is not set +# CONFIG_UWB is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +# CONFIG_EDAC is not set +CONFIG_RTC_LIB=y +# CONFIG_RTC_CLASS is not set +# CONFIG_DMADEVICES is not set +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +CONFIG_VIRT_DRIVERS=y +CONFIG_VIRTIO=m + +# +# Virtio drivers +# +CONFIG_VIRTIO_PCI=m +CONFIG_VIRTIO_PCI_LEGACY=y +# CONFIG_VIRTIO_BALLOON is not set +# CONFIG_VIRTIO_INPUT is not set +# CONFIG_VIRTIO_MMIO is not set + +# +# Microsoft Hyper-V guest support +# +# CONFIG_HYPERV is not set +# CONFIG_STAGING is not set +# CONFIG_X86_PLATFORM_DEVICES is not set +# CONFIG_CHROME_PLATFORMS is not set + +# +# Hardware Spinlock drivers +# + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# CONFIG_ATMEL_PIT is not set +# CONFIG_SH_TIMER_CMT is not set +# CONFIG_SH_TIMER_MTU2 is not set +# CONFIG_SH_TIMER_TMU is not set +# CONFIG_EM_TIMER_STI is not set +# CONFIG_MAILBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_STE_MODEM_RPROC is not set + +# +# Rpmsg drivers +# + +# +# SOC (System On Chip) specific Drivers +# +# CONFIG_SUNXI_SRAM is not set +# CONFIG_SOC_TI is not set +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set +CONFIG_ARM_GIC_MAX_NR=1 +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set +# CONFIG_FMC is not set + +# +# PHY Subsystem +# +# CONFIG_GENERIC_PHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# CONFIG_RAS is not set +# CONFIG_THUNDERBOLT is not set + +# +# Android +# +# CONFIG_ANDROID is not set +CONFIG_LIBNVDIMM=y +CONFIG_BLK_DEV_PMEM=y +CONFIG_ND_BLK=y +CONFIG_ND_CLAIM=y +CONFIG_ND_BTT=y +CONFIG_BTT=y +CONFIG_ND_PFN=y +CONFIG_NVDIMM_PFN=y +# CONFIG_NVMEM is not set +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set + +# +# FPGA Configuration Support +# +# CONFIG_FPGA is not set + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +# CONFIG_FIRMWARE_MEMMAP is not set +# CONFIG_DELL_RBU is not set +# CONFIG_DCDBAS is not set +# CONFIG_ISCSI_IBFT_FIND is not set +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +CONFIG_EXT4_FS=y +CONFIG_EXT4_USE_FOR_EXT2=y +# CONFIG_EXT4_FS_POSIX_ACL is not set +# CONFIG_EXT4_FS_SECURITY is not set +# CONFIG_EXT4_ENCRYPTION is not set +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=y +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +CONFIG_FS_DAX=y +CONFIG_FS_POSIX_ACL=y +CONFIG_FILE_LOCKING=y +CONFIG_MANDATORY_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +# CONFIG_QUOTA is not set +# CONFIG_QUOTACTL is not set +# CONFIG_AUTOFS4_FS is not set +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set + +# +# DOS/FAT/NT Filesystems +# +# CONFIG_MSDOS_FS is not set +# CONFIG_VFAT_FS is not set +# CONFIG_NTFS_FS is not set + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +# CONFIG_PROC_KCORE is not set +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +# CONFIG_PROC_CHILDREN is not set +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +# CONFIG_HUGETLBFS is not set +# CONFIG_HUGETLB_PAGE is not set +# CONFIG_CONFIGFS_FS is not set +# CONFIG_MISC_FILESYSTEMS is not set +CONFIG_NETWORK_FILESYSTEMS=y +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +# CONFIG_NLS_CODEPAGE_437 is not set +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +CONFIG_NLS_UTF8=y + +# +# Kernel hacking +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +# CONFIG_BOOT_PRINTK_DELAY is not set + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +# CONFIG_ENABLE_WARN_DEPRECATED is not set +# CONFIG_ENABLE_MUST_CHECK is not set +CONFIG_FRAME_WARN=1024 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_UNUSED_SYMBOLS is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_DEBUG_FS is not set +# CONFIG_HEADERS_CHECK is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set +CONFIG_ARCH_WANT_FRAME_POINTERS=y +# CONFIG_FRAME_POINTER is not set +# CONFIG_STACK_VALIDATION is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# CONFIG_MAGIC_SYSRQ is not set +CONFIG_DEBUG_KERNEL=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_POISONING is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_DEBUG_ON is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_DEBUG_STACKOVERFLOW=y +# CONFIG_DEBUG_STACKOVERFLOW is not set +CONFIG_HAVE_ARCH_KMEMCHECK=y +# CONFIG_KMEMCHECK is not set +CONFIG_HAVE_ARCH_KASAN=y +# CONFIG_KASAN is not set +CONFIG_ARCH_HAS_KCOV=y +# CONFIG_KCOV is not set +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Lockups and Hangs +# +# CONFIG_LOCKUP_DETECTOR is not set +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +CONFIG_SCHED_DEBUG=y +# CONFIG_SCHED_INFO is not set +# CONFIG_SCHEDSTATS is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +# CONFIG_DEBUG_TIMEKEEPING is not set +# CONFIG_TIMER_STATS is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_STACKTRACE is not set +# CONFIG_DEBUG_KOBJECT is not set +CONFIG_DEBUG_BUGVERBOSE=y +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PI_LIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_PROVE_RCU is not set +# CONFIG_SPARSE_RCU_POINTER is not set +# CONFIG_TORTURE_TEST is not set +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y +# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set + +# +# Runtime Testing +# +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_PERCPU_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_DMA_API_DEBUG is not set +# CONFIG_TEST_LKM is not set +# CONFIG_TEST_USER_COPY is not set +# CONFIG_TEST_BPF is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_MEMTEST is not set +# CONFIG_TEST_STATIC_KEYS is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_STRICT_DEVMEM is not set +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_X86_PTDUMP_CORE is not set +# CONFIG_X86_PTDUMP is not set +# CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_WX is not set +# CONFIG_DEBUG_SET_MODULE_RONX is not set +# CONFIG_DEBUG_NX_TEST is not set +# CONFIG_DOUBLEFAULT is not set +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_IOMMU_STRESS is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +CONFIG_IO_DELAY_TYPE_0X80=0 +CONFIG_IO_DELAY_TYPE_0XED=1 +CONFIG_IO_DELAY_TYPE_UDELAY=2 +CONFIG_IO_DELAY_TYPE_NONE=3 +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +CONFIG_DEFAULT_IO_DELAY_TYPE=0 +# CONFIG_CPA_DEBUG is not set +# CONFIG_OPTIMIZE_INLINING is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_X86_DEBUG_FPU is not set +# CONFIG_PUNIT_ATOM_DEBUG is not set + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITYFS is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_DEFAULT_SECURITY="" +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=m +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=m +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=m +CONFIG_CRYPTO_AKCIPHER2=y +# CONFIG_CRYPTO_RSA is not set +CONFIG_CRYPTO_MANAGER=m +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +# CONFIG_CRYPTO_GF128MUL is not set +CONFIG_CRYPTO_NULL=m +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +CONFIG_CRYPTO_WORKQUEUE=y +# CONFIG_CRYPTO_CRYPTD is not set +# CONFIG_CRYPTO_MCRYPTD is not set +# CONFIG_CRYPTO_AUTHENC is not set +# CONFIG_CRYPTO_TEST is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_SEQIV is not set +CONFIG_CRYPTO_ECHAINIV=m + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +CONFIG_CRYPTO_HMAC=m +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_CRCT10DIF is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +# CONFIG_CRYPTO_MD5 is not set +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +# CONFIG_CRYPTO_SHA1 is not set +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +# CONFIG_CRYPTO_SHA1_MB is not set +CONFIG_CRYPTO_SHA256=m +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +# CONFIG_CRYPTO_AES is not set +# CONFIG_CRYPTO_AES_X86_64 is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +# CONFIG_CRYPTO_ARC4 is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_SALSA20_X86_64 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +# CONFIG_CRYPTO_DEFLATE is not set +# CONFIG_CRYPTO_LZO is not set +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +CONFIG_CRYPTO_DRBG_MENU=m +CONFIG_CRYPTO_DRBG_HMAC=y +# CONFIG_CRYPTO_DRBG_HASH is not set +# CONFIG_CRYPTO_DRBG_CTR is not set +CONFIG_CRYPTO_DRBG=m +CONFIG_CRYPTO_JITTERENTROPY=m +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set + +# +# Certificates for signature checking +# +CONFIG_HAVE_KVM=y +CONFIG_VIRTUALIZATION=y +# CONFIG_BINARY_PRINTF is not set + +# +# Library routines +# +CONFIG_BITREVERSE=y +# CONFIG_HAVE_ARCH_BITREVERSE is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IO=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +# CONFIG_CRC_T10DIF is not set +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_LZ4_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_LZ4=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_NLATTR=y +CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y +# CONFIG_CORDIC is not set +# CONFIG_DDR is not set +# CONFIG_IRQ_POLL is not set +# CONFIG_SG_SPLIT is not set +CONFIG_ARCH_HAS_SG_CHAIN=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_MMIO_FLUSH=y diff --git a/2016-kvm-forum/paper.tex b/2016-kvm-forum/paper.tex new file mode 100644 index 0000000..d0dca57 --- /dev/null +++ b/2016-kvm-forum/paper.tex @@ -0,0 +1,554 @@ +\documentclass[12pt,a4paper]{article} +\usepackage[utf8x]{inputenc} +\usepackage{parskip} +\usepackage{hyperref} +\usepackage{xcolor} +\hypersetup{ + colorlinks, + linkcolor={red!50!black}, + citecolor={blue!50!black}, + urlcolor={blue!80!black} +} +\usepackage{abstract} +\usepackage{graphicx} +\DeclareGraphicsExtensions{.pdf,.png,.jpg} +\usepackage{float} +\floatstyle{boxed} +\restylefloat{figure} +\usepackage{fancyhdr} + \pagestyle{fancy} + %\fancyhead{} + %\fancyfoot{} + +\title{Optimizing QEMU boot time} +\author{ +\large +Richard W.M. Jones +\normalsize Red Hat Inc. +\normalsize \href{mailto:rjones@redhat.com}{rjones@redhat.com} +} +\date{} + +\begin{document} +\maketitle + +\begin{abstract} +Everyone knows that containers are really fast and lightweight, and +full virtualization is slow and heavyweight ... Or that's what we +thought, until Intel demonstrated full Linux virtual machines booting +as fast as containers and using as little memory. Intel's work used +kvmtool and a customized, cut down guest kernel. Can we do the same +using libvirt, QEMU, SeaBIOS, and an off the shelf Linux distro +kernel? The short answer is \textit{no}, but we can get pretty close, +and it was an exciting journey learning about unexpected performance +roadblocks, developing tools to measure the boot process, and shaving +off milliseconds all over the place. The work has practical +significance because it will allow us to deploy secure containers, +protected by hardware virtualization. Even if you never plan to use +containers, you're still benefiting from a faster QEMU experience. +\end{abstract} + +\section{Intel Clear Linux} + +Intel's Clear Linux means a lot of different things to different +people. I'm only going to talk about a narrow aspect of it, usually +known as ``Clear Containers'', but if other people talk about Intel +Clear Linux they might be talking about a Linux distribution, +OpenStack or graphics technologies. + +LWN has a useful and relatively recent introduction to Clear +Containers \url{https://lwn.net/Articles/644675/}. + +If you download the Intel Clear Containers demo +(\url{https://download.clearlinux.org/demos/containers/clear-containers-demo.tar.xz}), +unpack it and run \texttt{bash~./boot.sh} then it will boot into a +full Linux VM in about 150ms, and using 20~MB of RAM. + +Intel are using this technology along with a customized Docker driver +to run Docker containers safely inside a VM. The overhead (150ms / +20~MB) is very attractive since it doesn't impact on the density that +containers give you. It's also aligned with Intel's interests, since +they are selling chips with VT, VT-d, EPT, VPID and so on and they +need people to use those features. + +The Clear Containers demo uses \texttt{kvmtool} with several +non-upstream patches such as for DAX and 64 bit guests. Since first +demonstrating Clear Containers, Intel has worked on getting vNVDIMM +(needed for DAX) into QEMU. + +The Clear Containers demo from last year uses a patched Linux kernel. +There are many non-upstream patches. More importantly they use a +custom, cut down configuration where many subsystems not used by VMs +are cut out entirely. + +\section{Real Linux distros use QEMU} + +Can we do the same sort of thing in our Linux distros? Let's talk +about some things that constrain us in Fedora. + +We'd prefer to use QEMU over kvmtool. QEMU isn't really ``bloated''. +It's featureful, but (generally) if you're not using those features +they don't slow things down. + +We \textit{can't} use the heavily patched and customized kernel. +Fedora is strictly ``upstream first''. Fedora also ships a single +kernel image for baremetal, virtual machines and all other uses, since +building and maintaining multiple kernels is a huge pain. + +\section{Stating the problem} + +What we want to do is to boot up and shut down a modern Linux kernel +in a KVM virtual machine on a modern Linux host. Inside the virtual +machine we will eventually want to run our Docker container. However +I am just concentrating on the overhead of the boot and shutdown. + +\begin{samepage} +Conveniently -- and also the reason I'm interested in this problem -- +libguestfs does almost the same thing. It starts up and shuts down a +small Linux-based appliance. If you have \texttt{guestfish} +installed, then you can try running the command below (several times +so you have a warm cache). Add \texttt{-v~-x} to the command line to +see what's really going on. + +\begin{verbatim} +$ guestfish -a /dev/null run +\end{verbatim} +\end{samepage} + +\section{Measurements} + +The first step to improving the situation is to build tools that can +accurately measure the time taken for each step in the boot process. + +Booting a Linux kernel under QEMU using the \texttt{-kernel} option +looks like table~\ref{tab:kernel-steps}. + +\begin{table}[h] +\caption{Steps run when you use QEMU \texttt{-kernel}} +\centering +\begin{tabular}{l} + query QEMU's capabilities \\ + \hline + run QEMU \\ + \hline + run SeaBIOS \\ + \hline + run the kernel \\ + \hline + run the initramfs \\ + \hline + load kernel modules \\ + \hline + mount and pivot to the root filesystem \\ + \hline + run \texttt{/init}, \texttt{udevd} etc \\ + \hline + perform the desired task \\ + \hline + shutdown \\ + \hline + exit QEMU +\end{tabular} +\label{tab:kernel-steps} +\end{table} + +How do you know when SeaBIOS starts or various kernel events happen? + +I started out looking at various QEMU tracing options, but ended up +using a very simple technique: Attach a serial console to QEMU, +timestamp the messages as they arrive, and use regular expression +string matches to find significant events. + +The three programs I wrote (two in C and one in Perl) use libguestfs +as a convenient framework, since libguestfs has the machinery already +for creating VMs, initramfses, capturing serial console output etc. +They are: + +\begin{itemize} +\item \texttt{boot-benchmark} + +\texttt{boot-benchmark} runs the boot up sequence repeatedly, throwing +away the first few runs (to warm the cache) and collecting the mean +test time and standard deviation. + +\begin{verbatim} +$ ./boot-benchmark +Warming up the libguestfs cache ... +Running the tests ... + +test version: libguestfs 1.33.29 + test passes: 10 +host version: Linux moo.home.annexia.org 4.4.4-301.fc23.x86_64 #1 SMP + host CPU: Intel(R) Core(TM) i7-5600U CPU @ 2.60GHz + backend: direct [to change set $LIBGUESTFS_BACKEND] + qemu: /home/rjones/d/qemu/x86_64-softmmu/qemu-system-x86_64 +qemu version: QEMU emulator version 2.6.50, Copyright (c) 2003-2008 + smp: 1 [to change use --smp option] + memsize: 500 [to change use --memsize option] + append: [to change use --append option] + +Result: 568.2ms ±8.7ms +\end{verbatim} + +\item \texttt{boot-benchmark-range.pl} + +\texttt{boot-benchmark-range.pl} is a wrapper script around +\texttt{boot-benchmark} which lets you benchmark across a range of +commits from some other project (eg. QEMU or the kernel). You can +easily see which commits are causing or solving performance problems +as in the example below: + +\begin{verbatim} +$ ./boot-benchmark-range.pl ~/d/qemu 3123bd8^..8e86aa8 +da34fed hw/ppc/spapr: Fix crash when specifying bad[...] + 1666.8ms ±2.5ms + +3123bd8 Merge remote-tracking branch 'remotes/dgibson/[...] + 1658.8ms ±4.2ms + +f419a62 (origin/master, origin/HEAD, master) usb/uhci: move[...] + 1671.3ms ±17.0ms + +8e86aa8 Add optionrom compatible with fw_cfg DMA version + 1013.7ms ±3.0ms ↑ improves performance by 64.9% +\end{verbatim} + +\item \texttt{boot-analysis} + +\begin{figure}[h] +\caption{boot-analysis timeline} +\includegraphics[width=0.9\textwidth]{boot-analysis-screenshot} +\label{fig:ba-timeline} +\end{figure} + +\texttt{boot-analysis} performs multiple runs of the boot sequence. +It enables the QEMU serial console (and other events from libguestfs), +timestamps the events, and then presents the sequence graphically as +shown in figure~\ref{fig:ba-timeline}. Also shown are mean times and standard +deviations and percentage of the total run time. + +\begin{figure}[h] +\caption{boot-analysis longest activities} +\includegraphics[width=0.9\textwidth]{boot-analysis-screenshot-2} +\label{fig:ba-longest} +\end{figure} + +This test also prints which activities took the longest time, see +figure~\ref{fig:ba-longest}. + +\end{itemize} + +The source for these tools is here: +\url{https://github.com/libguestfs/libguestfs/tree/master/utils}. + +Only now that we have the right tools to hand can we work out what +activities take time. + +For consistency, all times displayed by the tool are in milliseconds +(ms), and I try to use the same convention in this paper. + +In this paper I'm using times based on my laptop, an +Intel\textregistered Core\texttrademark i7-5600U CPU @ 2.60GHz +(Broadwell~U). This does of course mean that these results won't be +exactly reproducible, but it is hoped that with similar hardware you +will get times that differ only by a scale factor. + +\section{glibc} + +Surprisingly the first problem is glibc. QEMU links to over 170 +libraries, and that number keeps growing. A simple +\texttt{qemu~-version} takes up to 60ms, and examining this with +\texttt{perf} showed two things: + +\begin{itemize} +\item Ceph had a bug where it ran some \texttt{rdtsc} benchmarks in a + constructor function. This is now fixed. +\item The glibc link loader is really slow when presented with lots of + libraries and lots of symbols. +\end{itemize} + +The second problem is intractable. We can't link to fewer libraries, +because each of those libraries represents some feature that someone +wants, like Ceph, or Gtk support (though if you remove the Gtk +dependency the link time reduces substantially). And the link loader +is bound by all sorts of obscure ELF rules (eg. symbol interposition) +which we don't need but cannot avoid and make things slow. + +When I said earlier that QEMU features don't slow things down, this is +an exception. + +We can run QEMU fewer times. There are several places where we need +to run QEMU. Obviously one place is where we start the virtual +machine, and the overhead there cannot be avoided. But also we +perform QEMU feature detection by running commands like +\texttt{qemu~-help} and \texttt{qemu~-devices~\textbackslash?} and +libguestfs now caches that output. + +\section{QEMU} + +Libguestfs, Intel Clear Containers, and any future Docker container +support we build will use \texttt{-kernel} and \texttt{-initrd} or +their equivalent. In QEMU up to 2.6 on x86-64 this was implemented +using an interface called \texttt{fw\_cfg} and a PIO loop, and that is +very slow. To load the kernel and very small initrd used by +libguestfs takes around 700ms. In QEMU 2.7 we have added a pseudo-DMA +mode which makes this step almost instant. + +To see debugging messages from the kernel and to collect our benchmark +results, we have to use an emulated 16550A UART (serial port). +Virtio-console exists but isn't a good replacement because it can't be +used to get BIOS and very early kernel messages. The UART is slow. +It takes about 4µs per character, or approximately 1ms for 3 lines of +text. Enabling debugging changes the results subtly. + +To get serial console output from the BIOS, we use a +Google-contributed option ROM called SGABIOS. It quickly became clear +that SGABIOS introduced a 260ms boot delay. This happened because it +expects to be talking to a real serial terminal, so it sends control +sequences to query the width and height of this ``terminal''. These +weren't being answered by the actual reader (libguestfs simply reads). +The solution was to modify libguestfs to respond to the control +sequence with a dummy reply, which reduced the delay to almost +nothing. + +\section{libvirt} + +Libguestfs can optionally use libvirt to manage the QEMU process. +When I did this it was obvious that libvirt was adding a (precisely) +200ms delay. I tracked this down to a poorly implemented polling loop +in libvirt, waiting for the QEMU monitor socket to be created by QEMU. +I fixed it by changing the loop to use exponential backoff. A better +fix would involve passing pre-created file descriptors to QEMU. + +\section{SeaBIOS} + +SeaBIOS wastes time probing for boot devices even though we will use +the \texttt{linuxboot} option ROM to boot (via \texttt{-kernel}). By +building a \texttt{bios-fast.bin} variant of SeaBIOS with many unused +features disabled we can reduce the time spent inside the BIOS from +about 63ms to about 19ms. + +\section{kernel} + +PCI probing is slow, taking around 95ms for a guest with just two +virtio-scsi drives. It turns out that it's not the scanning of the +PCI device space which is slow, but the initialization of each device +as it is found. QEMU's i440fx machine model exports some legacy +devices which cannot be switched off, and that is unhelpful. + +I implemented experimental support for parallel PCI probing using the +kernel ``async'' feature. With 1~vCPU this slows things down very +slightly as expected. With 4~vCPUs performance improved by about +30\%. Unfortunately we can't use it because of the next point. + +You would think multiple vCPUs would be better and faster than 1~vCPU, +but that is not the case. It actually has a large negative impact on +performance. Switching from 1 to 4~vCPUs increases the boot time by +over 200ms. About 25ms is spent starting each secondary CPU (in +\texttt{check\_tsc\_sync\_target}). This can be avoided by setting +\texttt{tsc.reliable=1} but no one can tell me if this is safe. But +most of the extra time just disappears between the cracks -- for +example, PCI probing just slows down, but for no readily apparent +reason. It seems as if the overhead of spinlocks or RCU or whatever +hurts general performance. Or perhaps there is some scheduling +problem on the host since it only has 4 physical CPUs. + +When the kernel runs, it does some BIOS stuff, and there's a long +delay (about 80ms) before \texttt{start\_kernel} is entered. + +Another unavoidable overhead is \texttt{ftrace} which must modify +every function in the kernel. This takes 20ms. You can't disable +ftrace at run time, the only option is to compile it out, but that +breaks so many useful features that we'd never persuade a distro +kernel to do that. + +If your kernel has crypto functions, then it will spend 18ms testing +them at boot. Herbert Xu accepted my patch to add a +\texttt{cryptomgr.notests} flag which bypasses this. + +As we are presenting an emulated 16550A UART, +\texttt{serial\_8250\_init} runs, and this spends 25ms checking that +the UART is really a 16650A (does it work, does it have a FIFO?), and +(unsurprisingly) yes it is. This is a totally useless waste of time, +but I have not managed to come up with a patch or even with an +approach for how to avoid this that is acceptable upstream. + +But the main problem is none of the above. It's simply the small +amount of time taken to run many many initcalls. For a distro kernel +this can be around 690ms (with serial debugging enabled which +exaggerates the effect somewhat). One way to avoid that would be to +compile some sort of custom kernel, and even though this approach is +not acceptable for Fedora I did explore this, trying both a cut down +distro kernel, and also a super-minimal kernel. + +\begin{itemize} +\item The cut down distro kernel works by removing any subsystem that + has a $>$~1ms initcall overhead. These include: + \begin{itemize} + \item auditing + \item big\_key + \item ftrace + \item hugetlbfs + \item input\_leds + \item joydev + \item joysticks + \item keyboards + \item kprobes + \item libata + \item mice + \item microcode + \item netlabel + \item profiling support + \item quota + \item rtc\_drv\_cmos + \item sound card support + \item tablets + \item touchscreens + \item USB + \item zbud + \item zswap + \end{itemize} + That reduces the time taken running initcalls before userspace by + about 20\%. There is some scope for reducing this a bit more by + going even further down the ``long tail'' of subsystems. +\item For my second test I started with an absolutely minimal kernel + config (\texttt{allnoconfig}), and built up the configuration until + I got something that booted. That reduces the time taken running + initcalls before userspace by about 60\% (down to 288ms). +\end{itemize} + +With a minimal kernel, we can get total boot times down to the +500-600ms range, but not any lower. + +\section{udev} + +udevd takes about 130ms to populate \texttt{/dev}. + +The rules are monolithic, entwined together and resist modification, +and starting a new set of rules from scratch looks like it would be a +constant game of catch up. + +\section{initrd} + +We use a program called supermin +(\url{http://libguestfs.org/supermin.1.html}) to construct the initrd +which is responsible for loading enough kmods to mount the real root +filesystem and pivoting into it. + +Because of PIO loading of the initrd in earlier versions of QEMU, it +was very important to construct as small an initrd as possible, and +supermin was not doing a very good job of that. However once I +started to analyze the situation there were some easy wins (now all +upstream): + +\begin{itemize} +\item We were adding all virtio kmods to the appliance plus any + dependencies, with the starting set being constructed using the + wildcard ``\texttt{virtio*.ko}''. The wildcard pulls in + \texttt{virtio-gpu.ko} which depends on \texttt{drm.ko} and both are + quite large. Since we are only interested in non-graphical VMs, I + was able to blacklist \texttt{virtio-gpu.ko} and that reduced the + total size of the initrd. +\item We use a small C init program to load the kmods and mount + the root filesystem, and this must be statically linked so we + don't have to include a separate libc in the initrd. However + glibc produces enormous static binaries (800KB+). Switching to using + dietlibc allows us to build the same program to a + 22KB binary, about $\frac{1}{40}$th of the size. +\item We initially used xz-compressed kmods. These are smaller, + reducing PIO loading time (but making not a lot of difference to + DMA) but they are very slow to decompress. Switching to using + uncompressed kmods produced a small reduction in boot time, and + simplified the init code. +\item Stripping kmods (with \texttt{strip~-g}) is very important for + reducing the size of the initrd. +\end{itemize} + +The resulting initrd is about 126KB for the minimal kernel, or 347K +for the standard Fedora kernel. + +\section{libguestfs} + +Finally there is libguestfs itself which glues everything together and +provides the initial \texttt{/init} script. There were several +savings to be made: + +\begin{itemize} +\item When we are not debugging, we were still reading the verbose + kernel output over the slow UART, and then throwing it away. The + solution was to add the \texttt{quiet} option. That reduced boot + time by about 1,000ms, the single largest saving. +\item We used to run the \texttt{hwclock} command. With kvmclock it + turns out this is not necessary, and removing it saved 300ms. +\item We used to run \texttt{qemu~-help} and \texttt{qemu~-version}. + Drew Jones pointed out the obvious: the help output contains the + version number, so that reduces the number of times we need to run + QEMU and suffer the glibc slow link loader overhead (and in the + final version of libguestfs we also memoize QEMU output, reducing it + further). +\item We used to run SGABIOS unconditionally, but it is only necessary + to use it when debugging. When we're not debugging we can omit it + and save loading it at all. +\item Running \texttt{ldconfig} in the appliance to update the link + loader cache took 100ms, but we found a way that we don't need to + run it at all. +\end{itemize} + +\section{Memory usage and DAX} + +I was pleasantly surprised that Intel had implemented a virtual +NVDIMM, and ext4 + DAX is also working in modern kernels, and it was a +relatively trivial job to implement DAX. + +However I'm not certain that the benefits are clear, nor that I'm +measuring things correctly. + +Inside the guest you can run \texttt{free~-m} with and without DAX: + +\begin{verbatim} + total used free shared buff/cache available +Without DAX: 485 3 451 1 30 465 +With DAX: 485 3 469 1 12 467 +\end{verbatim} + +The MaxRSS of QEMU reduces by about 5~MB when DAX is enabled. + +\section{Conclusions} + +\begin{minipage}{\textwidth} +This graph is just for a bit of fun: + +\includegraphics[width=0.8\textwidth]{progress} +\end{minipage} + +There were a few false starts at the beginning of March (2016) where I +was exploring how we might benchmark QEMU. But once I had written the +right tools to analyze the boot process, two quick wins brought the +time down from 3.5~seconds to 1.2~seconds in the space of a few days. +It's worth noting that the libguestfs appliance had been booting in +approx.~3-4~seconds for literally half a decade. + +Getting the time under 600ms took a few weeks longer, and without some +breakthrough in the kernel or udev, I cannot see us getting the time +under 500ms. + +Performance is everyone's job, but it sometimes feels like few people +care about a use case which is considered esoteric. Yet this does +affect everyone: + +\begin{itemize} +\item If we can use virtualization as an extra layer of security + around operations, whether that is Docker, or Qubes, or + libvirt-sandbox, or libguestfs, that benefits everyone. +\item The same concerns about boot speed are raised over and over + again by the embedded community. If your digital camera is slow to + switch on, it might be running initcalls for subsystems that it will + never use. (Many references here: + \url{http://elinux.org/Boot_Time}) +\end{itemize} + +Hopefully this paper will persuade developers to think twice before +adding an unnecessary delay loop, inserting a useless boot splash +screen, or creating another initcall. + +\end{document} diff --git a/2016-kvm-forum/progress.data b/2016-kvm-forum/progress.data new file mode 100644 index 0000000..dfd4b8a --- /dev/null +++ b/2016-kvm-forum/progress.data @@ -0,0 +1,7 @@ +#Date Time(ms) Annotation Source +2016-03-17 3500 quiet commit ed739e71f634b363c3cf6a0a4eca559eaae7f7b3 +2016-03-19 2500 hwclock commit f36ba3888654b55a25158edd23a40fd0e28545a8, commit ed739e71f634b363c3cf6a0a4eca559eaae7f7b3 +2016-03-21 1200 - https://rwmj.wordpress.com/2016/03/21/getting-the-libguestfs-appliance-boot-time-down-to-1-2s/ +2016-03-25 966 - https://rwmj.wordpress.com/2016/03/25/libguestfs-appliance-boot-in-under-1s/ +2016-04-02 900 - commit 03b68d436c61e9e0baac7c4fb305b62f41185173 +2016-05-12 576 - https://rwmj.wordpress.com/2016/05/12/libguestfs-appliance-boot-in-under-600ms/ diff --git a/2016-kvm-forum/progress.plot b/2016-kvm-forum/progress.plot new file mode 100644 index 0000000..5923c31 --- /dev/null +++ b/2016-kvm-forum/progress.plot @@ -0,0 +1,12 @@ +set title "Appliance boot time vs development effort" +set term pdf +set output "progress.pdf" +set xdata time +set style data lines +set timefmt "%Y-%m-%d" +set xlabel "Development timeline" +set ylabel "Boot time (ms)" +set xrange ["2016-03-01" : "2016-06-01"] +set yrange [0 : 4000] +set format x "%d %b" +plot "progress.data" using 1:2 t "Appliance boot time" -- 1.8.3.1