coda_linux.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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_iscontrol(const char *name, size_t length);
  46. void coda_vattr_to_iattr(struct inode *, struct coda_vattr *);
  47. void coda_iattr_to_vattr(struct iattr *, struct coda_vattr *);
  48. unsigned short coda_flags_to_cflags(unsigned short);
  49. /* sysctl.h */
  50. void coda_sysctl_init(void);
  51. void coda_sysctl_clean(void);
  52. #define CODA_ALLOC(ptr, cast, size) do { \
  53. if (size < PAGE_SIZE) \
  54. ptr = kzalloc((unsigned long) size, GFP_KERNEL); \
  55. else \
  56. ptr = (cast)vzalloc((unsigned long) size); \
  57. if (!ptr) \
  58. pr_warn("kernel malloc returns 0 at %s:%d\n", __FILE__, __LINE__); \
  59. } while (0)
  60. #define CODA_FREE(ptr,size) \
  61. do { if (size < PAGE_SIZE) kfree((ptr)); else vfree((ptr)); } while (0)
  62. /* inode to cnode access functions */
  63. static inline struct coda_inode_info *ITOC(struct inode *inode)
  64. {
  65. return container_of(inode, struct coda_inode_info, vfs_inode);
  66. }
  67. static __inline__ struct CodaFid *coda_i2f(struct inode *inode)
  68. {
  69. return &(ITOC(inode)->c_fid);
  70. }
  71. static __inline__ char *coda_i2s(struct inode *inode)
  72. {
  73. return coda_f2s(&(ITOC(inode)->c_fid));
  74. }
  75. /* this will not zap the inode away */
  76. static __inline__ void coda_flag_inode(struct inode *inode, int flag)
  77. {
  78. struct coda_inode_info *cii = ITOC(inode);
  79. spin_lock(&cii->c_lock);
  80. cii->c_flags |= flag;
  81. spin_unlock(&cii->c_lock);
  82. }
  83. #endif