![]() |
|
|||
0001 // SPDX-License-Identifier: GPL-2.0 0002 /* Universal AFS Error codes (UAE). 0003 * 0004 * Copyright (C) 2003, Daria Phoebe Brashear 0005 * Copyright (C) 2018 Red Hat, Inc. All Rights Reserved. 0006 */ 0007 0008 enum { 0009 UAEPERM = 0x2f6df00, /* Operation not permitted */ 0010 UAENOENT = 0x2f6df01, /* No such file or directory */ 0011 UAESRCH = 0x2f6df02, /* No such process */ 0012 UAEINTR = 0x2f6df03, /* Interrupted system call */ 0013 UAEIO = 0x2f6df04, /* I/O error */ 0014 UAENXIO = 0x2f6df05, /* No such device or address */ 0015 UAE2BIG = 0x2f6df06, /* Arg list too long */ 0016 UAENOEXEC = 0x2f6df07, /* Exec format error */ 0017 UAEBADF = 0x2f6df08, /* Bad file number */ 0018 UAECHILD = 0x2f6df09, /* No child processes */ 0019 UAEAGAIN = 0x2f6df0a, /* Try again */ 0020 UAENOMEM = 0x2f6df0b, /* Out of memory */ 0021 UAEACCES = 0x2f6df0c, /* Permission denied */ 0022 UAEFAULT = 0x2f6df0d, /* Bad address */ 0023 UAENOTBLK = 0x2f6df0e, /* Block device required */ 0024 UAEBUSY = 0x2f6df0f, /* Device or resource busy */ 0025 UAEEXIST = 0x2f6df10, /* File exists */ 0026 UAEXDEV = 0x2f6df11, /* Cross-device link */ 0027 UAENODEV = 0x2f6df12, /* No such device */ 0028 UAENOTDIR = 0x2f6df13, /* Not a directory */ 0029 UAEISDIR = 0x2f6df14, /* Is a directory */ 0030 UAEINVAL = 0x2f6df15, /* Invalid argument */ 0031 UAENFILE = 0x2f6df16, /* File table overflow */ 0032 UAEMFILE = 0x2f6df17, /* Too many open files */ 0033 UAENOTTY = 0x2f6df18, /* Not a typewriter */ 0034 UAETXTBSY = 0x2f6df19, /* Text file busy */ 0035 UAEFBIG = 0x2f6df1a, /* File too large */ 0036 UAENOSPC = 0x2f6df1b, /* No space left on device */ 0037 UAESPIPE = 0x2f6df1c, /* Illegal seek */ 0038 UAEROFS = 0x2f6df1d, /* Read-only file system */ 0039 UAEMLINK = 0x2f6df1e, /* Too many links */ 0040 UAEPIPE = 0x2f6df1f, /* Broken pipe */ 0041 UAEDOM = 0x2f6df20, /* Math argument out of domain of func */ 0042 UAERANGE = 0x2f6df21, /* Math result not representable */ 0043 UAEDEADLK = 0x2f6df22, /* Resource deadlock would occur */ 0044 UAENAMETOOLONG = 0x2f6df23, /* File name too long */ 0045 UAENOLCK = 0x2f6df24, /* No record locks available */ 0046 UAENOSYS = 0x2f6df25, /* Function not implemented */ 0047 UAENOTEMPTY = 0x2f6df26, /* Directory not empty */ 0048 UAELOOP = 0x2f6df27, /* Too many symbolic links encountered */ 0049 UAEWOULDBLOCK = 0x2f6df28, /* Operation would block */ 0050 UAENOMSG = 0x2f6df29, /* No message of desired type */ 0051 UAEIDRM = 0x2f6df2a, /* Identifier removed */ 0052 UAECHRNG = 0x2f6df2b, /* Channel number out of range */ 0053 UAEL2NSYNC = 0x2f6df2c, /* Level 2 not synchronized */ 0054 UAEL3HLT = 0x2f6df2d, /* Level 3 halted */ 0055 UAEL3RST = 0x2f6df2e, /* Level 3 reset */ 0056 UAELNRNG = 0x2f6df2f, /* Link number out of range */ 0057 UAEUNATCH = 0x2f6df30, /* Protocol driver not attached */ 0058 UAENOCSI = 0x2f6df31, /* No CSI structure available */ 0059 UAEL2HLT = 0x2f6df32, /* Level 2 halted */ 0060 UAEBADE = 0x2f6df33, /* Invalid exchange */ 0061 UAEBADR = 0x2f6df34, /* Invalid request descriptor */ 0062 UAEXFULL = 0x2f6df35, /* Exchange full */ 0063 UAENOANO = 0x2f6df36, /* No anode */ 0064 UAEBADRQC = 0x2f6df37, /* Invalid request code */ 0065 UAEBADSLT = 0x2f6df38, /* Invalid slot */ 0066 UAEBFONT = 0x2f6df39, /* Bad font file format */ 0067 UAENOSTR = 0x2f6df3a, /* Device not a stream */ 0068 UAENODATA = 0x2f6df3b, /* No data available */ 0069 UAETIME = 0x2f6df3c, /* Timer expired */ 0070 UAENOSR = 0x2f6df3d, /* Out of streams resources */ 0071 UAENONET = 0x2f6df3e, /* Machine is not on the network */ 0072 UAENOPKG = 0x2f6df3f, /* Package not installed */ 0073 UAEREMOTE = 0x2f6df40, /* Object is remote */ 0074 UAENOLINK = 0x2f6df41, /* Link has been severed */ 0075 UAEADV = 0x2f6df42, /* Advertise error */ 0076 UAESRMNT = 0x2f6df43, /* Srmount error */ 0077 UAECOMM = 0x2f6df44, /* Communication error on send */ 0078 UAEPROTO = 0x2f6df45, /* Protocol error */ 0079 UAEMULTIHOP = 0x2f6df46, /* Multihop attempted */ 0080 UAEDOTDOT = 0x2f6df47, /* RFS specific error */ 0081 UAEBADMSG = 0x2f6df48, /* Not a data message */ 0082 UAEOVERFLOW = 0x2f6df49, /* Value too large for defined data type */ 0083 UAENOTUNIQ = 0x2f6df4a, /* Name not unique on network */ 0084 UAEBADFD = 0x2f6df4b, /* File descriptor in bad state */ 0085 UAEREMCHG = 0x2f6df4c, /* Remote address changed */ 0086 UAELIBACC = 0x2f6df4d, /* Can not access a needed shared library */ 0087 UAELIBBAD = 0x2f6df4e, /* Accessing a corrupted shared library */ 0088 UAELIBSCN = 0x2f6df4f, /* .lib section in a.out corrupted */ 0089 UAELIBMAX = 0x2f6df50, /* Attempting to link in too many shared libraries */ 0090 UAELIBEXEC = 0x2f6df51, /* Cannot exec a shared library directly */ 0091 UAEILSEQ = 0x2f6df52, /* Illegal byte sequence */ 0092 UAERESTART = 0x2f6df53, /* Interrupted system call should be restarted */ 0093 UAESTRPIPE = 0x2f6df54, /* Streams pipe error */ 0094 UAEUSERS = 0x2f6df55, /* Too many users */ 0095 UAENOTSOCK = 0x2f6df56, /* Socket operation on non-socket */ 0096 UAEDESTADDRREQ = 0x2f6df57, /* Destination address required */ 0097 UAEMSGSIZE = 0x2f6df58, /* Message too long */ 0098 UAEPROTOTYPE = 0x2f6df59, /* Protocol wrong type for socket */ 0099 UAENOPROTOOPT = 0x2f6df5a, /* Protocol not available */ 0100 UAEPROTONOSUPPORT = 0x2f6df5b, /* Protocol not supported */ 0101 UAESOCKTNOSUPPORT = 0x2f6df5c, /* Socket type not supported */ 0102 UAEOPNOTSUPP = 0x2f6df5d, /* Operation not supported on transport endpoint */ 0103 UAEPFNOSUPPORT = 0x2f6df5e, /* Protocol family not supported */ 0104 UAEAFNOSUPPORT = 0x2f6df5f, /* Address family not supported by protocol */ 0105 UAEADDRINUSE = 0x2f6df60, /* Address already in use */ 0106 UAEADDRNOTAVAIL = 0x2f6df61, /* Cannot assign requested address */ 0107 UAENETDOWN = 0x2f6df62, /* Network is down */ 0108 UAENETUNREACH = 0x2f6df63, /* Network is unreachable */ 0109 UAENETRESET = 0x2f6df64, /* Network dropped connection because of reset */ 0110 UAECONNABORTED = 0x2f6df65, /* Software caused connection abort */ 0111 UAECONNRESET = 0x2f6df66, /* Connection reset by peer */ 0112 UAENOBUFS = 0x2f6df67, /* No buffer space available */ 0113 UAEISCONN = 0x2f6df68, /* Transport endpoint is already connected */ 0114 UAENOTCONN = 0x2f6df69, /* Transport endpoint is not connected */ 0115 UAESHUTDOWN = 0x2f6df6a, /* Cannot send after transport endpoint shutdown */ 0116 UAETOOMANYREFS = 0x2f6df6b, /* Too many references: cannot splice */ 0117 UAETIMEDOUT = 0x2f6df6c, /* Connection timed out */ 0118 UAECONNREFUSED = 0x2f6df6d, /* Connection refused */ 0119 UAEHOSTDOWN = 0x2f6df6e, /* Host is down */ 0120 UAEHOSTUNREACH = 0x2f6df6f, /* No route to host */ 0121 UAEALREADY = 0x2f6df70, /* Operation already in progress */ 0122 UAEINPROGRESS = 0x2f6df71, /* Operation now in progress */ 0123 UAESTALE = 0x2f6df72, /* Stale NFS file handle */ 0124 UAEUCLEAN = 0x2f6df73, /* Structure needs cleaning */ 0125 UAENOTNAM = 0x2f6df74, /* Not a XENIX named type file */ 0126 UAENAVAIL = 0x2f6df75, /* No XENIX semaphores available */ 0127 UAEISNAM = 0x2f6df76, /* Is a named type file */ 0128 UAEREMOTEIO = 0x2f6df77, /* Remote I/O error */ 0129 UAEDQUOT = 0x2f6df78, /* Quota exceeded */ 0130 UAENOMEDIUM = 0x2f6df79, /* No medium found */ 0131 UAEMEDIUMTYPE = 0x2f6df7a, /* Wrong medium type */ 0132 };
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.1.0 LXR engine. The LXR team |
![]() ![]() |