/usr/src/linux-headers-5.15.0-181/include/acpi
NameSizeModeActions
platform/-0755rm
acbuffer.h91360644editdlrm
acconfig.h75850644editdlrm
acexcep.h173500644editdlrm
acnames.h22380644editdlrm
acoutput.h167580644editdlrm
acpi.h13630644editdlrm
acpiosxf.h116190644editdlrm
acpixf.h314410644editdlrm
acpi_bus.h210170644editdlrm
acpi_drivers.h26160644editdlrm
acpi_io.h7230644editdlrm
acpi_lpat.h11880644editdlrm
acpi_numa.h9700644editdlrm
acrestyp.h195070644editdlrm
actbl.h187860644editdlrm
actbl1.h441650644editdlrm
actbl2.h585150644editdlrm
actbl3.h223920644editdlrm
actypes.h427120644editdlrm
acuuid.h35200644editdlrm
apei.h14290644editdlrm
battery.h5940644editdlrm
button.h4010644editdlrm
cppc_acpi.h45450644editdlrm
ghes.h36870644editdlrm
hed.h3700644editdlrm
nfit.h3510644editdlrm
pcc.h6510644editdlrm
pdc_intel.h10480644editdlrm
processor.h119390644editdlrm
reboot.h2010644editdlrm
video.h28710644editdlrm
Edit: /usr/src/linux-headers-5.15.0-181/include/acpi/apei.h (1429B)
/* SPDX-License-Identifier: GPL-2.0 */ /* * apei.h - ACPI Platform Error Interface */ #ifndef ACPI_APEI_H #define ACPI_APEI_H #include #include #include #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