10 #define TEMPL "/tmp/perf-test-XXXXXX"
13 static int get_temp(char *path
)
21 perror("mkstemp failed");
29 static int session_write_header(char *path
)
31 struct perf_session
*session
;
32 struct perf_data_file file
= {
34 .mode
= PERF_DATA_MODE_WRITE
,
37 session
= perf_session__new(&file
, false, NULL
);
38 TEST_ASSERT_VAL("can't get session", session
);
40 session
->evlist
= perf_evlist__new_default();
41 TEST_ASSERT_VAL("can't get evlist", session
->evlist
);
43 perf_header__set_feat(&session
->header
, HEADER_CPU_TOPOLOGY
);
44 perf_header__set_feat(&session
->header
, HEADER_NRCPUS
);
45 perf_header__set_feat(&session
->header
, HEADER_ARCH
);
47 session
->header
.data_size
+= DATA_SIZE
;
49 TEST_ASSERT_VAL("failed to write header",
50 !perf_session__write_header(session
, session
->evlist
, file
.fd
, true));
52 perf_session__delete(session
);
57 static int check_cpu_topology(char *path
, struct cpu_map
*map
)
59 struct perf_session
*session
;
60 struct perf_data_file file
= {
62 .mode
= PERF_DATA_MODE_READ
,
66 session
= perf_session__new(&file
, false, NULL
);
67 TEST_ASSERT_VAL("can't get session", session
);
69 for (i
= 0; i
< session
->header
.env
.nr_cpus_online
; i
++) {
70 pr_debug("CPU %d, core %d, socket %d\n", i
,
71 session
->header
.env
.cpu
[i
].core_id
,
72 session
->header
.env
.cpu
[i
].socket_id
);
75 for (i
= 0; i
< map
->nr
; i
++) {
76 TEST_ASSERT_VAL("Core ID doesn't match",
77 (session
->header
.env
.cpu
[map
->map
[i
]].core_id
== (cpu_map__get_core(map
, i
, NULL
) & 0xffff)));
79 TEST_ASSERT_VAL("Socket ID doesn't match",
80 (session
->header
.env
.cpu
[map
->map
[i
]].socket_id
== cpu_map__get_socket(map
, i
, NULL
)));
83 perf_session__delete(session
);
88 int test_session_topology(void)
94 TEST_ASSERT_VAL("can't get templ file", !get_temp(path
));
96 pr_debug("templ file: %s\n", path
);
98 if (session_write_header(path
))
101 map
= cpu_map__new(NULL
);
103 pr_debug("failed to get system cpumap\n");
107 if (check_cpu_topology(path
, map
))