diff options
author | Joe Korty | 2005-05-01 17:59:06 +0200 |
---|---|---|
committer | Linus Torvalds | 2005-05-01 17:59:06 +0200 |
commit | 4750e2c0c59e0c84c6c036b3d96ebd88365ae7ee (patch) | |
tree | c6f02d62f59088befaed42bcf7610555f7d5b518 /include/asm-sparc64/errno.h | |
parent | [PATCH] noop-iosched: kill O(N) merge scan (diff) | |
download | kernel-qcow2-linux-4750e2c0c59e0c84c6c036b3d96ebd88365ae7ee.tar.gz kernel-qcow2-linux-4750e2c0c59e0c84c6c036b3d96ebd88365ae7ee.tar.xz kernel-qcow2-linux-4750e2c0c59e0c84c6c036b3d96ebd88365ae7ee.zip |
[PATCH] add EOWNERDEAD and ENOTRECOVERABLE version 2
Add EOWNERDEAD and ENOTRECOVERABLE to all architectures. This is to
support the upcoming patches for robust mutexes.
We normally don't reserve parts of the name/number space for external
patches, but robust mutexes are sufficiently popular and important to
justify it in this case.
Signed-off-by: Joe Korty <joe.korty@ccur.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-sparc64/errno.h')
-rw-r--r-- | include/asm-sparc64/errno.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-sparc64/errno.h b/include/asm-sparc64/errno.h index cc98a73b55a7..ea3509ee1b0b 100644 --- a/include/asm-sparc64/errno.h +++ b/include/asm-sparc64/errno.h @@ -107,4 +107,8 @@ #define EKEYREVOKED 130 /* Key has been revoked */ #define EKEYREJECTED 131 /* Key was rejected by service */ +/* for robust mutexes */ +#define EOWNERDEAD 132 /* Owner died */ +#define ENOTRECOVERABLE 133 /* State not recoverable */ + #endif /* !(_SPARC64_ERRNO_H) */ |