afs_fs.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /* AFS File Service definitions
  3. *
  4. * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
  5. * Written by David Howells (dhowells@redhat.com)
  6. */
  7. #ifndef AFS_FS_H
  8. #define AFS_FS_H
  9. #define AFS_FS_PORT 7000 /* AFS file server port */
  10. #define FS_SERVICE 1 /* AFS File Service ID */
  11. enum AFS_FS_Operations {
  12. FSFETCHDATA = 130, /* AFS Fetch file data */
  13. FSFETCHACL = 131, /* AFS Fetch file ACL */
  14. FSFETCHSTATUS = 132, /* AFS Fetch file status */
  15. FSSTOREDATA = 133, /* AFS Store file data */
  16. FSSTOREACL = 134, /* AFS Store file ACL */
  17. FSSTORESTATUS = 135, /* AFS Store file status */
  18. FSREMOVEFILE = 136, /* AFS Remove a file */
  19. FSCREATEFILE = 137, /* AFS Create a file */
  20. FSRENAME = 138, /* AFS Rename or move a file or directory */
  21. FSSYMLINK = 139, /* AFS Create a symbolic link */
  22. FSLINK = 140, /* AFS Create a hard link */
  23. FSMAKEDIR = 141, /* AFS Create a directory */
  24. FSREMOVEDIR = 142, /* AFS Remove a directory */
  25. FSGIVEUPCALLBACKS = 147, /* AFS Discard callback promises */
  26. FSGETVOLUMEINFO = 148, /* AFS Get information about a volume */
  27. FSGETVOLUMESTATUS = 149, /* AFS Get volume status information */
  28. FSGETROOTVOLUME = 151, /* AFS Get root volume name */
  29. FSBULKSTATUS = 155, /* AFS Fetch multiple file statuses */
  30. FSSETLOCK = 156, /* AFS Request a file lock */
  31. FSEXTENDLOCK = 157, /* AFS Extend a file lock */
  32. FSRELEASELOCK = 158, /* AFS Release a file lock */
  33. FSLOOKUP = 161, /* AFS lookup file in directory */
  34. FSINLINEBULKSTATUS = 65536, /* AFS Fetch multiple file statuses with inline errors */
  35. FSFETCHDATA64 = 65537, /* AFS Fetch file data */
  36. FSSTOREDATA64 = 65538, /* AFS Store file data */
  37. FSGIVEUPALLCALLBACKS = 65539, /* AFS Give up all outstanding callbacks on a server */
  38. FSGETCAPABILITIES = 65540, /* Probe and get the capabilities of a fileserver */
  39. };
  40. enum AFS_FS_Errors {
  41. VRESTARTING = -100, /* Server is restarting */
  42. VSALVAGE = 101, /* volume needs salvaging */
  43. VNOVNODE = 102, /* no such file/dir (vnode) */
  44. VNOVOL = 103, /* no such volume or volume unavailable */
  45. VVOLEXISTS = 104, /* volume name already exists */
  46. VNOSERVICE = 105, /* volume not currently in service */
  47. VOFFLINE = 106, /* volume is currently offline (more info available [VVL-spec]) */
  48. VONLINE = 107, /* volume is already online */
  49. VDISKFULL = 108, /* disk partition is full */
  50. VOVERQUOTA = 109, /* volume's maximum quota exceeded */
  51. VBUSY = 110, /* volume is temporarily unavailable */
  52. VMOVED = 111, /* volume moved to new server - ask this FS where */
  53. VIO = 112, /* I/O error in volume */
  54. VSALVAGING = 113, /* Volume is being salvaged */
  55. VRESTRICTED = 120, /* Volume is restricted from using */
  56. };
  57. #endif /* AFS_FS_H */