2019-01-17 21:46:34 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-01-27 23:49:39 +04:00
|
|
|
/*
|
|
|
|
* Common functions for in-kernel torture tests.
|
|
|
|
*
|
|
|
|
* Copyright IBM Corporation, 2014
|
|
|
|
*
|
2019-01-17 21:46:34 +03:00
|
|
|
* Author: Paul E. McKenney <paulmck@linux.ibm.com>
|
2014-01-27 23:49:39 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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>
|
|
|
|
|
2014-01-28 04:27:00 +04:00
|
|
|
/* 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);
|
|
|
|
|
2014-01-29 19:30:50 +04:00
|
|
|
#define TORTURE_FLAG "-torture:"
|
|
|
|
#define TOROUT_STRING(s) \
|
2016-08-21 10:54:40 +03:00
|
|
|
pr_alert("%s" TORTURE_FLAG " %s\n", torture_type, s)
|
2014-01-29 19:30:50 +04:00
|
|
|
#define VERBOSE_TOROUT_STRING(s) \
|
2020-11-26 00:00:04 +03:00
|
|
|
do { \
|
|
|
|
if (verbose) { \
|
|
|
|
verbose_torout_sleep(); \
|
|
|
|
pr_alert("%s" TORTURE_FLAG " %s\n", torture_type, s); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2014-01-29 19:30:50 +04:00
|
|
|
#define VERBOSE_TOROUT_ERRSTRING(s) \
|
2020-11-26 00:00:04 +03:00
|
|
|
do { \
|
|
|
|
if (verbose) { \
|
|
|
|
verbose_torout_sleep(); \
|
|
|
|
pr_alert("%s" TORTURE_FLAG "!!! %s\n", torture_type, s); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
void verbose_torout_sleep(void);
|
2014-01-29 19:30:50 +04:00
|
|
|
|
2014-01-29 03:58:22 +04:00
|
|
|
/* Definitions for online/offline exerciser. */
|
2020-12-19 18:34:35 +03:00
|
|
|
#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 */
|
2018-12-10 20:44:52 +03:00
|
|
|
typedef void torture_ofl_func(void);
|
2016-04-21 03:18:41 +03:00
|
|
|
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);
|
2018-12-10 20:44:52 +03:00
|
|
|
int torture_onoff_init(long ooholdoff, long oointerval, torture_ofl_func *f);
|
2014-07-14 17:16:15 +04:00
|
|
|
void torture_onoff_stats(void);
|
2014-01-29 03:58:22 +04:00
|
|
|
bool torture_onoff_failures(void);
|
|
|
|
|
2014-01-28 04:27:00 +04:00
|
|
|
/* Low-rider random number generator. */
|
2014-01-27 23:49:39 +04:00
|
|
|
struct torture_random_state {
|
|
|
|
unsigned long trs_state;
|
|
|
|
long trs_count;
|
|
|
|
};
|
|
|
|
#define DEFINE_TORTURE_RANDOM(name) struct torture_random_state name = { 0, 0 }
|
2018-05-22 21:38:47 +03:00
|
|
|
#define DEFINE_TORTURE_RANDOM_PERCPU(name) \
|
|
|
|
DEFINE_PER_CPU(struct torture_random_state, name)
|
2014-01-27 23:49:39 +04:00
|
|
|
unsigned long torture_random(struct torture_random_state *trsp);
|
2020-04-24 21:21:40 +03:00
|
|
|
static inline void torture_random_init(struct torture_random_state *trsp)
|
|
|
|
{
|
|
|
|
trsp->trs_state = 0;
|
|
|
|
trsp->trs_count = 0;
|
|
|
|
}
|
2014-01-27 23:49:39 +04:00
|
|
|
|
2020-11-17 22:30:18 +03:00
|
|
|
/* 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);
|
|
|
|
|
2014-01-29 03:29:21 +04:00
|
|
|
/* Task shuffler, which causes CPUs to occasionally go idle. */
|
|
|
|
void torture_shuffle_task_register(struct task_struct *tp);
|
|
|
|
int torture_shuffle_init(long shuffint);
|
|
|
|
|
2014-02-01 02:52:13 +04:00
|
|
|
/* Test auto-shutdown handling. */
|
2014-01-29 19:40:27 +04:00
|
|
|
void torture_shutdown_absorb(const char *title);
|
2014-02-01 02:52:13 +04:00
|
|
|
int torture_shutdown_init(int ssecs, void (*cleanup)(void));
|
2014-01-29 19:40:27 +04:00
|
|
|
|
2014-01-31 23:57:43 +04:00
|
|
|
/* Task stuttering, which forces load/no-load transitions. */
|
2018-08-08 00:34:44 +03:00
|
|
|
bool stutter_wait(const char *title);
|
2019-04-10 00:44:49 +03:00
|
|
|
int torture_stutter_init(int s, int sgap);
|
2014-01-31 23:57:43 +04:00
|
|
|
|
2014-01-31 01:38:09 +04:00
|
|
|
/* Initialization and cleanup. */
|
2018-05-09 20:29:18 +03:00
|
|
|
bool torture_init_begin(char *ttype, int v);
|
2014-01-31 01:38:09 +04:00
|
|
|
void torture_init_end(void);
|
2014-09-12 07:40:21 +04:00
|
|
|
bool torture_cleanup_begin(void);
|
|
|
|
void torture_cleanup_end(void);
|
2014-01-31 03:49:29 +04:00
|
|
|
bool torture_must_stop(void);
|
|
|
|
bool torture_must_stop_irq(void);
|
2014-02-01 05:37:28 +04:00
|
|
|
void torture_kthread_stopping(char *title);
|
2014-02-03 23:52:27 +04:00
|
|
|
int _torture_create_kthread(int (*fn)(void *arg), void *arg, char *s, char *m,
|
|
|
|
char *f, struct task_struct **tp);
|
2014-02-04 23:47:08 +04:00
|
|
|
void _torture_stop_kthread(char *m, struct task_struct **tp);
|
2014-02-03 23:52:27 +04:00
|
|
|
|
|
|
|
#define torture_create_kthread(n, arg, tp) \
|
|
|
|
_torture_create_kthread(n, (arg), #n, "Creating " #n " task", \
|
|
|
|
"Failed to create " #n, &(tp))
|
2014-02-04 23:47:08 +04:00
|
|
|
#define torture_stop_kthread(n, tp) \
|
|
|
|
_torture_stop_kthread("Stopping " #n " task", &(tp))
|
2014-01-31 01:38:09 +04:00
|
|
|
|
2019-07-27 00:19:38 +03:00
|
|
|
#ifdef CONFIG_PREEMPTION
|
2017-10-16 21:05:03 +03:00
|
|
|
#define torture_preempt_schedule() preempt_schedule()
|
|
|
|
#else
|
2020-02-26 08:09:19 +03:00
|
|
|
#define torture_preempt_schedule() do { } while (0)
|
2017-10-16 21:05:03 +03:00
|
|
|
#endif
|
|
|
|
|
2014-01-27 23:49:39 +04:00
|
|
|
#endif /* __LINUX_TORTURE_H */
|