mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 03:24:45 +01:00
This was done entirely with mindless brute force, using
git grep -l '\<k[vmz]*alloc_objs*(.*, GFP_KERNEL)' |
xargs sed -i 's/\(alloc_objs*(.*\), GFP_KERNEL)/\1)/'
to convert the new alloc_obj() users that had a simple GFP_KERNEL
argument to just drop that argument.
Note that due to the extreme simplicity of the scripting, any slightly
more complex cases spread over multiple lines would not be triggered:
they definitely exist, but this covers the vast bulk of the cases, and
the resulting diff is also then easier to check automatically.
For the same reason the 'flex' versions will be done as a separate
conversion.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
92 lines
2.2 KiB
C
92 lines
2.2 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* efibc: control EFI bootloaders which obey LoaderEntryOneShot var
|
|
* Copyright (c) 2013-2016, Intel Corporation.
|
|
*/
|
|
|
|
#define pr_fmt(fmt) "efibc: " fmt
|
|
|
|
#include <linux/efi.h>
|
|
#include <linux/module.h>
|
|
#include <linux/reboot.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/ucs2_string.h>
|
|
|
|
#define MAX_DATA_LEN 512
|
|
|
|
static int efibc_set_variable(efi_char16_t *name, efi_char16_t *value,
|
|
unsigned long len)
|
|
{
|
|
efi_status_t status;
|
|
|
|
status = efi.set_variable(name, &LINUX_EFI_LOADER_ENTRY_GUID,
|
|
EFI_VARIABLE_NON_VOLATILE
|
|
| EFI_VARIABLE_BOOTSERVICE_ACCESS
|
|
| EFI_VARIABLE_RUNTIME_ACCESS,
|
|
len * sizeof(efi_char16_t), value);
|
|
|
|
if (status != EFI_SUCCESS) {
|
|
pr_err("failed to set EFI variable: 0x%lx\n", status);
|
|
return -EIO;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int efibc_reboot_notifier_call(struct notifier_block *notifier,
|
|
unsigned long event, void *data)
|
|
{
|
|
efi_char16_t *reason = event == SYS_RESTART ? L"reboot"
|
|
: L"shutdown";
|
|
const u8 *str = data;
|
|
efi_char16_t *wdata;
|
|
unsigned long l;
|
|
int ret;
|
|
|
|
ret = efibc_set_variable(L"LoaderEntryRebootReason", reason,
|
|
ucs2_strlen(reason));
|
|
if (ret || !data)
|
|
return NOTIFY_DONE;
|
|
|
|
wdata = kmalloc_objs(efi_char16_t, MAX_DATA_LEN);
|
|
if (!wdata)
|
|
return NOTIFY_DONE;
|
|
|
|
for (l = 0; l < MAX_DATA_LEN - 1 && str[l] != '\0'; l++)
|
|
wdata[l] = str[l];
|
|
wdata[l] = L'\0';
|
|
|
|
efibc_set_variable(L"LoaderEntryOneShot", wdata, l);
|
|
|
|
kfree(wdata);
|
|
return NOTIFY_DONE;
|
|
}
|
|
|
|
static struct notifier_block efibc_reboot_notifier = {
|
|
.notifier_call = efibc_reboot_notifier_call,
|
|
};
|
|
|
|
static int __init efibc_init(void)
|
|
{
|
|
int ret;
|
|
|
|
if (!efi_rt_services_supported(EFI_RT_SUPPORTED_SET_VARIABLE))
|
|
return -ENODEV;
|
|
|
|
ret = register_reboot_notifier(&efibc_reboot_notifier);
|
|
if (ret)
|
|
pr_err("unable to register reboot notifier\n");
|
|
|
|
return ret;
|
|
}
|
|
module_init(efibc_init);
|
|
|
|
static void __exit efibc_exit(void)
|
|
{
|
|
unregister_reboot_notifier(&efibc_reboot_notifier);
|
|
}
|
|
module_exit(efibc_exit);
|
|
|
|
MODULE_AUTHOR("Jeremy Compostella <jeremy.compostella@intel.com>");
|
|
MODULE_AUTHOR("Matt Gumbel <matthew.k.gumbel@intel.com");
|
|
MODULE_DESCRIPTION("EFI Bootloader Control");
|
|
MODULE_LICENSE("GPL v2");
|