search for: apei_exec_run

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

2010 Aug 20
0
[PATCH 1/2] Implement APEI ERST feature to Xen
...(ctx, entry); + + return rc; +} + +int apei_exec_noop(struct apei_exec_context *ctx, + struct acpi_whea_header *entry) +{ + return 0; +} + +/* + * Interpret the specified action. Go through whole action table, + * execute all instructions belong to the action. + */ +int apei_exec_run(struct apei_exec_context *ctx, u8 action) +{ + int rc; + u32 i, ip; + struct acpi_whea_header *entry; + apei_exec_ins_func_t run; + + ctx->ip = 0; + + /* + * "ip" is the instruction pointer of current instruction, + * "ctx->ip&q...