coda_psdev.h 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __CODA_PSDEV_H
  3. #define __CODA_PSDEV_H
  4. #include <linux/backing-dev.h>
  5. #include <linux/magic.h>
  6. #include <linux/mutex.h>
  7. #define CODA_PSDEV_MAJOR 67
  8. #define MAX_CODADEVS 5 /* how many do we allow */
  9. struct kstatfs;
  10. /* messages between coda filesystem in kernel and Venus */
  11. struct upc_req {
  12. struct list_head uc_chain;
  13. caddr_t uc_data;
  14. u_short uc_flags;
  15. u_short uc_inSize; /* Size is at most 5000 bytes */
  16. u_short uc_outSize;
  17. u_short uc_opcode; /* copied from data to save lookup */
  18. int uc_unique;
  19. wait_queue_head_t uc_sleep; /* process' wait queue */
  20. };
  21. #define CODA_REQ_ASYNC 0x1
  22. #define CODA_REQ_READ 0x2
  23. #define CODA_REQ_WRITE 0x4
  24. #define CODA_REQ_ABORT 0x8
  25. /* communication pending/processing queues */
  26. struct venus_comm {
  27. u_long vc_seq;
  28. wait_queue_head_t vc_waitq; /* Venus wait queue */
  29. struct list_head vc_pending;
  30. struct list_head vc_processing;
  31. int vc_inuse;
  32. struct super_block *vc_sb;
  33. struct mutex vc_mutex;
  34. };
  35. static inline struct venus_comm *coda_vcp(struct super_block *sb)
  36. {
  37. return (struct venus_comm *)((sb)->s_fs_info);
  38. }
  39. /* upcalls */
  40. int venus_rootfid(struct super_block *sb, struct CodaFid *fidp);
  41. int venus_getattr(struct super_block *sb, struct CodaFid *fid,
  42. struct coda_vattr *attr);
  43. int venus_setattr(struct super_block *, struct CodaFid *, struct coda_vattr *);
  44. int venus_lookup(struct super_block *sb, struct CodaFid *fid,
  45. const char *name, int length, int *type,
  46. struct CodaFid *resfid);
  47. int venus_close(struct super_block *sb, struct CodaFid *fid, int flags,
  48. kuid_t uid);
  49. int venus_open(struct super_block *sb, struct CodaFid *fid, int flags,
  50. struct file **f);
  51. int venus_mkdir(struct super_block *sb, struct CodaFid *dirfid,
  52. const char *name, int length,
  53. struct CodaFid *newfid, struct coda_vattr *attrs);
  54. int venus_create(struct super_block *sb, struct CodaFid *dirfid,
  55. const char *name, int length, int excl, int mode,
  56. struct CodaFid *newfid, struct coda_vattr *attrs);
  57. int venus_rmdir(struct super_block *sb, struct CodaFid *dirfid,
  58. const char *name, int length);
  59. int venus_remove(struct super_block *sb, struct CodaFid *dirfid,
  60. const char *name, int length);
  61. int venus_readlink(struct super_block *sb, struct CodaFid *fid,
  62. char *buffer, int *length);
  63. int venus_rename(struct super_block *sb, struct CodaFid *new_fid,
  64. struct CodaFid *old_fid, size_t old_length,
  65. size_t new_length, const char *old_name,
  66. const char *new_name);
  67. int venus_link(struct super_block *sb, struct CodaFid *fid,
  68. struct CodaFid *dirfid, const char *name, int len );
  69. int venus_symlink(struct super_block *sb, struct CodaFid *fid,
  70. const char *name, int len, const char *symname, int symlen);
  71. int venus_access(struct super_block *sb, struct CodaFid *fid, int mask);
  72. int venus_pioctl(struct super_block *sb, struct CodaFid *fid,
  73. unsigned int cmd, struct PioctlData *data);
  74. int coda_downcall(struct venus_comm *vcp, int opcode, union outputArgs *out,
  75. size_t nbytes);
  76. int venus_fsync(struct super_block *sb, struct CodaFid *fid);
  77. int venus_statfs(struct dentry *dentry, struct kstatfs *sfs);
  78. int venus_access_intent(struct super_block *sb, struct CodaFid *fid,
  79. bool *access_intent_supported,
  80. size_t count, loff_t ppos, int type);
  81. /*
  82. * Statistics
  83. */
  84. extern struct venus_comm coda_comms[];
  85. #endif