Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | // |
| 3 | // Torture test for smp_call_function() and friends. |
| 4 | // |
| 5 | // Copyright (C) Facebook, 2020. |
| 6 | // |
| 7 | // Author: Paul E. McKenney <paulmck@kernel.org> |
| 8 | |
| 9 | #define pr_fmt(fmt) fmt |
| 10 | |
| 11 | #include <linux/atomic.h> |
| 12 | #include <linux/bitops.h> |
| 13 | #include <linux/completion.h> |
| 14 | #include <linux/cpu.h> |
| 15 | #include <linux/delay.h> |
| 16 | #include <linux/err.h> |
| 17 | #include <linux/init.h> |
| 18 | #include <linux/interrupt.h> |
| 19 | #include <linux/kthread.h> |
| 20 | #include <linux/kernel.h> |
| 21 | #include <linux/mm.h> |
| 22 | #include <linux/module.h> |
| 23 | #include <linux/moduleparam.h> |
| 24 | #include <linux/notifier.h> |
| 25 | #include <linux/percpu.h> |
| 26 | #include <linux/rcupdate.h> |
| 27 | #include <linux/rcupdate_trace.h> |
| 28 | #include <linux/reboot.h> |
| 29 | #include <linux/sched.h> |
| 30 | #include <linux/spinlock.h> |
| 31 | #include <linux/smp.h> |
| 32 | #include <linux/stat.h> |
| 33 | #include <linux/srcu.h> |
| 34 | #include <linux/slab.h> |
| 35 | #include <linux/torture.h> |
| 36 | #include <linux/types.h> |
| 37 | |
| 38 | #define SCFTORT_STRING "scftorture" |
| 39 | #define SCFTORT_FLAG SCFTORT_STRING ": " |
| 40 | |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 41 | #define VERBOSE_SCFTORTOUT(s, x...) \ |
Li Zhijian | 71f6ea2a | 2021-10-29 17:40:25 +0800 | [diff] [blame] | 42 | do { if (verbose) pr_alert(SCFTORT_FLAG s "\n", ## x); } while (0) |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 43 | |
Li Zhijian | 809da9b | 2021-11-03 16:30:27 +0800 | [diff] [blame] | 44 | #define SCFTORTOUT_ERRSTRING(s, x...) pr_alert(SCFTORT_FLAG "!!! " s "\n", ## x) |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 45 | |
| 46 | MODULE_LICENSE("GPL"); |
| 47 | MODULE_AUTHOR("Paul E. McKenney <paulmck@kernel.org>"); |
| 48 | |
| 49 | // Wait until there are multiple CPUs before starting test. |
| 50 | torture_param(int, holdoff, IS_BUILTIN(CONFIG_SCF_TORTURE_TEST) ? 10 : 0, |
| 51 | "Holdoff time before test start (s)"); |
| 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."); |
Paul E. McKenney | 8555818 | 2020-09-24 12:11:57 -0700 | [diff] [blame] | 58 | torture_param(int, stutter, 5, "Number of jiffies to run/halt test, 0=disable"); |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 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"); |
Paul E. McKenney | 1ac78b4 | 2020-09-03 13:09:47 -0700 | [diff] [blame] | 61 | torture_param(int, weight_resched, -1, "Testing weight for resched_cpu() operations."); |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 62 | torture_param(int, weight_single, -1, "Testing weight for single-CPU no-wait operations."); |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 63 | torture_param(int, weight_single_rpc, -1, "Testing weight for single-CPU RPC operations."); |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 64 | torture_param(int, weight_single_wait, -1, "Testing weight for single-CPU operations."); |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 65 | torture_param(int, weight_many, -1, "Testing weight for multi-CPU no-wait operations."); |
| 66 | torture_param(int, weight_many_wait, -1, "Testing weight for multi-CPU operations."); |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 67 | torture_param(int, weight_all, -1, "Testing weight for all-CPU no-wait operations."); |
| 68 | torture_param(int, weight_all_wait, -1, "Testing weight for all-CPU operations."); |
| 69 | |
| 70 | char *torture_type = ""; |
| 71 | |
| 72 | #ifdef MODULE |
| 73 | # define SCFTORT_SHUTDOWN 0 |
| 74 | #else |
| 75 | # define SCFTORT_SHUTDOWN 1 |
| 76 | #endif |
| 77 | |
| 78 | torture_param(bool, shutdown, SCFTORT_SHUTDOWN, "Shutdown at end of torture test."); |
| 79 | |
| 80 | struct scf_statistics { |
| 81 | struct task_struct *task; |
| 82 | int cpu; |
Paul E. McKenney | 1ac78b4 | 2020-09-03 13:09:47 -0700 | [diff] [blame] | 83 | long long n_resched; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 84 | long long n_single; |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 85 | long long n_single_ofl; |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 86 | long long n_single_rpc; |
| 87 | long long n_single_rpc_ofl; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 88 | long long n_single_wait; |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 89 | long long n_single_wait_ofl; |
| 90 | long long n_many; |
| 91 | long long n_many_wait; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 92 | long long n_all; |
| 93 | long long n_all_wait; |
| 94 | }; |
| 95 | |
| 96 | static struct scf_statistics *scf_stats_p; |
| 97 | static struct task_struct *scf_torture_stats_task; |
| 98 | static DEFINE_PER_CPU(long long, scf_invoked_count); |
| 99 | |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 100 | // Data for random primitive selection |
Paul E. McKenney | 1ac78b4 | 2020-09-03 13:09:47 -0700 | [diff] [blame] | 101 | #define SCF_PRIM_RESCHED 0 |
| 102 | #define SCF_PRIM_SINGLE 1 |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 103 | #define SCF_PRIM_SINGLE_RPC 2 |
| 104 | #define SCF_PRIM_MANY 3 |
| 105 | #define SCF_PRIM_ALL 4 |
| 106 | #define SCF_NPRIMS 8 // Need wait and no-wait versions of each, |
| 107 | // except for SCF_PRIM_RESCHED and |
| 108 | // SCF_PRIM_SINGLE_RPC. |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 109 | |
| 110 | static char *scf_prim_name[] = { |
Paul E. McKenney | 1ac78b4 | 2020-09-03 13:09:47 -0700 | [diff] [blame] | 111 | "resched_cpu", |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 112 | "smp_call_function_single", |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 113 | "smp_call_function_single_rpc", |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 114 | "smp_call_function_many", |
| 115 | "smp_call_function", |
| 116 | }; |
| 117 | |
| 118 | struct scf_selector { |
| 119 | unsigned long scfs_weight; |
| 120 | int scfs_prim; |
| 121 | bool scfs_wait; |
| 122 | }; |
| 123 | static struct scf_selector scf_sel_array[SCF_NPRIMS]; |
| 124 | static int scf_sel_array_len; |
| 125 | static unsigned long scf_sel_totweight; |
| 126 | |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 127 | // Communicate between caller and handler. |
| 128 | struct scf_check { |
| 129 | bool scfc_in; |
| 130 | bool scfc_out; |
| 131 | int scfc_cpu; // -1 for not _single(). |
| 132 | bool scfc_wait; |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 133 | bool scfc_rpc; |
| 134 | struct completion scfc_completion; |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 135 | }; |
| 136 | |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 137 | // Use to wait for all threads to start. |
| 138 | static atomic_t n_started; |
| 139 | static atomic_t n_errs; |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 140 | static atomic_t n_mb_in_errs; |
| 141 | static atomic_t n_mb_out_errs; |
| 142 | static atomic_t n_alloc_errs; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 143 | static bool scfdone; |
Paul E. McKenney | dbf83b6 | 2020-07-01 16:06:22 -0700 | [diff] [blame] | 144 | static char *bangstr = ""; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 145 | |
Wei Yongjun | 9a52a574 | 2020-07-02 09:56:50 -0700 | [diff] [blame] | 146 | static DEFINE_TORTURE_RANDOM_PERCPU(scf_torture_rand); |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 147 | |
Paul E. McKenney | 1ac78b4 | 2020-09-03 13:09:47 -0700 | [diff] [blame] | 148 | extern void resched_cpu(int cpu); // An alternative IPI vector. |
| 149 | |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 150 | // Print torture statistics. Caller must ensure serialization. |
| 151 | static void scf_torture_stats_print(void) |
| 152 | { |
| 153 | int cpu; |
Paul E. McKenney | dba3142 | 2020-06-30 16:13:37 -0700 | [diff] [blame] | 154 | int i; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 155 | long long invoked_count = 0; |
| 156 | bool isdone = READ_ONCE(scfdone); |
Paul E. McKenney | dba3142 | 2020-06-30 16:13:37 -0700 | [diff] [blame] | 157 | struct scf_statistics scfs = {}; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 158 | |
| 159 | for_each_possible_cpu(cpu) |
| 160 | invoked_count += data_race(per_cpu(scf_invoked_count, cpu)); |
Paul E. McKenney | dba3142 | 2020-06-30 16:13:37 -0700 | [diff] [blame] | 161 | for (i = 0; i < nthreads; i++) { |
Paul E. McKenney | 1ac78b4 | 2020-09-03 13:09:47 -0700 | [diff] [blame] | 162 | scfs.n_resched += scf_stats_p[i].n_resched; |
Paul E. McKenney | dba3142 | 2020-06-30 16:13:37 -0700 | [diff] [blame] | 163 | scfs.n_single += scf_stats_p[i].n_single; |
| 164 | scfs.n_single_ofl += scf_stats_p[i].n_single_ofl; |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 165 | scfs.n_single_rpc += scf_stats_p[i].n_single_rpc; |
Paul E. McKenney | dba3142 | 2020-06-30 16:13:37 -0700 | [diff] [blame] | 166 | scfs.n_single_wait += scf_stats_p[i].n_single_wait; |
| 167 | scfs.n_single_wait_ofl += scf_stats_p[i].n_single_wait_ofl; |
| 168 | scfs.n_many += scf_stats_p[i].n_many; |
| 169 | scfs.n_many_wait += scf_stats_p[i].n_many_wait; |
| 170 | scfs.n_all += scf_stats_p[i].n_all; |
| 171 | scfs.n_all_wait += scf_stats_p[i].n_all_wait; |
| 172 | } |
Paul E. McKenney | dbf83b6 | 2020-07-01 16:06:22 -0700 | [diff] [blame] | 173 | if (atomic_read(&n_errs) || atomic_read(&n_mb_in_errs) || |
| 174 | atomic_read(&n_mb_out_errs) || atomic_read(&n_alloc_errs)) |
| 175 | bangstr = "!!! "; |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 176 | pr_alert("%s %sscf_invoked_count %s: %lld resched: %lld single: %lld/%lld single_ofl: %lld/%lld single_rpc: %lld single_rpc_ofl: %lld many: %lld/%lld all: %lld/%lld ", |
Paul E. McKenney | 1ac78b4 | 2020-09-03 13:09:47 -0700 | [diff] [blame] | 177 | SCFTORT_FLAG, bangstr, isdone ? "VER" : "ver", invoked_count, scfs.n_resched, |
Paul E. McKenney | dba3142 | 2020-06-30 16:13:37 -0700 | [diff] [blame] | 178 | scfs.n_single, scfs.n_single_wait, scfs.n_single_ofl, scfs.n_single_wait_ofl, |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 179 | scfs.n_single_rpc, scfs.n_single_rpc_ofl, |
Paul E. McKenney | dba3142 | 2020-06-30 16:13:37 -0700 | [diff] [blame] | 180 | scfs.n_many, scfs.n_many_wait, scfs.n_all, scfs.n_all_wait); |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 181 | torture_onoff_stats(); |
Paul E. McKenney | dbf83b6 | 2020-07-01 16:06:22 -0700 | [diff] [blame] | 182 | pr_cont("ste: %d stnmie: %d stnmoe: %d staf: %d\n", atomic_read(&n_errs), |
| 183 | atomic_read(&n_mb_in_errs), atomic_read(&n_mb_out_errs), |
| 184 | atomic_read(&n_alloc_errs)); |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | // Periodically prints torture statistics, if periodic statistics printing |
| 188 | // was specified via the stat_interval module parameter. |
| 189 | static int |
| 190 | scf_torture_stats(void *arg) |
| 191 | { |
| 192 | VERBOSE_TOROUT_STRING("scf_torture_stats task started"); |
| 193 | do { |
| 194 | schedule_timeout_interruptible(stat_interval * HZ); |
| 195 | scf_torture_stats_print(); |
| 196 | torture_shutdown_absorb("scf_torture_stats"); |
| 197 | } while (!torture_must_stop()); |
| 198 | torture_kthread_stopping("scf_torture_stats"); |
| 199 | return 0; |
| 200 | } |
| 201 | |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 202 | // Add a primitive to the scf_sel_array[]. |
| 203 | static void scf_sel_add(unsigned long weight, int prim, bool wait) |
| 204 | { |
| 205 | struct scf_selector *scfsp = &scf_sel_array[scf_sel_array_len]; |
| 206 | |
| 207 | // If no weight, if array would overflow, if computing three-place |
| 208 | // percentages would overflow, or if the scf_prim_name[] array would |
| 209 | // overflow, don't bother. In the last three two cases, complain. |
| 210 | if (!weight || |
| 211 | WARN_ON_ONCE(scf_sel_array_len >= ARRAY_SIZE(scf_sel_array)) || |
| 212 | WARN_ON_ONCE(0 - 100000 * weight <= 100000 * scf_sel_totweight) || |
| 213 | WARN_ON_ONCE(prim >= ARRAY_SIZE(scf_prim_name))) |
| 214 | return; |
| 215 | scf_sel_totweight += weight; |
| 216 | scfsp->scfs_weight = scf_sel_totweight; |
| 217 | scfsp->scfs_prim = prim; |
| 218 | scfsp->scfs_wait = wait; |
| 219 | scf_sel_array_len++; |
| 220 | } |
| 221 | |
| 222 | // Dump out weighting percentages for scf_prim_name[] array. |
| 223 | static void scf_sel_dump(void) |
| 224 | { |
| 225 | int i; |
| 226 | unsigned long oldw = 0; |
| 227 | struct scf_selector *scfsp; |
| 228 | unsigned long w; |
| 229 | |
| 230 | for (i = 0; i < scf_sel_array_len; i++) { |
| 231 | scfsp = &scf_sel_array[i]; |
| 232 | w = (scfsp->scfs_weight - oldw) * 100000 / scf_sel_totweight; |
| 233 | pr_info("%s: %3lu.%03lu %s(%s)\n", __func__, w / 1000, w % 1000, |
| 234 | scf_prim_name[scfsp->scfs_prim], |
| 235 | scfsp->scfs_wait ? "wait" : "nowait"); |
| 236 | oldw = scfsp->scfs_weight; |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | // Randomly pick a primitive and wait/nowait, based on weightings. |
| 241 | static struct scf_selector *scf_sel_rand(struct torture_random_state *trsp) |
| 242 | { |
| 243 | int i; |
| 244 | unsigned long w = torture_random(trsp) % (scf_sel_totweight + 1); |
| 245 | |
| 246 | for (i = 0; i < scf_sel_array_len; i++) |
| 247 | if (scf_sel_array[i].scfs_weight >= w) |
| 248 | return &scf_sel_array[i]; |
| 249 | WARN_ON_ONCE(1); |
| 250 | return &scf_sel_array[0]; |
| 251 | } |
| 252 | |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 253 | // Update statistics and occasionally burn up mass quantities of CPU time, |
| 254 | // if told to do so via scftorture.longwait. Otherwise, occasionally burn |
| 255 | // a little bit. |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 256 | static void scf_handler(void *scfc_in) |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 257 | { |
| 258 | int i; |
| 259 | int j; |
| 260 | unsigned long r = torture_random(this_cpu_ptr(&scf_torture_rand)); |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 261 | struct scf_check *scfcp = scfc_in; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 262 | |
Paul E. McKenney | 980205e | 2020-07-01 12:30:02 -0700 | [diff] [blame] | 263 | if (likely(scfcp)) { |
| 264 | WRITE_ONCE(scfcp->scfc_out, false); // For multiple receivers. |
| 265 | if (WARN_ON_ONCE(unlikely(!READ_ONCE(scfcp->scfc_in)))) |
| 266 | atomic_inc(&n_mb_in_errs); |
| 267 | } |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 268 | this_cpu_inc(scf_invoked_count); |
| 269 | if (longwait <= 0) { |
| 270 | if (!(r & 0xffc0)) |
| 271 | udelay(r & 0x3f); |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 272 | goto out; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 273 | } |
| 274 | if (r & 0xfff) |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 275 | goto out; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 276 | r = (r >> 12); |
| 277 | if (longwait <= 0) { |
| 278 | udelay((r & 0xff) + 1); |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 279 | goto out; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 280 | } |
| 281 | r = r % longwait + 1; |
| 282 | for (i = 0; i < r; i++) { |
| 283 | for (j = 0; j < 1000; j++) { |
| 284 | udelay(1000); |
| 285 | cpu_relax(); |
| 286 | } |
| 287 | } |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 288 | out: |
| 289 | if (unlikely(!scfcp)) |
| 290 | return; |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 291 | if (scfcp->scfc_wait) { |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 292 | WRITE_ONCE(scfcp->scfc_out, true); |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 293 | if (scfcp->scfc_rpc) |
| 294 | complete(&scfcp->scfc_completion); |
| 295 | } else { |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 296 | kfree(scfcp); |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 297 | } |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 298 | } |
| 299 | |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 300 | // As above, but check for correct CPU. |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 301 | static void scf_handler_1(void *scfc_in) |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 302 | { |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 303 | struct scf_check *scfcp = scfc_in; |
| 304 | |
| 305 | if (likely(scfcp) && WARN_ONCE(smp_processor_id() != scfcp->scfc_cpu, "%s: Wanted CPU %d got CPU %d\n", __func__, scfcp->scfc_cpu, smp_processor_id())) { |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 306 | atomic_inc(&n_errs); |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 307 | } |
| 308 | scf_handler(scfcp); |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | // Randomly do an smp_call_function*() invocation. |
| 312 | static void scftorture_invoke_one(struct scf_statistics *scfp, struct torture_random_state *trsp) |
| 313 | { |
| 314 | uintptr_t cpu; |
Paul E. McKenney | 676e546 | 2020-07-01 14:13:02 -0700 | [diff] [blame] | 315 | int ret = 0; |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 316 | struct scf_check *scfcp = NULL; |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 317 | struct scf_selector *scfsp = scf_sel_rand(trsp); |
| 318 | |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 319 | if (use_cpus_read_lock) |
| 320 | cpus_read_lock(); |
| 321 | else |
| 322 | preempt_disable(); |
Paul E. McKenney | 34e8c48 | 2020-07-01 13:49:06 -0700 | [diff] [blame] | 323 | if (scfsp->scfs_prim == SCF_PRIM_SINGLE || scfsp->scfs_wait) { |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 324 | scfcp = kmalloc(sizeof(*scfcp), GFP_ATOMIC); |
Paul E. McKenney | 4df55bd | 2020-07-09 13:58:32 -0700 | [diff] [blame] | 325 | if (WARN_ON_ONCE(!scfcp)) { |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 326 | atomic_inc(&n_alloc_errs); |
Paul E. McKenney | 4df55bd | 2020-07-09 13:58:32 -0700 | [diff] [blame] | 327 | } else { |
| 328 | scfcp->scfc_cpu = -1; |
| 329 | scfcp->scfc_wait = scfsp->scfs_wait; |
| 330 | scfcp->scfc_out = false; |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 331 | scfcp->scfc_rpc = false; |
Paul E. McKenney | 4df55bd | 2020-07-09 13:58:32 -0700 | [diff] [blame] | 332 | } |
Paul E. McKenney | 34e8c48 | 2020-07-01 13:49:06 -0700 | [diff] [blame] | 333 | } |
| 334 | switch (scfsp->scfs_prim) { |
Paul E. McKenney | 1ac78b4 | 2020-09-03 13:09:47 -0700 | [diff] [blame] | 335 | case SCF_PRIM_RESCHED: |
| 336 | if (IS_BUILTIN(CONFIG_SCF_TORTURE_TEST)) { |
| 337 | cpu = torture_random(trsp) % nr_cpu_ids; |
| 338 | scfp->n_resched++; |
| 339 | resched_cpu(cpu); |
Paul E. McKenney | c3d0258 | 2021-07-14 06:53:51 -0700 | [diff] [blame] | 340 | this_cpu_inc(scf_invoked_count); |
Paul E. McKenney | 1ac78b4 | 2020-09-03 13:09:47 -0700 | [diff] [blame] | 341 | } |
| 342 | break; |
Paul E. McKenney | 34e8c48 | 2020-07-01 13:49:06 -0700 | [diff] [blame] | 343 | case SCF_PRIM_SINGLE: |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 344 | cpu = torture_random(trsp) % nr_cpu_ids; |
| 345 | if (scfsp->scfs_wait) |
| 346 | scfp->n_single_wait++; |
| 347 | else |
| 348 | scfp->n_single++; |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 349 | if (scfcp) { |
| 350 | scfcp->scfc_cpu = cpu; |
Paul E. McKenney | ee7035d | 2020-07-01 16:38:16 -0700 | [diff] [blame] | 351 | barrier(); // Prevent race-reduction compiler optimizations. |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 352 | scfcp->scfc_in = true; |
| 353 | } |
| 354 | ret = smp_call_function_single(cpu, scf_handler_1, (void *)scfcp, scfsp->scfs_wait); |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 355 | if (ret) { |
| 356 | if (scfsp->scfs_wait) |
| 357 | scfp->n_single_wait_ofl++; |
| 358 | else |
| 359 | scfp->n_single_ofl++; |
Paul E. McKenney | b93e21a | 2020-06-30 20:49:50 -0700 | [diff] [blame] | 360 | kfree(scfcp); |
Paul E. McKenney | 676e546 | 2020-07-01 14:13:02 -0700 | [diff] [blame] | 361 | scfcp = NULL; |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 362 | } |
| 363 | break; |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 364 | case SCF_PRIM_SINGLE_RPC: |
| 365 | if (!scfcp) |
| 366 | break; |
| 367 | cpu = torture_random(trsp) % nr_cpu_ids; |
| 368 | scfp->n_single_rpc++; |
| 369 | scfcp->scfc_cpu = cpu; |
| 370 | scfcp->scfc_wait = true; |
| 371 | init_completion(&scfcp->scfc_completion); |
| 372 | scfcp->scfc_rpc = true; |
| 373 | barrier(); // Prevent race-reduction compiler optimizations. |
| 374 | scfcp->scfc_in = true; |
| 375 | ret = smp_call_function_single(cpu, scf_handler_1, (void *)scfcp, 0); |
| 376 | if (!ret) { |
| 377 | if (use_cpus_read_lock) |
| 378 | cpus_read_unlock(); |
| 379 | else |
| 380 | preempt_enable(); |
| 381 | wait_for_completion(&scfcp->scfc_completion); |
| 382 | if (use_cpus_read_lock) |
| 383 | cpus_read_lock(); |
| 384 | else |
| 385 | preempt_disable(); |
| 386 | } else { |
| 387 | scfp->n_single_rpc_ofl++; |
| 388 | kfree(scfcp); |
| 389 | scfcp = NULL; |
| 390 | } |
| 391 | break; |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 392 | case SCF_PRIM_MANY: |
| 393 | if (scfsp->scfs_wait) |
| 394 | scfp->n_many_wait++; |
| 395 | else |
| 396 | scfp->n_many++; |
Paul E. McKenney | ee7035d | 2020-07-01 16:38:16 -0700 | [diff] [blame] | 397 | if (scfcp) { |
| 398 | barrier(); // Prevent race-reduction compiler optimizations. |
Paul E. McKenney | 980205e | 2020-07-01 12:30:02 -0700 | [diff] [blame] | 399 | scfcp->scfc_in = true; |
Paul E. McKenney | ee7035d | 2020-07-01 16:38:16 -0700 | [diff] [blame] | 400 | } |
Paul E. McKenney | 980205e | 2020-07-01 12:30:02 -0700 | [diff] [blame] | 401 | smp_call_function_many(cpu_online_mask, scf_handler, scfcp, scfsp->scfs_wait); |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 402 | break; |
| 403 | case SCF_PRIM_ALL: |
| 404 | if (scfsp->scfs_wait) |
| 405 | scfp->n_all_wait++; |
| 406 | else |
| 407 | scfp->n_all++; |
Paul E. McKenney | ee7035d | 2020-07-01 16:38:16 -0700 | [diff] [blame] | 408 | if (scfcp) { |
| 409 | barrier(); // Prevent race-reduction compiler optimizations. |
Paul E. McKenney | 34e8c48 | 2020-07-01 13:49:06 -0700 | [diff] [blame] | 410 | scfcp->scfc_in = true; |
Paul E. McKenney | ee7035d | 2020-07-01 16:38:16 -0700 | [diff] [blame] | 411 | } |
Paul E. McKenney | 34e8c48 | 2020-07-01 13:49:06 -0700 | [diff] [blame] | 412 | smp_call_function(scf_handler, scfcp, scfsp->scfs_wait); |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 413 | break; |
Paul E. McKenney | de77d4d | 2020-07-02 12:15:37 -0700 | [diff] [blame] | 414 | default: |
| 415 | WARN_ON_ONCE(1); |
| 416 | if (scfcp) |
| 417 | scfcp->scfc_out = true; |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 418 | } |
Paul E. McKenney | 676e546 | 2020-07-01 14:13:02 -0700 | [diff] [blame] | 419 | if (scfcp && scfsp->scfs_wait) { |
Paul E. McKenney | 9e66bf0 | 2020-07-03 15:23:19 -0700 | [diff] [blame] | 420 | if (WARN_ON_ONCE((num_online_cpus() > 1 || scfsp->scfs_prim == SCF_PRIM_SINGLE) && |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 421 | !scfcp->scfc_out)) { |
| 422 | pr_warn("%s: Memory-ordering failure, scfs_prim: %d.\n", __func__, scfsp->scfs_prim); |
Paul E. McKenney | 676e546 | 2020-07-01 14:13:02 -0700 | [diff] [blame] | 423 | atomic_inc(&n_mb_out_errs); // Leak rather than trash! |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 424 | } else { |
Paul E. McKenney | 676e546 | 2020-07-01 14:13:02 -0700 | [diff] [blame] | 425 | kfree(scfcp); |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 426 | } |
Paul E. McKenney | ee7035d | 2020-07-01 16:38:16 -0700 | [diff] [blame] | 427 | barrier(); // Prevent race-reduction compiler optimizations. |
Paul E. McKenney | 676e546 | 2020-07-01 14:13:02 -0700 | [diff] [blame] | 428 | } |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 429 | if (use_cpus_read_lock) |
| 430 | cpus_read_unlock(); |
| 431 | else |
| 432 | preempt_enable(); |
| 433 | if (!(torture_random(trsp) & 0xfff)) |
| 434 | schedule_timeout_uninterruptible(1); |
| 435 | } |
| 436 | |
| 437 | // SCF test kthread. Repeatedly does calls to members of the |
| 438 | // smp_call_function() family of functions. |
| 439 | static int scftorture_invoker(void *arg) |
| 440 | { |
Paul E. McKenney | a7c072ef | 2020-07-02 14:15:33 -0700 | [diff] [blame] | 441 | int cpu; |
Paul E. McKenney | f3ea978 | 2020-11-11 10:12:05 -0800 | [diff] [blame] | 442 | int curcpu; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 443 | DEFINE_TORTURE_RANDOM(rand); |
| 444 | struct scf_statistics *scfp = (struct scf_statistics *)arg; |
Paul E. McKenney | a7c072ef | 2020-07-02 14:15:33 -0700 | [diff] [blame] | 445 | bool was_offline = false; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 446 | |
| 447 | VERBOSE_SCFTORTOUT("scftorture_invoker %d: task started", scfp->cpu); |
Paul E. McKenney | a7c072ef | 2020-07-02 14:15:33 -0700 | [diff] [blame] | 448 | cpu = scfp->cpu % nr_cpu_ids; |
Paul E. McKenney | 22b6d14 | 2021-06-04 12:37:44 -0700 | [diff] [blame] | 449 | WARN_ON_ONCE(set_cpus_allowed_ptr(current, cpumask_of(cpu))); |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 450 | set_user_nice(current, MAX_NICE); |
| 451 | if (holdoff) |
| 452 | schedule_timeout_interruptible(holdoff * HZ); |
| 453 | |
Paul E. McKenney | 22b6d14 | 2021-06-04 12:37:44 -0700 | [diff] [blame] | 454 | VERBOSE_SCFTORTOUT("scftorture_invoker %d: Waiting for all SCF torturers from cpu %d", scfp->cpu, raw_smp_processor_id()); |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 455 | |
| 456 | // Make sure that the CPU is affinitized appropriately during testing. |
Paul E. McKenney | 22b6d14 | 2021-06-04 12:37:44 -0700 | [diff] [blame] | 457 | curcpu = raw_smp_processor_id(); |
Paul E. McKenney | f3ea978 | 2020-11-11 10:12:05 -0800 | [diff] [blame] | 458 | WARN_ONCE(curcpu != scfp->cpu % nr_cpu_ids, |
| 459 | "%s: Wanted CPU %d, running on %d, nr_cpu_ids = %d\n", |
| 460 | __func__, scfp->cpu, curcpu, nr_cpu_ids); |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 461 | |
| 462 | if (!atomic_dec_return(&n_started)) |
| 463 | while (atomic_read_acquire(&n_started)) { |
| 464 | if (torture_must_stop()) { |
| 465 | VERBOSE_SCFTORTOUT("scftorture_invoker %d ended before starting", scfp->cpu); |
| 466 | goto end; |
| 467 | } |
| 468 | schedule_timeout_uninterruptible(1); |
| 469 | } |
| 470 | |
| 471 | VERBOSE_SCFTORTOUT("scftorture_invoker %d started", scfp->cpu); |
| 472 | |
| 473 | do { |
| 474 | scftorture_invoke_one(scfp, &rand); |
Paul E. McKenney | a7c072ef | 2020-07-02 14:15:33 -0700 | [diff] [blame] | 475 | while (cpu_is_offline(cpu) && !torture_must_stop()) { |
| 476 | schedule_timeout_interruptible(HZ / 5); |
| 477 | was_offline = true; |
| 478 | } |
| 479 | if (was_offline) { |
| 480 | set_cpus_allowed_ptr(current, cpumask_of(cpu)); |
| 481 | was_offline = false; |
| 482 | } |
Paul E. McKenney | 65bd77f | 2020-07-23 15:53:02 -0700 | [diff] [blame] | 483 | cond_resched(); |
Paul E. McKenney | 8555818 | 2020-09-24 12:11:57 -0700 | [diff] [blame] | 484 | stutter_wait("scftorture_invoker"); |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 485 | } while (!torture_must_stop()); |
| 486 | |
| 487 | VERBOSE_SCFTORTOUT("scftorture_invoker %d ended", scfp->cpu); |
| 488 | end: |
| 489 | torture_kthread_stopping("scftorture_invoker"); |
| 490 | return 0; |
| 491 | } |
| 492 | |
| 493 | static void |
| 494 | scftorture_print_module_parms(const char *tag) |
| 495 | { |
| 496 | pr_alert(SCFTORT_FLAG |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 497 | "--- %s: verbose=%d holdoff=%d longwait=%d nthreads=%d onoff_holdoff=%d onoff_interval=%d shutdown_secs=%d stat_interval=%d stutter=%d use_cpus_read_lock=%d, weight_resched=%d, weight_single=%d, weight_single_rpc=%d, weight_single_wait=%d, weight_many=%d, weight_many_wait=%d, weight_all=%d, weight_all_wait=%d\n", tag, |
| 498 | verbose, holdoff, longwait, nthreads, onoff_holdoff, onoff_interval, shutdown, stat_interval, stutter, use_cpus_read_lock, weight_resched, weight_single, weight_single_rpc, weight_single_wait, weight_many, weight_many_wait, weight_all, weight_all_wait); |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 499 | } |
| 500 | |
| 501 | static void scf_cleanup_handler(void *unused) |
| 502 | { |
| 503 | } |
| 504 | |
| 505 | static void scf_torture_cleanup(void) |
| 506 | { |
| 507 | int i; |
| 508 | |
| 509 | if (torture_cleanup_begin()) |
| 510 | return; |
| 511 | |
| 512 | WRITE_ONCE(scfdone, true); |
Paul E. McKenney | 586e4d4 | 2021-07-09 17:53:27 -0700 | [diff] [blame] | 513 | if (nthreads && scf_stats_p) |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 514 | for (i = 0; i < nthreads; i++) |
| 515 | torture_stop_kthread("scftorture_invoker", scf_stats_p[i].task); |
| 516 | else |
| 517 | goto end; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 518 | smp_call_function(scf_cleanup_handler, NULL, 0); |
| 519 | torture_stop_kthread(scf_torture_stats, scf_torture_stats_task); |
| 520 | scf_torture_stats_print(); // -After- the stats thread is stopped! |
Paul E. McKenney | dba3142 | 2020-06-30 16:13:37 -0700 | [diff] [blame] | 521 | kfree(scf_stats_p); // -After- the last stats print has completed! |
| 522 | scf_stats_p = NULL; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 523 | |
Paul E. McKenney | dbf83b6 | 2020-07-01 16:06:22 -0700 | [diff] [blame] | 524 | if (atomic_read(&n_errs) || atomic_read(&n_mb_in_errs) || atomic_read(&n_mb_out_errs)) |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 525 | scftorture_print_module_parms("End of test: FAILURE"); |
| 526 | else if (torture_onoff_failures()) |
| 527 | scftorture_print_module_parms("End of test: LOCK_HOTPLUG"); |
| 528 | else |
| 529 | scftorture_print_module_parms("End of test: SUCCESS"); |
| 530 | |
| 531 | end: |
| 532 | torture_cleanup_end(); |
| 533 | } |
| 534 | |
| 535 | static int __init scf_torture_init(void) |
| 536 | { |
| 537 | long i; |
| 538 | int firsterr = 0; |
Paul E. McKenney | 1ac78b4 | 2020-09-03 13:09:47 -0700 | [diff] [blame] | 539 | unsigned long weight_resched1 = weight_resched; |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 540 | unsigned long weight_single1 = weight_single; |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 541 | unsigned long weight_single_rpc1 = weight_single_rpc; |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 542 | unsigned long weight_single_wait1 = weight_single_wait; |
| 543 | unsigned long weight_many1 = weight_many; |
| 544 | unsigned long weight_many_wait1 = weight_many_wait; |
| 545 | unsigned long weight_all1 = weight_all; |
| 546 | unsigned long weight_all_wait1 = weight_all_wait; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 547 | |
| 548 | if (!torture_init_begin(SCFTORT_STRING, verbose)) |
| 549 | return -EBUSY; |
| 550 | |
| 551 | scftorture_print_module_parms("Start of test"); |
| 552 | |
Paul E. McKenney | 2f611d0 | 2021-07-13 14:12:54 -0700 | [diff] [blame] | 553 | if (weight_resched <= 0 && |
| 554 | weight_single <= 0 && weight_single_rpc <= 0 && weight_single_wait <= 0 && |
| 555 | weight_many <= 0 && weight_many_wait <= 0 && |
| 556 | weight_all <= 0 && weight_all_wait <= 0) { |
| 557 | weight_resched1 = weight_resched == 0 ? 0 : 2 * nr_cpu_ids; |
| 558 | weight_single1 = weight_single == 0 ? 0 : 2 * nr_cpu_ids; |
| 559 | weight_single_rpc1 = weight_single_rpc == 0 ? 0 : 2 * nr_cpu_ids; |
| 560 | weight_single_wait1 = weight_single_wait == 0 ? 0 : 2 * nr_cpu_ids; |
| 561 | weight_many1 = weight_many == 0 ? 0 : 2; |
| 562 | weight_many_wait1 = weight_many_wait == 0 ? 0 : 2; |
| 563 | weight_all1 = weight_all == 0 ? 0 : 1; |
| 564 | weight_all_wait1 = weight_all_wait == 0 ? 0 : 1; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 565 | } else { |
Paul E. McKenney | 1ac78b4 | 2020-09-03 13:09:47 -0700 | [diff] [blame] | 566 | if (weight_resched == -1) |
| 567 | weight_resched1 = 0; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 568 | if (weight_single == -1) |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 569 | weight_single1 = 0; |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 570 | if (weight_single_rpc == -1) |
| 571 | weight_single_rpc1 = 0; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 572 | if (weight_single_wait == -1) |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 573 | weight_single_wait1 = 0; |
| 574 | if (weight_many == -1) |
| 575 | weight_many1 = 0; |
| 576 | if (weight_many_wait == -1) |
| 577 | weight_many_wait1 = 0; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 578 | if (weight_all == -1) |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 579 | weight_all1 = 0; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 580 | if (weight_all_wait == -1) |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 581 | weight_all_wait1 = 0; |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 582 | } |
Paul E. McKenney | da9366c | 2021-07-13 15:13:56 -0700 | [diff] [blame] | 583 | if (weight_resched1 == 0 && weight_single1 == 0 && weight_single_rpc1 == 0 && |
| 584 | weight_single_wait1 == 0 && weight_many1 == 0 && weight_many_wait1 == 0 && |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 585 | weight_all1 == 0 && weight_all_wait1 == 0) { |
Li Zhijian | 809da9b | 2021-11-03 16:30:27 +0800 | [diff] [blame] | 586 | SCFTORTOUT_ERRSTRING("all zero weights makes no sense"); |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 587 | firsterr = -EINVAL; |
| 588 | goto unwind; |
| 589 | } |
Paul E. McKenney | 1ac78b4 | 2020-09-03 13:09:47 -0700 | [diff] [blame] | 590 | if (IS_BUILTIN(CONFIG_SCF_TORTURE_TEST)) |
| 591 | scf_sel_add(weight_resched1, SCF_PRIM_RESCHED, false); |
| 592 | else if (weight_resched1) |
Li Zhijian | 809da9b | 2021-11-03 16:30:27 +0800 | [diff] [blame] | 593 | SCFTORTOUT_ERRSTRING("built as module, weight_resched ignored"); |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 594 | scf_sel_add(weight_single1, SCF_PRIM_SINGLE, false); |
Paul E. McKenney | 9b9a806 | 2021-06-24 17:53:43 -0700 | [diff] [blame] | 595 | scf_sel_add(weight_single_rpc1, SCF_PRIM_SINGLE_RPC, true); |
Paul E. McKenney | 5022b8a | 2020-06-25 17:05:58 -0700 | [diff] [blame] | 596 | scf_sel_add(weight_single_wait1, SCF_PRIM_SINGLE, true); |
| 597 | scf_sel_add(weight_many1, SCF_PRIM_MANY, false); |
| 598 | scf_sel_add(weight_many_wait1, SCF_PRIM_MANY, true); |
| 599 | scf_sel_add(weight_all1, SCF_PRIM_ALL, false); |
| 600 | scf_sel_add(weight_all_wait1, SCF_PRIM_ALL, true); |
| 601 | scf_sel_dump(); |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 602 | |
| 603 | if (onoff_interval > 0) { |
| 604 | firsterr = torture_onoff_init(onoff_holdoff * HZ, onoff_interval, NULL); |
Paul E. McKenney | f2bdf7d | 2021-08-05 16:01:51 -0700 | [diff] [blame] | 605 | if (torture_init_error(firsterr)) |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 606 | goto unwind; |
| 607 | } |
| 608 | if (shutdown_secs > 0) { |
| 609 | firsterr = torture_shutdown_init(shutdown_secs, scf_torture_cleanup); |
Paul E. McKenney | f2bdf7d | 2021-08-05 16:01:51 -0700 | [diff] [blame] | 610 | if (torture_init_error(firsterr)) |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 611 | goto unwind; |
| 612 | } |
Paul E. McKenney | 8555818 | 2020-09-24 12:11:57 -0700 | [diff] [blame] | 613 | if (stutter > 0) { |
| 614 | firsterr = torture_stutter_init(stutter, stutter); |
Paul E. McKenney | f2bdf7d | 2021-08-05 16:01:51 -0700 | [diff] [blame] | 615 | if (torture_init_error(firsterr)) |
Paul E. McKenney | 8555818 | 2020-09-24 12:11:57 -0700 | [diff] [blame] | 616 | goto unwind; |
| 617 | } |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 618 | |
| 619 | // Worker tasks invoking smp_call_function(). |
| 620 | if (nthreads < 0) |
| 621 | nthreads = num_online_cpus(); |
| 622 | scf_stats_p = kcalloc(nthreads, sizeof(scf_stats_p[0]), GFP_KERNEL); |
| 623 | if (!scf_stats_p) { |
Li Zhijian | 809da9b | 2021-11-03 16:30:27 +0800 | [diff] [blame] | 624 | SCFTORTOUT_ERRSTRING("out of memory"); |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 625 | firsterr = -ENOMEM; |
| 626 | goto unwind; |
| 627 | } |
| 628 | |
Li Zhijian | 71f6ea2a | 2021-10-29 17:40:25 +0800 | [diff] [blame] | 629 | VERBOSE_SCFTORTOUT("Starting %d smp_call_function() threads", nthreads); |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 630 | |
| 631 | atomic_set(&n_started, nthreads); |
| 632 | for (i = 0; i < nthreads; i++) { |
| 633 | scf_stats_p[i].cpu = i; |
| 634 | firsterr = torture_create_kthread(scftorture_invoker, (void *)&scf_stats_p[i], |
| 635 | scf_stats_p[i].task); |
Paul E. McKenney | f2bdf7d | 2021-08-05 16:01:51 -0700 | [diff] [blame] | 636 | if (torture_init_error(firsterr)) |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 637 | goto unwind; |
| 638 | } |
| 639 | if (stat_interval > 0) { |
| 640 | firsterr = torture_create_kthread(scf_torture_stats, NULL, scf_torture_stats_task); |
Paul E. McKenney | f2bdf7d | 2021-08-05 16:01:51 -0700 | [diff] [blame] | 641 | if (torture_init_error(firsterr)) |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 642 | goto unwind; |
| 643 | } |
| 644 | |
| 645 | torture_init_end(); |
| 646 | return 0; |
| 647 | |
| 648 | unwind: |
| 649 | torture_init_end(); |
| 650 | scf_torture_cleanup(); |
Paul E. McKenney | 2b1388f | 2021-07-13 14:20:35 -0700 | [diff] [blame] | 651 | if (shutdown_secs) { |
| 652 | WARN_ON(!IS_MODULE(CONFIG_SCF_TORTURE_TEST)); |
| 653 | kernel_power_off(); |
| 654 | } |
Paul E. McKenney | e9d338a | 2020-06-24 15:59:59 -0700 | [diff] [blame] | 655 | return firsterr; |
| 656 | } |
| 657 | |
| 658 | module_init(scf_torture_init); |
| 659 | module_exit(scf_torture_cleanup); |