2020-01-16 13:32:41 -08:00
// SPDX-License-Identifier: GPL-2.0
# include <stdint.h>
# include "resctrl.h"
char llc_occup_path [ 1024 ] ;
2023-12-15 17:05:04 +02:00
void perf_event_attr_initialize ( struct perf_event_attr * pea , __u64 config )
2020-01-16 13:32:42 -08:00
{
2023-12-15 17:05:03 +02:00
memset ( pea , 0 , sizeof ( * pea ) ) ;
pea - > type = PERF_TYPE_HARDWARE ;
pea - > size = sizeof ( * pea ) ;
pea - > read_format = PERF_FORMAT_GROUP ;
pea - > exclude_kernel = 1 ;
pea - > exclude_hv = 1 ;
pea - > exclude_idle = 1 ;
pea - > exclude_callchain_kernel = 1 ;
pea - > inherit = 1 ;
pea - > exclude_guest = 1 ;
pea - > disabled = 1 ;
pea - > config = config ;
2020-01-16 13:32:42 -08:00
}
2023-12-15 17:05:00 +02:00
/* Start counters to log values */
2023-12-15 17:05:05 +02:00
int perf_event_reset_enable ( int pe_fd )
2020-01-16 13:32:42 -08:00
{
2023-12-15 17:05:05 +02:00
int ret ;
ret = ioctl ( pe_fd , PERF_EVENT_IOC_RESET , 0 ) ;
if ( ret < 0 )
return ret ;
ret = ioctl ( pe_fd , PERF_EVENT_IOC_ENABLE , 0 ) ;
if ( ret < 0 )
return ret ;
return 0 ;
2020-01-16 13:32:42 -08:00
}
2023-12-15 17:05:04 +02:00
void perf_event_initialize_read_format ( struct perf_event_read * pe_read )
2020-01-16 13:32:42 -08:00
{
2023-12-15 17:05:03 +02:00
memset ( pe_read , 0 , sizeof ( * pe_read ) ) ;
pe_read - > nr = 1 ;
2020-01-16 13:32:42 -08:00
}
2023-12-15 17:05:04 +02:00
int perf_open ( struct perf_event_attr * pea , pid_t pid , int cpu_no )
2020-01-16 13:32:42 -08:00
{
2023-12-15 17:05:03 +02:00
int pe_fd ;
pe_fd = perf_event_open ( pea , pid , cpu_no , - 1 , PERF_FLAG_FD_CLOEXEC ) ;
2023-12-15 17:05:01 +02:00
if ( pe_fd = = - 1 ) {
2023-12-15 17:05:00 +02:00
ksft_perror ( " Error opening leader " ) ;
2020-01-16 13:32:42 -08:00
return - 1 ;
}
2023-12-15 17:05:03 +02:00
perf_event_reset_enable ( pe_fd ) ;
2020-01-16 13:32:42 -08:00
2023-12-15 17:05:03 +02:00
return pe_fd ;
2020-01-16 13:32:42 -08:00
}
2020-01-16 13:32:41 -08:00
/*
* Get LLC Occupancy as reported by RESCTRL FS
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
* For CMT ,
2020-01-16 13:32:41 -08:00
* 1. If con_mon grp and mon grp given , then read from mon grp in
* con_mon grp
* 2. If only con_mon grp given , then read from con_mon grp
* 3. If both not given , then read from root con_mon grp
* For CAT ,
* 1. If con_mon grp given , then read from it
* 2. If con_mon grp not given , then read from root con_mon grp
*
* Return : = 0 on success . < 0 on failure .
*/
static int get_llc_occu_resctrl ( unsigned long * llc_occupancy )
{
FILE * fp ;
fp = fopen ( llc_occup_path , " r " ) ;
if ( ! fp ) {
2023-12-15 17:04:47 +02:00
ksft_perror ( " Failed to open results file " ) ;
2020-01-16 13:32:41 -08:00
2023-12-15 17:04:48 +02:00
return - 1 ;
2020-01-16 13:32:41 -08:00
}
if ( fscanf ( fp , " %lu " , llc_occupancy ) < = 0 ) {
2023-12-15 17:04:47 +02:00
ksft_perror ( " Could not get llc occupancy " ) ;
2020-01-16 13:32:41 -08:00
fclose ( fp ) ;
return - 1 ;
}
fclose ( fp ) ;
return 0 ;
}
/*
* print_results_cache : the cache results are stored in a file
* @ filename : file that stores the results
* @ bm_pid : child pid that runs benchmark
* @ llc_value : perf miss value /
* llc occupancy value reported by resctrl FS
*
2023-12-15 17:04:48 +02:00
* Return : 0 on success , < 0 on error .
2020-01-16 13:32:41 -08:00
*/
2023-12-15 17:04:59 +02:00
static int print_results_cache ( const char * filename , int bm_pid , __u64 llc_value )
2020-01-16 13:32:41 -08:00
{
FILE * fp ;
if ( strcmp ( filename , " stdio " ) = = 0 | | strcmp ( filename , " stderr " ) = = 0 ) {
2023-12-15 17:04:59 +02:00
printf ( " Pid: %d \t LLC_value: %llu \n " , bm_pid , llc_value ) ;
2020-01-16 13:32:41 -08:00
} else {
fp = fopen ( filename , " a " ) ;
if ( ! fp ) {
2023-12-15 17:04:47 +02:00
ksft_perror ( " Cannot open results file " ) ;
2020-01-16 13:32:41 -08:00
2023-12-15 17:04:48 +02:00
return - 1 ;
2020-01-16 13:32:41 -08:00
}
2023-12-15 17:04:59 +02:00
fprintf ( fp , " Pid: %d \t llc_value: %llu \n " , bm_pid , llc_value ) ;
2020-01-16 13:32:41 -08:00
fclose ( fp ) ;
}
return 0 ;
}
2023-12-15 17:04:57 +02:00
/*
* perf_event_measure - Measure perf events
* @ filename : Filename for writing the results
* @ bm_pid : PID that runs the benchmark
*
* Measures perf events ( e . g . , cache misses ) and writes the results into
* @ filename . @ bm_pid is written to the results file along with the measured
* value .
*
* Return : = 0 on success . < 0 on failure .
*/
2023-12-15 17:05:04 +02:00
int perf_event_measure ( int pe_fd , struct perf_event_read * pe_read ,
const char * filename , int bm_pid )
2020-01-16 13:32:41 -08:00
{
int ret ;
2023-12-15 17:05:00 +02:00
/* Stop counters after one span to get miss rate */
2023-12-15 17:05:05 +02:00
ret = ioctl ( pe_fd , PERF_EVENT_IOC_DISABLE , 0 ) ;
if ( ret < 0 )
return ret ;
2023-12-15 17:05:00 +02:00
2023-12-15 17:05:03 +02:00
ret = read ( pe_fd , pe_read , sizeof ( * pe_read ) ) ;
2023-12-15 17:05:00 +02:00
if ( ret = = - 1 ) {
ksft_perror ( " Could not get perf value " ) ;
return - 1 ;
}
2020-01-16 13:32:42 -08:00
2023-12-15 17:05:03 +02:00
return print_results_cache ( filename , bm_pid , pe_read - > values [ 0 ] . value ) ;
2023-12-15 17:04:57 +02:00
}
/*
* measure_llc_resctrl - Measure resctrl LLC value from resctrl
* @ filename : Filename for writing the results
* @ bm_pid : PID that runs the benchmark
*
* Measures LLC occupancy from resctrl and writes the results into @ filename .
* @ bm_pid is written to the results file along with the measured value .
*
* Return : = 0 on success . < 0 on failure .
*/
int measure_llc_resctrl ( const char * filename , int bm_pid )
{
unsigned long llc_occu_resc = 0 ;
int ret ;
ret = get_llc_occu_resctrl ( & llc_occu_resc ) ;
if ( ret < 0 )
2020-01-16 13:32:41 -08:00
return ret ;
2023-12-15 17:04:57 +02:00
return print_results_cache ( filename , bm_pid , llc_occu_resc ) ;
2020-01-16 13:32:41 -08:00
}
2020-01-16 13:32:42 -08:00
2021-03-17 02:22:43 +00:00
/*
2023-12-15 17:04:58 +02:00
* show_cache_info - Show generic cache test information
* @ no_of_bits : Number of bits
* @ avg_llc_val : Average of LLC cache result data
* @ cache_span : Cache span
* @ lines : @ cache_span in lines or bytes
2021-03-17 02:22:43 +00:00
*/
2023-12-15 17:04:59 +02:00
void show_cache_info ( int no_of_bits , __u64 avg_llc_val , size_t cache_span , bool lines )
2021-03-17 02:22:43 +00:00
{
ksft_print_msg ( " Number of bits: %d \n " , no_of_bits ) ;
2023-12-15 17:04:59 +02:00
ksft_print_msg ( " Average LLC val: %llu \n " , avg_llc_val ) ;
2023-12-15 17:04:58 +02:00
ksft_print_msg ( " Cache span (%s): %zu \n " , lines ? " lines " : " bytes " ,
2021-03-17 02:22:43 +00:00
cache_span ) ;
}