Server IP : 103.169.32.36 / Your IP : 216.73.217.13 Web Server : Apache System : Linux web.dpmptsp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : apache ( 48) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/include/asm/ |
Upload File : |
| Current File : /usr/include/asm/svm.h |
#ifndef __SVM_H
#define __SVM_H
#define SVM_EXIT_READ_CR0 0x000
#define SVM_EXIT_READ_CR3 0x003
#define SVM_EXIT_READ_CR4 0x004
#define SVM_EXIT_READ_CR8 0x008
#define SVM_EXIT_WRITE_CR0 0x010
#define SVM_EXIT_WRITE_CR3 0x013
#define SVM_EXIT_WRITE_CR4 0x014
#define SVM_EXIT_WRITE_CR8 0x018
#define SVM_EXIT_READ_DR0 0x020
#define SVM_EXIT_READ_DR1 0x021
#define SVM_EXIT_READ_DR2 0x022
#define SVM_EXIT_READ_DR3 0x023
#define SVM_EXIT_READ_DR4 0x024
#define SVM_EXIT_READ_DR5 0x025
#define SVM_EXIT_READ_DR6 0x026
#define SVM_EXIT_READ_DR7 0x027
#define SVM_EXIT_WRITE_DR0 0x030
#define SVM_EXIT_WRITE_DR1 0x031
#define SVM_EXIT_WRITE_DR2 0x032
#define SVM_EXIT_WRITE_DR3 0x033
#define SVM_EXIT_WRITE_DR4 0x034
#define SVM_EXIT_WRITE_DR5 0x035
#define SVM_EXIT_WRITE_DR6 0x036
#define SVM_EXIT_WRITE_DR7 0x037
#define SVM_EXIT_EXCP_BASE 0x040
#define SVM_EXIT_INTR 0x060
#define SVM_EXIT_NMI 0x061
#define SVM_EXIT_SMI 0x062
#define SVM_EXIT_INIT 0x063
#define SVM_EXIT_VINTR 0x064
#define SVM_EXIT_CR0_SEL_WRITE 0x065
#define SVM_EXIT_IDTR_READ 0x066
#define SVM_EXIT_GDTR_READ 0x067
#define SVM_EXIT_LDTR_READ 0x068
#define SVM_EXIT_TR_READ 0x069
#define SVM_EXIT_IDTR_WRITE 0x06a
#define SVM_EXIT_GDTR_WRITE 0x06b
#define SVM_EXIT_LDTR_WRITE 0x06c
#define SVM_EXIT_TR_WRITE 0x06d
#define SVM_EXIT_RDTSC 0x06e
#define SVM_EXIT_RDPMC 0x06f
#define SVM_EXIT_PUSHF 0x070
#define SVM_EXIT_POPF 0x071
#define SVM_EXIT_CPUID 0x072
#define SVM_EXIT_RSM 0x073
#define SVM_EXIT_IRET 0x074
#define SVM_EXIT_SWINT 0x075
#define SVM_EXIT_INVD 0x076
#define SVM_EXIT_PAUSE 0x077
#define SVM_EXIT_HLT 0x078
#define SVM_EXIT_INVLPG 0x079
#define SVM_EXIT_INVLPGA 0x07a
#define SVM_EXIT_IOIO 0x07b
#define SVM_EXIT_MSR 0x07c
#define SVM_EXIT_TASK_SWITCH 0x07d
#define SVM_EXIT_FERR_FREEZE 0x07e
#define SVM_EXIT_SHUTDOWN 0x07f
#define SVM_EXIT_VMRUN 0x080
#define SVM_EXIT_VMMCALL 0x081
#define SVM_EXIT_VMLOAD 0x082
#define SVM_EXIT_VMSAVE 0x083
#define SVM_EXIT_STGI 0x084
#define SVM_EXIT_CLGI 0x085
#define SVM_EXIT_SKINIT 0x086
#define SVM_EXIT_RDTSCP 0x087
#define SVM_EXIT_ICEBP 0x088
#define SVM_EXIT_WBINVD 0x089
#define SVM_EXIT_MONITOR 0x08a
#define SVM_EXIT_MWAIT 0x08b
#define SVM_EXIT_MWAIT_COND 0x08c
#define SVM_EXIT_XSETBV 0x08d
#define SVM_EXIT_NPF 0x400
#define SVM_EXIT_AVIC_INCOMPLETE_IPI 0x401
#define SVM_EXIT_AVIC_UNACCELERATED_ACCESS 0x402
#define SVM_EXIT_ERR -1
#define SVM_EXIT_REASONS \
{ SVM_EXIT_READ_CR0, "read_cr0" }, \
{ SVM_EXIT_READ_CR3, "read_cr3" }, \
{ SVM_EXIT_READ_CR4, "read_cr4" }, \
{ SVM_EXIT_READ_CR8, "read_cr8" }, \
{ SVM_EXIT_WRITE_CR0, "write_cr0" }, \
{ SVM_EXIT_WRITE_CR3, "write_cr3" }, \
{ SVM_EXIT_WRITE_CR4, "write_cr4" }, \
{ SVM_EXIT_WRITE_CR8, "write_cr8" }, \
{ SVM_EXIT_READ_DR0, "read_dr0" }, \
{ SVM_EXIT_READ_DR1, "read_dr1" }, \
{ SVM_EXIT_READ_DR2, "read_dr2" }, \
{ SVM_EXIT_READ_DR3, "read_dr3" }, \
{ SVM_EXIT_WRITE_DR0, "write_dr0" }, \
{ SVM_EXIT_WRITE_DR1, "write_dr1" }, \
{ SVM_EXIT_WRITE_DR2, "write_dr2" }, \
{ SVM_EXIT_WRITE_DR3, "write_dr3" }, \
{ SVM_EXIT_WRITE_DR5, "write_dr5" }, \
{ SVM_EXIT_WRITE_DR7, "write_dr7" }, \
{ SVM_EXIT_EXCP_BASE + DB_VECTOR, "DB excp" }, \
{ SVM_EXIT_EXCP_BASE + BP_VECTOR, "BP excp" }, \
{ SVM_EXIT_EXCP_BASE + UD_VECTOR, "UD excp" }, \
{ SVM_EXIT_EXCP_BASE + PF_VECTOR, "PF excp" }, \
{ SVM_EXIT_EXCP_BASE + NM_VECTOR, "NM excp" }, \
{ SVM_EXIT_EXCP_BASE + MC_VECTOR, "MC excp" }, \
{ SVM_EXIT_INTR, "interrupt" }, \
{ SVM_EXIT_NMI, "nmi" }, \
{ SVM_EXIT_SMI, "smi" }, \
{ SVM_EXIT_INIT, "init" }, \
{ SVM_EXIT_VINTR, "vintr" }, \
{ SVM_EXIT_CR0_SEL_WRITE, "cr0_sel_write" }, \
{ SVM_EXIT_CPUID, "cpuid" }, \
{ SVM_EXIT_INVD, "invd" }, \
{ SVM_EXIT_PAUSE, "pause" }, \
{ SVM_EXIT_HLT, "hlt" }, \
{ SVM_EXIT_INVLPG, "invlpg" }, \
{ SVM_EXIT_INVLPGA, "invlpga" }, \
{ SVM_EXIT_IOIO, "io" }, \
{ SVM_EXIT_MSR, "msr" }, \
{ SVM_EXIT_TASK_SWITCH, "task_switch" }, \
{ SVM_EXIT_SHUTDOWN, "shutdown" }, \
{ SVM_EXIT_VMRUN, "vmrun" }, \
{ SVM_EXIT_VMMCALL, "hypercall" }, \
{ SVM_EXIT_VMLOAD, "vmload" }, \
{ SVM_EXIT_VMSAVE, "vmsave" }, \
{ SVM_EXIT_STGI, "stgi" }, \
{ SVM_EXIT_CLGI, "clgi" }, \
{ SVM_EXIT_SKINIT, "skinit" }, \
{ SVM_EXIT_WBINVD, "wbinvd" }, \
{ SVM_EXIT_MONITOR, "monitor" }, \
{ SVM_EXIT_MWAIT, "mwait" }, \
{ SVM_EXIT_XSETBV, "xsetbv" }, \
{ SVM_EXIT_NPF, "npf" }, \
{ SVM_EXIT_RSM, "rsm" }, \
{ SVM_EXIT_AVIC_INCOMPLETE_IPI, "avic_incomplete_ipi" }, \
{ SVM_EXIT_AVIC_UNACCELERATED_ACCESS, "avic_unaccelerated_access" }
#endif /* __SVM_H */
| N4m3 |
5!z3 |
L45t M0d!f!3d |
0wn3r / Gr0up |
P3Rm!55!0n5 |
0pt!0n5 |
| .. |
-- |
September 29 2025 07:00:20 |
0 / 0 |
0755 |
|
| | | | | |
| a.out.h |
0.677 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| auxvec.h |
0.472 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| bitsperlong.h |
0.224 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| boot.h |
0.254 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| bootparam.h |
4.394 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| bpf_perf_event.h |
0.039 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| byteorder.h |
0.134 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| debugreg.h |
3.146 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| e820.h |
2.63 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| errno.h |
0.03 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| fcntl.h |
0.03 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| hw_breakpoint.h |
0.006 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| hyperv.h |
12.984 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| ioctl.h |
0.03 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| ioctls.h |
0.031 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| ipcbuf.h |
0.031 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| ist.h |
0.771 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| kvm.h |
6.806 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| kvm_para.h |
2.801 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| kvm_perf.h |
0.317 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| ldt.h |
0.94 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| mce.h |
1.219 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| mman.h |
1.01 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| msgbuf.h |
0.031 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| msr-index.h |
29.037 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| msr.h |
0.276 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| mtrr.h |
4.063 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| param.h |
0.03 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| perf_regs.h |
1.24 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| poll.h |
0.029 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| posix_types.h |
0.157 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| posix_types_32.h |
0.686 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| posix_types_64.h |
0.533 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| posix_types_x32.h |
0.506 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| prctl.h |
0.186 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| processor-flags.h |
6.316 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| ptrace-abi.h |
1.756 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| ptrace.h |
1.165 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| resource.h |
0.033 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| sembuf.h |
0.683 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| setup.h |
0.006 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| shmbuf.h |
0.031 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| sigcontext.h |
5.106 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| sigcontext32.h |
1.645 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| siginfo.h |
0.421 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| signal.h |
2.771 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| socket.h |
0.031 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| sockios.h |
0.032 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| stat.h |
2.893 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| statfs.h |
0.345 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| svm.h |
5.09 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| swab.h |
0.646 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| termbits.h |
0.033 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| termios.h |
0.032 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| types.h |
0.11 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| ucontext.h |
0.331 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| unistd.h |
0.289 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| unistd_32.h |
9.368 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| unistd_64.h |
8.587 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| unistd_x32.h |
15.115 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| vm86.h |
2.983 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| vmx.h |
6.529 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|
| vsyscall.h |
0.366 KB |
June 04 2024 14:55:01 |
0 / 0 |
0644 |
|