From: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
To: David Miller <davem@davemloft.net>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH 5/5] perf: Fix build error with -Werror in print_event_desc()
Date: Mon, 26 Mar 2012 13:02:59 -0300 [thread overview]
Message-ID: <20120326160259.GL25820@infradead.org> (raw)
In-Reply-To: <20120325.162828.1850698867642275016.davem@davemloft.net>
Em Sun, Mar 25, 2012 at 04:28:28PM -0400, David Miller escreveu:
>
> 'msz' should not be cast to ssize_t when comparing it to
> 'sz'. 'sz' is a u32 and thus unsigned, just like the type
> of 'msz' which is plain size_t.
>
> Signed-off-by: David S. Miller <davem@davemloft.net>
> ---
> tools/perf/util/header.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
This one is already in perf/core:
commit 9fafd98f1bf14276f95b69f0186ad5675f1e1a18
Author: Jiri Olsa <jolsa@redhat.com>
Date: Tue Mar 20 19:15:39 2012 +0100
perf tools: Fix various casting issues for 32 bits
> diff --git a/tools/perf/util/header.c b/tools/perf/util/header.c
> index fcd9cf3..4c7c2d7 100644
> --- a/tools/perf/util/header.c
> +++ b/tools/perf/util/header.c
> @@ -1177,7 +1177,7 @@ static void print_event_desc(struct perf_header *ph, int fd, FILE *fp)
> goto error;
>
> msz = sizeof(attr);
> - if (sz < (ssize_t)msz)
> + if (sz < msz)
> msz = sz;
>
> for (i = 0 ; i < nre; i++) {
> --
> 1.7.9.1
prev parent reply other threads:[~2012-03-26 16:03 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-25 20:28 David Miller
2012-03-26 16:02 ` Arnaldo Carvalho de Melo [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=20120326160259.GL25820@infradead.org \
--to=acme@ghostprotocols.net \
--cc=davem@davemloft.net \
--cc=linux-kernel@vger.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®