1 Star 0 Fork 1

Sakkkana/vt-learn-c

forked from asueeer/vt-learn-c 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vt_learn.c 1.18 KB
一键复制 编辑 原始数据 按行查看 历史
asueeer 提交于 2023-07-23 14:48 . lesson1: check cpu has vmx support
#include <linux/init.h>
#include <linux/module.h>
#include <asm/vmx.h>
#include <linux/kernel.h>
#include <asm/cpufeatures.h>
#include <asm/virtext.h>
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("A driver for vt_learn");
static int __init hello_vt(void){
printk(KERN_INFO "Hello, vt_learn!\n");
printk(KERN_INFO "I include vmx.h\n");
{
uint eax, ebx, ecx, edx;
eax = 1;
__asm__ volatile(
"cpuid;"
: "=a"(eax), "=b"(ebx), "=c"(ecx), "=d"(edx)
: "a"(eax)
);
printk(KERN_INFO "ecx: 0x%x\n", ecx);
printk(KERN_INFO "ecx[bit 5] = %x\n\n", ecx >> 5 & 1);
}
{
unsigned long ecx = cpuid_ecx(1);
printk(KERN_INFO "cpuid_ecx(1), ecx: 0x%lx\n", ecx);
printk(KERN_INFO "ecx[bit 5] = %lx\n\n", ecx >> 5 & 1);
}
{
printk(KERN_INFO "cpu_has_vmx(): %d\n", cpu_has_vmx());
}
{
printk(KERN_INFO "boot_cpu_has(X86_FEATURE_VMX): %d\n", boot_cpu_has(X86_FEATURE_VMX));
}
return 0;
}
static void __exit exit_vt(void){
printk(KERN_INFO "-----Goodbye, vt_learn!----\n\n\n\n\n\n\n\n");
}
module_init(hello_vt);
module_exit(exit_vt);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Sakkkana/vt-learn-c.git
git@gitee.com:Sakkkana/vt-learn-c.git
Sakkkana
vt-learn-c
vt-learn-c
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385