search for: acpi_whea_header

Displaying 1 result from an estimated 1 matches for "acpi_whea_header".

2010 Aug 20
0
[PATCH 1/2] Implement APEI ERST feature to Xen
...e) and EINJ (Error + * INJection) interpreter framework. + */ + +#define APEI_EXEC_PRESERVE_REGISTER 0x1 + +int apei_exec_ctx_init(struct apei_exec_context *ctx, + struct apei_exec_ins_type *ins_table, + u32 instructions, + struct acpi_whea_header *action_table, + u32 entries) +{ + if (!ctx) + return -EINVAL; + + ctx->ins_table = ins_table; + ctx->instructions = instructions; + ctx->action_table = action_table; + ctx->entries = entries; + return 0; +} + +int...