Searched refs:torture_param (Results 1 – 6 of 6) sorted by relevance
/linux-6.6.21/kernel/ |
D | scftorture.c | 50 torture_param(int, holdoff, IS_BUILTIN(CONFIG_SCF_TORTURE_TEST) ? 10 : 0, 52 torture_param(int, longwait, 0, "Include ridiculously long waits? (seconds)"); 53 torture_param(int, nthreads, -1, "# threads, defaults to -1 for all CPUs."); 54 torture_param(int, onoff_holdoff, 0, "Time after boot before CPU hotplugs (s)"); 55 torture_param(int, onoff_interval, 0, "Time between CPU hotplugs (s), 0=disable"); 56 torture_param(int, shutdown_secs, 0, "Shutdown time (ms), <= zero to disable."); 57 torture_param(int, stat_interval, 60, "Number of seconds between stats printk()s."); 58 torture_param(int, stutter, 5, "Number of jiffies to run/halt test, 0=disable"); 59 torture_param(bool, use_cpus_read_lock, 0, "Use cpus_read_lock() to exclude CPU hotplug."); 60 torture_param(int, verbose, 0, "Enable verbose debugging printk()s"); [all …]
|
/linux-6.6.21/kernel/rcu/ |
D | rcuscale.c | 86 torture_param(bool, gp_async, false, "Use asynchronous GP wait primitives"); 87 torture_param(int, gp_async_max, 1000, "Max # outstanding waits per writer"); 88 torture_param(bool, gp_exp, false, "Use expedited GP wait primitives"); 89 torture_param(int, holdoff, 10, "Holdoff time before test start (s)"); 90 torture_param(int, minruntime, 0, "Minimum run time (s)"); 91 torture_param(int, nreaders, -1, "Number of RCU reader threads"); 92 torture_param(int, nwriters, -1, "Number of RCU updater threads"); 93 torture_param(bool, shutdown, RCUSCALE_SHUTDOWN, 95 torture_param(int, verbose, 1, "Enable verbose debugging printk()s"); 96 torture_param(int, writer_holdoff, 0, "Holdoff (us) between GPs, zero to disable"); [all …]
|
D | rcutorture.c | 76 torture_param(int, extendables, RCUTORTURE_MAX_EXTEND, 78 torture_param(int, fqs_duration, 0, "Duration of fqs bursts (us), 0 to disable"); 79 torture_param(int, fqs_holdoff, 0, "Holdoff time within fqs bursts (us)"); 80 torture_param(int, fqs_stutter, 3, "Wait time between fqs bursts (s)"); 81 torture_param(int, fwd_progress, 1, "Number of grace-period forward progress tasks (0 to disable)"); 82 torture_param(int, fwd_progress_div, 4, "Fraction of CPU stall to wait"); 83 torture_param(int, fwd_progress_holdoff, 60, "Time between forward-progress tests (s)"); 84 torture_param(bool, fwd_progress_need_resched, 1, "Hide cond_resched() behind need_resched()"); 85 torture_param(bool, gp_cond, false, "Use conditional/async GP wait primitives"); 86 torture_param(bool, gp_cond_exp, false, "Use conditional/async expedited GP wait primitives"); [all …]
|
D | refscale.c | 73 torture_param(int, verbose, 0, "Enable verbose debugging printk()s"); 74 torture_param(int, verbose_batched, 0, "Batch verbose debugging printk()s"); 77 torture_param(int, holdoff, IS_BUILTIN(CONFIG_RCU_REF_SCALE_TEST) ? 10 : 0, 80 torture_param(long, lookup_instances, 0, "Number of typesafe_lookup structures."); 82 torture_param(long, loops, 10000, "Number of loops per experiment."); 84 torture_param(int, nreaders, -1, "Number of readers, -1 for 75% of CPUs."); 86 torture_param(int, nruns, 30, "Number of experiments to run."); 88 torture_param(int, readdelay, 0, "Read-side delay in nanoseconds."); 96 torture_param(bool, shutdown, REFSCALE_SHUTDOWN,
|
/linux-6.6.21/kernel/locking/ |
D | locktorture.c | 36 torture_param(int, nwriters_stress, -1, "Number of write-locking stress-test threads"); 37 torture_param(int, nreaders_stress, -1, "Number of read-locking stress-test threads"); 38 torture_param(int, long_hold, 100, "Do occasional long hold of lock (ms), 0=disable"); 39 torture_param(int, onoff_holdoff, 0, "Time after boot before CPU hotplugs (s)"); 40 torture_param(int, onoff_interval, 0, "Time between CPU hotplugs (s), 0=disable"); 41 torture_param(int, shuffle_interval, 3, "Number of jiffies between shuffles, 0=disable"); 42 torture_param(int, shutdown_secs, 0, "Shutdown time (j), <= zero to disable."); 43 torture_param(int, stat_interval, 60, "Number of seconds between stats printk()s"); 44 torture_param(int, stutter, 5, "Number of jiffies to run/halt test, 0=disable"); 45 torture_param(int, rt_boost, 2, [all …]
|
/linux-6.6.21/include/linux/ |
D | torture.h | 26 #define torture_param(type, name, init, msg) \ macro
|