• Tommi Rantala's avatar
    perf bench futex-wake: Restore thread count default to online CPU count · f649bd9d
    Tommi Rantala authored
    Since commit 3b2323c2 ("perf bench futex: Use cpumaps") the default
    number of threads the benchmark uses got changed from number of online
    CPUs to zero:
    
      $ perf bench futex wake
      # Running 'futex/wake' benchmark:
      Run summary [PID 15930]: blocking on 0 threads (at [private] futex 0x558b8ee4bfac), waking up 1 at a time.
      [Run 1]: Wokeup 0 of 0 threads in 0.0000 ms
      [...]
      [Run 10]: Wokeup 0 of 0 threads in 0.0000 ms
      Wokeup 0 of 0 threads in 0.0004 ms (+-40.82%)
    
    Restore the old behavior by grabbing the number of online CPUs via
    cpu->nr:
    
      $ perf bench futex wake
      # Running 'futex/wake' benchmark:
      Run summary [PID 18356]: blocking on 8 threads (at [private] futex 0xb3e62c), waking up 1 at a time.
      [Run 1]: Wokeup 8 of 8 threads in 0.0260 ms
      [...]
      [Run 10]: Wokeup 8 of 8 threads in 0.0270 ms
      Wokeup 8 of 8 threads in 0.0419 ms (+-24.35%)
    
    Fixes: 3b2323c2 ("perf bench futex: Use cpumaps")
    Signed-off-by: default avatarTommi Rantala <tommi.t.rantala@nokia.com>
    Tested-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
    Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
    Cc: Darren Hart <dvhart@infradead.org>
    Cc: Davidlohr Bueso <dave@stgolabs.net>
    Cc: Jiri Olsa <jolsa@redhat.com>
    Cc: Mark Rutland <mark.rutland@arm.com>
    Cc: Namhyung Kim <namhyung@kernel.org>
    Cc: Peter Zijlstra <peterz@infradead.org>
    Cc: Thomas Gleixner <tglx@linutronix.de>
    Link: http://lore.kernel.org/lkml/20200305083714.9381-3-tommi.t.rantala@nokia.comSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
    f649bd9d
futex-wake.c 5.53 KB