Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0d0bea5e authored by Tom Zanussi's avatar Tom Zanussi Committed by Ingo Molnar
Browse files

perf tools: Add 'signed' flag setting back into trace-event-parse.c



Commit 13999e59 (perf tools:
Handle the case with and without the "signed" trace field)
removed code to set the FIELD_IS_SIGNED flag that was originally
added by commit 26a50744
(tracing/events: Add 'signed' field to format files).

This adds it back.

Signed-off-by: default avatarTom Zanussi <tzanussi@gmail.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
LKML-Reference: <1259133299-23594-2-git-send-email-tzanussi@gmail.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 9533ac62
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -941,7 +941,8 @@ static int event_read_fields(struct event *event, struct format_field **fields)
			if (read_expect_type(EVENT_ITEM, &token))
				goto fail;

			/* add signed type */
			if (strtoul(token, NULL, 0))
				field->flags |= FIELD_IS_SIGNED;

			free_token(token);
			if (read_expected(EVENT_OP, ";") < 0)