blob: 0259db38bfb0ce6e46fc076f19833431e2b959f5 [file] [log] [blame]
Paul E. McKenney51b11302014-01-27 11:49:39 -08001/*
2 * Common functions for in-kernel torture tests.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, you can access it online at
16 * http://www.gnu.org/licenses/gpl-2.0.html.
17 *
18 * Copyright IBM Corporation, 2014
19 *
20 * Author: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
21 */
22
23#ifndef __LINUX_TORTURE_H
24#define __LINUX_TORTURE_H
25
26#include <linux/types.h>
27#include <linux/cache.h>
28#include <linux/spinlock.h>
29#include <linux/threads.h>
30#include <linux/cpumask.h>
31#include <linux/seqlock.h>
32#include <linux/lockdep.h>
33#include <linux/completion.h>
34#include <linux/debugobjects.h>
35#include <linux/bug.h>
36#include <linux/compiler.h>
37
Paul E. McKenney9e250222014-01-27 16:27:00 -080038/* Definitions for a non-string torture-test module parameter. */
39#define torture_param(type, name, init, msg) \
40 static type name = init; \
41 module_param(name, type, 0444); \
42 MODULE_PARM_DESC(name, msg);
43
Paul E. McKenneyc2884de2014-01-29 07:30:50 -080044#define TORTURE_FLAG "-torture:"
45#define TOROUT_STRING(s) \
46 pr_alert("%s" TORTURE_FLAG s "\n", torture_type)
47#define VERBOSE_TOROUT_STRING(s) \
48 do { if (verbose) pr_alert("%s" TORTURE_FLAG s "\n", torture_type); } while (0)
49#define VERBOSE_TOROUT_ERRSTRING(s) \
50 do { if (verbose) pr_alert("%s" TORTURE_FLAG "!!! " s "\n", torture_type); } while (0)
51
Paul E. McKenney2e9e8082014-01-28 15:58:22 -080052/* Definitions for a non-string torture-test module parameter. */
53#define torture_parm(type, name, init, msg) \
54 static type name = init; \
55 module_param(name, type, 0444); \
56 MODULE_PARM_DESC(name, msg);
57
58/* Definitions for online/offline exerciser. */
59int torture_onoff_init(long ooholdoff, long oointerval);
Paul E. McKenney2e9e8082014-01-28 15:58:22 -080060char *torture_onoff_stats(char *page);
61bool torture_onoff_failures(void);
62
Paul E. McKenney9e250222014-01-27 16:27:00 -080063/* Low-rider random number generator. */
Paul E. McKenney51b11302014-01-27 11:49:39 -080064struct torture_random_state {
65 unsigned long trs_state;
66 long trs_count;
67};
Paul E. McKenney51b11302014-01-27 11:49:39 -080068#define DEFINE_TORTURE_RANDOM(name) struct torture_random_state name = { 0, 0 }
Paul E. McKenney51b11302014-01-27 11:49:39 -080069unsigned long torture_random(struct torture_random_state *trsp);
70
Paul E. McKenney3808dc92014-01-28 15:29:21 -080071/* Task shuffler, which causes CPUs to occasionally go idle. */
72void torture_shuffle_task_register(struct task_struct *tp);
73int torture_shuffle_init(long shuffint);
Paul E. McKenney3808dc92014-01-28 15:29:21 -080074
Paul E. McKenneyf67a3352014-01-29 07:40:27 -080075/* Shutdown task absorption, for when the tasks cannot safely be killed. */
76void torture_shutdown_absorb(const char *title);
77
Paul E. McKenneyb5daa8f2014-01-30 13:38:09 -080078/* Initialization and cleanup. */
Paul E. McKenneyb5daa8f2014-01-30 13:38:09 -080079void torture_init_begin(char *ttype, bool v);
80void torture_init_end(void);
Paul E. McKenneycc47ae02014-01-30 14:21:11 -080081bool torture_cleanup(void);
Paul E. McKenney36970bb2014-01-30 15:49:29 -080082bool torture_must_stop(void);
83bool torture_must_stop_irq(void);
Paul E. McKenneyb5daa8f2014-01-30 13:38:09 -080084
Paul E. McKenney51b11302014-01-27 11:49:39 -080085#endif /* __LINUX_TORTURE_H */