efi: pstore: Follow convention for the efi-pstore backend name
authorGuilherme G. Piccoli <gpiccoli@igalia.com>
Thu, 6 Oct 2022 22:42:11 +0000 (19:42 -0300)
committerKees Cook <keescook@chromium.org>
Mon, 17 Oct 2022 20:14:10 +0000 (13:14 -0700)
For some reason, the efi-pstore backend name (exposed through the
pstore infrastructure) is hardcoded as "efi", whereas all the other
backends follow a kind of convention in using the module name.

Let's do it here as well, to make user's life easier (they might
use this info for unloading the module backend, for example).

Cc: Ard Biesheuvel <ardb@kernel.org>
Signed-off-by: Guilherme G. Piccoli <gpiccoli@igalia.com>
Acked-by: Ard Biesheuvel <ardb@kernel.org>
Signed-off-by: Kees Cook <keescook@chromium.org>
Link: https://lore.kernel.org/r/20221006224212.569555-8-gpiccoli@igalia.com
drivers/firmware/efi/efi-pstore.c

index 3bddc15..97a9e84 100644 (file)
@@ -207,7 +207,7 @@ static int efi_pstore_erase(struct pstore_record *record)
 
 static struct pstore_info efi_pstore_info = {
        .owner          = THIS_MODULE,
-       .name           = "efi",
+       .name           = KBUILD_MODNAME,
        .flags          = PSTORE_FLAGS_DMESG,
        .open           = efi_pstore_open,
        .close          = efi_pstore_close,