Skip to content

Commit d097a07

Browse files
committed
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()
2 parents 9827b1f + 4b22ec1 commit d097a07

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fs/efivarfs/vars.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ int efivar_entry_get(struct efivar_entry *entry, u32 *attributes,
552552
err = __efivar_entry_get(entry, attributes, size, data);
553553
efivar_unlock();
554554

555-
return 0;
555+
return err;
556556
}
557557

558558
/**

0 commit comments

Comments
 (0)