All of lore.kernel.org
 help / color / mirror / Atom feed
From: Frederic Weisbecker <fweisbec@gmail.com>
To: Jason Baron <jbaron@redhat.com>
Cc: mingo@elte.hu, rostedt@goodmis.org, linux-kernel@vger.kernel.org,
	acme@ghostprotocols.net, fche@redhat.com, peterz@infradead.org,
	compudj@krystal.dyndns.org
Subject: Re: [Patch 1/2] tracepoints for softirq entry/exit - add softirq-to-name array
Date: Thu, 12 Mar 2009 19:45:37 +0100	[thread overview]
Message-ID: <20090312184533.GB11045@nowhere> (raw)
In-Reply-To: <20090312183336.GB3352@redhat.com>

On Thu, Mar 12, 2009 at 02:33:36PM -0400, Jason Baron wrote:
> 
> create a 'softirq_to_name' array, which is indexed by softirq #, so
> that we can easily convert between the softirq index # and its name, in
> order to get more meaningful output messages.
> 
> Signed-off-by: Jason Baron <jbaron@redhat.com>
> 
> ---
> 
>  include/linux/interrupt.h |    5 +++++
>  kernel/softirq.c          |    9 ++++++++-
>  2 files changed, 13 insertions(+), 1 deletions(-)
> 
> 
> diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
> index e7bcfd7..da82ee4 100644
> --- a/include/linux/interrupt.h
> +++ b/include/linux/interrupt.h
> @@ -258,6 +258,11 @@ enum
>  	NR_SOFTIRQS
>  };
>  
> +/* map softirq index to softirq name. update 'softirq_to_name' in
> + * kernel/softirq.c when adding a new softirq.
> + */
> +extern char *softirq_to_name[NR_SOFTIRQS];
> +
>  /* softirq mask and active fields moved to irq_cpustat_t in
>   * asm/hardirq.h to get better cache usage.  KAO
>   */
> diff --git a/kernel/softirq.c b/kernel/softirq.c
> index 40ff3cf..ba1511f 100644
> --- a/kernel/softirq.c
> +++ b/kernel/softirq.c
> @@ -53,6 +53,12 @@ static struct softirq_action softirq_vec[NR_SOFTIRQS] __cacheline_aligned_in_smp
>  
>  static DEFINE_PER_CPU(struct task_struct *, ksoftirqd);
>  
> +char *softirq_to_name[NR_SOFTIRQS] = {
> +	"HI_SOFTIRQ", "TIMER_SOFTIRQ", "NET_TX_SOFTIRQ", "NET_RX_SOFTIRQ",
> +	"BLOCK_SOFTIRQ", "TASKLET_SOFTIRQ", "SCHED_SOFTIRQ", "HRTIMER_SOFTIRQ",
> +	"RCU_SOFTIRQ"
> +};


Hi,

May be you could abuse open_softirq() to append dynamically these entries:

char *softirq_to_name[NR_SOFTIRQS];

#define open_softirq(nr, func)	\
	softirq_to_name[nr] = __stringify(nr); \
	__open_softirq(nr, func);

So that it's a bit more scalable.

Frederic.


> +
>  /*
>   * we cannot loop indefinitely here to avoid userspace starvation,
>   * but we also don't want to introduce a worst case 1/HZ latency
> @@ -209,9 +215,10 @@ restart:
>  			h->action(h);
>  
>  			if (unlikely(prev_count != preempt_count())) {
> -				printk(KERN_ERR "huh, entered softirq %td %p"
> +				printk(KERN_ERR "huh, entered softirq %td %s %p"
>  				       "with preempt_count %08x,"
>  				       " exited with %08x?\n", h - softirq_vec,
> +				       softirq_to_name[h - softirq_vec],
>  				       h->action, prev_count, preempt_count());
>  				preempt_count() = prev_count;
>  			}


  reply	other threads:[~2009-03-12 18:45 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-03-12 18:33 [Patch 1/2] tracepoints for softirq entry/exit - add softirq-to-name array Jason Baron
2009-03-12 18:45 ` Frederic Weisbecker [this message]
2009-03-12 22:44   ` Steven Rostedt
2009-03-13  4:02 ` [tip:tracing/ftrace] tracing: " Jason Baron
2009-03-14  2:53 ` [Patch 1/2] " Mathieu Desnoyers
2009-03-16 18:58 ` Jason Baron

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=20090312184533.GB11045@nowhere \
    --to=fweisbec@gmail.com \
    --cc=acme@ghostprotocols.net \
    --cc=compudj@krystal.dyndns.org \
    --cc=fche@redhat.com \
    --cc=jbaron@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=peterz@infradead.org \
    --cc=rostedt@goodmis.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.