mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-28 23:23:55 +08:00
1afb95fee0
The TREE01 rcutorture scenario intentionally creates confusion as to the number of available CPUs by specifying the "maxcpus=8 nr_cpus=43" kernel boot parameters. This can disable rcutorture's load shedding, which currently uses num_online_cpus(), which would count the extra 35 CPUs. However, the rcutorture guest OS will be provisioned with only 8 CPUs, which means that rcutorture will present full load even when all but one of the original 8 CPUs are offline. This can result in spurious errors due to extreme overloading of that single remaining CPU. This commit therefore keeps a separate set of books on the number of usable online CPUs, so that torture_num_online_cpus() is used for load shedding instead of num_online_cpus(). Note that initial sizing must use num_online_cpus() because torture_num_online_cpus() will return NR_CPUS until shortly after torture_onoff_init() is invoked. Reported-by: Frederic Weisbecker <frederic@kernel.org> [ paulmck: Apply feedback from kernel test robot. ] Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
124 lines
4.2 KiB
C
124 lines
4.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Common functions for in-kernel torture tests.
|
|
*
|
|
* Copyright IBM Corporation, 2014
|
|
*
|
|
* Author: Paul E. McKenney <paulmck@linux.ibm.com>
|
|
*/
|
|
|
|
#ifndef __LINUX_TORTURE_H
|
|
#define __LINUX_TORTURE_H
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/cache.h>
|
|
#include <linux/spinlock.h>
|
|
#include <linux/threads.h>
|
|
#include <linux/cpumask.h>
|
|
#include <linux/seqlock.h>
|
|
#include <linux/lockdep.h>
|
|
#include <linux/completion.h>
|
|
#include <linux/debugobjects.h>
|
|
#include <linux/bug.h>
|
|
#include <linux/compiler.h>
|
|
|
|
/* Definitions for a non-string torture-test module parameter. */
|
|
#define torture_param(type, name, init, msg) \
|
|
static type name = init; \
|
|
module_param(name, type, 0444); \
|
|
MODULE_PARM_DESC(name, msg);
|
|
|
|
#define TORTURE_FLAG "-torture:"
|
|
#define TOROUT_STRING(s) \
|
|
pr_alert("%s" TORTURE_FLAG " %s\n", torture_type, s)
|
|
#define VERBOSE_TOROUT_STRING(s) \
|
|
do { \
|
|
if (verbose) { \
|
|
verbose_torout_sleep(); \
|
|
pr_alert("%s" TORTURE_FLAG " %s\n", torture_type, s); \
|
|
} \
|
|
} while (0)
|
|
#define VERBOSE_TOROUT_ERRSTRING(s) \
|
|
do { \
|
|
if (verbose) { \
|
|
verbose_torout_sleep(); \
|
|
pr_alert("%s" TORTURE_FLAG "!!! %s\n", torture_type, s); \
|
|
} \
|
|
} while (0)
|
|
void verbose_torout_sleep(void);
|
|
|
|
/* Definitions for online/offline exerciser. */
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
|
int torture_num_online_cpus(void);
|
|
#else /* #ifdef CONFIG_HOTPLUG_CPU */
|
|
static inline int torture_num_online_cpus(void) { return 1; }
|
|
#endif /* #else #ifdef CONFIG_HOTPLUG_CPU */
|
|
typedef void torture_ofl_func(void);
|
|
bool torture_offline(int cpu, long *n_onl_attempts, long *n_onl_successes,
|
|
unsigned long *sum_offl, int *min_onl, int *max_onl);
|
|
bool torture_online(int cpu, long *n_onl_attempts, long *n_onl_successes,
|
|
unsigned long *sum_onl, int *min_onl, int *max_onl);
|
|
int torture_onoff_init(long ooholdoff, long oointerval, torture_ofl_func *f);
|
|
void torture_onoff_stats(void);
|
|
bool torture_onoff_failures(void);
|
|
|
|
/* Low-rider random number generator. */
|
|
struct torture_random_state {
|
|
unsigned long trs_state;
|
|
long trs_count;
|
|
};
|
|
#define DEFINE_TORTURE_RANDOM(name) struct torture_random_state name = { 0, 0 }
|
|
#define DEFINE_TORTURE_RANDOM_PERCPU(name) \
|
|
DEFINE_PER_CPU(struct torture_random_state, name)
|
|
unsigned long torture_random(struct torture_random_state *trsp);
|
|
static inline void torture_random_init(struct torture_random_state *trsp)
|
|
{
|
|
trsp->trs_state = 0;
|
|
trsp->trs_count = 0;
|
|
}
|
|
|
|
/* Definitions for high-resolution-timer sleeps. */
|
|
int torture_hrtimeout_ns(ktime_t baset_ns, u32 fuzzt_ns, struct torture_random_state *trsp);
|
|
int torture_hrtimeout_us(u32 baset_us, u32 fuzzt_ns, struct torture_random_state *trsp);
|
|
int torture_hrtimeout_ms(u32 baset_ms, u32 fuzzt_us, struct torture_random_state *trsp);
|
|
int torture_hrtimeout_jiffies(u32 baset_j, struct torture_random_state *trsp);
|
|
int torture_hrtimeout_s(u32 baset_s, u32 fuzzt_ms, struct torture_random_state *trsp);
|
|
|
|
/* Task shuffler, which causes CPUs to occasionally go idle. */
|
|
void torture_shuffle_task_register(struct task_struct *tp);
|
|
int torture_shuffle_init(long shuffint);
|
|
|
|
/* Test auto-shutdown handling. */
|
|
void torture_shutdown_absorb(const char *title);
|
|
int torture_shutdown_init(int ssecs, void (*cleanup)(void));
|
|
|
|
/* Task stuttering, which forces load/no-load transitions. */
|
|
bool stutter_wait(const char *title);
|
|
int torture_stutter_init(int s, int sgap);
|
|
|
|
/* Initialization and cleanup. */
|
|
bool torture_init_begin(char *ttype, int v);
|
|
void torture_init_end(void);
|
|
bool torture_cleanup_begin(void);
|
|
void torture_cleanup_end(void);
|
|
bool torture_must_stop(void);
|
|
bool torture_must_stop_irq(void);
|
|
void torture_kthread_stopping(char *title);
|
|
int _torture_create_kthread(int (*fn)(void *arg), void *arg, char *s, char *m,
|
|
char *f, struct task_struct **tp);
|
|
void _torture_stop_kthread(char *m, struct task_struct **tp);
|
|
|
|
#define torture_create_kthread(n, arg, tp) \
|
|
_torture_create_kthread(n, (arg), #n, "Creating " #n " task", \
|
|
"Failed to create " #n, &(tp))
|
|
#define torture_stop_kthread(n, tp) \
|
|
_torture_stop_kthread("Stopping " #n " task", &(tp))
|
|
|
|
#ifdef CONFIG_PREEMPTION
|
|
#define torture_preempt_schedule() preempt_schedule()
|
|
#else
|
|
#define torture_preempt_schedule() do { } while (0)
|
|
#endif
|
|
|
|
#endif /* __LINUX_TORTURE_H */
|