Skip to content

Commit

Permalink
perf tool: Fix gcc 4.6.0 issues
Browse files Browse the repository at this point in the history
commit fb7d0b3 upstream.

GCC 4.6.0 in Fedora rawhide turned up some compile errors in tools/perf
due to the -Werror=unused-but-set-variable flag.

I've gone through and annotated some of the assignments that had side
effects (ie: return value from a function) with the __used annotation,
and in some cases, just removed unused code.

In a few cases, we were assigning something useful, but not using it in
later parts of the function.

kyle@dreadnought:~/src% gcc --version
gcc (GCC) 4.6.0 20110122 (Red Hat 4.6.0-0.3)

Cc: Ingo Molnar <mingo@redhat.com>
LKML-Reference: <20110124161304.GK27353@bombadil.infradead.org>
Signed-off-by: Kyle McMartin <kyle@redhat.com>
[ committer note: Fixed up the annotation fixes, as that code moved recently ]
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
[Backported to 2.6.38.2 by deleting unused but set variables]
Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Kyle McMartin authored and Greg Kroah-Hartman committed Apr 21, 2011
1 parent 2951119 commit 2226d5b
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 24 deletions.
2 changes: 1 addition & 1 deletion tools/perf/bench/sched-pipe.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ int bench_sched_pipe(int argc, const char **argv,
* discarding returned value of read(), write()
* causes error in building environment for perf
*/
int ret, wait_stat;
int __used ret, wait_stat;
pid_t pid, retpid;

argc = parse_options(argc, argv, options,
Expand Down
12 changes: 3 additions & 9 deletions tools/perf/builtin-sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -369,11 +369,6 @@ static void
process_sched_event(struct task_desc *this_task __used, struct sched_atom *atom)
{
int ret = 0;
u64 now;
long long delta;

now = get_nsecs();
delta = start_time + atom->timestamp - now;

switch (atom->type) {
case SCHED_EVENT_RUN:
Expand Down Expand Up @@ -562,7 +557,7 @@ static void wait_for_tasks(void)

static void run_one_test(void)
{
u64 T0, T1, delta, avg_delta, fluct, std_dev;
u64 T0, T1, delta, avg_delta, fluct;

T0 = get_nsecs();
wait_for_tasks();
Expand All @@ -578,7 +573,6 @@ static void run_one_test(void)
else
fluct = delta - avg_delta;
sum_fluct += fluct;
std_dev = sum_fluct / nr_runs / sqrt(nr_runs);
if (!run_avg)
run_avg = delta;
run_avg = (run_avg*9 + delta)/10;
Expand Down Expand Up @@ -799,7 +793,7 @@ replay_switch_event(struct trace_switch_event *switch_event,
u64 timestamp,
struct thread *thread __used)
{
struct task_desc *prev, *next;
struct task_desc *prev, __used *next;
u64 timestamp0;
s64 delta;

Expand Down Expand Up @@ -1404,7 +1398,7 @@ map_switch_event(struct trace_switch_event *switch_event,
u64 timestamp,
struct thread *thread __used)
{
struct thread *sched_out, *sched_in;
struct thread *sched_out __used, *sched_in;
int new_shortname;
u64 timestamp0;
s64 delta;
Expand Down
5 changes: 1 addition & 4 deletions tools/perf/builtin-top.c
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@ static int parse_source(struct sym_entry *syme)
FILE *file;
char command[PATH_MAX*2];
const char *path;
u64 len;

if (!syme)
return -1;
Expand Down Expand Up @@ -212,8 +211,6 @@ static int parse_source(struct sym_entry *syme)
}
path = map->dso->long_name;

len = sym->end - sym->start;

sprintf(command,
"objdump --start-address=%#0*" PRIx64 " --stop-address=%#0*" PRIx64 " -dS %s",
BITS_PER_LONG / 4, map__rip_2objdump(map, sym->start),
Expand Down Expand Up @@ -1296,7 +1293,7 @@ static int __cmd_top(void)
{
pthread_t thread;
struct perf_evsel *counter;
int i, ret;
int i, ret __used;
/*
* FIXME: perf_session__new should allow passing a O_MMAP, so that all this
* mmap reading, etc is encapsulated in it. Use O_WRONLY for now.
Expand Down
2 changes: 1 addition & 1 deletion tools/perf/util/header.c
Original file line number Diff line number Diff line change
Expand Up @@ -1144,7 +1144,7 @@ int event__synthesize_tracing_data(int fd, struct list_head *pattrs,
{
event_t ev;
ssize_t size = 0, aligned_size = 0, padding;
int err = 0;
int err __used = 0;

memset(&ev, 0, sizeof(ev));

Expand Down
3 changes: 0 additions & 3 deletions tools/perf/util/hist.c
Original file line number Diff line number Diff line change
Expand Up @@ -1095,7 +1095,6 @@ int hist_entry__annotate(struct hist_entry *self, struct list_head *head,
char command[PATH_MAX * 2];
FILE *file;
int err = 0;
u64 len;
char symfs_filename[PATH_MAX];

if (filename) {
Expand Down Expand Up @@ -1140,8 +1139,6 @@ int hist_entry__annotate(struct hist_entry *self, struct list_head *head,
filename, sym->name, map->unmap_ip(map, sym->start),
map->unmap_ip(map, sym->end));

len = sym->end - sym->start;

pr_debug("annotating [%p] %30s : [%p] %30s\n",
dso, dso->long_name, sym, sym->name);

Expand Down
3 changes: 1 addition & 2 deletions tools/perf/util/scripting-engines/trace-event-python.c
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,7 @@ static void python_process_event(int cpu, void *data,
context = PyCObject_FromVoidPtr(scripting_context, NULL);

PyTuple_SetItem(t, n++, PyString_FromString(handler_name));
PyTuple_SetItem(t, n++,
PyCObject_FromVoidPtr(scripting_context, NULL));
PyTuple_SetItem(t, n++, context);

if (handler) {
PyTuple_SetItem(t, n++, PyInt_FromLong(cpu));
Expand Down
4 changes: 2 additions & 2 deletions tools/perf/util/symbol.c
Original file line number Diff line number Diff line change
Expand Up @@ -1525,8 +1525,8 @@ int dso__load(struct dso *self, struct map *map, symbol_filter_t filter)
symbol_conf.symfs, self->long_name);
break;
case DSO__ORIG_GUEST_KMODULE:
if (map->groups && map->groups->machine)
root_dir = map->groups->machine->root_dir;
if (map->groups && machine)
root_dir = machine->root_dir;
else
root_dir = "";
snprintf(name, size, "%s%s%s", symbol_conf.symfs,
Expand Down
2 changes: 1 addition & 1 deletion tools/perf/util/trace-event-parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ void parse_proc_kallsyms(char *file, unsigned int size __unused)
char *next = NULL;
char *addr_str;
char ch;
int ret;
int ret __used;
int i;

line = strtok_r(file, "\n", &next);
Expand Down
2 changes: 1 addition & 1 deletion tools/perf/util/ui/browsers/map.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ static int ui_entry__read(const char *title, char *bf, size_t size, int width)
out_free_form:
newtPopWindow();
newtFormDestroy(form);
return 0;
return err;
}

struct map_browser {
Expand Down

0 comments on commit 2226d5b

Please sign in to comment.