coda_linux.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Coda File System, Linux Kernel module
  4. *
  5. * Original version, adapted from cfs_mach.c, (C) Carnegie Mellon University
  6. * Linux modifications (C) 1996, Peter J. Braam
  7. * Rewritten for Linux 2.1 (C) 1997 Carnegie Mellon University
  8. *
  9. * Carnegie Mellon University encourages users of this software to
  10. * contribute improvements to the Coda project.
  11. */
  12. #ifndef _LINUX_CODA_FS
  13. #define _LINUX_CODA_FS
  14. #ifdef pr_fmt
  15. #undef pr_fmt
  16. #endif
  17. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  18. #include <linux/kernel.h>
  19. #include <linux/param.h>
  20. #include <linux/mm.h>
  21. #include <linux/vmalloc.h>
  22. #include <linux/slab.h>
  23. #include <linux/wait.h>
  24. #include <linux/types.h>
  25. #include <linux/fs.h>
  26. #include "coda_fs_i.h"
  27. /* operations */
  28. extern const struct inode_operations coda_dir_inode_operations;
  29. extern const struct inode_operations coda_file_inode_operations;
  30. extern const struct inode_operations coda_ioctl_inode_operations;
  31. extern const struct dentry_operations coda_dentry_operations;
  32. extern const struct address_space_operations coda_file_aops;
  33. extern const struct address_space_operations coda_symlink_aops;
  34. extern const struct file_operations coda_dir_operations;
  35. extern const struct file_operations coda_file_operations;
  36. extern const struct file_operations coda_ioctl_operations;
  37. /* operations shared over more than one file */
  38. int coda_open(struct inode *i, struct file *f);
  39. int coda_release(struct inode *i, struct file *f);
  40. int coda_permission(struct inode *inode, int mask);
  41. int coda_revalidate_inode(struct inode *);
  42. int coda_getattr(const struct path *, struct kstat *, u32, unsigned int);
  43. int coda_setattr(struct dentry *, struct iattr *);
  44. /* this file: heloers */
  45. char *coda_f2s(struct CodaFid *f);
  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) kvfree((ptr))
  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