Add 2016 KVM Forum talk.
authorRichard W.M. Jones <rjones@redhat.com>
Tue, 26 Apr 2016 15:25:45 +0000 (16:25 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Mon, 23 May 2016 15:33:44 +0000 (16:33 +0100)
12 files changed:
2016-kvm-forum/.gitignore [new file with mode: 0644]
2016-kvm-forum/Makefile [new file with mode: 0644]
2016-kvm-forum/NOTES.txt [new file with mode: 0644]
2016-kvm-forum/analysis-run.txt [new file with mode: 0644]
2016-kvm-forum/boot-analysis-screenshot-2.png [new file with mode: 0644]
2016-kvm-forum/boot-analysis-screenshot-2.xcf [new file with mode: 0644]
2016-kvm-forum/boot-analysis-screenshot.png [new file with mode: 0644]
2016-kvm-forum/boot-analysis-screenshot.xcf [new file with mode: 0644]
2016-kvm-forum/kernel-config-minimal [new file with mode: 0644]
2016-kvm-forum/paper.tex [new file with mode: 0644]
2016-kvm-forum/progress.data [new file with mode: 0644]
2016-kvm-forum/progress.plot [new file with mode: 0644]

diff --git a/2016-kvm-forum/.gitignore b/2016-kvm-forum/.gitignore
new file mode 100644 (file)
index 0000000..28ae85e
--- /dev/null
@@ -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 (file)
index 0000000..80add5a
--- /dev/null
@@ -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 (file)
index 0000000..c5193a0
--- /dev/null
@@ -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:
+
+><rescue> free -m
+              total        used        free      shared  buff/cache   available
+Mem:            485           3         469           1          12         467
+Swap:             0           0           0
+
+Without DAX:
+
+><rescue> 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 (file)
index 0000000..f041729
--- /dev/null
@@ -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 = <struct guestfs_version = major: 1, minor: 33, release: 29, extra: , >"
+    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 = <struct guestfs_version = major: 1, minor: 33, release: 29, extra: , >"
+    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 = <struct guestfs_version = major: 1, minor: 33, release: 29, extra: , >"
+    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 = <struct guestfs_version = major: 1, minor: 33, release: 29, extra: , >"
+    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 = <struct guestfs_version = major: 1, minor: 33, release: 29, extra: , >"
+    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]
+
+\e[1;34m   0.0ms: \e[1;35m▲ \e[0m\e[0;32mrun\e[0m 838.4ms ±5.5ms \e[0;32m(100.0%) \e[0m
+\e[1;34m   0.6ms: \e[1;35m│ ▲ \e[0m\e[1;31msupermin:build\e[0m 10.6ms ±0.2ms \e[1;31m(1.3%) \e[0m
+          \e[1;35m│ │ \e[0m
+\e[1;34m  11.2ms: \e[1;35m│ ▼ \e[0m
+\e[1;34m  11.2ms: \e[1;35m│ ▲ \e[0m\e[0;32mqemu:feature-detect\e[0m 0.1ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m  11.3ms: \e[1;35m│ ▼ \e[0m
+          \e[1;35m│   \e[0m
+\e[1;34m  13.0ms: \e[1;35m│ ▲ ▲ \e[0m\e[0;32mqemu\e[0m 825.4ms ±5.6ms \e[0;32m(98.4%) \e[0m\e[1;31mqemu:overhead\e[0m 96.7ms ±1.0ms \e[1;31m(11.5%) \e[0m
+          \e[1;35m│ │ │ \e[0m
+\e[1;34m 109.7ms: \e[1;35m│ │ ▼ \e[0m
+\e[1;34m 109.7ms: \e[1;35m│ │ ▲ ▲ \e[0m\e[1;31mbios:overhead\e[0m 50.5ms ±0.5ms \e[1;31m(6.0%) \e[0m\e[0;32msgabios\e[0m 2.0ms ±0.4ms \e[0;32m(0.2%) \e[0m
+          \e[1;35m│ │ │ │ \e[0m
+\e[1;34m 111.7ms: \e[1;35m│ │ │ ▼ \e[0m
+\e[1;34m 111.7ms: \e[1;35m│ │ │ ▲ \e[0m\e[1;31mseabios\e[0m 48.5ms ±0.2ms \e[1;31m(5.8%) \e[0m
+          \e[1;35m│ │ │ │ \e[0m
+\e[1;34m 160.2ms: \e[1;35m│ │ ▼ ▼ \e[0m
+\e[1;34m 160.2ms: \e[1;35m│ │ ▲ ▲ \e[0m\e[0;32mkernel\e[0m 678.2ms ±6.2ms \e[0;32m(80.9%) \e[0m\e[1;31mkernel:overhead\e[0m 389.4ms ±9.6ms \e[1;31m(46.4%) \e[0m
+          \e[1;35m│ │ │ │ \e[0m
+\e[1;34m 207.6ms: \e[1;35m│ │ │ │ ▲ \e[0m\e[0;32mkernel:alternatives\e[0m 4.9ms ±0.2ms \e[0;32m(0.6%) \e[0m
+          \e[1;35m│ │ │ │ │ \e[0m
+\e[1;34m 212.5ms: \e[1;35m│ │ │ │ ▼ \e[0m
+          \e[1;35m│ │ │ │   \e[0m
+\e[1;34m 216.8ms: \e[1;35m│ │ │ │ ▲ ▲ \e[0m\e[1;31mkernel:initcalls-before-userspace\e[0m 329.1ms ±8.8ms \e[1;31m(39.3%) \e[0m\e[0;32minitcall kernel.init_hw_perf_events\e[0m 3.4ms ±0.0ms \e[0;32m(0.4%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 220.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 220.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.set_real_mode_permissions\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 220.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 221.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.validate_x2apic\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 221.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 222.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.register_trigger_all_cpu_backtrace\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 222.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 223.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.spawn_ksoftirqd\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 223.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 223.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_workqueues\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 224.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 224.7ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.migration_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 224.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 225.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.check_cpu_stall_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 225.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 226.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.rcu_spawn_gp_kthread\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 226.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 226.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.cpu_stop_init\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 227.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 228.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.rand_initialize\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 228.1ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+          \e[1;35m│ │ │ │ │   \e[0m
+\e[1;34m 232.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_mmap_min_addr\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 232.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 232.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.net_ns_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 232.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 233.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.e820_mark_nvs_memory\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 233.1ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+          \e[1;35m│ │ │ │ │   \e[0m
+\e[1;34m 234.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_cpu_syscore\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 234.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 234.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.reboot_init\e[0m 0.9ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 235.1ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 235.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.wq_sysfs_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 235.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+          \e[1;35m│ │ │ │ │   \e[0m
+\e[1;34m 236.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.ksysfs_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 236.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 236.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_jiffies_clocksource\e[0m 1.1ms ±0.0ms \e[0;32m(0.1%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 237.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 238.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_per_zone_wmark_min\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 238.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 239.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_zero_pfn\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 239.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 239.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.fsnotify_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 240.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 241.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.filelock_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 241.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 241.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_script_binfmt\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 241.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 242.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_elf_binfmt\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 242.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 243.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.prandom_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 243.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 243.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.cpuidle_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 244.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 244.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.sock_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 244.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 245.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.netlink_proto_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 246.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 246.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.bdi_class_init\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 247.1ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 247.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.mm_sysfs_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 247.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 248.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.kobject_uevent_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 248.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 248.7ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pcibus_class_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 249.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 249.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pci_driver_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 250.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 250.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.tty_class_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 250.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 251.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.vtconsole_class_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 251.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 252.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_ladder\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 252.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 253.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.bts_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 253.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 253.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pt_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 254.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 254.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.boot_params_ksysfs_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 255.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 255.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.sbf_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 255.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 256.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.arch_kdebugfs_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 256.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 257.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.ffh_cstate_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 257.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 257.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.activate_jump_labels\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 258.1ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 258.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.acpi_pci_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 259.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 259.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pci_arch_init\e[0m 0.9ms ±0.4ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 260.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 261.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_vdso\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 261.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 261.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.fixup_ht_bug\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 261.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 262.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.topology_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 262.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 263.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.uid_cache_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 263.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 263.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.param_sysfs_init\e[0m 1.0ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 264.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 265.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.oom_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 265.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 265.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.default_bdi_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 266.1ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 266.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.percpu_enable_async\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 266.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 267.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_reserve_notifier\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 267.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 268.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_admin_reserve\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 268.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 269.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_user_reserve\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 269.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 269.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.crypto_wq_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 270.1ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 270.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.cryptomgr_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 270.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 271.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_bio\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 271.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 271.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.blk_settings_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 272.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 272.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.blk_ioc_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 273.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 273.7ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.blk_softirq_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 273.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 274.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.blk_mq_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 274.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 275.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.genhd_device_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 275.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 275.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pci_slot_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 276.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 276.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[1;31minitcall kernel.acpi_init\e[0m 98.7ms ±5.7ms \e[1;31m(11.8%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 375.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 375.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pnp_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 375.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 376.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.misc_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 376.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 376.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.vga_arb_device_init\e[0m 0.9ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 377.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 378.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.libnvdimm_init\e[0m 0.9ms ±0.4ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 378.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 378.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_scsi\e[0m 1.1ms ±0.0ms \e[0;32m(0.1%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 380.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 380.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.serio_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 380.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+          \e[1;35m│ │ │ │ │   \e[0m
+\e[1;34m 381.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.input_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 381.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 381.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.power_supply_class_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 382.1ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 382.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pci_subsys_init\e[0m 2.2ms ±0.0ms \e[0;32m(0.3%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 384.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 384.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proto_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 385.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 385.7ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.net_dev_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 385.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 386.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.neigh_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 386.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 387.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.genl_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 387.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 387.7ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.nmi_warning_debugfs\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 388.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 388.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.hpet_late_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 388.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 389.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.clocksource_done_booting\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 390.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 390.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_pipe_fs\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 391.1ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 391.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.inotify_user_setup\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 392.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 392.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.eventpoll_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 392.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 393.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.anon_inode_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 393.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 394.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_locks_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 394.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 394.7ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_cmdline_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 395.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 395.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_consoles_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 395.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 396.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_cpuinfo_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 396.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 397.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_devices_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 397.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 398.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_interrupts_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 398.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 399.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_loadavg_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 399.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 399.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_meminfo_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 400.1ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 400.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_stat_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 400.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 401.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_uptime_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 401.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 401.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_version_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 402.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 403.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_softirqs_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 403.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 403.7ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_kmsg_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 404.1ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 404.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_page_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 404.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 405.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_ramfs_fs\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 405.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 406.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.blk_scsi_ioctl_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 406.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 407.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.acpi_event_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 407.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 407.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pnp_system_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 407.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 408.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pnpacpi_init\e[0m 3.7ms ±0.4ms \e[0;32m(0.4%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 412.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 412.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.chr_dev_init\e[0m 0.8ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 413.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 414.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.thermal_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 414.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 414.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_acpi_pm_clocksource\e[0m 5.4ms ±0.4ms \e[0;32m(0.6%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 420.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 420.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pcibios_assign_resources\e[0m 2.3ms ±0.0ms \e[0;32m(0.3%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 423.1ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 423.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.sysctl_core_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 423.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 424.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.eth_offload_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 424.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 424.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.af_unix_init\e[0m 0.9ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 425.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 426.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pci_apply_final_quirks\e[0m 2.0ms ±0.5ms \e[0;32m(0.2%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 428.1ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 428.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.acpi_reserve_resources\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 429.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 429.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.populate_rootfs\e[0m 1.3ms ±0.4ms \e[0;32m(0.2%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 430.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 431.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pci_iommu_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 431.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 432.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.amd_ibs_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 432.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 432.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.msr_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 433.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 433.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.intel_cqm_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 433.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 434.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.rapl_pmu_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 434.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 435.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.intel_uncore_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 435.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 435.7ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.cstate_pmu_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 436.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 436.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.register_kernel_offset_dumper\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 436.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 437.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.i8259A_init_ops\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 438.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 438.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_tsc_clocksource\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 438.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 439.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.add_rtc_cmos\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 439.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 440.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.i8237A_init_ops\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 440.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 440.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.ioapic_init_ops\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 441.1ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 441.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.sysfb_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 442.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 442.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pmc_atom_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 442.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 443.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_execdomains_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 443.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 444.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.ioresources_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 444.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 444.7ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_sched_debug_procfs\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 445.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 445.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_posix_timers\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 445.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 446.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_posix_cpu_timers\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 446.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 447.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.timekeeping_init_ops\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 447.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 448.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_clocksource_sysfs\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 448.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 448.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_timer_list_procfs\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 449.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 449.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.alarmtimer_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 449.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 450.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.clockevents_init_sysfs\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 451.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 451.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.futex_init\e[0m 0.9ms ±0.4ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 452.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 452.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_dma_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 453.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 453.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_modules_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 453.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 454.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.kallsyms_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 454.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 455.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.utsname_sysctl_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 455.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 455.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.perf_event_sysfs_init\e[0m 0.9ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 456.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 456.7ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.kswapd_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 456.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+          \e[1;35m│ │ │ │ │   \e[0m
+\e[1;34m 457.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.setup_vmstat\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 457.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 458.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.mm_compute_batch_init\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 459.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 459.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.slab_proc_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 459.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 460.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.workingset_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 460.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 461.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_vmalloc_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 461.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 462.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.procswaps_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 462.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 462.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.slab_sysfs_init\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 463.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 464.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.fcntl_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 464.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 464.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_filesystems_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 465.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 465.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.start_dirtytime_writeback\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 466.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 466.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.dio_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 466.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 467.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.dnotify_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 467.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 467.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.fanotify_user_setup\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 468.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 468.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.aio_setup\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 468.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 469.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.mbcache_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 469.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 470.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_devpts_fs\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 470.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 471.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.ext4_init_fs\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 471.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 472.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.journal_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 472.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 472.7ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_nls_utf8\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 473.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 473.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.crypto_algapi_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 473.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 474.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.chainiv_module_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 474.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 475.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.eseqiv_module_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 475.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 475.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.crypto_null_mod_init\e[0m 0.4ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 476.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 477.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.crc32c_mod_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 477.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 477.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.proc_genhd_init\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 478.1ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 478.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.bsg_init\e[0m 0.9ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 479.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 479.7ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.noop_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 480.1ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 480.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.deadline_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 481.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 481.7ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.cfq_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 482.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 482.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.percpu_counter_startup\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 483.1ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 483.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pci_proc_init\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 484.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 484.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.acpi_ac_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 484.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 485.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.acpi_button_driver_init\e[0m 1.1ms ±0.0ms \e[0;32m(0.1%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 486.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 486.7ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.acpi_fan_driver_init\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 487.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 487.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.acpi_processor_driver_init\e[0m 1.3ms ±0.4ms \e[0;32m(0.2%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 488.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 489.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.acpi_thermal_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 489.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 490.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.acpi_battery_init\e[0m 0.9ms ±0.4ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 490.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 491.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pty_init\e[0m 3.1ms ±0.2ms \e[0;32m(0.4%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 494.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 494.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[1;31minitcall kernel.serial8250_init\e[0m 23.4ms ±0.1ms \e[1;31m(2.8%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 517.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 517.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.serial_pci_driver_init\e[0m 1.1ms ±0.0ms \e[0;32m(0.1%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 518.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 518.7ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.topology_sysfs_init\e[0m 1.1ms ±0.0ms \e[0;32m(0.1%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 519.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 519.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.cacheinfo_sysfs_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 519.8ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+          \e[1;35m│ │ │ │ │   \e[0m
+\e[1;34m 520.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pmem_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 520.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 521.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.nd_btt_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 522.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 522.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.nd_blk_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 522.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 523.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_sd\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 523.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 523.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_sg\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 524.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 524.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.net_olddevs_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 524.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 525.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.i8042_init\e[0m 2.0ms ±0.3ms \e[0;32m(0.2%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 527.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 527.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.serport_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 527.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 528.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.hid_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 528.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 529.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.hid_generic_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 529.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 530.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.sock_diag_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 530.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 530.7ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.hpet_insert_resource\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 531.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 531.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.update_mp_table\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 531.9ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 532.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.lapic_insert_resource\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 533.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 533.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.print_ICs\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 533.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 534.1ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.create_tlb_single_page_flush_ceiling\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 534.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 535.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_oops_id\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 535.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 535.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.sched_init_debug\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 536.3ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 536.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pm_qos_power_init\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 537.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 537.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.printk_late_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 537.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 538.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.max_swapfiles_check\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 538.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 539.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.check_early_ioremap_leak\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 539.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 539.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.prandom_reseed\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 540.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 541.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pci_resource_alignment_sysfs_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 541.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 541.8ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.pci_sysfs_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 542.1ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 542.7ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.deferred_probe_initcall\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 543.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 543.4ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.register_sk_filter_ops\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 544.0ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 544.3ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall kernel.init_default_flow_dissectors\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 544.7ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+          \e[1;35m│ │ │ │ │   \e[0m
+\e[1;34m 545.9ms: \e[1;35m│ │ │ │ ▼ \e[0m
+          \e[1;35m│ │ │ │   \e[0m
+\e[1;34m 549.5ms: \e[1;35m│ │ │ ▼ \e[0m
+\e[1;34m 549.5ms: \e[1;35m│ │ │ ▲ \e[0m\e[1;31msupermin:mini-initrd\e[0m 82.1ms ±12.1ms \e[1;31m(9.8%) \e[0m
+          \e[1;35m│ │ │ │ \e[0m
+\e[1;34m 551.8ms: \e[1;35m│ │ │ │ ▲ \e[0m\e[0;32minsmod nfit\e[0m 2.5ms ±0.1ms \e[0;32m(0.3%) \e[0m
+          \e[1;35m│ │ │ │ │ \e[0m
+\e[1;34m 553.0ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall nfit.nfit_init\e[0m 1.3ms ±0.0ms \e[0;32m(0.2%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 554.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 554.2ms: \e[1;35m│ │ │ │ ▼ \e[0m
+\e[1;34m 554.2ms: \e[1;35m│ │ │ │ ▲ \e[0m\e[0;32minsmod virtio\e[0m 1.1ms ±0.0ms \e[0;32m(0.1%) \e[0m
+\e[1;34m 554.2ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall virtio.virtio_init\e[0m 1.1ms ±0.0ms \e[0;32m(0.1%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 555.4ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 555.4ms: \e[1;35m│ │ │ │ ▼ \e[0m
+\e[1;34m 555.4ms: \e[1;35m│ │ │ │ ▲ \e[0m\e[0;32minsmod virtio_ring\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 555.4ms: \e[1;35m│ │ │ │ ▼ \e[0m
+\e[1;34m 555.4ms: \e[1;35m│ │ │ │ ▲ \e[0m\e[0;32minsmod virtio_console\e[0m 2.0ms ±0.4ms \e[0;32m(0.2%) \e[0m
+          \e[1;35m│ │ │ │ │ \e[0m
+\e[1;34m 556.5ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall virtio_console.init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 556.5ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 557.4ms: \e[1;35m│ │ │ │ ▼ \e[0m
+\e[1;34m 557.4ms: \e[1;35m│ │ │ │ ▲ \e[0m\e[0;32minsmod virtio_scsi\e[0m 1.3ms ±0.5ms \e[0;32m(0.2%) \e[0m
+\e[1;34m 557.6ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[0;32minitcall virtio_scsi.init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[1;34m 557.6ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+          \e[1;35m│ │ │ │ │   \e[0m
+\e[1;34m 558.7ms: \e[1;35m│ │ │ │ ▼ \e[0m
+\e[1;34m 558.7ms: \e[1;35m│ │ │ │ ▲ \e[0m\e[1;31minsmod virtio_pci\e[0m 69.5ms ±12.1ms \e[1;31m(8.3%) \e[0m
+\e[1;34m 558.9ms: \e[1;35m│ │ │ │ │ ▲ \e[0m\e[1;31minitcall virtio_pci.virtio_pci_driver_init\e[0m 69.3ms ±12.2ms \e[1;31m(8.3%) \e[0m
+          \e[1;35m│ │ │ │ │ │ \e[0m
+\e[1;34m 628.2ms: \e[1;35m│ │ │ │ │ ▼ \e[0m
+\e[1;34m 628.2ms: \e[1;35m│ │ │ │ ▼ \e[0m
+          \e[1;35m│ │ │ │   \e[0m
+\e[1;34m 631.6ms: \e[1;35m│ │ │ ▼ \e[0m
+\e[1;34m 631.6ms: \e[1;35m│ │ │ ▲ ▲ \e[0m\e[1;31m/init\e[0m 178.7ms ±1.0ms \e[1;31m(21.3%) \e[0m\e[0;32mbash:overhead\e[0m 2.5ms ±0.1ms \e[0;32m(0.3%) \e[0m
+          \e[1;35m│ │ │ │ │ \e[0m
+\e[1;34m 634.1ms: \e[1;35m│ │ │ │ ▼ \e[0m
+          \e[1;35m│ │ │ │   \e[0m
+\e[1;34m 640.9ms: \e[1;35m│ │ │ │ ▲ \e[0m\e[1;31m/init:mount-special\e[0m 10.5ms ±0.2ms \e[1;31m(1.2%) \e[0m
+          \e[1;35m│ │ │ │ │ \e[0m
+\e[1;34m 651.4ms: \e[1;35m│ │ │ │ ▼ \e[0m
+\e[1;34m 651.4ms: \e[1;35m│ │ │ │ ▲ \e[0m\e[0;32m/init:kmod-static-nodes\e[0m 4.7ms ±0.1ms \e[0;32m(0.6%) \e[0m
+          \e[1;35m│ │ │ │ │ \e[0m
+\e[1;34m 656.1ms: \e[1;35m│ │ │ │ ▼ \e[0m
+\e[1;34m 656.1ms: \e[1;35m│ │ │ │ ▲ \e[0m\e[0;32m/init:systemd-tmpfiles\e[0m 2.2ms ±0.0ms \e[0;32m(0.3%) \e[0m
+          \e[1;35m│ │ │ │ │ \e[0m
+\e[1;34m 658.3ms: \e[1;35m│ │ │ │ ▼ \e[0m
+          \e[1;35m│ │ │ │   \e[0m
+\e[1;34m 659.4ms: \e[1;35m│ │ │ │ ▲ \e[0m\e[1;31m/init:udev-overhead\e[0m 116.6ms ±0.5ms \e[1;31m(13.9%) \e[0m
+          \e[1;35m│ │ │ │ │ \e[0m
+\e[1;34m 776.0ms: \e[1;35m│ │ │ │ ▼ \e[0m
+          \e[1;35m│ │ │ │   \e[0m
+\e[1;34m 790.6ms: \e[1;35m│ │ │ │ ▲ \e[0m\e[0;32m/init:network-overhead\e[0m 1.1ms ±0.0ms \e[0;32m(0.1%) \e[0m
+          \e[1;35m│ │ │ │ │ \e[0m
+\e[1;34m 791.7ms: \e[1;35m│ │ │ │ ▼ \e[0m
+\e[1;34m 791.7ms: \e[1;35m│ │ │ │ ▲ \e[0m\e[0;32m/init:md-probe\e[0m 4.2ms ±0.1ms \e[0;32m(0.5%) \e[0m
+          \e[1;35m│ │ │ │ │ \e[0m
+\e[1;34m 796.0ms: \e[1;35m│ │ │ │ ▼ \e[0m
+\e[1;34m 796.0ms: \e[1;35m│ │ │ │ ▲ \e[0m\e[0;32m/init:lvm-probe\e[0m 8.3ms ±0.5ms \e[0;32m(1.0%) \e[0m
+          \e[1;35m│ │ │ │ │ \e[0m
+\e[1;34m 804.3ms: \e[1;35m│ │ │ │ ▼ \e[0m
+\e[1;34m 804.3ms: \e[1;35m│ │ │ │ ▲ \e[0m\e[0;32m/init:windows-dynamic-disks-probe\e[0m 3.8ms ±0.4ms \e[0;32m(0.4%) \e[0m
+          \e[1;35m│ │ │ │ │ \e[0m
+\e[1;34m 808.0ms: \e[1;35m│ │ │ │ ▼ \e[0m
+          \e[1;35m│ │ │ │   \e[0m
+\e[1;34m 810.4ms: \e[1;35m│ │ │ ▼ \e[0m
+\e[1;34m 810.4ms: \e[1;35m│ │ │ ▲ \e[0m\e[1;31mguestfsd\e[0m 12.8ms ±0.6ms \e[1;31m(1.5%) \e[0m
+          \e[1;35m│ │ │ │ \e[0m
+\e[1;34m 817.5ms: \e[1;35m│ │ │ │ ▲ \e[0m\e[1;31mshutdown\e[0m 20.8ms ±0.3ms \e[1;31m(2.5%) \e[0m
+          \e[1;35m│ │ │ │ │ \e[0m
+\e[1;34m 823.1ms: \e[1;35m│ │ │ ▼ │ \e[0m
+          \e[1;35m│ │ │   │ \e[0m
+\e[1;34m 838.4ms: \e[1;35m▼ ▼ ▼   │ \e[0m
+\e[1;34m 838.4ms: \e[1;35m        ▼ \e[0m
+
+Longest activities:
+
+\e[0;32mrun\e[0m 838.4ms ±5.5ms \e[0;32m(100.0%) \e[0m
+\e[0;32mqemu\e[0m 825.4ms ±5.6ms \e[0;32m(98.4%) \e[0m
+\e[0;32mkernel\e[0m 678.2ms ±6.2ms \e[0;32m(80.9%) \e[0m
+\e[1;31mkernel:overhead\e[0m 389.4ms ±9.6ms \e[1;31m(46.4%) \e[0m
+\e[1;31mkernel:initcalls-before-userspace\e[0m 329.1ms ±8.8ms \e[1;31m(39.3%) \e[0m
+\e[1;31m/init\e[0m 178.7ms ±1.0ms \e[1;31m(21.3%) \e[0m
+\e[1;31m/init:udev-overhead\e[0m 116.6ms ±0.5ms \e[1;31m(13.9%) \e[0m
+\e[1;31minitcall kernel.acpi_init\e[0m 98.7ms ±5.7ms \e[1;31m(11.8%) \e[0m
+\e[1;31mqemu:overhead\e[0m 96.7ms ±1.0ms \e[1;31m(11.5%) \e[0m
+\e[1;31msupermin:mini-initrd\e[0m 82.1ms ±12.1ms \e[1;31m(9.8%) \e[0m
+\e[1;31minsmod virtio_pci\e[0m 69.5ms ±12.1ms \e[1;31m(8.3%) \e[0m
+\e[1;31minitcall virtio_pci.virtio_pci_driver_init\e[0m 69.3ms ±12.2ms \e[1;31m(8.3%) \e[0m
+\e[1;31mbios:overhead\e[0m 50.5ms ±0.5ms \e[1;31m(6.0%) \e[0m
+\e[1;31mseabios\e[0m 48.5ms ±0.2ms \e[1;31m(5.8%) \e[0m
+\e[1;31minitcall kernel.serial8250_init\e[0m 23.4ms ±0.1ms \e[1;31m(2.8%) \e[0m
+\e[1;31mshutdown\e[0m 20.8ms ±0.3ms \e[1;31m(2.5%) \e[0m
+\e[1;31mguestfsd\e[0m 12.8ms ±0.6ms \e[1;31m(1.5%) \e[0m
+\e[1;31msupermin:build\e[0m 10.6ms ±0.2ms \e[1;31m(1.3%) \e[0m
+\e[1;31m/init:mount-special\e[0m 10.5ms ±0.2ms \e[1;31m(1.2%) \e[0m
+\e[0;32m/init:lvm-probe\e[0m 8.3ms ±0.5ms \e[0;32m(1.0%) \e[0m
+\e[0;32minitcall kernel.init_acpi_pm_clocksource\e[0m 5.4ms ±0.4ms \e[0;32m(0.6%) \e[0m
+\e[0;32mkernel:alternatives\e[0m 4.9ms ±0.2ms \e[0;32m(0.6%) \e[0m
+\e[0;32m/init:kmod-static-nodes\e[0m 4.7ms ±0.1ms \e[0;32m(0.6%) \e[0m
+\e[0;32m/init:md-probe\e[0m 4.2ms ±0.1ms \e[0;32m(0.5%) \e[0m
+\e[0;32m/init:windows-dynamic-disks-probe\e[0m 3.8ms ±0.4ms \e[0;32m(0.4%) \e[0m
+\e[0;32minitcall kernel.pnpacpi_init\e[0m 3.7ms ±0.4ms \e[0;32m(0.4%) \e[0m
+\e[0;32minitcall kernel.init_hw_perf_events\e[0m 3.4ms ±0.0ms \e[0;32m(0.4%) \e[0m
+\e[0;32minitcall kernel.pty_init\e[0m 3.1ms ±0.2ms \e[0;32m(0.4%) \e[0m
+\e[0;32minsmod nfit\e[0m 2.5ms ±0.1ms \e[0;32m(0.3%) \e[0m
+\e[0;32mbash:overhead\e[0m 2.5ms ±0.1ms \e[0;32m(0.3%) \e[0m
+\e[0;32minitcall kernel.pcibios_assign_resources\e[0m 2.3ms ±0.0ms \e[0;32m(0.3%) \e[0m
+\e[0;32minitcall kernel.pci_subsys_init\e[0m 2.2ms ±0.0ms \e[0;32m(0.3%) \e[0m
+\e[0;32m/init:systemd-tmpfiles\e[0m 2.2ms ±0.0ms \e[0;32m(0.3%) \e[0m
+\e[0;32minitcall kernel.i8042_init\e[0m 2.0ms ±0.3ms \e[0;32m(0.2%) \e[0m
+\e[0;32msgabios\e[0m 2.0ms ±0.4ms \e[0;32m(0.2%) \e[0m
+\e[0;32minitcall kernel.pci_apply_final_quirks\e[0m 2.0ms ±0.5ms \e[0;32m(0.2%) \e[0m
+\e[0;32minsmod virtio_console\e[0m 2.0ms ±0.4ms \e[0;32m(0.2%) \e[0m
+\e[0;32minitcall kernel.acpi_processor_driver_init\e[0m 1.3ms ±0.4ms \e[0;32m(0.2%) \e[0m
+\e[0;32minitcall kernel.populate_rootfs\e[0m 1.3ms ±0.4ms \e[0;32m(0.2%) \e[0m
+\e[0;32minsmod virtio_scsi\e[0m 1.3ms ±0.5ms \e[0;32m(0.2%) \e[0m
+\e[0;32minitcall nfit.nfit_init\e[0m 1.3ms ±0.0ms \e[0;32m(0.2%) \e[0m
+\e[0;32minitcall kernel.init_jiffies_clocksource\e[0m 1.1ms ±0.0ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.acpi_button_driver_init\e[0m 1.1ms ±0.0ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.init_scsi\e[0m 1.1ms ±0.0ms \e[0;32m(0.1%) \e[0m
+\e[0;32m/init:network-overhead\e[0m 1.1ms ±0.0ms \e[0;32m(0.1%) \e[0m
+\e[0;32minsmod virtio\e[0m 1.1ms ±0.0ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall virtio.virtio_init\e[0m 1.1ms ±0.0ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.topology_sysfs_init\e[0m 1.1ms ±0.0ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.serial_pci_driver_init\e[0m 1.1ms ±0.0ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.param_sysfs_init\e[0m 1.0ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.perf_event_sysfs_init\e[0m 0.9ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.vga_arb_device_init\e[0m 0.9ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.af_unix_init\e[0m 0.9ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.bsg_init\e[0m 0.9ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.reboot_init\e[0m 0.9ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.futex_init\e[0m 0.9ms ±0.4ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.libnvdimm_init\e[0m 0.9ms ±0.4ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.pci_arch_init\e[0m 0.9ms ±0.4ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.acpi_battery_init\e[0m 0.9ms ±0.4ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.chr_dev_init\e[0m 0.8ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.slab_sysfs_init\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.clocksource_done_booting\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.cpu_stop_init\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.acpi_fan_driver_init\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.pci_proc_init\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.rcu_spawn_gp_kthread\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.init_timer_list_procfs\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.proc_genhd_init\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.pm_qos_power_init\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.mm_compute_batch_init\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.set_real_mode_permissions\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.bdi_class_init\e[0m 0.7ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.acpi_pci_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.init_ladder\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.proc_version_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.msr_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.init_workqueues\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.proc_cmdline_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.netlink_proto_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.sysfb_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.pcibus_class_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.genl_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.start_dirtytime_writeback\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.proto_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.workingset_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.power_supply_class_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.init_clocksource_sysfs\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.fanotify_user_setup\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.check_early_ioremap_leak\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.register_sk_filter_ops\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.prandom_reseed\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.nd_btt_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.init_sg\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.genhd_device_init\e[0m 0.7ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.init_elf_binfmt\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.vtconsole_class_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.kobject_uevent_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.init_tsc_clocksource\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.proc_dma_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.init_zero_pfn\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.proc_meminfo_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.init_posix_timers\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.boot_params_ksysfs_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.init_script_binfmt\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.default_bdi_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.arch_kdebugfs_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.proc_devices_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.pt_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.init_user_reserve\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.tty_class_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.utsname_sysctl_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.proc_filesystems_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.cstate_pmu_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.check_cpu_stall_init\e[0m 0.5ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.crypto_null_mod_init\e[0m 0.4ms ±0.6ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.pci_slot_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.proc_page_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.cfq_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.proc_modules_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.proc_kmsg_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.register_trigger_all_cpu_backtrace\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.chainiv_module_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.fsnotify_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.nmi_warning_debugfs\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.eventpoll_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.init_nls_utf8\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.noop_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.net_ns_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.slab_proc_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.sbf_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.init_sched_debug_procfs\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.add_rtc_cmos\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.inotify_user_setup\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.intel_uncore_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.proc_interrupts_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.crypto_algapi_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.uid_cache_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.spawn_ksoftirqd\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.init_default_flow_dissectors\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.print_ICs\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.lapic_insert_resource\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.hpet_insert_resource\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.percpu_enable_async\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.proc_uptime_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.sched_init_debug\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.hid_generic_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.deferred_probe_initcall\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.blk_settings_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.crypto_wq_init\e[0m 0.4ms ±0.5ms \e[0;32m(0.1%) \e[0m
+\e[0;32minitcall kernel.dnotify_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.pmc_atom_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.cpuidle_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.net_dev_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.init_per_zone_wmark_min\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.clockevents_init_sysfs\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.proc_execdomains_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.journal_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.init_pipe_fs\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.blk_softirq_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.i8237A_init_ops\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.ffh_cstate_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.ioapic_init_ops\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.activate_jump_labels\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.eseqiv_module_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.timekeeping_init_ops\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.fcntl_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.pci_iommu_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.proc_cpuinfo_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.pnp_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.proc_locks_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.blk_scsi_ioctl_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.topology_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.amd_ibs_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.proc_stat_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.blk_mq_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.ioresources_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.eth_offload_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.percpu_counter_startup\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.sock_init\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.init_bio\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.register_kernel_offset_dumper\e[0m 0.2ms ±0.5ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.rapl_pmu_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.nd_blk_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.crc32c_mod_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.i8259A_init_ops\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.procswaps_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.init_devpts_fs\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.prandom_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.init_vdso\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.create_tlb_single_page_flush_ceiling\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.init_reserve_notifier\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.deadline_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.max_swapfiles_check\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.bts_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.acpi_event_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.pci_driver_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.blk_ioc_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.pci_resource_alignment_sysfs_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.proc_loadavg_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.proc_consoles_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.serport_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.acpi_reserve_resources\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.proc_vmalloc_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.ext4_init_fs\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.cryptomgr_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.printk_late_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.sock_diag_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.init_oops_id\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.net_olddevs_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.pnp_system_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.pci_sysfs_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.acpi_ac_init\e[0m 0.2ms ±0.4ms \e[0;32m(0.0%) \e[0m
+\e[0;32mqemu:feature-detect\e[0m 0.1ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall virtio_scsi.init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.init_mmap_min_addr\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.init_cpu_syscore\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.ksysfs_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.setup_vmstat\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.acpi_thermal_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.misc_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.kallsyms_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.mbcache_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.filelock_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.input_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.e820_mark_nvs_memory\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.thermal_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.rand_initialize\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.dio_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall virtio_console.init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.mm_sysfs_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.anon_inode_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.hpet_late_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.sysctl_core_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.init_admin_reserve\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.neigh_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.init_posix_cpu_timers\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.aio_setup\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.pmem_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.proc_softirqs_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.alarmtimer_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.kswapd_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.oom_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.init_sd\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.migration_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.intel_cqm_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.validate_x2apic\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.init_ramfs_fs\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.wq_sysfs_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.update_mp_table\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.hid_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.fixup_ht_bug\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.serio_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minitcall kernel.cacheinfo_sysfs_init\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
+\e[0;32minsmod virtio_ring\e[0m 0.0ms ±0.0ms \e[0;32m(0.0%) \e[0m
diff --git a/2016-kvm-forum/boot-analysis-screenshot-2.png b/2016-kvm-forum/boot-analysis-screenshot-2.png
new file mode 100644 (file)
index 0000000..9227a3b
Binary files /dev/null and b/2016-kvm-forum/boot-analysis-screenshot-2.png differ
diff --git a/2016-kvm-forum/boot-analysis-screenshot-2.xcf b/2016-kvm-forum/boot-analysis-screenshot-2.xcf
new file mode 100644 (file)
index 0000000..d84aaaa
Binary files /dev/null and b/2016-kvm-forum/boot-analysis-screenshot-2.xcf differ
diff --git a/2016-kvm-forum/boot-analysis-screenshot.png b/2016-kvm-forum/boot-analysis-screenshot.png
new file mode 100644 (file)
index 0000000..b3548da
Binary files /dev/null and b/2016-kvm-forum/boot-analysis-screenshot.png differ
diff --git a/2016-kvm-forum/boot-analysis-screenshot.xcf b/2016-kvm-forum/boot-analysis-screenshot.xcf
new file mode 100644 (file)
index 0000000..ffd8f6f
Binary files /dev/null and b/2016-kvm-forum/boot-analysis-screenshot.xcf differ
diff --git a/2016-kvm-forum/kernel-config-minimal b/2016-kvm-forum/kernel-config-minimal
new file mode 100644 (file)
index 0000000..4d06670
--- /dev/null
@@ -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 (file)
index 0000000..d0dca57
--- /dev/null
@@ -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 (file)
index 0000000..dfd4b8a
--- /dev/null
@@ -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 (file)
index 0000000..5923c31
--- /dev/null
@@ -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"