tools/perf/tests/shell/c2c.sh
Source file repositories/reference/linux-study-clean/tools/perf/tests/shell/c2c.sh
File Facts
- System
- Linux kernel
- Corpus path
tools/perf/tests/shell/c2c.sh- Extension
.sh- Size
- 1343 bytes
- Lines
- 63
- 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 check_c2c_support
Annotated Snippet
#!/bin/bash
# perf c2c tests
# SPDX-License-Identifier: GPL-2.0
set -e
err=0
perfdata=$(mktemp /tmp/__perf_c2c_test.perf.data.XXXXX)
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
check_c2c_support() {
# Check if perf c2c record works.
if ! perf c2c record -o "${perfdata}" -- true > /dev/null 2>&1 ; then
return 1
fi
return 0
}
test_c2c_record_report() {
echo "c2c record and report test"
if ! check_c2c_support ; then
echo "c2c record and report test [Skipped: perf c2c record failed (possibly missing hardware support)]"
err=2
return
fi
# Run a workload that does some memory operations.
if ! perf c2c record -o "${perfdata}" -- perf test -w datasym 1 > /dev/null 2>&1 ; then
echo "c2c record and report test [Skipped: perf c2c record failed during workload]"
return
fi
if ! perf c2c report -i "${perfdata}" --stdio > /dev/null 2>&1 ; then
echo "c2c record and report test [Failed: report failed]"
err=1
return
fi
if ! perf c2c report -i "${perfdata}" -N > /dev/null 2>&1 ; then
echo "c2c record and report test [Failed: report -N failed]"
err=1
return
fi
echo "c2c record and report test [Success]"
}
test_c2c_record_report
cleanup
exit $err
Annotation
- Detected declarations: `function check_c2c_support`.
- 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.