Linux Audio

Check our new training course

Loading...
v5.14.15
  1// SPDX-License-Identifier: GPL-2.0
  2#include "tests.h"
  3#include <stdio.h>
  4#include "cpumap.h"
  5#include "event.h"
  6#include "util/synthetic-events.h"
  7#include <string.h>
  8#include <linux/bitops.h>
  9#include <perf/cpumap.h>
 10#include "debug.h"
 11
 12struct machine;
 13
 14static int process_event_mask(struct perf_tool *tool __maybe_unused,
 15			 union perf_event *event,
 16			 struct perf_sample *sample __maybe_unused,
 17			 struct machine *machine __maybe_unused)
 18{
 19	struct perf_record_cpu_map *map_event = &event->cpu_map;
 20	struct perf_record_record_cpu_map *mask;
 21	struct perf_record_cpu_map_data *data;
 22	struct perf_cpu_map *map;
 23	int i;
 24
 25	data = &map_event->data;
 26
 27	TEST_ASSERT_VAL("wrong type", data->type == PERF_CPU_MAP__MASK);
 28
 29	mask = (struct perf_record_record_cpu_map *)data->data;
 30
 31	TEST_ASSERT_VAL("wrong nr",   mask->nr == 1);
 32
 33	for (i = 0; i < 20; i++) {
 34		TEST_ASSERT_VAL("wrong cpu", test_bit(i, mask->mask));
 35	}
 36
 37	map = cpu_map__new_data(data);
 38	TEST_ASSERT_VAL("wrong nr",  map->nr == 20);
 39
 40	for (i = 0; i < 20; i++) {
 41		TEST_ASSERT_VAL("wrong cpu", map->map[i] == i);
 42	}
 43
 44	perf_cpu_map__put(map);
 45	return 0;
 46}
 47
 48static int process_event_cpus(struct perf_tool *tool __maybe_unused,
 49			 union perf_event *event,
 50			 struct perf_sample *sample __maybe_unused,
 51			 struct machine *machine __maybe_unused)
 52{
 53	struct perf_record_cpu_map *map_event = &event->cpu_map;
 54	struct cpu_map_entries *cpus;
 55	struct perf_record_cpu_map_data *data;
 56	struct perf_cpu_map *map;
 57
 58	data = &map_event->data;
 59
 60	TEST_ASSERT_VAL("wrong type", data->type == PERF_CPU_MAP__CPUS);
 61
 62	cpus = (struct cpu_map_entries *)data->data;
 63
 64	TEST_ASSERT_VAL("wrong nr",   cpus->nr == 2);
 65	TEST_ASSERT_VAL("wrong cpu",  cpus->cpu[0] == 1);
 66	TEST_ASSERT_VAL("wrong cpu",  cpus->cpu[1] == 256);
 67
 68	map = cpu_map__new_data(data);
 69	TEST_ASSERT_VAL("wrong nr",  map->nr == 2);
 70	TEST_ASSERT_VAL("wrong cpu", map->map[0] == 1);
 71	TEST_ASSERT_VAL("wrong cpu", map->map[1] == 256);
 72	TEST_ASSERT_VAL("wrong refcnt", refcount_read(&map->refcnt) == 1);
 73	perf_cpu_map__put(map);
 74	return 0;
 75}
 76
 77
 78int test__cpu_map_synthesize(struct test *test __maybe_unused, int subtest __maybe_unused)
 79{
 80	struct perf_cpu_map *cpus;
 81
 82	/* This one is better stores in mask. */
 83	cpus = perf_cpu_map__new("0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19");
 84
 85	TEST_ASSERT_VAL("failed to synthesize map",
 86		!perf_event__synthesize_cpu_map(NULL, cpus, process_event_mask, NULL));
 87
 88	perf_cpu_map__put(cpus);
 89
 90	/* This one is better stores in cpu values. */
 91	cpus = perf_cpu_map__new("1,256");
 92
 93	TEST_ASSERT_VAL("failed to synthesize map",
 94		!perf_event__synthesize_cpu_map(NULL, cpus, process_event_cpus, NULL));
 95
 96	perf_cpu_map__put(cpus);
 97	return 0;
 98}
 99
