Commit b9472991 authored by Like Xu's avatar Like Xu Committed by Arnaldo Carvalho de Melo
Browse files

perf jevents: Free the sys_event_tables list after processing entries



The compiler reports that free_sys_event_tables() is dead code.

But according to the semantics, the "LIST_HEAD(sys_event_tables)" should
also be released, just like we do with 'arch_std_events' in main().

Fixes: e9d32c1b ("perf vendor events: Add support for arch standard events")
Signed-off-by: default avatarLike Xu <likexu@tencent.com>
Reviewed-by: default avatarJohn Garry <john.garry@huawei.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lore.kernel.org/lkml/20210928102938.69681-1-likexu@tencent.com


Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent f6274b06
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1285,6 +1285,7 @@ int main(int argc, char *argv[])
	}

	free_arch_std_events();
	free_sys_event_tables();
	free(mapfile);
	return 0;

@@ -1306,6 +1307,7 @@ int main(int argc, char *argv[])
		create_empty_mapping(output_file);
err_out:
	free_arch_std_events();
	free_sys_event_tables();
	free(mapfile);
	return ret;
}