mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 01:49:46 +00:00
This commit further avoids conflation of rcuperf with the kernel's perf feature by renaming kernel/rcu/rcuperf.c to kernel/rcu/rcuscale.c, and also by similarly renaming the functions and variables inside this file. This has the side effect of changing the names of the kernel boot parameters, so kernel-parameters.txt and ver_functions.sh are also updated. The rcutorture --torture type was also updated from rcuperf to rcuscale. [ paulmck: Fix bugs located by Stephen Rothwell. ] Reported-by: Ingo Molnar <mingo@kernel.org> Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
17 lines
437 B
Bash
17 lines
437 B
Bash
#!/bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Torture-suite-dependent shell functions for the rest of the scripts.
|
|
#
|
|
# Copyright (C) IBM Corporation, 2015
|
|
#
|
|
# Authors: Paul E. McKenney <paulmck@linux.ibm.com>
|
|
|
|
# per_version_boot_params bootparam-string config-file seconds
|
|
#
|
|
# Adds per-version torture-module parameters to kernels supporting them.
|
|
per_version_boot_params () {
|
|
echo $1 rcuscale.shutdown=1 \
|
|
rcuscale.verbose=1
|
|
}
|