2020-01-16 13:32:35 -08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef RESCTRL_H
|
|
|
|
#define RESCTRL_H
|
|
|
|
#include <stdio.h>
|
2020-01-16 13:32:37 -08:00
|
|
|
#include <math.h>
|
2020-01-16 13:32:35 -08:00
|
|
|
#include <errno.h>
|
|
|
|
#include <sched.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
2020-01-16 13:32:41 -08:00
|
|
|
#include <sys/select.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/eventfd.h>
|
2020-01-16 13:32:35 -08:00
|
|
|
#include <asm/unistd.h>
|
|
|
|
#include <linux/perf_event.h>
|
2021-03-17 02:22:42 +00:00
|
|
|
#include "../kselftest.h"
|
2020-01-16 13:32:35 -08:00
|
|
|
|
2020-01-16 13:32:37 -08:00
|
|
|
#define MB (1024 * 1024)
|
2020-01-16 13:32:35 -08:00
|
|
|
#define RESCTRL_PATH "/sys/fs/resctrl"
|
|
|
|
#define PHYS_ID_PATH "/sys/devices/system/cpu/cpu"
|
2023-02-15 15:06:03 +02:00
|
|
|
#define INFO_PATH "/sys/fs/resctrl/info"
|
2020-01-16 13:32:35 -08:00
|
|
|
|
2022-03-23 17:09:27 +09:00
|
|
|
#define ARCH_INTEL 1
|
|
|
|
#define ARCH_AMD 2
|
|
|
|
|
2023-02-15 15:05:59 +02:00
|
|
|
#define END_OF_TESTS 1
|
|
|
|
|
2023-09-04 12:53:37 +03:00
|
|
|
#define BENCHMARK_ARGS 64
|
|
|
|
|
2023-09-04 12:53:35 +03:00
|
|
|
#define DEFAULT_SPAN (250 * MB)
|
|
|
|
|
2020-01-16 13:32:35 -08:00
|
|
|
#define PARENT_EXIT(err_msg) \
|
|
|
|
do { \
|
|
|
|
perror(err_msg); \
|
|
|
|
kill(ppid, SIGKILL); \
|
2023-07-17 16:14:51 +03:00
|
|
|
umount_resctrlfs(); \
|
2020-01-16 13:32:35 -08:00
|
|
|
exit(EXIT_FAILURE); \
|
|
|
|
} while (0)
|
|
|
|
|
2020-01-16 13:32:37 -08:00
|
|
|
/*
|
|
|
|
* resctrl_val_param: resctrl test parameters
|
|
|
|
* @resctrl_val: Resctrl feature (Eg: mbm, mba.. etc)
|
|
|
|
* @ctrlgrp: Name of the control monitor group (con_mon grp)
|
|
|
|
* @mongrp: Name of the monitor group (mon grp)
|
|
|
|
* @cpu_no: CPU number to which the benchmark would be binded
|
|
|
|
* @filename: Name of file to which the o/p should be written
|
|
|
|
* @bw_report: Bandwidth report type (reads vs writes)
|
|
|
|
* @setup: Call back function to setup test environment
|
|
|
|
*/
|
|
|
|
struct resctrl_val_param {
|
|
|
|
char *resctrl_val;
|
|
|
|
char ctrlgrp[64];
|
|
|
|
char mongrp[64];
|
|
|
|
int cpu_no;
|
|
|
|
char filename[64];
|
|
|
|
char *bw_report;
|
2020-01-16 13:32:41 -08:00
|
|
|
unsigned long mask;
|
|
|
|
int num_of_runs;
|
2023-07-17 16:15:04 +03:00
|
|
|
int (*setup)(struct resctrl_val_param *param);
|
2020-01-16 13:32:37 -08:00
|
|
|
};
|
|
|
|
|
2021-03-17 02:22:38 +00:00
|
|
|
#define MBM_STR "mbm"
|
|
|
|
#define MBA_STR "mba"
|
selftests/resctrl: Rename CQM test as CMT test
CMT (Cache Monitoring Technology) [1] is a H/W feature that reports cache
occupancy of a process. resctrl selftest suite has a unit test to test CMT
for LLC but the test is named as CQM (Cache Quality Monitoring).
Furthermore, the unit test source file is named as cqm_test.c and several
functions, variables, comments, preprocessors and statements widely use
"cqm" as either suffix or prefix. This rampant misusage of CQM for CMT
might confuse someone who is newly looking at resctrl selftests because
this feature is named CMT in the Intel Software Developer's Manual.
Hence, rename all the occurrences (unit test source file name, functions,
variables, comments and preprocessors) of cqm with cmt.
[1] Please see Intel SDM, Volume 3, chapter 17 and section 18 for more
information on CMT: https://software.intel.com/content/www/us/en/develop/articles/intel-sdm.html
Suggested-by: Reinette Chatre <reinette.chatre@intel.com>
Tested-by: Babu Moger <babu.moger@amd.com>
Signed-off-by: Fenghua Yu <fenghua.yu@intel.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
2021-03-17 02:22:41 +00:00
|
|
|
#define CMT_STR "cmt"
|
2021-03-17 02:22:38 +00:00
|
|
|
#define CAT_STR "cat"
|
|
|
|
|
2021-03-17 02:22:37 +00:00
|
|
|
extern pid_t bm_pid, ppid;
|
2020-01-16 13:32:35 -08:00
|
|
|
|
2021-03-17 02:22:37 +00:00
|
|
|
extern char llc_occup_path[1024];
|
2020-01-16 13:32:41 -08:00
|
|
|
|
2022-03-23 17:09:27 +09:00
|
|
|
int get_vendor(void);
|
2020-01-16 13:32:39 -08:00
|
|
|
bool check_resctrlfs_support(void);
|
|
|
|
int filter_dmesg(void);
|
2020-01-16 13:32:35 -08:00
|
|
|
int get_resource_id(int cpu_no, int *resource_id);
|
2023-07-17 16:14:55 +03:00
|
|
|
int mount_resctrlfs(void);
|
2020-01-16 13:32:37 -08:00
|
|
|
int umount_resctrlfs(void);
|
2020-01-16 13:32:35 -08:00
|
|
|
int validate_bw_report_request(char *bw_report);
|
2023-10-02 12:48:11 +03:00
|
|
|
bool validate_resctrl_feature_request(const char *resource, const char *feature);
|
2020-01-16 13:32:35 -08:00
|
|
|
char *fgrep(FILE *inf, const char *str);
|
|
|
|
int taskset_benchmark(pid_t bm_pid, int cpu_no);
|
|
|
|
int write_schemata(char *ctrlgrp, char *schemata, int cpu_no,
|
|
|
|
char *resctrl_val);
|
|
|
|
int write_bm_pid_to_resctrl(pid_t bm_pid, char *ctrlgrp, char *mongrp,
|
|
|
|
char *resctrl_val);
|
|
|
|
int perf_event_open(struct perf_event_attr *hw_event, pid_t pid, int cpu,
|
|
|
|
int group_fd, unsigned long flags);
|
2023-07-17 16:15:03 +03:00
|
|
|
int run_fill_buf(size_t span, int memflush, int op, bool once);
|
2023-09-04 12:53:37 +03:00
|
|
|
int resctrl_val(const char * const *benchmark_cmd, struct resctrl_val_param *param);
|
|
|
|
int mbm_bw_change(int cpu_no, const char * const *benchmark_cmd);
|
2020-01-16 13:32:39 -08:00
|
|
|
void tests_cleanup(void);
|
|
|
|
void mbm_test_cleanup(void);
|
2023-09-04 12:53:37 +03:00
|
|
|
int mba_schemata_change(int cpu_no, const char * const *benchmark_cmd);
|
2020-01-16 13:32:40 -08:00
|
|
|
void mba_test_cleanup(void);
|
2021-03-17 02:22:36 +00:00
|
|
|
int get_cbm_mask(char *cache_type, char *cbm_mask);
|
2020-01-16 13:32:41 -08:00
|
|
|
int get_cache_size(int cpu_no, char *cache_type, unsigned long *cache_size);
|
|
|
|
void ctrlc_handler(int signum, siginfo_t *info, void *ptr);
|
selftests/resctrl: Commonize the signal handler register/unregister for all tests
After creating a child process with fork() in CAT test, if a signal such
as SIGINT is received, the parent process will be terminated immediately,
and therefore the child process will not be killed and also resctrlfs is
not unmounted.
There is a signal handler registered in CMT/MBM/MBA tests, which kills
child process, unmount resctrlfs, cleanups result files, etc., if a
signal such as SIGINT is received.
Commonize the signal handler registered for CMT/MBM/MBA tests and
reuse it in CAT.
To reuse the signal handler to kill child process use global bm_pid
instead of local bm_pid.
Also, since the MBA/MBA/CMT/CAT are run in order, unregister the signal
handler at the end of each test so that the signal handler cannot be
inherited by other tests.
Reviewed-by: Ilpo Jarvinen <ilpo.jarvinen@linux.intel.com>
Reviewed-by: Reinette Chatre <reinette.chatre@intel.com>
Signed-off-by: Shaopeng Tan <tan.shaopeng@jp.fujitsu.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
2023-04-13 16:22:58 +09:00
|
|
|
int signal_handler_register(void);
|
|
|
|
void signal_handler_unregister(void);
|
2023-09-04 12:53:35 +03:00
|
|
|
int cat_val(struct resctrl_val_param *param, size_t span);
|
2020-01-16 13:32:42 -08:00
|
|
|
void cat_test_cleanup(void);
|
|
|
|
int cat_perf_miss_val(int cpu_no, int no_of_bits, char *cache_type);
|
2023-09-04 12:53:37 +03:00
|
|
|
int cmt_resctrl_val(int cpu_no, int n, const char * const *benchmark_cmd);
|
2020-01-16 13:32:41 -08:00
|
|
|
unsigned int count_bits(unsigned long n);
|
selftests/resctrl: Rename CQM test as CMT test
CMT (Cache Monitoring Technology) [1] is a H/W feature that reports cache
occupancy of a process. resctrl selftest suite has a unit test to test CMT
for LLC but the test is named as CQM (Cache Quality Monitoring).
Furthermore, the unit test source file is named as cqm_test.c and several
functions, variables, comments, preprocessors and statements widely use
"cqm" as either suffix or prefix. This rampant misusage of CQM for CMT
might confuse someone who is newly looking at resctrl selftests because
this feature is named CMT in the Intel Software Developer's Manual.
Hence, rename all the occurrences (unit test source file name, functions,
variables, comments and preprocessors) of cqm with cmt.
[1] Please see Intel SDM, Volume 3, chapter 17 and section 18 for more
information on CMT: https://software.intel.com/content/www/us/en/develop/articles/intel-sdm.html
Suggested-by: Reinette Chatre <reinette.chatre@intel.com>
Tested-by: Babu Moger <babu.moger@amd.com>
Signed-off-by: Fenghua Yu <fenghua.yu@intel.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
2021-03-17 02:22:41 +00:00
|
|
|
void cmt_test_cleanup(void);
|
2020-01-16 13:32:41 -08:00
|
|
|
int get_core_sibling(int cpu_no);
|
|
|
|
int measure_cache_vals(struct resctrl_val_param *param, int bm_pid);
|
2021-03-17 02:22:43 +00:00
|
|
|
int show_cache_info(unsigned long sum_llc_val, int no_of_bits,
|
2023-07-17 16:14:57 +03:00
|
|
|
size_t cache_span, unsigned long max_diff,
|
2021-03-17 02:22:43 +00:00
|
|
|
unsigned long max_diff_percent, unsigned long num_of_runs,
|
|
|
|
bool platform, bool cmt);
|
2020-01-16 13:32:35 -08:00
|
|
|
|
|
|
|
#endif /* RESCTRL_H */
|