All of lore.kernel.org
 help / color / mirror / Atom feed
From: Joe Perches <joe@perches.com>
To: linux-kernel@vger.kernel.org, linux-tip-commits@vger.kernel.org
Cc: Helge Deller <deller@gmx.de>,
	Thomas Gleixner <tglx@linutronix.de>,
	x86@kernel.org
Subject: Re: [tip: timers/core] timer_list: Use printk format instead of open-coded symbol lookup
Date: Sun, 15 Nov 2020 17:48:01 -0800	[thread overview]
Message-ID: <720b8857ebbe1be81babd04463b865d94049c0a9.camel@perches.com> (raw)
In-Reply-To: <160548066806.11244.12654291126762323623.tip-bot2@tip-bot2>

On Sun, 2020-11-15 at 22:51 +0000, tip-bot2 for Helge Deller wrote:
> The following commit has been merged into the timers/core branch of tip:
> 
> Commit-ID:     da88f9b3113620dcd30fc203236aa53d5430ee98
> Gitweb:        https://git.kernel.org/tip/da88f9b3113620dcd30fc203236aa53d5430ee98
> Author:        Helge Deller <deller@gmx.de>
> AuthorDate:    Wed, 04 Nov 2020 17:34:01 +01:00
> Committer:     Thomas Gleixner <tglx@linutronix.de>
> CommitterDate: Sun, 15 Nov 2020 20:47:14 +01:00
> 
> timer_list: Use printk format instead of open-coded symbol lookup
> 
> Use the "%ps" printk format string to resolve symbol names.
> 
> This works on all platforms, including ia64, ppc64 and parisc64 on which
> one needs to dereference pointers to function descriptors instead of
> function pointers.
> 
> Signed-off-by: Helge Deller <deller@gmx.de>
> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
> Link: https://lore.kernel.org/r/20201104163401.GA3984@ls3530.fritz.box
> 
> 
> ---
>  kernel/time/timer_list.c | 66 +++++++++++----------------------------
>  1 file changed, 19 insertions(+), 47 deletions(-)
> 
> diff --git a/kernel/time/timer_list.c b/kernel/time/timer_list.c
> index acb326f..6939140 100644
> --- a/kernel/time/timer_list.c
> +++ b/kernel/time/timer_list.c
> @@ -42,24 +42,11 @@ static void SEQ_printf(struct seq_file *m, const char *fmt, ...)
>  	va_end(args);
>  }
>  
> 
> -static void print_name_offset(struct seq_file *m, void *sym)
> -{
> -	char symname[KSYM_NAME_LEN];
> -
> -	if (lookup_symbol_name((unsigned long)sym, symname) < 0)
> -		SEQ_printf(m, "<%pK>", sym);
> -	else
> -		SEQ_printf(m, "%s", symname);
> -}
> -
>  static void
>  print_timer(struct seq_file *m, struct hrtimer *taddr, struct hrtimer *timer,
>  	    int idx, u64 now)
>  {
> -	SEQ_printf(m, " #%d: ", idx);
> -	print_name_offset(m, taddr);
> -	SEQ_printf(m, ", ");
> -	print_name_offset(m, timer->function);
> +	SEQ_printf(m, " #%d: <%pK>, %ps", idx, taddr, timer->function);
>  	SEQ_printf(m, ", S:%02x", timer->state);
>  	SEQ_printf(m, "\n");

trivia:

This could be coalesced into a single line statement.

	SEQ_printf(m, "%d: <%pK>, %ps, S:%02x\n",
		   idx, taddr, timer->function, timer->state);

[]

> -	if (dev->set_state_periodic) {
> -		SEQ_printf(m, " periodic: ");
> -		print_name_offset(m, dev->set_state_periodic);
> -		SEQ_printf(m, "\n");
> -	}
> +	if (dev->set_state_periodic)
> +		SEQ_printf(m, " periodic:       %ps\n",
> +			dev->set_state_periodic);

There is now additional whitespace after periodic: and oneshot:

This _might_ break some silly script that uses fixed column alignment
for the SEQ_ output.

It does look nicer now though.


      reply	other threads:[~2020-11-16  1:48 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-04 16:34 [PATCH] timer_list: Use printk format instead of open-coded symbol lookup Helge Deller
2020-11-15 22:51 ` [tip: timers/core] " tip-bot2 for Helge Deller
2020-11-16  1:48   ` Joe Perches [this message]

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=720b8857ebbe1be81babd04463b865d94049c0a9.camel@perches.com \
    --to=joe@perches.com \
    --cc=deller@gmx.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-tip-commits@vger.kernel.org \
    --cc=tglx@linutronix.de \
    --cc=x86@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 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.