Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'pm+acpi-4.4-final' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull ACPI fix from Rafael Wysocki:
"Just one obvious fix that adds a missing function argument in ACPI
code introduced recently (Kees Cook)"

* tag 'pm+acpi-4.4-final' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
ACPI / property: avoid leaking format string into kobject name

+1 -1
+1 -1
drivers/acpi/device_sysfs.c
··· 104 104 105 105 init_completion(&dn->kobj_done); 106 106 ret = kobject_init_and_add(&dn->kobj, &acpi_data_node_ktype, 107 - kobj, dn->name); 107 + kobj, "%s", dn->name); 108 108 if (ret) 109 109 acpi_handle_err(dn->handle, "Failed to expose (%d)\n", ret); 110 110 else