Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
linux-headers-5.15.0-186 /
include /
acpi /
Delete
Unzip
Name
Size
Permission
Date
Action
platform
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
acbuffer.h
8.92
KB
-rw-r--r--
2021-11-01 05:53
acconfig.h
7.41
KB
-rw-r--r--
2021-11-01 05:53
acexcep.h
16.94
KB
-rw-r--r--
2021-11-01 05:53
acnames.h
2.19
KB
-rw-r--r--
2021-11-01 05:53
acoutput.h
16.37
KB
-rw-r--r--
2021-11-01 05:53
acpi.h
1.33
KB
-rw-r--r--
2021-11-01 05:53
acpi_bus.h
20.52
KB
-rw-r--r--
2026-06-21 00:49
acpi_drivers.h
2.55
KB
-rw-r--r--
2021-11-01 05:53
acpi_io.h
723
B
-rw-r--r--
2021-11-01 05:53
acpi_lpat.h
1.16
KB
-rw-r--r--
2021-11-01 05:53
acpi_numa.h
970
B
-rw-r--r--
2021-11-01 05:53
acpiosxf.h
11.35
KB
-rw-r--r--
2021-11-01 05:53
acpixf.h
31.1
KB
-rw-r--r--
2026-06-21 00:49
acrestyp.h
19.05
KB
-rw-r--r--
2021-11-01 05:53
actbl.h
18.35
KB
-rw-r--r--
2021-11-01 05:53
actbl1.h
43.13
KB
-rw-r--r--
2021-11-01 05:53
actbl2.h
57.14
KB
-rw-r--r--
2021-11-01 05:53
actbl3.h
21.87
KB
-rw-r--r--
2021-11-01 05:53
actypes.h
41.71
KB
-rw-r--r--
2026-06-21 00:49
acuuid.h
3.44
KB
-rw-r--r--
2021-11-01 05:53
apei.h
1.4
KB
-rw-r--r--
2026-06-21 00:49
battery.h
594
B
-rw-r--r--
2021-11-01 05:53
button.h
401
B
-rw-r--r--
2021-11-01 05:53
cppc_acpi.h
4.44
KB
-rw-r--r--
2026-06-21 00:49
ghes.h
3.63
KB
-rw-r--r--
2026-06-21 00:49
hed.h
370
B
-rw-r--r--
2021-11-01 05:53
nfit.h
351
B
-rw-r--r--
2021-11-01 05:53
pcc.h
651
B
-rw-r--r--
2021-11-01 05:53
pdc_intel.h
1.02
KB
-rw-r--r--
2021-11-01 05:53
processor.h
11.66
KB
-rw-r--r--
2021-11-01 05:53
reboot.h
201
B
-rw-r--r--
2021-11-01 05:53
video.h
2.8
KB
-rw-r--r--
2021-11-01 05:53
Save
Rename
/* SPDX-License-Identifier: GPL-2.0 */ /* * apei.h - ACPI Platform Error Interface */ #ifndef ACPI_APEI_H #define ACPI_APEI_H #include <linux/acpi.h> #include <linux/cper.h> #include <asm/ioctls.h> #define APEI_ERST_INVALID_RECORD_ID 0xffffffffffffffffULL #define APEI_ERST_CLEAR_RECORD _IOW('E', 1, u64) #define APEI_ERST_GET_RECORD_COUNT _IOR('E', 2, u32) #ifdef __KERNEL__ enum hest_status { HEST_ENABLED, HEST_DISABLED, HEST_NOT_FOUND, }; extern int hest_disable; extern int erst_disable; #ifdef CONFIG_ACPI_APEI_GHES extern bool ghes_disable; void __init ghes_init(void); #else #define ghes_disable 1 static inline void ghes_init(void) { } #endif #ifdef CONFIG_ACPI_APEI void __init acpi_hest_init(void); #else static inline void acpi_hest_init(void) { } #endif typedef int (*apei_hest_func_t)(struct acpi_hest_header *hest_hdr, void *data); int apei_hest_parse(apei_hest_func_t func, void *data); int erst_write(const struct cper_record_header *record); ssize_t erst_get_record_count(void); int erst_get_record_id_begin(int *pos); int erst_get_record_id_next(int *pos, u64 *record_id); void erst_get_record_id_end(void); ssize_t erst_read(u64 record_id, struct cper_record_header *record, size_t buflen); int erst_clear(u64 record_id); int arch_apei_enable_cmcff(struct acpi_hest_header *hest_hdr, void *data); void arch_apei_report_mem_error(int sev, struct cper_sec_mem_err *mem_err); #endif #endif