From 42865ef46fc71b94b8e2289a06e131b4e7207d58 Mon Sep 17 00:00:00 2001 From: "Michael Mair-Keimberger (asterix)" Date: Fri, 11 Aug 2017 16:48:23 +0200 Subject: [PATCH] sys-boot/efibootmgr: remove unused patch Closes: https://github.com/gentoo/gentoo/pull/5390 --- .../files/efibootmgr-error-reporting.patch | 40 ------------------- 1 file changed, 40 deletions(-) delete mode 100644 sys-boot/efibootmgr/files/efibootmgr-error-reporting.patch diff --git a/sys-boot/efibootmgr/files/efibootmgr-error-reporting.patch b/sys-boot/efibootmgr/files/efibootmgr-error-reporting.patch deleted file mode 100644 index 2c769db23047..000000000000 --- a/sys-boot/efibootmgr/files/efibootmgr-error-reporting.patch +++ /dev/null @@ -1,40 +0,0 @@ -@@ -, +, @@ ---- - src/lib/efivars_sysfs.c | 16 +++++++++++++--- - 1 files changed, 13 insertions(+), 3 deletions(-) ---- a/src/lib/efivars_sysfs.c -+++ a/src/lib/efivars_sysfs.c -@@ -66,6 +66,7 @@ static efi_status_t - sysfs_write_variable(const char *filename, efi_variable_t *var) - { - int fd; -+ int rc = EFI_SUCCESS; - size_t writesize; - char buffer[PATH_MAX+40]; - -@@ -77,12 +78,21 @@ sysfs_write_variable(const char *filename, efi_variable_t *var) - return EFI_INVALID_PARAMETER; - } - writesize = write(fd, var, sizeof(*var)); -+ if (writesize == -1) { -+ if (errno == -ENOSPC) -+ rc = EFI_OUT_OF_RESOURCES; -+ else -+ rc = EFI_INVALID_PARAMETER; -+ goto out; -+ } - if (writesize != sizeof(*var)) { -- close(fd); -- return EFI_INVALID_PARAMETER; -+ rc = EFI_INVALID_PARAMETER; - } -+out: -+ if (rc != EFI_SUCCESS) -+ fprintf(stderr, "Failed to write variable: %s\n", strerror(errno)); - close(fd); -- return EFI_SUCCESS; -+ return rc; - } - - --- -- 2.26.2