xfs_rw.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * Copyright (c) 2000-2006 Silicon Graphics, Inc.
  3. * All Rights Reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it would be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write the Free Software Foundation,
  16. * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifndef __XFS_RW_H__
  19. #define __XFS_RW_H__
  20. struct xfs_buf;
  21. struct xfs_inode;
  22. struct xfs_mount;
  23. /*
  24. * Convert the given file system block to a disk block.
  25. * We have to treat it differently based on whether the
  26. * file is a real time file or not, because the bmap code
  27. * does.
  28. */
  29. #define XFS_FSB_TO_DB(ip,fsb) xfs_fsb_to_db(ip,fsb)
  30. static inline xfs_daddr_t
  31. xfs_fsb_to_db(struct xfs_inode *ip, xfs_fsblock_t fsb)
  32. {
  33. return (XFS_IS_REALTIME_INODE(ip) ? \
  34. (xfs_daddr_t)XFS_FSB_TO_BB((ip)->i_mount, (fsb)) : \
  35. XFS_FSB_TO_DADDR((ip)->i_mount, (fsb)));
  36. }
  37. /*
  38. * Flags for xfs_free_eofblocks
  39. */
  40. #define XFS_FREE_EOF_LOCK (1<<0)
  41. #define XFS_FREE_EOF_NOLOCK (1<<1)
  42. /*
  43. * helper function to extract extent size hint from inode
  44. */
  45. STATIC_INLINE xfs_extlen_t
  46. xfs_get_extsz_hint(
  47. xfs_inode_t *ip)
  48. {
  49. xfs_extlen_t extsz;
  50. if (unlikely(XFS_IS_REALTIME_INODE(ip))) {
  51. extsz = (ip->i_d.di_flags & XFS_DIFLAG_EXTSIZE)
  52. ? ip->i_d.di_extsize
  53. : ip->i_mount->m_sb.sb_rextsize;
  54. ASSERT(extsz);
  55. } else {
  56. extsz = (ip->i_d.di_flags & XFS_DIFLAG_EXTSIZE)
  57. ? ip->i_d.di_extsize : 0;
  58. }
  59. return extsz;
  60. }
  61. /*
  62. * Prototypes for functions in xfs_rw.c.
  63. */
  64. extern int xfs_write_clear_setuid(struct xfs_inode *ip);
  65. extern int xfs_write_sync_logforce(struct xfs_mount *mp, struct xfs_inode *ip);
  66. extern int xfs_bwrite(struct xfs_mount *mp, struct xfs_buf *bp);
  67. extern int xfs_bioerror(struct xfs_buf *bp);
  68. extern int xfs_bioerror_relse(struct xfs_buf *bp);
  69. extern int xfs_read_buf(struct xfs_mount *mp, xfs_buftarg_t *btp,
  70. xfs_daddr_t blkno, int len, uint flags,
  71. struct xfs_buf **bpp);
  72. extern void xfs_ioerror_alert(char *func, struct xfs_mount *mp,
  73. xfs_buf_t *bp, xfs_daddr_t blkno);
  74. /*
  75. * Prototypes for functions in xfs_vnodeops.c.
  76. */
  77. extern int xfs_free_eofblocks(struct xfs_mount *mp, struct xfs_inode *ip,
  78. int flags);
  79. #endif /* __XFS_RW_H__ */