coda_linux.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * Coda File System, Linux Kernel module
  3. *
  4. * Original version, adapted from cfs_mach.c, (C) Carnegie Mellon University
  5. * Linux modifications (C) 1996, Peter J. Braam
  6. * Rewritten for Linux 2.1 (C) 1997 Carnegie Mellon University
  7. *
  8. * Carnegie Mellon University encourages users of this software to
  9. * contribute improvements to the Coda project.
  10. */
  11. #ifndef _LINUX_CODA_FS
  12. #define _LINUX_CODA_FS
  13. #ifdef pr_fmt
  14. #undef pr_fmt
  15. #endif
  16. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  17. #include <linux/kernel.h>
  18. #include <linux/param.h>
  19. #include <linux/mm.h>
  20. #include <linux/vmalloc.h>
  21. #include <linux/slab.h>
  22. #include <linux/wait.h>
  23. #include <linux/types.h>
  24. #include <linux/fs.h>
  25. #include "coda_fs_i.h"
  26. /* operations */
  27. extern const struct inode_operations coda_dir_inode_operations;
  28. extern const struct inode_operations coda_file_inode_operations;
  29. extern const struct inode_operations coda_ioctl_inode_operations;
  30. extern const struct dentry_operations coda_dentry_operations;
  31. extern const struct address_space_operations coda_file_aops;
  32. extern const struct address_space_operations coda_symlink_aops;
  33. extern const struct file_operations coda_dir_operations;
  34. extern const struct file_operations coda_file_operations;
  35. extern const struct file_operations coda_ioctl_operations;
  36. /* operations shared over more than one file */
  37. int coda_open(struct inode *i, struct file *f);
  38. int coda_release(struct inode *i, struct file *f);
  39. int coda_permission(struct inode *inode, int mask);
  40. int coda_revalidate_inode(struct inode *);
  41. int coda_getattr(struct vfsmount *, struct dentry *, struct kstat *);
  42. int coda_setattr(struct dentry *, struct iattr *);
  43. /* this file: heloers */
  44. char *coda_f2s(struct CodaFid *f);
  45. int coda_isroot(struct inode *i);
  46. int coda_iscontrol(const char *name, size_t length);
  47. void coda_vattr_to_iattr(struct inode *, struct coda_vattr *);
  48. void coda_iattr_to_vattr(struct iattr *, struct coda_vattr *);
  49. unsigned short coda_flags_to_cflags(unsigned short);
  50. /* sysctl.h */
  51. void coda_sysctl_init(void);
  52. void coda_sysctl_clean(void);
  53. #define CODA_ALLOC(ptr, cast, size) do { \
  54. if (size < PAGE_SIZE) \
  55. ptr = kzalloc((unsigned long) size, GFP_KERNEL); \
  56. else \
  57. ptr = (cast)vzalloc((unsigned long) size); \
  58. if (!ptr) \
  59. pr_warn("kernel malloc returns 0 at %s:%d\n", __FILE__, __LINE__); \
  60. } while (0)
  61. #define CODA_FREE(ptr,size) \
  62. do { if (size < PAGE_SIZE) kfree((ptr)); else vfree((ptr)); } while (0)
  63. /* inode to cnode access functions */
  64. static inline struct coda_inode_info *ITOC(struct inode *inode)
  65. {
  66. return list_entry(inode, struct coda_inode_info, vfs_inode);
  67. }
  68. static __inline__ struct CodaFid *coda_i2f(struct inode *inode)
  69. {
  70. return &(ITOC(inode)->c_fid);
  71. }
  72. static __inline__ char *coda_i2s(struct inode *inode)
  73. {
  74. return coda_f2s(&(ITOC(inode)->c_fid));
  75. }
  76. /* this will not zap the inode away */
  77. static __inline__ void coda_flag_inode(struct inode *inode, int flag)
  78. {
  79. struct coda_inode_info *cii = ITOC(inode);
  80. spin_lock(&cii->c_lock);
  81. cii->c_flags |= flag;
  82. spin_unlock(&cii->c_lock);
  83. }
  84. #endif