diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2026-01-31 19:57:16 +0300 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2026-01-31 19:57:16 +0300 |
| commit | d097a0783102a9e966ed0a70f54def4a1d091b6a (patch) | |
| tree | ba51cc1fc5fce7646a55c4327e65dfbd67c95d6b | |
| parent | 9827b1fb558a58b40e5c6f0689acb8597c2dea00 (diff) | |
| parent | 4b22ec1685ce1fc0d862dcda3225d852fb107995 (diff) | |
| download | linux-d097a0783102a9e966ed0a70f54def4a1d091b6a.tar.xz | |
Merge tag 'efi-fixes-for-v6.19-3' of git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi
Pull EFI fix from Ard Biesheuvel:
- Fix regression in efivarfs error propagation
* tag 'efi-fixes-for-v6.19-3' of git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi:
efivarfs: fix error propagation in efivar_entry_get()
| -rw-r--r-- | fs/efivarfs/vars.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/efivarfs/vars.c b/fs/efivarfs/vars.c index 6edc10958ecf..70e13db260db 100644 --- a/fs/efivarfs/vars.c +++ b/fs/efivarfs/vars.c @@ -552,7 +552,7 @@ int efivar_entry_get(struct efivar_entry *entry, u32 *attributes, err = __efivar_entry_get(entry, attributes, size, data); efivar_unlock(); - return 0; + return err; } /** |
