selftests/resctrl: Remove unnecessary __u64 -> unsigned long conversion
Perf counters are __u64 but the code converts them to unsigned long before printing them out. Remove unnecessary type conversion and retain the perf originating value as __u64. Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Reviewed-by: Reinette Chatre <reinette.chatre@intel.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
This commit is contained in:
committed by
Shuah Khan
parent
5caf1b6400
commit
33403bc7fe
@@ -113,8 +113,7 @@ unsigned int count_bits(unsigned long n);
|
||||
void cmt_test_cleanup(void);
|
||||
int get_core_sibling(int cpu_no);
|
||||
int measure_llc_resctrl(const char *filename, int bm_pid);
|
||||
void show_cache_info(int no_of_bits, unsigned long avg_llc_val,
|
||||
size_t cache_span, bool lines);
|
||||
void show_cache_info(int no_of_bits, __u64 avg_llc_val, size_t cache_span, bool lines);
|
||||
|
||||
/*
|
||||
* cache_portion_size - Calculate the size of a cache portion
|
||||
|
Reference in New Issue
Block a user