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