coda_psdev.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __CODA_PSDEV_H
  2. #define __CODA_PSDEV_H
  3. #define CODA_PSDEV_MAJOR 67
  4. #define MAX_CODADEVS  5    /* how many do we allow */
  5. #define CODA_SUPER_MAGIC 0x73757245
  6. struct coda_sb_info
  7. {
  8. struct venus_comm * sbi_vcomm;
  9. struct super_block *sbi_sb;
  10. struct list_head    sbi_cihead;
  11. };
  12. /* communication pending/processing queues */
  13. struct venus_comm {
  14. u_long     vc_seq;
  15. wait_queue_head_t   vc_waitq; /* Venus wait queue */
  16. struct list_head    vc_pending;
  17. struct list_head    vc_processing;
  18. int                 vc_inuse;
  19. struct super_block *vc_sb;
  20. };
  21. static inline struct coda_sb_info *coda_sbp(struct super_block *sb)
  22. {
  23.     return ((struct coda_sb_info *)((sb)->u.generic_sbp));
  24. }
  25. /* upcalls */
  26. int venus_rootfid(struct super_block *sb, ViceFid *fidp);
  27. int venus_getattr(struct super_block *sb, struct ViceFid *fid, 
  28.      struct coda_vattr *attr);
  29. int venus_setattr(struct super_block *, struct ViceFid *, 
  30.      struct coda_vattr *);
  31. int venus_lookup(struct super_block *sb, struct ViceFid *fid, 
  32.     const char *name, int length, int *type, 
  33.     struct ViceFid *resfid);
  34. int venus_store(struct super_block *sb, struct ViceFid *fid, int flags,
  35. struct coda_cred *);
  36. int venus_release(struct super_block *sb, struct ViceFid *fid, int flags);
  37. int venus_close(struct super_block *sb, struct ViceFid *fid, int flags,
  38. struct coda_cred *);
  39. int venus_open(struct super_block *sb, struct ViceFid *fid,
  40. int flags, struct file **f);
  41. int venus_mkdir(struct super_block *sb, struct ViceFid *dirfid, 
  42.   const char *name, int length, 
  43.   struct ViceFid *newfid, struct coda_vattr *attrs);
  44. int venus_create(struct super_block *sb, struct ViceFid *dirfid, 
  45.     const char *name, int length, int excl, int mode, int rdev,
  46.     struct ViceFid *newfid, struct coda_vattr *attrs) ;
  47. int venus_rmdir(struct super_block *sb, struct ViceFid *dirfid, 
  48.     const char *name, int length);
  49. int venus_remove(struct super_block *sb, struct ViceFid *dirfid, 
  50.  const char *name, int length);
  51. int venus_readlink(struct super_block *sb, struct ViceFid *fid, 
  52.    char *buffer, int *length);
  53. int venus_rename(struct super_block *, struct ViceFid *new_fid, 
  54.  struct ViceFid *old_fid, size_t old_length, 
  55.  size_t new_length, const char *old_name, 
  56.  const char *new_name);
  57. int venus_link(struct super_block *sb, struct ViceFid *fid, 
  58.   struct ViceFid *dirfid, const char *name, int len );
  59. int venus_symlink(struct super_block *sb, struct ViceFid *fid,
  60.   const char *name, int len, const char *symname, int symlen);
  61. int venus_access(struct super_block *sb, struct ViceFid *fid, int mask);
  62. int venus_pioctl(struct super_block *sb, struct ViceFid *fid,
  63.  unsigned int cmd, struct PioctlData *data);
  64. int coda_downcall(int opcode, union outputArgs *out, struct super_block *sb);
  65. int venus_fsync(struct super_block *sb, struct ViceFid *fid);
  66. int venus_statfs(struct super_block *sb, struct statfs *sfs);
  67. /* messages between coda filesystem in kernel and Venus */
  68. extern int coda_hard;
  69. extern unsigned long coda_timeout;
  70. struct upc_req {
  71. struct list_head    uc_chain;
  72. caddr_t             uc_data;
  73. u_short             uc_flags;
  74. u_short             uc_inSize;  /* Size is at most 5000 bytes */
  75. u_short             uc_outSize;
  76. u_short             uc_opcode;  /* copied from data to save lookup */
  77. int     uc_unique;
  78. wait_queue_head_t   uc_sleep;   /* process' wait queue */
  79. unsigned long       uc_posttime;
  80. };
  81. #define REQ_ASYNC  0x1
  82. #define REQ_READ   0x2
  83. #define REQ_WRITE  0x4
  84. #define REQ_ABORT  0x8
  85. /*
  86.  * Statistics
  87.  */
  88. struct coda_upcallstats {
  89. int ncalls; /* client requests */
  90. int nbadcalls; /* upcall failures */
  91. int reqs[CODA_NCALLS]; /* count of each request */
  92. } ;
  93. extern struct coda_upcallstats coda_callstats;
  94. extern struct venus_comm coda_comms[];
  95. static inline void clstats(int opcode)
  96. {
  97.     coda_callstats.ncalls++;
  98.     if ( (0 <= opcode) && (opcode <= CODA_NCALLS) )
  99. coda_callstats.reqs[opcode]++;
  100.     else
  101. printk("clstats called with bad opcode %dn", opcode); 
  102. }
  103. static inline void badclstats(void)
  104. {
  105.     coda_callstats.nbadcalls++;
  106. }
  107. #endif