100static int cpu_map_print(const char *str)
101{
102	struct perf_cpu_map *map = perf_cpu_map__new(str);
103	char buf[100];
104
105	if (!map)
106		return -1;
107
108	cpu_map__snprint(map, buf, sizeof(buf));
109	perf_cpu_map__put(map);
110
111	return !strcmp(buf, str);
112}
113
114int test__cpu_map_print(struct test *test __maybe_unused, int subtest __maybe_unused)
115{
116	TEST_ASSERT_VAL("failed to convert map", cpu_map_print("1"));
117	TEST_ASSERT_VAL("failed to convert map", cpu_map_print("1,5"));
118	TEST_ASSERT_VAL("failed to convert map", cpu_map_print("1,3,5,7,9,11,13,15,17,19,21-40"));
119	TEST_ASSERT_VAL("failed to convert map", cpu_map_print("2-5"));
120	TEST_ASSERT_VAL("failed to convert map", cpu_map_print("1,3-6,8-10,24,35-37"));
121	TEST_ASSERT_VAL("failed to convert map", cpu_map_print("1,3-6,8-10,24,35-37"));
122	TEST_ASSERT_VAL("failed to convert map", cpu_map_print("1-10,12-20,22-30,32-40"));
123	return 0;
124}
125
126int test__cpu_map_merge(struct test *test __maybe_unused, int subtest __maybe_unused)
127{
128	struct perf_cpu_map *a = perf_cpu_map__new("4,2,1");
129	struct perf_cpu_map *b = perf_cpu_map__new("4,5,7");
130	struct perf_cpu_map *c = perf_cpu_map__merge(a, b);
131	char buf[100];
132
133	TEST_ASSERT_VAL("failed to merge map: bad nr", c->nr == 5);
134	cpu_map__snprint(c, buf, sizeof(buf));
135	TEST_ASSERT_VAL("failed to merge map: bad result", !strcmp(buf, "1-2,4-5,7"));
136	perf_cpu_map__put(b);
137	perf_cpu_map__put(c);
138	return 0;
139}
v4.17
  1// SPDX-License-Identifier: GPL-2.0
  2#include "tests.h"
  3#include <stdio.h>
  4#include "cpumap.h"
  5#include "event.h"
 
  6#include <string.h>
  7#include <linux/bitops.h>
 
  8#include "debug.h"
  9
 10struct machine;
 11
 12static int process_event_mask(struct perf_tool *tool __maybe_unused,
 13			 union perf_event *event,
 14			 struct perf_sample *sample __maybe_unused,
 15			 struct machine *machine __maybe_unused)
 16{
 17	struct cpu_map_event *map_event = &event->cpu_map;
 18	struct cpu_map_mask *mask;
 19	struct cpu_map_data *data;
 20	struct cpu_map *map;
 21	int i;
 22
 23	data = &map_event->data;
 24
 25	TEST_ASSERT_VAL("wrong type", data->type == PERF_CPU_MAP__MASK);
 26
 27	mask = (struct cpu_map_mask *)data->data;
 28
 29	TEST_ASSERT_VAL("wrong nr",   mask->nr == 1);
 30
 31	for (i = 0; i < 20; i++) {
 32		TEST_ASSERT_VAL("wrong cpu", test_bit(i, mask->mask));
 33	}
 34
 35	map = cpu_map__new_data(data);
 36	TEST_ASSERT_VAL("wrong nr",  map->nr == 20);
 37
 38	for (i = 0; i < 20; i++) {
 39		TEST_ASSERT_VAL("wrong cpu", map->map[i] == i);
 40	}
 41
 42	cpu_map__put(map);
 43	return 0;
 44}
 45
 46static int process_event_cpus(struct perf_tool *tool __maybe_unused,
 47			 union perf_event *event,
 48			 struct perf_sample *sample __maybe_unused,
 49			 struct machine *machine __maybe_unused)
 50{
 51	struct cpu_map_event *map_event = &event->cpu_map;
 52	struct cpu_map_entries *cpus;
 53	struct cpu_map_data *data;
 54	struct cpu_map *map;
 55
 56	data = &map_event->data;
 57
 58	TEST_ASSERT_VAL("wrong type", data->type == PERF_CPU_MAP__CPUS);
 59
 60	cpus = (struct cpu_map_entries *)data->data;
 61
 62	TEST_ASSERT_VAL("wrong nr",   cpus->nr == 2);
 63	TEST_ASSERT_VAL("wrong cpu",  cpus->cpu[0] == 1);
 64	TEST_ASSERT_VAL("wrong cpu",  cpus->cpu[1] == 256);
 65
 66	map = cpu_map__new_data(data);
 67	TEST_ASSERT_VAL("wrong nr",  map->nr == 2);
 68	TEST_ASSERT_VAL("wrong cpu", map->map[0] == 1);
 69	TEST_ASSERT_VAL("wrong cpu", map->map[1] == 256);
 70	TEST_ASSERT_VAL("wrong refcnt", refcount_read(&map->refcnt) == 1);
 71	cpu_map__put(map);
 72	return 0;
 73}
 74
 75
 76int test__cpu_map_synthesize(struct test *test __maybe_unused, int subtest __maybe_unused)
 77{
 78	struct cpu_map *cpus;
 79
 80	/* This one is better stores in mask. */
 81	cpus = cpu_map__new("0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19");
 82
 83	TEST_ASSERT_VAL("failed to synthesize map",
 84		!perf_event__synthesize_cpu_map(NULL, cpus, process_event_mask, NULL));
 85
 86	cpu_map__put(cpus);
 87
 88	/* This one is better stores in cpu values. */
 89	cpus = cpu_map__new("1,256");
 90
 91	TEST_ASSERT_VAL("failed to synthesize map",
 92		!perf_event__synthesize_cpu_map(NULL, cpus, process_event_cpus, NULL));
 93
 94	cpu_map__put(cpus);
 95	return 0;
 96}
 97
 98static int cpu_map_print(const char *str)
 99{
100	struct cpu_map *map = cpu_map__new(str);
101	char buf[100];
102
103	if (!map)
104		return -1;
105
106	cpu_map__snprint(map, buf, sizeof(buf));
 
 
107	return !strcmp(buf, str);
108}
109
110int test__cpu_map_print(struct test *test __maybe_unused, int subtest __maybe_unused)
111{
112	TEST_ASSERT_VAL("failed to convert map", cpu_map_print("1"));
113	TEST_ASSERT_VAL("failed to convert map", cpu_map_print("1,5"));
114	TEST_ASSERT_VAL("failed to convert map", cpu_map_print("1,3,5,7,9,11,13,15,17,19,21-40"));
115	TEST_ASSERT_VAL("failed to convert map", cpu_map_print("2-5"));
116	TEST_ASSERT_VAL("failed to convert map", cpu_map_print("1,3-6,8-10,24,35-37"));
117	TEST_ASSERT_VAL("failed to convert map", cpu_map_print("1,3-6,8-10,24,35-37"));
118	TEST_ASSERT_VAL("failed to convert map", cpu_map_print("1-10,12-20,22-30,32-40"));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119	return 0;
120}