diff options
author | Jiri Olsa <jolsa@redhat.com> | 2013-09-12 12:39:35 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-10-09 10:22:55 -0400 |
commit | 918512b435e15fefe609d236e0ecd62cb8f389c9 (patch) | |
tree | eb6c139580b9ba5507eb2978ac837ab21ebac65b /tools/perf/util/python.c | |
parent | 5283ec23a02e8afdc984c7f5f07e2a2662d4934a (diff) |
perf tools: Unify page_size usage
Making page_size global from the util object.
Removing the not needed one.
Signed-off-by: Jiri Olsa <jolsa@redhat.com>
Acked-by: Namhyung Kim <namhyung@kernel.org>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1379003976-5839-4-git-send-email-jolsa@redhat.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/python.c')
-rw-r--r-- | tools/perf/util/python.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/python.c b/tools/perf/util/python.c index 71b5412bbbb9..a24ce0a6a941 100644 --- a/tools/perf/util/python.c +++ b/tools/perf/util/python.c | |||
@@ -1036,6 +1036,7 @@ PyMODINIT_FUNC initperf(void) | |||
1036 | pyrf_cpu_map__setup_types() < 0) | 1036 | pyrf_cpu_map__setup_types() < 0) |
1037 | return; | 1037 | return; |
1038 | 1038 | ||
1039 | /* The page_size is placed in util object. */ | ||
1039 | page_size = sysconf(_SC_PAGE_SIZE); | 1040 | page_size = sysconf(_SC_PAGE_SIZE); |
1040 | 1041 | ||
1041 | Py_INCREF(&pyrf_evlist__type); | 1042 | Py_INCREF(&pyrf_evlist__type); |