README 1.0 KB

1234567891011121314151617181920212223242526
  1. perf is a userspace interface to the kernel's perf events. Performance
  2. counters are CPU hardware registers that count hardware events
  3. such as instructions executed, cache-misses suffered, or branches
  4. mispredicted. They form a basis for profiling applications to trace
  5. dynamic control flow and identify hotspots.
  6. Optional dependencies: audit, numactl
  7. Please note that this build doesn't have any sources in the .info
  8. file, as the sources are already part of the Slackware kernel-source
  9. package. Your running kernel's version should match the kernel-source
  10. version. If it doesn't:
  11. - If your kernel source is located in /usr/src/linux-$VERSION, you
  12. can export KERNEL=<version> in the script's environment. Example:
  13. export KERNEL=5.13.2
  14. - If your kernel source is somewhere else, you can export
  15. KERNEL=</path/to/source>. Example:
  16. export KERNEL=/home/myuser/kernels/linux-5.13.2
  17. Please note that the package's version number will match the version
  18. of the kernel source, *not* necessarily what's in the perf.info file.