mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Lei Wen <leiwen@marvell.com>
To: John Stultz <john.stultz@linaro.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	Stephen Boyd <sboyd@codeaurora.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Steven Rostedt <rostedt@goodmis.org>,
	Michael Opdenacker <michael.opdenacker@free-electrons.com>,
	Joe Perches <joe@perches.com>, Tejun Heo <tj@kernel.org>,
	Petr Mladek <pmladek@suse.cz>, <linux-kernel@vger.kernel.org>,
	<leiwen@marvell.com>
Subject: [PATCH 3/3] printk: using booting time as the timestamp
Date: Fri, 4 Apr 2014 11:18:42 +0800	[thread overview]
Message-ID: <1396581522-3309-4-git-send-email-leiwen@marvell.com> (raw)
In-Reply-To: <1396581522-3309-1-git-send-email-leiwen@marvell.com>

As people may want to align the kernel log with some other processor
running over the same machine but not the same copy of linux, we
need to keep their log aligned, so that it would not make debug
process hard and confused.

Signed-off-by: Lei Wen <leiwen@marvell.com>
---
 kernel/printk/printk.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c
index a45b509..af96fbd 100644
--- a/kernel/printk/printk.c
+++ b/kernel/printk/printk.c
@@ -349,7 +349,7 @@ static void log_store(int facility, int level,
 	if (ts_nsec > 0)
 		msg->ts_nsec = ts_nsec;
 	else
-		msg->ts_nsec = local_clock();
+		msg->ts_nsec = ktime_to_ns(ktime_get_boottime());
 	memset(log_dict(msg) + dict_len, 0, pad_len);
 	msg->len = size;
 
@@ -1440,7 +1440,7 @@ static bool cont_add(int facility, int level, const char *text, size_t len)
 		cont.facility = facility;
 		cont.level = level;
 		cont.owner = current;
-		cont.ts_nsec = local_clock();
+		cont.ts_nsec = ktime_to_ns(ktime_get_boottime());
 		cont.flags = 0;
 		cont.cons = 0;
 		cont.flushed = false;
-- 
1.8.3.2


  parent reply	other threads:[~2014-04-04  3:19 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-04  3:18 [PATCH 0/3] switch printk timestamp to use booting time Lei Wen
2014-04-04  3:18 ` [PATCH 1/3] time: create __get_monotonic_boottime for WARNless calls Lei Wen
2014-04-04  3:18 ` [PATCH 2/3] timekeeping: move clocksource init to the early place Lei Wen
2014-04-04  3:18 ` Lei Wen [this message]
2014-04-04 21:55   ` [PATCH 3/3] printk: using booting time as the timestamp John Stultz
2014-04-05  8:01     ` Peter Zijlstra

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1396581522-3309-4-git-send-email-leiwen@marvell.com \
    --to=leiwen@marvell.com \
    --cc=akpm@linux-foundation.org \
    --cc=joe@perches.com \
    --cc=john.stultz@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=michael.opdenacker@free-electrons.com \
    --cc=pmladek@suse.cz \
    --cc=rostedt@goodmis.org \
    --cc=sboyd@codeaurora.org \
    --cc=tglx@linutronix.de \
    --cc=tj@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®