mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-03 12:38:08 +07:00
ACPI: replace kmalloc+memcpy with kmemdup
Replace the combination of kmalloc() and memcpy() in acpi_run_osc() with a single call to kmemdup(). [rjw: Changelog] Signed-off-by: Andrei Epure <epure.andrei@gmail.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
82160dd8ba
commit
e2cb5f0846
@ -288,13 +288,12 @@ acpi_status acpi_run_osc(acpi_handle handle, struct acpi_osc_context *context)
|
|||||||
}
|
}
|
||||||
out_success:
|
out_success:
|
||||||
context->ret.length = out_obj->buffer.length;
|
context->ret.length = out_obj->buffer.length;
|
||||||
context->ret.pointer = kmalloc(context->ret.length, GFP_KERNEL);
|
context->ret.pointer = kmemdup(out_obj->buffer.pointer,
|
||||||
|
context->ret.length, GFP_KERNEL);
|
||||||
if (!context->ret.pointer) {
|
if (!context->ret.pointer) {
|
||||||
status = AE_NO_MEMORY;
|
status = AE_NO_MEMORY;
|
||||||
goto out_kfree;
|
goto out_kfree;
|
||||||
}
|
}
|
||||||
memcpy(context->ret.pointer, out_obj->buffer.pointer,
|
|
||||||
context->ret.length);
|
|
||||||
status = AE_OK;
|
status = AE_OK;
|
||||||
|
|
||||||
out_kfree:
|
out_kfree:
|
||||||
|
Loading…
Reference in New Issue
Block a user