coda_linux.h 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. #include <linux/kernel.h>
  14. #include <linux/param.h>
  15. #include <linux/mm.h>
  16. #include <linux/vmalloc.h>
  17. #include <linux/slab.h>
  18. #include <linux/wait.h>
  19. #include <linux/types.h>
  20. #include <linux/fs.h>
  21. #include <linux/coda_fs_i.h>
  22. /* operations */
  23. extern const struct inode_operations coda_dir_inode_operations;
  24. extern const struct inode_operations coda_file_inode_operations;
  25. extern const struct inode_operations coda_ioctl_inode_operations;
  26. extern const struct address_space_operations coda_file_aops;
  27. extern const struct address_space_operations coda_symlink_aops;
  28. extern const struct file_operations coda_dir_operations;
  29. extern const struct file_operations coda_file_operations;
  30. extern const struct file_operations coda_ioctl_operations;
  31. /* operations shared over more than one file */
  32. int coda_open(struct inode *i, struct file *f);
  33. int coda_release(struct inode *i, struct file *f);
  34. int coda_permission(struct inode *inode, int mask, struct nameidata *nd);
  35. int coda_revalidate_inode(struct dentry *);
  36. int coda_getattr(struct vfsmount *, struct dentry *, struct kstat *);
  37. int coda_setattr(struct dentry *, struct iattr *);
  38. /* this file: heloers */
  39. static __inline__ struct CodaFid *coda_i2f(struct inode *);
  40. static __inline__ char *coda_i2s(struct inode *);
  41. static __inline__ void coda_flag_inode(struct inode *, int flag);
  42. char *coda_f2s(struct CodaFid *f);
  43. int coda_isroot(struct inode *i);
  44. int coda_iscontrol(const char *name, size_t length);
  45. void coda_vattr_to_iattr(struct inode *, struct coda_vattr *);
  46. void coda_iattr_to_vattr(struct iattr *, struct coda_vattr *);
  47. unsigned short coda_flags_to_cflags(unsigned short);
  48. /* sysctl.h */
  49. void coda_sysctl_init(void);
  50. void coda_sysctl_clean(void);
  51. #define CODA_ALLOC(ptr, cast, size) do { \
  52. if (size < PAGE_SIZE) \
  53. ptr = kmalloc((unsigned long) size, GFP_KERNEL); \
  54. else \
  55. ptr = (cast)vmalloc((unsigned long) size); \
  56. if (!ptr) \
  57. printk("kernel malloc returns 0 at %s:%d\n", __FILE__, __LINE__); \
  58. else memset( ptr, 0, size ); \
  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 list_entry(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. ITOC(inode)->c_flags |= flag;
  79. }
  80. #endif