From: "Jörn Engel" <joern@logfs.org>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Jiri Kosina <jkosina@suse.cz>, Rik van Riel <riel@redhat.com>,
linux-kernel@vger.kernel.org, peterz@infradead.org,
akpm@linux-foundation.org, cxie@redhat.com,
Jiri Slaby <jslaby@suse.cz>
Subject: Re: [PATCH] printk: Print cpu number along with time
Date: Thu, 24 Apr 2014 17:23:13 -0400 [thread overview]
Message-ID: <20140424212313.GB25446@logfs.org> (raw)
In-Reply-To: <20140424195821.GA3092@kroah.com>
On Thu, 24 April 2014 12:58:21 -0700, Greg Kroah-Hartman wrote:
> > @@ -868,11 +870,20 @@ static size_t print_time(u64 ts, char *buf)
> >
> > rem_nsec = do_div(ts, 1000000000);
> >
> > +#ifdef CONFIG_PRINTK_CPU
> > + if (!buf)
> > + return snprintf(NULL, 0, "[%5lu.000000,%02x] ",
>
> %02x for a cpu? What happens on machines with 8k cpus?
You should get something like:
Apr 23 10:34:03 [ 228.950926,1a] Call Trace:
Apr 23 10:34:03 [ 228.950926,201] Call Trace:
Apr 23 10:34:03 [ 228.950928,1a] [<ffffffff815e0f29>] schedule+0x29/0x70
...
That said, I don't have access to hardware with >256 cpus and haven't
actually tested this.
> And is this really an issue? Debugging by using printk is fun, but not
> really something that people need to add a cpu number to. Why not just
> use a tracepoint in your code to get the needed information instead?
Yes, this is an issue. There have been several instances in my life
when I would have had to guess which function belonged to which
backtrace without this patch. Good guesses take a long time, bad
guesses are nearly useless and giving up means you cannot debug the
issue.
I don't have a good example at hand, but here is something from a
quick grep for illustration.
Feb 22 19:04:46 [ 11.642470,2e] Call Trace:
Feb 22 19:04:46 [ 11.642472,16] Call Trace:
Feb 22 19:04:46 [ 11.642476,29] [<ffffffff81115bf8>] pcpu_alloc+0x988/0xa20
Feb 22 19:04:46 [ 11.642481,01] [<ffffffff810992ad>] ? find_symbol+0x3d/0xb0
Feb 22 19:04:46 [ 11.642489,05] [<ffffffff81115bf8>] pcpu_alloc+0x988/0xa20
Feb 22 19:04:46 [ 11.642493,12] [<ffffffff81115bf8>] pcpu_alloc+0x988/0xa20
Feb 22 19:04:46 [ 11.642498,08] [<ffffffff81115bf8>] pcpu_alloc+0x988/0xa20
Feb 22 19:04:46 [ 11.642504,21] [<ffffffff810992ad>] ? find_symbol+0x3d/0xb0
And are you seriously suggesting I use a tracepoint for kernel panics? ;)
Jörn
--
There's nothing better for promoting creativity in a medium than
making an audience feel "Hmm I could do better than that!"
-- Douglas Adams in a slashdot interview
next prev parent reply other threads:[~2014-04-24 21:24 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-23 16:53 [PATCH RFC] sysrq: rcu-ify __handle_sysrq Rik van Riel
2014-04-23 20:04 ` Andrew Morton
2014-04-23 20:44 ` Rik van Riel
2014-04-23 21:39 ` Jiri Kosina
2014-04-23 21:41 ` Andrew Morton
2014-04-23 21:44 ` Jiri Kosina
2014-04-23 21:49 ` Andrew Morton
2014-04-23 21:37 ` Jiri Kosina
2014-04-23 21:42 ` Rik van Riel
2014-04-23 21:51 ` Jiri Kosina
2014-04-24 1:46 ` Paul E. McKenney
2014-04-24 13:04 ` [PATCH RFC] sysrq,rcu: suppress RCU stall warnings while sysrq runs Rik van Riel
2014-04-24 15:16 ` Paul E. McKenney
2014-04-25 5:35 ` Mike Galbraith
2014-04-24 0:52 ` [PATCH RFC] sysrq: rcu-ify __handle_sysrq Jörn Engel
2014-04-24 19:40 ` [PATCH] printk: Print cpu number along with time Jörn Engel
2014-04-24 19:58 ` Greg Kroah-Hartman
2014-04-24 21:23 ` Jörn Engel [this message]
2014-04-24 22:12 ` Jiri Kosina
2014-04-24 22:18 ` David Rientjes
2014-04-24 22:21 ` Jiri Kosina
2014-04-24 23:29 ` Jörn Engel
2014-04-24 22:20 ` Greg Kroah-Hartman
2014-04-28 23:40 ` Jörn Engel
2014-04-29 0:22 ` Andrew Morton
2014-06-04 23:15 ` Jörn Engel
2014-06-04 23:28 ` Andrew Morton
2014-06-04 23:49 ` Jörn Engel
2014-09-09 17:16 ` Jörn Engel
2014-09-10 21:26 ` Andrew Morton
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=20140424212313.GB25446@logfs.org \
--to=joern@logfs.org \
--cc=akpm@linux-foundation.org \
--cc=cxie@redhat.com \
--cc=gregkh@linuxfoundation.org \
--cc=jkosina@suse.cz \
--cc=jslaby@suse.cz \
--cc=linux-kernel@vger.kernel.org \
--cc=peterz@infradead.org \
--cc=riel@redhat.com \
/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 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.