From: Steven Whitehouse <swhiteho@redhat.com>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] [PATCH 3/7] fs/gfs2/glock.c: Convert sprintf_symbol to %pS
Date: Mon, 08 Nov 2010 10:26:16 +0000 [thread overview]
Message-ID: <1289211976.2408.1.camel@dolmen> (raw)
In-Reply-To: <1288998760-11775-4-git-send-email-joe@perches.com>
Hi,
On Fri, 2010-11-05 at 16:12 -0700, Joe Perches wrote:
> Signed-off-by: Joe Perches <joe@perches.com>
> ---
Seems like a good idea:
Acked-by: Steven Whitehouse <swhiteho@redhat.com>
Steve.
> fs/gfs2/glock.c | 15 +++++++--------
> 1 files changed, 7 insertions(+), 8 deletions(-)
>
> diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c
> index 8777885..08dd4a2 100644
> --- a/fs/gfs2/glock.c
> +++ b/fs/gfs2/glock.c
> @@ -1627,18 +1627,17 @@ static const char *hflags2str(char *buf, unsigned flags, unsigned long iflags)
> static int dump_holder(struct seq_file *seq, const struct gfs2_holder *gh)
> {
> struct task_struct *gh_owner = NULL;
> - char buffer[KSYM_SYMBOL_LEN];
> char flags_buf[32];
>
> - sprint_symbol(buffer, gh->gh_ip);
> if (gh->gh_owner_pid)
> gh_owner = pid_task(gh->gh_owner_pid, PIDTYPE_PID);
> - gfs2_print_dbg(seq, " H: s:%s f:%s e:%d p:%ld [%s] %s\n",
> - state2str(gh->gh_state),
> - hflags2str(flags_buf, gh->gh_flags, gh->gh_iflags),
> - gh->gh_error,
> - gh->gh_owner_pid ? (long)pid_nr(gh->gh_owner_pid) : -1,
> - gh_owner ? gh_owner->comm : "(ended)", buffer);
> + gfs2_print_dbg(seq, " H: s:%s f:%s e:%d p:%ld [%s] %pS\n",
> + state2str(gh->gh_state),
> + hflags2str(flags_buf, gh->gh_flags, gh->gh_iflags),
> + gh->gh_error,
> + gh->gh_owner_pid ? (long)pid_nr(gh->gh_owner_pid) : -1,
> + gh_owner ? gh_owner->comm : "(ended)",
> + (void *)gh->gh_ip);
> return 0;
> }
>
WARNING: multiple messages have this Message-ID (diff)
From: Steven Whitehouse <swhiteho@redhat.com>
To: Joe Perches <joe@perches.com>
Cc: Jiri Kosina <trivial@kernel.org>,
cluster-devel@redhat.com, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 3/7] fs/gfs2/glock.c: Convert sprintf_symbol to %pS
Date: Mon, 08 Nov 2010 10:26:16 +0000 [thread overview]
Message-ID: <1289211976.2408.1.camel@dolmen> (raw)
In-Reply-To: <1288998760-11775-4-git-send-email-joe@perches.com>
Hi,
On Fri, 2010-11-05 at 16:12 -0700, Joe Perches wrote:
> Signed-off-by: Joe Perches <joe@perches.com>
> ---
Seems like a good idea:
Acked-by: Steven Whitehouse <swhiteho@redhat.com>
Steve.
> fs/gfs2/glock.c | 15 +++++++--------
> 1 files changed, 7 insertions(+), 8 deletions(-)
>
> diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c
> index 8777885..08dd4a2 100644
> --- a/fs/gfs2/glock.c
> +++ b/fs/gfs2/glock.c
> @@ -1627,18 +1627,17 @@ static const char *hflags2str(char *buf, unsigned flags, unsigned long iflags)
> static int dump_holder(struct seq_file *seq, const struct gfs2_holder *gh)
> {
> struct task_struct *gh_owner = NULL;
> - char buffer[KSYM_SYMBOL_LEN];
> char flags_buf[32];
>
> - sprint_symbol(buffer, gh->gh_ip);
> if (gh->gh_owner_pid)
> gh_owner = pid_task(gh->gh_owner_pid, PIDTYPE_PID);
> - gfs2_print_dbg(seq, " H: s:%s f:%s e:%d p:%ld [%s] %s\n",
> - state2str(gh->gh_state),
> - hflags2str(flags_buf, gh->gh_flags, gh->gh_iflags),
> - gh->gh_error,
> - gh->gh_owner_pid ? (long)pid_nr(gh->gh_owner_pid) : -1,
> - gh_owner ? gh_owner->comm : "(ended)", buffer);
> + gfs2_print_dbg(seq, " H: s:%s f:%s e:%d p:%ld [%s] %pS\n",
> + state2str(gh->gh_state),
> + hflags2str(flags_buf, gh->gh_flags, gh->gh_iflags),
> + gh->gh_error,
> + gh->gh_owner_pid ? (long)pid_nr(gh->gh_owner_pid) : -1,
> + gh_owner ? gh_owner->comm : "(ended)",
> + (void *)gh->gh_ip);
> return 0;
> }
>
next prev parent reply other threads:[~2010-11-08 10:26 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-05 23:12 [Cluster-devel] [PATCH 0/7] Convert sprintf_symbol uses to %p[Ss] Joe Perches
2010-11-05 23:12 ` Joe Perches
2010-11-05 23:12 ` Joe Perches
2010-11-05 23:12 ` Joe Perches
2010-11-05 23:12 ` [PATCH 1/7] arch/arm/kernel/traps.c: Convert sprintf_symbol to %pS Joe Perches
2010-11-05 23:12 ` Joe Perches
2010-11-05 23:12 ` [PATCH 2/7] arch/x86/kernel/pci-iommu_table.c: " Joe Perches
2010-11-10 15:48 ` Joerg Roedel
2010-11-05 23:12 ` [Cluster-devel] [PATCH 3/7] fs/gfs2/glock.c: " Joe Perches
2010-11-05 23:12 ` Joe Perches
2010-11-08 10:26 ` Steven Whitehouse [this message]
2010-11-08 10:26 ` Steven Whitehouse
2010-11-05 23:12 ` [PATCH 4/7] fs/proc/base.c kernel/latencytop.c: Convert sprintf_symbol to %ps Joe Perches
2010-11-05 23:12 ` [PATCH 5/7] kernel/lockdep_proc.c: Convert sprintf_symbol to %pS Joe Perches
2010-11-05 23:12 ` [PATCH 6/7] mm: " Joe Perches
2010-11-05 23:12 ` Joe Perches
2010-11-06 15:00 ` Pekka Enberg
2010-11-06 15:00 ` Pekka Enberg
2010-11-05 23:12 ` [PATCH 7/7] net/sunrpc/clnt.c: Convert sprintf_symbol to %ps Joe Perches
2010-11-05 23:12 ` Joe Perches
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=1289211976.2408.1.camel@dolmen \
--to=swhiteho@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.