函数源码 |
Source File:arch\x86\include\asm\virtext.h |
Create Date:2022-07-27 09:18:12 |
首页 | Copyright©Brick |
49 50 51 52 53 54 55 56 57 | /** Disable VMX if it is enabled on the current CPU * * You shouldn't call this if cpu_has_vmx() returns 0. */ static inline void __cpu_emergency_vmxoff( void ) { if (cpu_vmx_enabled()) cpu_vmxoff(); } |