2014-01-28 03:49:39 +08:00
|
|
|
/*
|
|
|
|
* Common functions for in-kernel torture tests.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you can access it online at
|
|
|
|
* http://www.gnu.org/licenses/gpl-2.0.html.
|
|
|
|
*
|
|
|
|
* Copyright IBM Corporation, 2014
|
|
|
|
*
|
|
|
|
* Author: Paul E. McKenney <paulmck@linux.vnet.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>
|
|
|
|
|
2014-01-28 08:27:00 +08: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 23:40:27 +08:00
|
|
|
/* Mediate rmmod and system shutdown. Concurrent rmmod & shutdown illegal! */
|
|
|
|
#define FULLSTOP_DONTSTOP 0 /* Normal operation. */
|
|
|
|
#define FULLSTOP_SHUTDOWN 1 /* System shutdown with rcutorture running. */
|
|
|
|
#define FULLSTOP_RMMOD 2 /* Normal rmmod of rcutorture. */
|
|
|
|
extern int fullstop;
|
|
|
|
/* Protect fullstop transitions and spawning of kthreads. */
|
|
|
|
extern struct mutex fullstop_mutex;
|
|
|
|
|
|
|
|
/* Common module parameters. */
|
|
|
|
extern char *torture_type;
|
|
|
|
extern bool verbose;
|
|
|
|
|
2014-01-29 23:30:50 +08:00
|
|
|
#define TORTURE_FLAG "-torture:"
|
|
|
|
#define TOROUT_STRING(s) \
|
|
|
|
pr_alert("%s" TORTURE_FLAG s "\n", torture_type)
|
|
|
|
#define VERBOSE_TOROUT_STRING(s) \
|
|
|
|
do { if (verbose) pr_alert("%s" TORTURE_FLAG s "\n", torture_type); } while (0)
|
|
|
|
#define VERBOSE_TOROUT_ERRSTRING(s) \
|
|
|
|
do { if (verbose) pr_alert("%s" TORTURE_FLAG "!!! " s "\n", torture_type); } while (0)
|
|
|
|
|
2014-01-29 07:58:22 +08:00
|
|
|
/* Definitions for a non-string torture-test module parameter. */
|
|
|
|
#define torture_parm(type, name, init, msg) \
|
|
|
|
static type name = init; \
|
|
|
|
module_param(name, type, 0444); \
|
|
|
|
MODULE_PARM_DESC(name, msg);
|
|
|
|
|
|
|
|
/* Definitions for online/offline exerciser. */
|
|
|
|
int torture_onoff_init(long ooholdoff, long oointerval);
|
|
|
|
void torture_onoff_cleanup(void);
|
|
|
|
char *torture_onoff_stats(char *page);
|
|
|
|
bool torture_onoff_failures(void);
|
|
|
|
|
2014-01-28 08:27:00 +08:00
|
|
|
/* Low-rider random number generator. */
|
2014-01-28 03:49:39 +08:00
|
|
|
struct torture_random_state {
|
|
|
|
unsigned long trs_state;
|
|
|
|
long trs_count;
|
|
|
|
};
|
|
|
|
#define DEFINE_TORTURE_RANDOM(name) struct torture_random_state name = { 0, 0 }
|
|
|
|
unsigned long torture_random(struct torture_random_state *trsp);
|
|
|
|
|
2014-01-29 07:29:21 +08: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);
|
|
|
|
void torture_shuffle_cleanup(void);
|
|
|
|
|
2014-01-29 23:40:27 +08:00
|
|
|
/* Shutdown task absorption, for when the tasks cannot safely be killed. */
|
|
|
|
void torture_shutdown_absorb(const char *title);
|
|
|
|
|
2014-01-28 03:49:39 +08:00
|
|
|
#endif /* __LINUX_TORTURE_H */
|