aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/config
diff options
context:
space:
mode:
authorAdrian Hunter <adrian.hunter@intel.com>2015-03-02 02:59:05 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2015-03-02 10:48:16 -0500
commit543d976fa2ebf5543bd07b5d487bf3a6144c0886 (patch)
tree634bb3deae3e158031a9cf159b73a6efea67c184 /tools/perf/config
parent0104fe69e0287cf3635657b4c6b26a18e0091697 (diff)
perf tools: Initialize cpu set in pthread_attr_setaffinity_np feature test
Feature tests are compiled but not executed, however it might avoid a future uninitialized variable warning, so initialize the cpu set. Reported-by: Ingo Molnar <mingo@kernel.org> Signed-off-by: Adrian Hunter <adrian.hunter@intel.com> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Stephane Eranian <eranian@google.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: linux-tip-commits@vger.kernel.org Link: http://lkml.kernel.org/r/54F41849.1010906@intel.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/config')
-rw-r--r--tools/perf/config/feature-checks/test-pthread-attr-setaffinity-np.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/perf/config/feature-checks/test-pthread-attr-setaffinity-np.c b/tools/perf/config/feature-checks/test-pthread-attr-setaffinity-np.c
index 2b81b72eca23..fdada5e8d454 100644
--- a/tools/perf/config/feature-checks/test-pthread-attr-setaffinity-np.c
+++ b/tools/perf/config/feature-checks/test-pthread-attr-setaffinity-np.c
@@ -1,5 +1,6 @@
1#include <stdint.h> 1#include <stdint.h>
2#include <pthread.h> 2#include <pthread.h>
3#include <sched.h>
3 4
4int main(void) 5int main(void)
5{ 6{
@@ -8,7 +9,8 @@ int main(void)
8 cpu_set_t cs; 9 cpu_set_t cs;
9 10
10 pthread_attr_init(&thread_attr); 11 pthread_attr_init(&thread_attr);
11 /* don't care abt exact args, just the API itself in libpthread */ 12 CPU_ZERO(&cs);
13
12 ret = pthread_attr_setaffinity_np(&thread_attr, sizeof(cs), &cs); 14 ret = pthread_attr_setaffinity_np(&thread_attr, sizeof(cs), &cs);
13 15
14 return ret; 16 return ret;