Home
last modified time | relevance | path

Searched refs:torture_param (Results 1 – 5 of 5) sorted by relevance

/linux/kernel/rcu/
H A Drcuscale.c88 torture_param(bool, gp_async, false, "Use asynchronous GP wait primitives");
89 torture_param(int, gp_async_max, 1000, "Max # outstanding waits per writer");
90 torture_param(bool, gp_exp, false, "Use expedited GP wait primitives");
91 torture_param(int, holdoff, 10, "Holdoff time before test start (s)");
92 torture_param(int, minruntime, 0, "Minimum run time (s)");
93 torture_param(int, nreaders, -1, "Number of RCU reader threads");
94 torture_param(int, nwriters, -1, "Number of RCU updater threads");
95 torture_param(bool, shutdown, RCUSCALE_SHUTDOWN,
97 torture_param(int, verbose, 1, "Enable verbose debugging printk()s");
98 torture_param(int, writer_holdoff, 0, "Holdoff (us) between GPs, zero to disable");
[all …]
H A Drcutorture.c83 torture_param(int, extendables, RCUTORTURE_MAX_EXTEND,
85 torture_param(int, fqs_duration, 0, "Duration of fqs bursts (us), 0 to disable");
86 torture_param(int, fqs_holdoff, 0, "Holdoff time within fqs bursts (us)");
87 torture_param(int, fqs_stutter, 3, "Wait time between fqs bursts (s)");
88 torture_param(int, fwd_progress, 1, "Number of grace-period forward progress tasks (0 to disable)");
89 torture_param(int, fwd_progress_div, 4, "Fraction of CPU stall to wait");
90 torture_param(int, fwd_progress_holdoff, 60, "Time between forward-progress tests (s)");
91 torture_param(bool, fwd_progress_need_resched, 1, "Hide cond_resched() behind need_resched()");
92 torture_param(bool, gp_cond, false, "Use conditional/async GP wait primitives");
93 torture_param(bool, gp_cond_exp, false, "Use conditional/async expedited GP wait primitives");
[all …]
H A Drefscale.c76 torture_param(int, verbose, 0, "Enable verbose debugging printk()s");
77 torture_param(int, verbose_batched, 0, "Batch verbose debugging printk()s");
80 torture_param(long, guest_os_delay, 0,
83 torture_param(int, holdoff, IS_BUILTIN(CONFIG_RCU_REF_SCALE_TEST) ? 10 : 0,
86 torture_param(long, lookup_instances, 0, "Number of typesafe_lookup structures.");
88 torture_param(int, loops, 10000, "Number of loops per experiment.");
90 torture_param(int, nreaders, -1, "Number of readers, -1 for 75% of CPUs.");
92 torture_param(int, nruns, 30, "Number of experiments to run.");
94 torture_param(int, readdelay, 0, "Read-side delay in nanoseconds.");
102 torture_param(bool, shutdown, REFSCALE_SHUTDOWN,
/linux/kernel/locking/
H A Dlocktorture.c37 torture_param(int, acq_writer_lim, 0, "Write_acquisition time limit (jiffies).");
38 torture_param(int, call_rcu_chains, 0, "Self-propagate call_rcu() chains during test (0=disable).");
39 torture_param(int, long_hold, 100, "Do occasional long hold of lock (ms), 0=disable");
40 torture_param(int, nested_locks, 0, "Number of nested locks (max = 8)");
41 torture_param(int, nreaders_stress, -1, "Number of read-locking stress-test threads");
42 torture_param(int, nwriters_stress, -1, "Number of write-locking stress-test threads");
43 torture_param(int, onoff_holdoff, 0, "Time after boot before CPU hotplugs (s)");
44 torture_param(int, onoff_interval, 0, "Time between CPU hotplugs (s), 0=disable");
45 torture_param(int, rt_boost, 2,
47 torture_param(int, rt_boost_factor, 50, "A factor determining how often rt-boost happens.");
[all …]
/linux/include/linux/
H A Dtorture.h27 #define torture_param(type, name, init, msg) \ macro