test_kmod.c (14e77332e74603efab8347c89d3cda447c3b97c9) | test_kmod.c (6cad1ecd4e3213d892b70afa999a81849d1f0206) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-or-later OR copyleft-next-0.3.1 |
|
1/* 2 * kmod stress test driver 3 * 4 * Copyright (C) 2017 Luis R. Rodriguez <mcgrof@kernel.org> | 2/* 3 * kmod stress test driver 4 * 5 * Copyright (C) 2017 Luis R. Rodriguez <mcgrof@kernel.org> |
5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License as published by the Free 8 * Software Foundation; either version 2 of the License, or at your option any 9 * later version; or, when distributed separately from the Linux kernel or 10 * when incorporated into other software packages, subject to the following 11 * license: 12 * 13 * This program is free software; you can redistribute it and/or modify it 14 * under the terms of copyleft-next (version 0.3.1 or later) as published 15 * at http://copyleft-next.org/. | |
16 */ 17#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 18 19/* 20 * This driver provides an interface to trigger and test the kernel's 21 * module loader through a series of configurations and a few triggers. 22 * To test this driver use the following script as root: 23 * --- 1210 unchanged lines hidden --- | 6 */ 7#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 8 9/* 10 * This driver provides an interface to trigger and test the kernel's 11 * module loader through a series of configurations and a few triggers. 12 * To test this driver use the following script as root: 13 * --- 1210 unchanged lines hidden --- |