inode.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
  3. * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
  4. *
  5. * This copyrighted material is made available to anyone wishing to use,
  6. * modify, copy, or redistribute it subject to the terms and conditions
  7. * of the GNU General Public License v.2.
  8. */
  9. #ifndef __INODE_DOT_H__
  10. #define __INODE_DOT_H__
  11. static inline int gfs2_is_stuffed(struct gfs2_inode *ip)
  12. {
  13. return !ip->i_di.di_height;
  14. }
  15. static inline int gfs2_is_jdata(struct gfs2_inode *ip)
  16. {
  17. return ip->i_di.di_flags & GFS2_DIF_JDATA;
  18. }
  19. static inline int gfs2_is_dir(struct gfs2_inode *ip)
  20. {
  21. return S_ISDIR(ip->i_di.di_mode);
  22. }
  23. void gfs2_inode_attr_in(struct gfs2_inode *ip);
  24. void gfs2_inode_attr_out(struct gfs2_inode *ip);
  25. struct inode *gfs2_ip2v_lookup(struct gfs2_inode *ip);
  26. struct inode *gfs2_ip2v(struct gfs2_inode *ip);
  27. struct inode *gfs2_iget(struct super_block *sb, struct gfs2_inum *inum);
  28. void gfs2_inode_min_init(struct gfs2_inode *ip, unsigned int type);
  29. int gfs2_inode_refresh(struct gfs2_inode *ip);
  30. int gfs2_inode_get(struct gfs2_glock *i_gl,
  31. struct gfs2_inum *inum, int create,
  32. struct gfs2_inode **ipp);
  33. void gfs2_inode_hold(struct gfs2_inode *ip);
  34. void gfs2_inode_put(struct gfs2_inode *ip);
  35. void gfs2_inode_destroy(struct gfs2_inode *ip);
  36. int gfs2_inode_dealloc(struct gfs2_sbd *sdp, struct gfs2_unlinked *ul);
  37. int gfs2_change_nlink(struct gfs2_inode *ip, int diff);
  38. int gfs2_lookupi(struct gfs2_inode *dip, struct qstr *name, int is_root,
  39. struct gfs2_inode **ipp);
  40. int gfs2_createi(struct gfs2_holder *ghs, struct qstr *name, unsigned int mode);
  41. int gfs2_unlinki(struct gfs2_inode *dip, struct qstr *name,
  42. struct gfs2_inode *ip, struct gfs2_unlinked *ul);
  43. int gfs2_rmdiri(struct gfs2_inode *dip, struct qstr *name,
  44. struct gfs2_inode *ip, struct gfs2_unlinked *ul);
  45. int gfs2_unlink_ok(struct gfs2_inode *dip, struct qstr *name,
  46. struct gfs2_inode *ip);
  47. int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to);
  48. int gfs2_readlinki(struct gfs2_inode *ip, char **buf, unsigned int *len);
  49. int gfs2_glock_nq_atime(struct gfs2_holder *gh);
  50. int gfs2_glock_nq_m_atime(unsigned int num_gh, struct gfs2_holder *ghs);
  51. void gfs2_try_toss_vnode(struct gfs2_inode *ip);
  52. int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr);
  53. int gfs2_repermission(struct inode *inode, int mask, struct nameidata *nd);
  54. static inline int gfs2_lookup_simple(struct inode *dip, char *name,
  55. struct inode **ipp)
  56. {
  57. struct gfs2_inode *ip;
  58. struct qstr qstr;
  59. int err;
  60. memset(&qstr, 0, sizeof(struct qstr));
  61. qstr.name = name;
  62. qstr.len = strlen(name);
  63. err = gfs2_lookupi(get_v2ip(dip), &qstr, 1, &ip);
  64. if (err == 0) {
  65. *ipp = gfs2_ip2v(ip);
  66. gfs2_inode_put(ip);
  67. if (*ipp == NULL)
  68. err = -ENOMEM;
  69. }
  70. return err;
  71. }
  72. #endif /* __INODE_DOT_H__ */