summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2023-11-23 22:28:27 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-12-08 10:46:12 +0300
commitbab9cec493b6c1cbb14f763206d3da978676d732 (patch)
treec24030169474d7b6d41f437171c09dc463a02ade /lib
parentb53dc7c766aec1b53c3d6ab0c29c3a3235bd6275 (diff)
downloadlinux-bab9cec493b6c1cbb14f763206d3da978676d732.tar.xz
parisc: Drop the HP-UX ENOSYM and EREMOTERELEASE error codes
commit e5f3e299a2b1e9c3ece24a38adfc089aef307e8a upstream. Those return codes are only defined for the parisc architecture and are leftovers from when we wanted to be HP-UX compatible. They are not returned by any Linux kernel syscall but do trigger problems with the glibc strerrorname_np() and strerror() functions as reported in glibc issue #31080. There is no need to keep them, so simply remove them. Signed-off-by: Helge Deller <deller@gmx.de> Reported-by: Bruno Haible <bruno@clisp.org> Closes: https://sourceware.org/bugzilla/show_bug.cgi?id=31080 Cc: stable@vger.kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/errname.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/errname.c b/lib/errname.c
index a5799a8c9cab..fec08e7c8a1d 100644
--- a/lib/errname.c
+++ b/lib/errname.c
@@ -110,9 +110,6 @@ static const char *names_0[] = {
E(ENOSPC),
E(ENOSR),
E(ENOSTR),
-#ifdef ENOSYM
- E(ENOSYM),
-#endif
E(ENOSYS),
E(ENOTBLK),
E(ENOTCONN),
@@ -143,9 +140,6 @@ static const char *names_0[] = {
#endif
E(EREMOTE),
E(EREMOTEIO),
-#ifdef EREMOTERELEASE
- E(EREMOTERELEASE),
-#endif
E(ERESTART),
E(ERFKILL),
E(EROFS),