From: Harald Hoyer Date: Wed, 24 Apr 2013 15:15:47 +0000 (+0200) Subject: systemd: record the timestamps as early as possible X-Git-Tag: v203~81 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=c3a170f3d3358135a39ac6eafe66f18aef0bd67d;hp=c3a170f3d3358135a39ac6eafe66f18aef0bd67d;p=elogind.git systemd: record the timestamps as early as possible The time for systemd initialization and selinux policy loading is accounted to the initrd or the kernel, which is wrong. Instead of: Startup finished in 5.559s (firmware) + 36ms (loader) + 665ms (kernel) + 975ms (initrd) + 1.410s (userspace) = 8.647s the more correct output is: Startup finished in 5.559s (firmware) + 36ms (loader) + 665ms (kernel) + 475ms (initrd) + 1.910s (userspace) = 8.647s ---