System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
usr
/
include
/
asm
/
216.73.216.49
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for mail.ontime-ae.com made by tabagkayu.
Folder Name
File Name
File Content
File
vmx.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * vmx.h: VMX Architecture related definitions * Copyright (c) 2004, Intel Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along with * this program; if not, write to the Free Software Foundation, Inc., 59 Temple * Place - Suite 330, Boston, MA 02111-1307 USA. * * A few random additions are: * Copyright (C) 2006 Qumranet * Avi Kivity <avi@qumranet.com> * Yaniv Kamay <yaniv@qumranet.com> * */ #ifndef VMX_H #define VMX_H #define VMX_EXIT_REASONS_FAILED_VMENTRY 0x80000000 #define VMX_EXIT_REASONS_SGX_ENCLAVE_MODE 0x08000000 #define EXIT_REASON_EXCEPTION_NMI 0 #define EXIT_REASON_EXTERNAL_INTERRUPT 1 #define EXIT_REASON_TRIPLE_FAULT 2 #define EXIT_REASON_INIT_SIGNAL 3 #define EXIT_REASON_SIPI_SIGNAL 4 #define EXIT_REASON_INTERRUPT_WINDOW 7 #define EXIT_REASON_NMI_WINDOW 8 #define EXIT_REASON_TASK_SWITCH 9 #define EXIT_REASON_CPUID 10 #define EXIT_REASON_HLT 12 #define EXIT_REASON_INVD 13 #define EXIT_REASON_INVLPG 14 #define EXIT_REASON_RDPMC 15 #define EXIT_REASON_RDTSC 16 #define EXIT_REASON_VMCALL 18 #define EXIT_REASON_VMCLEAR 19 #define EXIT_REASON_VMLAUNCH 20 #define EXIT_REASON_VMPTRLD 21 #define EXIT_REASON_VMPTRST 22 #define EXIT_REASON_VMREAD 23 #define EXIT_REASON_VMRESUME 24 #define EXIT_REASON_VMWRITE 25 #define EXIT_REASON_VMOFF 26 #define EXIT_REASON_VMON 27 #define EXIT_REASON_CR_ACCESS 28 #define EXIT_REASON_DR_ACCESS 29 #define EXIT_REASON_IO_INSTRUCTION 30 #define EXIT_REASON_MSR_READ 31 #define EXIT_REASON_MSR_WRITE 32 #define EXIT_REASON_INVALID_STATE 33 #define EXIT_REASON_MSR_LOAD_FAIL 34 #define EXIT_REASON_MWAIT_INSTRUCTION 36 #define EXIT_REASON_MONITOR_TRAP_FLAG 37 #define EXIT_REASON_MONITOR_INSTRUCTION 39 #define EXIT_REASON_PAUSE_INSTRUCTION 40 #define EXIT_REASON_MCE_DURING_VMENTRY 41 #define EXIT_REASON_TPR_BELOW_THRESHOLD 43 #define EXIT_REASON_APIC_ACCESS 44 #define EXIT_REASON_EOI_INDUCED 45 #define EXIT_REASON_GDTR_IDTR 46 #define EXIT_REASON_LDTR_TR 47 #define EXIT_REASON_EPT_VIOLATION 48 #define EXIT_REASON_EPT_MISCONFIG 49 #define EXIT_REASON_INVEPT 50 #define EXIT_REASON_RDTSCP 51 #define EXIT_REASON_PREEMPTION_TIMER 52 #define EXIT_REASON_INVVPID 53 #define EXIT_REASON_WBINVD 54 #define EXIT_REASON_XSETBV 55 #define EXIT_REASON_APIC_WRITE 56 #define EXIT_REASON_RDRAND 57 #define EXIT_REASON_INVPCID 58 #define EXIT_REASON_VMFUNC 59 #define EXIT_REASON_ENCLS 60 #define EXIT_REASON_RDSEED 61 #define EXIT_REASON_PML_FULL 62 #define EXIT_REASON_XSAVES 63 #define EXIT_REASON_XRSTORS 64 #define EXIT_REASON_UMWAIT 67 #define EXIT_REASON_TPAUSE 68 #define EXIT_REASON_BUS_LOCK 74 #define VMX_EXIT_REASONS \ { EXIT_REASON_EXCEPTION_NMI, "EXCEPTION_NMI" }, \ { EXIT_REASON_EXTERNAL_INTERRUPT, "EXTERNAL_INTERRUPT" }, \ { EXIT_REASON_TRIPLE_FAULT, "TRIPLE_FAULT" }, \ { EXIT_REASON_INIT_SIGNAL, "INIT_SIGNAL" }, \ { EXIT_REASON_SIPI_SIGNAL, "SIPI_SIGNAL" }, \ { EXIT_REASON_INTERRUPT_WINDOW, "INTERRUPT_WINDOW" }, \ { EXIT_REASON_NMI_WINDOW, "NMI_WINDOW" }, \ { EXIT_REASON_TASK_SWITCH, "TASK_SWITCH" }, \ { EXIT_REASON_CPUID, "CPUID" }, \ { EXIT_REASON_HLT, "HLT" }, \ { EXIT_REASON_INVD, "INVD" }, \ { EXIT_REASON_INVLPG, "INVLPG" }, \ { EXIT_REASON_RDPMC, "RDPMC" }, \ { EXIT_REASON_RDTSC, "RDTSC" }, \ { EXIT_REASON_VMCALL, "VMCALL" }, \ { EXIT_REASON_VMCLEAR, "VMCLEAR" }, \ { EXIT_REASON_VMLAUNCH, "VMLAUNCH" }, \ { EXIT_REASON_VMPTRLD, "VMPTRLD" }, \ { EXIT_REASON_VMPTRST, "VMPTRST" }, \ { EXIT_REASON_VMREAD, "VMREAD" }, \ { EXIT_REASON_VMRESUME, "VMRESUME" }, \ { EXIT_REASON_VMWRITE, "VMWRITE" }, \ { EXIT_REASON_VMOFF, "VMOFF" }, \ { EXIT_REASON_VMON, "VMON" }, \ { EXIT_REASON_CR_ACCESS, "CR_ACCESS" }, \ { EXIT_REASON_DR_ACCESS, "DR_ACCESS" }, \ { EXIT_REASON_IO_INSTRUCTION, "IO_INSTRUCTION" }, \ { EXIT_REASON_MSR_READ, "MSR_READ" }, \ { EXIT_REASON_MSR_WRITE, "MSR_WRITE" }, \ { EXIT_REASON_INVALID_STATE, "INVALID_STATE" }, \ { EXIT_REASON_MSR_LOAD_FAIL, "MSR_LOAD_FAIL" }, \ { EXIT_REASON_MWAIT_INSTRUCTION, "MWAIT_INSTRUCTION" }, \ { EXIT_REASON_MONITOR_TRAP_FLAG, "MONITOR_TRAP_FLAG" }, \ { EXIT_REASON_MONITOR_INSTRUCTION, "MONITOR_INSTRUCTION" }, \ { EXIT_REASON_PAUSE_INSTRUCTION, "PAUSE_INSTRUCTION" }, \ { EXIT_REASON_MCE_DURING_VMENTRY, "MCE_DURING_VMENTRY" }, \ { EXIT_REASON_TPR_BELOW_THRESHOLD, "TPR_BELOW_THRESHOLD" }, \ { EXIT_REASON_APIC_ACCESS, "APIC_ACCESS" }, \ { EXIT_REASON_EOI_INDUCED, "EOI_INDUCED" }, \ { EXIT_REASON_GDTR_IDTR, "GDTR_IDTR" }, \ { EXIT_REASON_LDTR_TR, "LDTR_TR" }, \ { EXIT_REASON_EPT_VIOLATION, "EPT_VIOLATION" }, \ { EXIT_REASON_EPT_MISCONFIG, "EPT_MISCONFIG" }, \ { EXIT_REASON_INVEPT, "INVEPT" }, \ { EXIT_REASON_RDTSCP, "RDTSCP" }, \ { EXIT_REASON_PREEMPTION_TIMER, "PREEMPTION_TIMER" }, \ { EXIT_REASON_INVVPID, "INVVPID" }, \ { EXIT_REASON_WBINVD, "WBINVD" }, \ { EXIT_REASON_XSETBV, "XSETBV" }, \ { EXIT_REASON_APIC_WRITE, "APIC_WRITE" }, \ { EXIT_REASON_RDRAND, "RDRAND" }, \ { EXIT_REASON_INVPCID, "INVPCID" }, \ { EXIT_REASON_VMFUNC, "VMFUNC" }, \ { EXIT_REASON_ENCLS, "ENCLS" }, \ { EXIT_REASON_RDSEED, "RDSEED" }, \ { EXIT_REASON_PML_FULL, "PML_FULL" }, \ { EXIT_REASON_XSAVES, "XSAVES" }, \ { EXIT_REASON_XRSTORS, "XRSTORS" }, \ { EXIT_REASON_UMWAIT, "UMWAIT" }, \ { EXIT_REASON_TPAUSE, "TPAUSE" }, \ { EXIT_REASON_BUS_LOCK, "BUS_LOCK" } #define VMX_EXIT_REASON_FLAGS \ { VMX_EXIT_REASONS_FAILED_VMENTRY, "FAILED_VMENTRY" } #define VMX_ABORT_SAVE_GUEST_MSR_FAIL 1 #define VMX_ABORT_LOAD_HOST_PDPTE_FAIL 2 #define VMX_ABORT_LOAD_HOST_MSR_FAIL 4 #endif /* VMX_H */
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2025-10-28 10:57:27
..
DIR
-
drwxr-xr-x
2025-10-28 10:57:27
a.out.h
text/x-c
756 B
-rw-r--r--
2025-10-27 03:42:54
amd_hsmp.h
text/x-c
8.68 KB
-rw-r--r--
2025-10-27 03:42:54
auxvec.h
text/plain
618 B
-rw-r--r--
2025-10-27 03:42:54
bitsperlong.h
text/x-c
321 B
-rw-r--r--
2025-10-27 03:42:54
boot.h
text/plain
323 B
-rw-r--r--
2025-10-27 03:42:54
bootparam.h
text/x-c
7.58 KB
-rw-r--r--
2025-10-27 03:42:54
bpf_perf_event.h
text/x-c
40 B
-rw-r--r--
2025-10-27 03:42:54
byteorder.h
text/x-c
176 B
-rw-r--r--
2025-10-27 03:42:54
debugreg.h
text/plain
3.25 KB
-rw-r--r--
2025-10-27 03:42:54
e820.h
text/x-c
2.52 KB
-rw-r--r--
2025-10-27 03:42:54
errno.h
text/x-c
31 B
-rw-r--r--
2025-10-27 03:42:54
fcntl.h
text/x-c
31 B
-rw-r--r--
2025-10-27 03:42:54
hw_breakpoint.h
text/plain
69 B
-rw-r--r--
2025-10-27 03:42:54
hwcap2.h
text/plain
270 B
-rw-r--r--
2025-10-27 03:42:54
ioctl.h
text/x-c
31 B
-rw-r--r--
2025-10-27 03:42:54
ioctls.h
text/x-c
32 B
-rw-r--r--
2025-10-27 03:42:54
ipcbuf.h
text/x-c
32 B
-rw-r--r--
2025-10-27 03:42:54
ist.h
text/x-c
854 B
-rw-r--r--
2025-10-27 03:42:54
kvm.h
text/x-c
11.44 KB
-rw-r--r--
2025-10-27 03:42:54
kvm_para.h
text/x-c
4.24 KB
-rw-r--r--
2025-10-27 03:42:54
kvm_perf.h
text/x-c
388 B
-rw-r--r--
2025-10-27 03:42:54
ldt.h
text/x-c
1.28 KB
-rw-r--r--
2025-10-27 03:42:54
mce.h
text/x-c
1.65 KB
-rw-r--r--
2025-10-27 03:42:54
mman.h
text/x-c
1002 B
-rw-r--r--
2025-10-27 03:42:54
msgbuf.h
text/x-c
1.03 KB
-rw-r--r--
2025-10-27 03:42:54
msr.h
text/x-c
346 B
-rw-r--r--
2025-10-27 03:42:54
mtrr.h
text/x-c
4.13 KB
-rw-r--r--
2025-10-27 03:42:54
param.h
text/x-c
31 B
-rw-r--r--
2025-10-27 03:42:54
perf_regs.h
text/plain
1.37 KB
-rw-r--r--
2025-10-27 03:42:54
poll.h
text/x-c
30 B
-rw-r--r--
2025-10-27 03:42:54
posix_types.h
text/plain
224 B
-rw-r--r--
2025-10-27 03:42:54
posix_types_32.h
text/x-c
765 B
-rw-r--r--
2025-10-27 03:42:54
posix_types_64.h
text/x-c
609 B
-rw-r--r--
2025-10-27 03:42:54
posix_types_x32.h
text/x-c
581 B
-rw-r--r--
2025-10-27 03:42:54
prctl.h
text/plain
618 B
-rw-r--r--
2025-10-27 03:42:54
processor-flags.h
text/x-c
6.47 KB
-rw-r--r--
2025-10-27 03:42:54
ptrace-abi.h
text/x-c
1.99 KB
-rw-r--r--
2025-10-27 03:42:54
ptrace.h
text/x-c
1.46 KB
-rw-r--r--
2025-10-27 03:42:54
resource.h
text/x-c
34 B
-rw-r--r--
2025-10-27 03:42:54
sembuf.h
text/x-c
1.02 KB
-rw-r--r--
2025-10-27 03:42:54
setup.h
text/plain
6 B
-rw-r--r--
2025-10-27 03:42:54
sgx.h
text/x-c
8.15 KB
-rw-r--r--
2025-10-27 03:42:54
shmbuf.h
text/x-c
1.23 KB
-rw-r--r--
2025-10-27 03:42:54
sigcontext.h
text/x-c
9.5 KB
-rw-r--r--
2025-10-27 03:42:54
sigcontext32.h
text/x-c
247 B
-rw-r--r--
2025-10-27 03:42:54
siginfo.h
text/x-c
422 B
-rw-r--r--
2025-10-27 03:42:54
signal.h
text/x-c
2.83 KB
-rw-r--r--
2025-10-27 03:42:54
socket.h
text/x-c
32 B
-rw-r--r--
2025-10-27 03:42:54
sockios.h
text/x-c
33 B
-rw-r--r--
2025-10-27 03:42:54
stat.h
text/x-c
3.06 KB
-rw-r--r--
2025-10-27 03:42:54
statfs.h
text/x-c
416 B
-rw-r--r--
2025-10-27 03:42:54
svm.h
text/plain
9.54 KB
-rw-r--r--
2025-10-27 03:42:54
swab.h
text/x-c
724 B
-rw-r--r--
2025-10-27 03:42:54
termbits.h
text/x-c
34 B
-rw-r--r--
2025-10-27 03:42:54
termios.h
text/x-c
33 B
-rw-r--r--
2025-10-27 03:42:54
types.h
text/x-c
152 B
-rw-r--r--
2025-10-27 03:42:54
ucontext.h
text/x-c
2.07 KB
-rw-r--r--
2025-10-27 03:42:54
unistd.h
text/plain
359 B
-rw-r--r--
2025-10-27 03:42:54
unistd_32.h
text/plain
10.87 KB
-rw-r--r--
2025-10-27 03:42:54
unistd_64.h
text/plain
9.1 KB
-rw-r--r--
2025-10-27 03:42:54
unistd_x32.h
text/plain
16.03 KB
-rw-r--r--
2025-10-27 03:42:54
vm86.h
text/x-c
3.04 KB
-rw-r--r--
2025-10-27 03:42:54
vmx.h
text/x-Algol68
7.2 KB
-rw-r--r--
2025-10-27 03:42:54
vsyscall.h
text/plain
263 B
-rw-r--r--
2025-10-27 03:42:54
~ ACUPOFTEA - mail.ontime-ae.com