Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
32 lines
817 B
Bash
32 lines
817 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# description: Snapshot and tracing_cpumask
|
|
# requires: trace_marker tracing_cpumask snapshot
|
|
# flags: instance
|
|
|
|
# This testcase is constrived to reproduce a problem that the cpu buffers
|
|
# become unavailable which is due to 'record_disabled' of array_buffer and
|
|
# max_buffer being messed up.
|
|
|
|
# Store origin cpumask
|
|
ORIG_CPUMASK=`cat tracing_cpumask`
|
|
|
|
# Stop tracing all cpu
|
|
echo 0 > tracing_cpumask
|
|
|
|
# Take a snapshot of the main buffer
|
|
echo 1 > snapshot
|
|
|
|
# Restore origin cpumask, note that there should be some cpus being traced
|
|
echo ${ORIG_CPUMASK} > tracing_cpumask
|
|
|
|
# Set tracing on
|
|
echo 1 > tracing_on
|
|
|
|
# Write a log into buffer
|
|
echo "test input 1" > trace_marker
|
|
|
|
# Ensure the log writed so that cpu buffers are still available
|
|
grep -q "test input 1" trace
|
|
exit 0
|