Skip to content

Instantly share code, notes, and snippets.

View qodroi's full-sized avatar
🎯
Focusing

R qodroi

🎯
Focusing
View GitHub Profile
@qodroi
qodroi / preadmsr.c
Created September 23, 2022 05:38
Read MSRs by accessing the Linux-provided CPU MSR device interface
/**
* Copyright 2022 Roi L.
* SPDX-License-Identifier: GPL-3.0-only
*
* Read Machine-Specific-Register values by accessing the Linux-provided CPU MSR interface.
*/
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>