diff options
| author | Helge Deller <deller@gmx.de> | 2023-11-23 20:28:27 +0100 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-12-08 08:48:02 +0100 |
| commit | 2e931b33060cbb73e26114dd8ec987e2c1113479 (patch) | |
| tree | 64c9141c6a677c09ad33a2c386f7e6a4c78c2a1d /lib | |
| parent | f0d052223488b4d7b227d4db3c55fdf9d2500939 (diff) | |
| download | linux-2e931b33060cbb73e26114dd8ec987e2c1113479.tar.gz linux-2e931b33060cbb73e26114dd8ec987e2c1113479.tar.bz2 linux-2e931b33060cbb73e26114dd8ec987e2c1113479.zip | |
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.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/errname.c b/lib/errname.c index 67739b174a8c..0c336b0f12f6 100644 --- a/lib/errname.c +++ b/lib/errname.c @@ -111,9 +111,6 @@ static const char *names_0[] = { E(ENOSPC), E(ENOSR), E(ENOSTR), -#ifdef ENOSYM - E(ENOSYM), -#endif E(ENOSYS), E(ENOTBLK), E(ENOTCONN), @@ -144,9 +141,6 @@ static const char *names_0[] = { #endif E(EREMOTE), E(EREMOTEIO), -#ifdef EREMOTERELEASE - E(EREMOTERELEASE), -#endif E(ERESTART), E(ERFKILL), E(EROFS), |
