Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests/resctrl: Check for resctrl mount point only if resctrl FS is supported

check_resctrlfs_support() does the following
1. Checks if the platform supports resctrl file system or not by looking
for resctrl in /proc/filesystems
2. Calls opendir() on default resctrl file system path
(i.e. /sys/fs/resctrl)
3. Checks if resctrl file system is mounted or not by looking at
/proc/mounts

Steps 2 and 3 will fail if the platform does not support resctrl file
system. So, there is no need to check for them if step 1 fails.

Fix this by returning immediately if the platform does not support
resctrl file system.

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>

authored by

Fenghua Yu and committed by
Shuah Khan
a3611fbc b67a7665

+3
+3
tools/testing/selftests/resctrl/resctrlfs.c
··· 570 570 ksft_print_msg("%s kernel supports resctrl filesystem\n", 571 571 ret ? "Pass:" : "Fail:"); 572 572 573 + if (!ret) 574 + return ret; 575 + 573 576 dp = opendir(RESCTRL_PATH); 574 577 ksft_print_msg("%s resctrl mountpoint \"%s\" exists\n", 575 578 dp ? "Pass:" : "Fail:", RESCTRL_PATH);