diff options
author | Namhyung Kim <[email protected]> | 2013-03-13 20:19:42 +0900 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2013-03-15 13:06:09 -0300 |
commit | 024b13082e9d4a50f2d39c5fe2d1179261e7aa22 (patch) | |
tree | 82d21e942c013a8f5eea7aa87e383047f985398f | |
parent | d301de830d89454a47947e9a3851708e8f3a8822 (diff) |
perf tools: Remove unnecessary calc_data_size variable
It's not set from anywhere so no need to keep it. Looks like an
unneeded copy of the same variable in trace-event-read.c
Signed-off-by: Namhyung Kim <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Steven Rostedt <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | tools/perf/util/trace-event-info.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/perf/util/trace-event-info.c b/tools/perf/util/trace-event-info.c index b0bbd76f4a56..783ab51e3ff7 100644 --- a/tools/perf/util/trace-event-info.c +++ b/tools/perf/util/trace-event-info.c @@ -119,17 +119,10 @@ static void put_tracing_file(char *file) free(file); } -static ssize_t calc_data_size; - static ssize_t write_or_die(const void *buf, size_t len) { int ret; - if (calc_data_size) { - calc_data_size += len; - return len; - } - ret = write(output_fd, buf, len); if (ret < 0) die("writing to '%s'", output_file); |