OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
include
/
acpi
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:15 AM
rwxr-xr-x
📄
acbuffer.h
10.36 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
acconfig.h
8.69 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
acexcep.h
17.79 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
acnames.h
3.78 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
acoutput.h
17.69 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
acpi.h
3.07 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
acpi_bus.h
18.99 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
acpi_drivers.h
4.08 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
acpi_io.h
713 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
acpi_lpat.h
1.55 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
acpi_numa.h
623 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
acpiosxf.h
12.4 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
acpixf.h
31.5 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
acrestyp.h
20.57 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
actbl.h
20 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
actbl1.h
44.48 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
actbl2.h
42.98 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
actbl3.h
21.63 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
actypes.h
42.59 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
acuuid.h
4.17 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
apei.h
1.34 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
button.h
621 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
cppc_acpi.h
2.93 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
ghes.h
2.88 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
hed.h
371 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
pcc.h
816 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
pdc_intel.h
1.02 KB
01/28/2018 09:20:33 PM
rw-r--r--
📁
platform
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📄
processor.h
11.11 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
reboot.h
201 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
video.h
2.8 KB
01/28/2018 09:20:33 PM
rw-r--r--
Editing: apei.h
Close
/* 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; #else #define ghes_disable 1 #endif #ifdef CONFIG_ACPI_APEI void __init acpi_hest_init(void); #else static inline void acpi_hest_init(void) { return; } #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