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.21.217
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 : papr-sysparm.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _PAPR_SYSPARM_H_ #define _PAPR_SYSPARM_H_ #include <linux/types.h> #include <asm/ioctl.h> #include <asm/papr-miscdev.h> enum { PAPR_SYSPARM_MAX_INPUT = 1024, PAPR_SYSPARM_MAX_OUTPUT = 4000, }; struct papr_sysparm_io_block { __u32 parameter; __u16 length; __u8 data[PAPR_SYSPARM_MAX_OUTPUT]; }; /** * PAPR_SYSPARM_IOC_GET - Retrieve the value of a PAPR system parameter. * * Uses _IOWR because of one corner case: Retrieving the value of the * "OS Service Entitlement Status" parameter (60) requires the caller * to supply input data (a date string) in the buffer passed to * firmware. So the @length and @data of the incoming * papr_sysparm_io_block are always used to initialize the work area * supplied to ibm,get-system-parameter. No other parameters are known * to parameterize the result this way, and callers are encouraged * (but not required) to zero-initialize @length and @data in the * common case. * * On error the contents of the ioblock are indeterminate. * * Return: * 0: Success; @length is the length of valid data in @data, not to exceed @PAPR_SYSPARM_MAX_OUTPUT. * -EIO: Platform error. (-1) * -EINVAL: Incorrect data length or format. (-9999) * -EPERM: The calling partition is not allowed to access this parameter. (-9002) * -EOPNOTSUPP: Parameter not supported on this platform (-3) */ #define PAPR_SYSPARM_IOC_GET _IOWR(PAPR_MISCDEV_IOC_ID, 1, struct papr_sysparm_io_block) /** * PAPR_SYSPARM_IOC_SET - Update the value of a PAPR system parameter. * * The contents of the ioblock are unchanged regardless of success. * * Return: * 0: Success; the parameter has been updated. * -EIO: Platform error. (-1) * -EINVAL: Incorrect data length or format. (-9999) * -EPERM: The calling partition is not allowed to access this parameter. (-9002) * -EOPNOTSUPP: Parameter not supported on this platform (-3) */ #define PAPR_SYSPARM_IOC_SET _IOW(PAPR_MISCDEV_IOC_ID, 2, struct papr_sysparm_io_block) #endif /* _PAPR_SYSPARM_H_ */
Close