xfs_rw.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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 (((ip)->i_d.di_flags & XFS_DIFLAG_REALTIME) ? \
  34. (xfs_daddr_t)XFS_FSB_TO_BB((ip)->i_mount, (fsb)) : \
  35. XFS_FSB_TO_DADDR((ip)->i_mount, (fsb)));
  36. }
  37. #define XFS_FSB_TO_DB_IO(io,fsb) xfs_fsb_to_db_io(io,fsb)
  38. static inline xfs_daddr_t
  39. xfs_fsb_to_db_io(struct xfs_iocore *io, xfs_fsblock_t fsb)
  40. {
  41. return (((io)->io_flags & XFS_IOCORE_RT) ? \
  42. XFS_FSB_TO_BB((io)->io_mount, (fsb)) : \
  43. XFS_FSB_TO_DADDR((io)->io_mount, (fsb)));
  44. }
  45. /*
  46. * Flags for xfs_free_eofblocks
  47. */
  48. #define XFS_FREE_EOF_LOCK (1<<0)
  49. #define XFS_FREE_EOF_NOLOCK (1<<1)
  50. /*
  51. * helper function to extract extent size hint from inode
  52. */
  53. STATIC_INLINE xfs_extlen_t
  54. xfs_get_extsz_hint(
  55. xfs_inode_t *ip)
  56. {
  57. xfs_extlen_t extsz;
  58. if (unlikely(ip->i_d.di_flags & XFS_DIFLAG_REALTIME)) {
  59. extsz = (ip->i_d.di_flags & XFS_DIFLAG_EXTSIZE)
  60. ? ip->i_d.di_extsize
  61. : ip->i_mount->m_sb.sb_rextsize;
  62. ASSERT(extsz);
  63. } else {
  64. extsz = (ip->i_d.di_flags & XFS_DIFLAG_EXTSIZE)
  65. ? ip->i_d.di_extsize : 0;
  66. }
  67. return extsz;
  68. }
  69. /*
  70. * Prototypes for functions in xfs_rw.c.
  71. */
  72. extern int xfs_write_clear_setuid(struct xfs_inode *ip);
  73. extern int xfs_write_sync_logforce(struct xfs_mount *mp, struct xfs_inode *ip);
  74. extern int xfs_bwrite(struct xfs_mount *mp, struct xfs_buf *bp);
  75. extern int xfs_bioerror(struct xfs_buf *bp);
  76. extern int xfs_bioerror_relse(struct xfs_buf *bp);
  77. extern int xfs_read_buf(struct xfs_mount *mp, xfs_buftarg_t *btp,
  78. xfs_daddr_t blkno, int len, uint flags,
  79. struct xfs_buf **bpp);
  80. extern void xfs_ioerror_alert(char *func, struct xfs_mount *mp,
  81. xfs_buf_t *bp, xfs_daddr_t blkno);
  82. /*
  83. * Prototypes for functions in xfs_vnodeops.c.
  84. */
  85. extern int xfs_free_eofblocks(struct xfs_mount *mp, struct xfs_inode *ip,
  86. int flags);
  87. #endif /* __XFS_RW_H__ */