mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
ACPI / sysfs: fix error code in get_status()
The problem with ornamental, do-nothing gotos is that they lead to
"forgot to set the error code" bugs. We should be returning -EINVAL
here but we don't. It leads to an uninitalized variable in
counter_show():
drivers/acpi/sysfs.c:603 counter_show()
error: uninitialized symbol 'status'.
Fixes: 1c8fce27e2
(ACPI: introduce drivers/acpi/sysfs.c)
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
a508d954af
commit
f18ebc211e
1 changed files with 3 additions and 4 deletions
|
@ -555,23 +555,22 @@ static void acpi_global_event_handler(u32 event_type, acpi_handle device,
|
||||||
static int get_status(u32 index, acpi_event_status *status,
|
static int get_status(u32 index, acpi_event_status *status,
|
||||||
acpi_handle *handle)
|
acpi_handle *handle)
|
||||||
{
|
{
|
||||||
int result = 0;
|
int result;
|
||||||
|
|
||||||
if (index >= num_gpes + ACPI_NUM_FIXED_EVENTS)
|
if (index >= num_gpes + ACPI_NUM_FIXED_EVENTS)
|
||||||
goto end;
|
return -EINVAL;
|
||||||
|
|
||||||
if (index < num_gpes) {
|
if (index < num_gpes) {
|
||||||
result = acpi_get_gpe_device(index, handle);
|
result = acpi_get_gpe_device(index, handle);
|
||||||
if (result) {
|
if (result) {
|
||||||
ACPI_EXCEPTION((AE_INFO, AE_NOT_FOUND,
|
ACPI_EXCEPTION((AE_INFO, AE_NOT_FOUND,
|
||||||
"Invalid GPE 0x%x", index));
|
"Invalid GPE 0x%x", index));
|
||||||
goto end;
|
return result;
|
||||||
}
|
}
|
||||||
result = acpi_get_gpe_status(*handle, index, status);
|
result = acpi_get_gpe_status(*handle, index, status);
|
||||||
} else if (index < (num_gpes + ACPI_NUM_FIXED_EVENTS))
|
} else if (index < (num_gpes + ACPI_NUM_FIXED_EVENTS))
|
||||||
result = acpi_get_event_status(index - num_gpes, status);
|
result = acpi_get_event_status(index - num_gpes, status);
|
||||||
|
|
||||||
end:
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue