diff options
author | Harald Hoyer <harald@redhat.com> | 2013-04-24 17:15:47 +0200 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2013-04-25 09:13:05 +0200 |
commit | c3a170f3d3358135a39ac6eafe66f18aef0bd67d (patch) | |
tree | 75d9f5903de83379d6f76e675764dfd7e37ba673 /src/core/manager.c | |
parent | d6dd604b551987b411ec8930c23bd5c9c93ef864 (diff) |
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
Diffstat (limited to 'src/core/manager.c')
-rw-r--r-- | src/core/manager.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/manager.c b/src/core/manager.c index b1a22890fb..2265ef7173 100644 --- a/src/core/manager.c +++ b/src/core/manager.c @@ -70,7 +70,6 @@ #include "cgroup-util.h" #include "path-util.h" #include "audit-fd.h" -#include "efivars.h" #include "env-util.h" /* As soon as 16 units are in our GC queue, make sure to run a gc sweep */ @@ -440,14 +439,6 @@ int manager_new(SystemdRunningAs running_as, Manager **_m) { if (!m) return -ENOMEM; - dual_timestamp_get(&m->userspace_timestamp); - if (detect_container(NULL) <= 0) { - dual_timestamp_from_monotonic(&m->kernel_timestamp, 0); -#ifdef ENABLE_EFI - efi_get_boot_timestamps(&m->userspace_timestamp, &m->firmware_timestamp, &m->loader_timestamp); -#endif - } - m->running_as = running_as; m->name_data_slot = m->conn_data_slot = m->subscribed_data_slot = -1; m->exit_code = _MANAGER_EXIT_CODE_INVALID; |