blob: 7ce9fb1b7d28f3472be97621e624a4448ead577f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_ERRNO_H
2#define _LINUX_ERRNO_H
3
David Howells607ca462012-10-13 10:46:48 +01004#include <uapi/linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
Satoru Takeuchi62e5b052007-06-01 00:47:06 -07007/*
8 * These should never be seen by user programs. To return one of ERESTART*
9 * codes, signal_pending() MUST be set. Note that ptrace can observe these
10 * at syscall exit tracing, but they will never be left for the debugged user
11 * process to see.
12 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#define ERESTARTSYS 512
14#define ERESTARTNOINTR 513
15#define ERESTARTNOHAND 514 /* restart if no handler.. */
16#define ENOIOCTLCMD 515 /* No ioctl command */
17#define ERESTART_RESTARTBLOCK 516 /* restart by calling sys_restart_syscall */
Grant Likelyd1c34142012-03-05 08:47:41 -070018#define EPROBE_DEFER 517 /* Driver requests probe retry */
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +020019#define EOPENSTALE 518 /* open found a stale dentry */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21/* Defined for the NFSv3 protocol */
22#define EBADHANDLE 521 /* Illegal NFS file handle */
23#define ENOTSYNC 522 /* Update synchronization mismatch */
24#define EBADCOOKIE 523 /* Cookie is stale */
25#define ENOTSUPP 524 /* Operation is not supported */
26#define ETOOSMALL 525 /* Buffer or request is too small */
27#define ESERVERFAULT 526 /* An untranslatable error occurred */
28#define EBADTYPE 527 /* Type not supported by server */
29#define EJUKEBOX 528 /* Request initiated, but will not complete before timeout */
30#define EIOCBQUEUED 529 /* iocb queued, will get completion event */
Jeff Layton183d9e72016-05-17 12:28:47 -040031#define ERECALLCONFLICT 530 /* conflict with recalled state */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#endif