ref: e82f565015fd0b75085d8d2a4f1aaca53e875f64
dir: /dat.c/
#include "u.h" #include "libc.h" #include "dat.h" char* tagnames[] = { [Tblank] "Tblank", [Tmagic] "Tmagic", [Tdentry] "Tdentry", [Tdata] "Tdata", [Tind0] "Tind0", [Tind1] "Tind1", [Tind2] "Tind2", [Tind3] "Tind3", [Tind4] "Tind4", [Tind5] "Tind5", /* add more Tind tags here ... */ }; char *errstring[MAXERR] = { [Eaccess] "access permission denied", [Ealloc] "phase error -- directory entry not allocated", [Eauth] "authentication failed", [Eauthmsg] "kfs: authentication not required", [Ebadname] "bad name", [Ebadspc] "attach -- bad specifier", [Ebadu] "attach -- privileged user", [Ebroken] "close/read/write -- lock is broken", [Echar] "bad character in directory name", [Econvert] "protocol botch", [Ecount] "read/write -- count too big", [Edir1] "walk -- in a non-directory", [Edir2] "create -- in a non-directory", [Edirty] "dirty filesystem", [Edot] "create -- . and .. illegal names", [Eempty] "remove -- directory not empty", [Eentry] "directory entry not found", [Eexist] "create -- file exists", [Efid] "unknown fid", [Efidinuse] "fid already in use", [Efull] "file system full", [Einval] "invalid operation", [Elocked] "open/create -- file is locked", [Emode] "open/create -- unknown mode", [Ename] "create/wstat -- bad character in file name", [Enomem] "no memory", [Enotd] "wstat -- attempt to change directory", [Enotdir] "not a directory", [Enotg] "wstat -- not in group", [Enotl] "wstat -- attempt to change length", [Enotm] "wstat -- unknown type/mode", [Enotu] "wstat -- not owner", [Eoffset] "read/write -- offset negative", [Eopen] "read/write -- on non open fid", [Eperm] "no permission", [Ephase] "phase error -- cannot happen", [Eqid] "phase error -- qid does not match", [Eqidmode] "wstat -- qid.type/dir.mode mismatch", [Eronly] "file system read only", [Ersc] "it's russ's fault. bug him.", [Eshutdown] "mafs shutting down", [Esystem] "mafs system error", [Etoolong] "name too long", [Ewalk] "walk -- too many (system wide)", };