selftests/powerpc/dscr: Speed up DSCR sysfs tests
authorBenjamin Gray <bgray@linux.ibm.com>
Thu, 6 Apr 2023 04:33:19 +0000 (14:33 +1000)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 20 Apr 2023 03:21:46 +0000 (13:21 +1000)
This test case is extremely slow, taking around a minute compared to
most of the other DSCR tests taking a second at most. Perf shows most
time is spent by the kernel switching to each CPU it reads in
/sys/devices/system/cpu. This switching is an unavoidable consequnce
of reading all the .../cpuN/dscr values.

Remove the outer iteration loop from this test case, reducing the reads
from 1600 to 16. This still updates the DSCR 16 times and verifies on
every CPU each time, so I do not expect the lower coverage to be
meaningful. The speedup is significant: back down to ~1 second like the
other tests.

Signed-off-by: Benjamin Gray <bgray@linux.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20230406043320.125138-7-bgray@linux.ibm.com
tools/testing/selftests/powerpc/dscr/dscr_sysfs_test.c

index 4f1fef6..e7cd0d6 100644 (file)
@@ -67,17 +67,14 @@ static int check_all_cpu_dscr_defaults(unsigned long val)
 int dscr_sysfs(void)
 {
        unsigned long orig_dscr_default;
-       int i, j;
 
        SKIP_IF(!have_hwcap2(PPC_FEATURE2_DSCR));
 
        orig_dscr_default = get_default_dscr();
-       for (i = 0; i < COUNT; i++) {
-               for (j = 0; j < DSCR_MAX; j++) {
-                       set_default_dscr(j);
-                       if (check_all_cpu_dscr_defaults(j))
-                               goto fail;
-               }
+       for (int i = 0; i < DSCR_MAX; i++) {
+               set_default_dscr(i);
+               if (check_all_cpu_dscr_defaults(i))
+                       goto fail;
        }
        set_default_dscr(orig_dscr_default);
        return 0;