diff options
author | Eric Sandeen <sandeen@redhat.com> | 2013-11-12 18:08:40 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-12 22:09:12 -0500 |
commit | 0ca43435188b9f911c8efcdf10731f726142dda1 (patch) | |
tree | c50d53a6d9e644cd7b75f5acfab519c1d52dba35 /arch/parisc/include | |
parent | 6c251611ce68d80e0067aab80a0a3b6bc652d5f5 (diff) |
errno.h: remove "NFS" from descriptions in comments
glibc recently changed the error string for ESTALE to remove "NFS" -
https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=96945714ec61951cc748da2b4b8a80cf02127ee9
from: [ERR_REMAP (ESTALE)] = N_("Stale NFS file handle"),
to: [ERR_REMAP (ESTALE)] = N_("Stale file handle"),
And some have expressed concern that the kernel's errno.h
comments still refer to NFS.
So make that change... note that this is a comment-only change,
and has no functional difference.
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/parisc/include')
-rw-r--r-- | arch/parisc/include/uapi/asm/errno.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/include/uapi/asm/errno.h b/arch/parisc/include/uapi/asm/errno.h index 135ad6047e51..f3a8aa554841 100644 --- a/arch/parisc/include/uapi/asm/errno.h +++ b/arch/parisc/include/uapi/asm/errno.h | |||
@@ -37,7 +37,7 @@ | |||
37 | #define EBADMSG 67 /* Not a data message */ | 37 | #define EBADMSG 67 /* Not a data message */ |
38 | #define EUSERS 68 /* Too many users */ | 38 | #define EUSERS 68 /* Too many users */ |
39 | #define EDQUOT 69 /* Quota exceeded */ | 39 | #define EDQUOT 69 /* Quota exceeded */ |
40 | #define ESTALE 70 /* Stale NFS file handle */ | 40 | #define ESTALE 70 /* Stale file handle */ |
41 | #define EREMOTE 71 /* Object is remote */ | 41 | #define EREMOTE 71 /* Object is remote */ |
42 | #define EOVERFLOW 72 /* Value too large for defined data type */ | 42 | #define EOVERFLOW 72 /* Value too large for defined data type */ |
43 | 43 | ||