forked from Minki/linux
ACPICA: Update interpreter error paths to always report the error
Signed-off-by: Alexey Starikovskiy <alexey.y.starikovskiy@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
f70a5e7b6c
commit
867c9aec57
@ -219,7 +219,7 @@ acpi_ds_exec_begin_op(struct acpi_walk_state *walk_state,
|
|||||||
if (!op) {
|
if (!op) {
|
||||||
status = acpi_ds_load2_begin_op(walk_state, out_op);
|
status = acpi_ds_load2_begin_op(walk_state, out_op);
|
||||||
if (ACPI_FAILURE(status)) {
|
if (ACPI_FAILURE(status)) {
|
||||||
return_ACPI_STATUS(status);
|
goto error_exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
op = *out_op;
|
op = *out_op;
|
||||||
@ -238,7 +238,7 @@ acpi_ds_exec_begin_op(struct acpi_walk_state *walk_state,
|
|||||||
|
|
||||||
status = acpi_ds_scope_stack_pop(walk_state);
|
status = acpi_ds_scope_stack_pop(walk_state);
|
||||||
if (ACPI_FAILURE(status)) {
|
if (ACPI_FAILURE(status)) {
|
||||||
return_ACPI_STATUS(status);
|
goto error_exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -287,7 +287,7 @@ acpi_ds_exec_begin_op(struct acpi_walk_state *walk_state,
|
|||||||
|
|
||||||
status = acpi_ds_result_stack_push(walk_state);
|
status = acpi_ds_result_stack_push(walk_state);
|
||||||
if (ACPI_FAILURE(status)) {
|
if (ACPI_FAILURE(status)) {
|
||||||
return_ACPI_STATUS(status);
|
goto error_exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
status = acpi_ds_exec_begin_control_op(walk_state, op);
|
status = acpi_ds_exec_begin_control_op(walk_state, op);
|
||||||
@ -328,6 +328,10 @@ acpi_ds_exec_begin_op(struct acpi_walk_state *walk_state,
|
|||||||
/* Nothing to do here during method execution */
|
/* Nothing to do here during method execution */
|
||||||
|
|
||||||
return_ACPI_STATUS(status);
|
return_ACPI_STATUS(status);
|
||||||
|
|
||||||
|
error_exit:
|
||||||
|
status = acpi_ds_method_error(status, walk_state);
|
||||||
|
return_ACPI_STATUS(status);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
|
Loading…
Reference in New Issue
Block a user