tools/testing/selftests/intel_pstate/msr.c
Source file repositories/reference/linux-study-clean/tools/testing/selftests/intel_pstate/msr.c
File Facts
- System
- Linux kernel
- Corpus path
tools/testing/selftests/intel_pstate/msr.c- Extension
.c- Size
- 679 bytes
- Lines
- 41
- Domain
- Support Tooling And Documentation
- Bucket
- tools
- Inferred role
- Support Tooling And Documentation: implementation source
- Status
- source implementation candidate
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
math.hunistd.hstdio.hstdlib.hsys/types.hsys/stat.hfcntl.hsys/timeb.hsched.herrno.h
Detected Declarations
function main
Annotated Snippet
int main(int argc, char **argv) {
int cpu, fd;
long long msr;
char msr_file_name[64];
if (argc != 2)
return 1;
errno = 0;
cpu = strtol(argv[1], (char **) NULL, 10);
if (errno)
return 1;
sprintf(msr_file_name, "/dev/cpu/%d/msr", cpu);
fd = open(msr_file_name, O_RDONLY);
if (fd == -1) {
perror("Failed to open");
return 1;
}
pread(fd, &msr, sizeof(msr), 0x199);
printf("msr 0x199: 0x%llx\n", msr);
return 0;
}
Annotation
- Immediate include surface: `math.h`, `unistd.h`, `stdio.h`, `stdlib.h`, `sys/types.h`, `sys/stat.h`, `fcntl.h`, `sys/timeb.h`.
- Detected declarations: `function main`.
- Atlas domain: Support Tooling And Documentation / tools.
- Implementation status: source implementation candidate.
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.