lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Wed, 30 May 2012 00:48:05 -0700 From: tip-bot for Namhyung Kim <namhyung@...il.com> To: linux-tip-commits@...r.kernel.org Cc: acme@...hat.com, linux-kernel@...r.kernel.org, paulus@...ba.org, hpa@...or.com, mingo@...nel.org, a.p.zijlstra@...llo.nl, namhyung@...il.com, fweisbec@...il.com, rostedt@...dmis.org, tglx@...utronix.de Subject: [tip:perf/urgent] tools lib traceevent: Silence compiler warning on 32bit build Commit-ID: 42c59cdab42b8909454e0d434e3977cd3b636fbd Gitweb: http://git.kernel.org/tip/42c59cdab42b8909454e0d434e3977cd3b636fbd Author: Namhyung Kim <namhyung@...il.com> AuthorDate: Sat, 26 May 2012 12:41:31 +0900 Committer: Arnaldo Carvalho de Melo <acme@...hat.com> CommitDate: Sat, 26 May 2012 14:14:58 -0300 tools lib traceevent: Silence compiler warning on 32bit build The gcc complains about casting a pointer to unsigned long long directly: SUBDIR ../lib/traceevent/ CC FPIC event-parse.o CC FPIC trace-seq.o CC FPIC parse-filter.o /home/namhyung/project/linux/tools/lib/traceevent/parse-filter.c: In function ‘get_value’: /home/namhyung/project/linux/tools/lib/traceevent/parse-filter.c:1588: warning: cast from pointer to integer of different size CC FPIC parse-utils.o BUILD STATIC LIB libtraceevent.a Signed-off-by: Namhyung Kim <namhyung@...il.com> Cc: Frederic Weisbecker <fweisbec@...il.com> Cc: Paul Mackerras <paulus@...ba.org> Cc: Peter Zijlstra <a.p.zijlstra@...llo.nl> Cc: Steven Rostedt <rostedt@...dmis.org> Link: http://lkml.kernel.org/r/1338003691-3141-1-git-send-email-namhyung@gmail.com Signed-off-by: Arnaldo Carvalho de Melo <acme@...hat.com> --- tools/lib/traceevent/parse-filter.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/lib/traceevent/parse-filter.c b/tools/lib/traceevent/parse-filter.c index e08d21f..dfcfe2c 100644 --- a/tools/lib/traceevent/parse-filter.c +++ b/tools/lib/traceevent/parse-filter.c @@ -1584,7 +1584,7 @@ get_value(struct event_format *event, const char *name; name = get_comm(event, record); - return (unsigned long long)name; + return (unsigned long)name; } pevent_read_number_field(field, record->data, &val); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists