* + init-use-ktime_us_delta-to-make-initcall_debug-log-more-precise.patch added to -mm tree
@ 2022-02-11 21:59 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2022-02-11 21:59 UTC (permalink / raw)
To: mm-commits, yj.chiang, wangkefeng.wang, vbabka,
valentin.schneider, rostedt, peterz, mhiramat, matthias.bgg,
linux, keescook, ahalaney, mark-pk.tsai, akpm
The patch titled
Subject: init: use ktime_us_delta() to make initcall_debug log more precise
has been added to the -mm tree. Its filename is
init-use-ktime_us_delta-to-make-initcall_debug-log-more-precise.patch
This patch should soon appear at
https://ozlabs.org/~akpm/mmots/broken-out/init-use-ktime_us_delta-to-make-initcall_debug-log-more-precise.patch
and later at
https://ozlabs.org/~akpm/mmotm/broken-out/init-use-ktime_us_delta-to-make-initcall_debug-log-more-precise.patch
Before you just go and hit "reply", please:
a) Consider who else should be cc'ed
b) Prefer to cc a suitable mailing list as well
c) Ideally: find the original patch on the mailing list and do a
reply-to-all to that, adding suitable additional cc's
*** Remember to use Documentation/process/submit-checklist.rst when testing your code ***
The -mm tree is included into linux-next and is updated
there every 3-4 working days
------------------------------------------------------
From: Mark-PK Tsai <mark-pk.tsai@mediatek.com>
Subject: init: use ktime_us_delta() to make initcall_debug log more precise
Use ktime_us_delta() to make the initcall_debug log more precise than
right shifting the result of ktime_to_ns() by 10 bits.
Link: https://lkml.kernel.org/r/20220209053350.15771-1-mark-pk.tsai@mediatek.com
Signed-off-by: Mark-PK Tsai <mark-pk.tsai@mediatek.com>
Reviewed-by: Andrew Halaney <ahalaney@redhat.com>
Tested-by: Andrew Halaney <ahalaney@redhat.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Matthias Brugger <matthias.bgg@gmail.com>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Kefeng Wang <wangkefeng.wang@huawei.com>
Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Cc: Kees Cook <keescook@chromium.org>
Cc: Valentin Schneider <valentin.schneider@arm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: YJ Chiang <yj.chiang@mediatek.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
--- a/init/main.c~init-use-ktime_us_delta-to-make-initcall_debug-log-more-precise
+++ a/init/main.c
@@ -1246,15 +1246,11 @@ trace_initcall_start_cb(void *data, init
static __init_or_module void
trace_initcall_finish_cb(void *data, initcall_t fn, int ret)
{
- ktime_t *calltime = (ktime_t *)data;
- ktime_t delta, rettime;
- unsigned long long duration;
+ ktime_t rettime, *calltime = (ktime_t *)data;
rettime = ktime_get();
- delta = ktime_sub(rettime, *calltime);
- duration = (unsigned long long) ktime_to_ns(delta) >> 10;
printk(KERN_DEBUG "initcall %pS returned %d after %lld usecs\n",
- fn, ret, duration);
+ fn, ret, (unsigned long long)ktime_us_delta(rettime, *calltime));
}
static ktime_t initcall_calltime;
_
Patches currently in -mm which might be from mark-pk.tsai@mediatek.com are
init-use-ktime_us_delta-to-make-initcall_debug-log-more-precise.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2022-02-11 21:59 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-11 21:59 + init-use-ktime_us_delta-to-make-initcall_debug-log-more-precise.patch added to -mm tree Andrew Morton
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.