tools/perf/tests/shell/sched.sh
Source file repositories/reference/linux-study-clean/tools/perf/tests/shell/sched.sh
File Facts
- System
- Linux kernel
- Corpus path
tools/perf/tests/shell/sched.sh- Extension
.sh- Size
- 2079 bytes
- Lines
- 117
- Domain
- Support Tooling And Documentation
- Bucket
- tools
- Inferred role
- Support Tooling And Documentation: tools
- Status
- atlas-only
Why This File Exists
Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
Dependency Surface
- No C-style include directives detected by the generator.
Detected Declarations
function start_noploops
Annotated Snippet
#!/bin/bash
# perf sched tests
# SPDX-License-Identifier: GPL-2.0
set -e
if [ "$(id -u)" != 0 ]; then
echo "[Skip] No root permission"
exit 2
fi
err=0
perfdata=$(mktemp /tmp/__perf_test_sched.perf.data.XXXXX)
PID1=0
PID2=0
cleanup() {
rm -f "${perfdata}"
rm -f "${perfdata}".old
trap - EXIT TERM INT
}
trap_cleanup() {
echo "Unexpected signal in ${FUNCNAME[1]}"
cleanup
exit 1
}
trap trap_cleanup EXIT TERM INT
start_noploops() {
# Start two noploop workloads on CPU0 to trigger scheduling.
perf test -w noploop 10 &
PID1=$!
taskset -pc 0 $PID1
perf test -w noploop 10 &
PID2=$!
taskset -pc 0 $PID2
if ! grep -q 'Cpus_allowed_list:\s*0$' "/proc/$PID1/status"
then
echo "Sched [Error taskset did not work for the 1st noploop ($PID1)]"
grep Cpus_allowed /proc/$PID1/status
err=1
fi
if ! grep -q 'Cpus_allowed_list:\s*0$' "/proc/$PID2/status"
then
echo "Sched [Error taskset did not work for the 2nd noploop ($PID2)]"
grep Cpus_allowed /proc/$PID2/status
err=1
fi
}
cleanup_noploops() {
kill "$PID1" "$PID2" || true
}
test_sched_record() {
echo "Sched record"
start_noploops
perf sched record --no-inherit -o "${perfdata}" sleep 1
cleanup_noploops
}
test_sched_latency() {
echo "Sched latency"
Annotation
- Detected declarations: `function start_noploops`.
- Atlas domain: Support Tooling And Documentation / tools.
- Implementation status: atlas-only.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.