search for: apei_exec_ins_access_regist

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

2010 Aug 20
0
[PATCH 1/2] Implement APEI ERST feature to Xen
...+ } + + return 0; +} + +static int pre_map_gar_callback(struct apei_exec_context *ctx, + struct acpi_whea_header *entry, + void *data) +{ + u8 ins = entry->instruction; + + if (ctx->ins_table[ins].flags & APEI_EXEC_INS_ACCESS_REGISTER) + return apei_pre_map_gar(&entry->register_region); + + return 0; +} + +/* Pre-map all GARs in action table. */ +int apei_exec_pre_map_gars(struct apei_exec_context *ctx) +{ + int rc, end; + + rc = apei_exec_for_each_entry(ctx, pre_map_gar_callback, +...