Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 1e69dd0 | 2006-06-19 08:39:53 +1000 | [diff] [blame] | 2 | * Copyright (c) 2000-2006 Silicon Graphics, Inc. |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 3 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. |
| 8 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
| 18 | #ifndef __XFS_RW_H__ |
| 19 | #define __XFS_RW_H__ |
| 20 | |
| 21 | struct xfs_buf; |
| 22 | struct xfs_inode; |
| 23 | struct xfs_mount; |
| 24 | |
| 25 | /* |
| 26 | * Maximum count of bmaps used by read and write paths. |
| 27 | */ |
| 28 | #define XFS_MAX_RW_NBMAPS 4 |
| 29 | |
| 30 | /* |
| 31 | * Counts of readahead buffers to use based on physical memory size. |
| 32 | * None of these should be more than XFS_MAX_RW_NBMAPS. |
| 33 | */ |
| 34 | #define XFS_RW_NREADAHEAD_16MB 2 |
| 35 | #define XFS_RW_NREADAHEAD_32MB 3 |
| 36 | #define XFS_RW_NREADAHEAD_K32 4 |
| 37 | #define XFS_RW_NREADAHEAD_K64 4 |
| 38 | |
| 39 | /* |
| 40 | * Maximum size of a buffer that we\'ll map. Making this |
| 41 | * too big will degrade performance due to the number of |
| 42 | * pages which need to be gathered. Making it too small |
| 43 | * will prevent us from doing large I/O\'s to hardware that |
| 44 | * needs it. |
| 45 | * |
| 46 | * This is currently set to 512 KB. |
| 47 | */ |
| 48 | #define XFS_MAX_BMAP_LEN_BB 1024 |
| 49 | #define XFS_MAX_BMAP_LEN_BYTES 524288 |
| 50 | |
| 51 | /* |
| 52 | * Convert the given file system block to a disk block. |
| 53 | * We have to treat it differently based on whether the |
| 54 | * file is a real time file or not, because the bmap code |
| 55 | * does. |
| 56 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #define XFS_FSB_TO_DB(ip,fsb) xfs_fsb_to_db(ip,fsb) |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 58 | static inline xfs_daddr_t |
| 59 | xfs_fsb_to_db(struct xfs_inode *ip, xfs_fsblock_t fsb) |
| 60 | { |
| 61 | return (((ip)->i_d.di_flags & XFS_DIFLAG_REALTIME) ? \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | (xfs_daddr_t)XFS_FSB_TO_BB((ip)->i_mount, (fsb)) : \ |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 63 | XFS_FSB_TO_DADDR((ip)->i_mount, (fsb))); |
| 64 | } |
| 65 | #define XFS_FSB_TO_DB_IO(io,fsb) xfs_fsb_to_db_io(io,fsb) |
| 66 | static inline xfs_daddr_t |
| 67 | xfs_fsb_to_db_io(struct xfs_iocore *io, xfs_fsblock_t fsb) |
| 68 | { |
| 69 | return (((io)->io_flags & XFS_IOCORE_RT) ? \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | XFS_FSB_TO_BB((io)->io_mount, (fsb)) : \ |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 71 | XFS_FSB_TO_DADDR((io)->io_mount, (fsb))); |
| 72 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
| 74 | /* |
David Chinner | 92dfe8d | 2007-05-24 15:22:19 +1000 | [diff] [blame] | 75 | * Flags for xfs_free_eofblocks |
| 76 | */ |
| 77 | #define XFS_FREE_EOF_LOCK (1<<0) |
| 78 | #define XFS_FREE_EOF_NOLOCK (1<<1) |
| 79 | |
David Chinner | 957d0eb | 2007-06-18 16:50:37 +1000 | [diff] [blame^] | 80 | |
| 81 | /* |
| 82 | * helper function to extract extent size hint from inode |
| 83 | */ |
| 84 | STATIC_INLINE xfs_extlen_t |
| 85 | xfs_get_extsz_hint( |
| 86 | xfs_inode_t *ip) |
| 87 | { |
| 88 | xfs_extlen_t extsz; |
| 89 | |
| 90 | if (unlikely(ip->i_d.di_flags & XFS_DIFLAG_REALTIME)) { |
| 91 | extsz = (ip->i_d.di_flags & XFS_DIFLAG_EXTSIZE) |
| 92 | ? ip->i_d.di_extsize |
| 93 | : ip->i_mount->m_sb.sb_rextsize; |
| 94 | ASSERT(extsz); |
| 95 | } else { |
| 96 | extsz = (ip->i_d.di_flags & XFS_DIFLAG_EXTSIZE) |
| 97 | ? ip->i_d.di_extsize : 0; |
| 98 | } |
| 99 | return extsz; |
| 100 | } |
| 101 | |
David Chinner | 92dfe8d | 2007-05-24 15:22:19 +1000 | [diff] [blame] | 102 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | * Prototypes for functions in xfs_rw.c. |
| 104 | */ |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 105 | extern int xfs_write_clear_setuid(struct xfs_inode *ip); |
Nathan Scott | 1e69dd0 | 2006-06-19 08:39:53 +1000 | [diff] [blame] | 106 | extern int xfs_write_sync_logforce(struct xfs_mount *mp, struct xfs_inode *ip); |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 107 | extern int xfs_bwrite(struct xfs_mount *mp, struct xfs_buf *bp); |
| 108 | extern int xfs_bioerror(struct xfs_buf *bp); |
| 109 | extern int xfs_bioerror_relse(struct xfs_buf *bp); |
| 110 | extern int xfs_read_buf(struct xfs_mount *mp, xfs_buftarg_t *btp, |
| 111 | xfs_daddr_t blkno, int len, uint flags, |
| 112 | struct xfs_buf **bpp); |
| 113 | extern void xfs_ioerror_alert(char *func, struct xfs_mount *mp, |
| 114 | xfs_buf_t *bp, xfs_daddr_t blkno); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
| 116 | /* |
| 117 | * Prototypes for functions in xfs_vnodeops.c. |
| 118 | */ |
Nathan Scott | 8285fb5 | 2006-06-09 17:07:12 +1000 | [diff] [blame] | 119 | extern int xfs_rwlock(bhv_desc_t *bdp, bhv_vrwlock_t write_lock); |
| 120 | extern void xfs_rwunlock(bhv_desc_t *bdp, bhv_vrwlock_t write_lock); |
| 121 | extern int xfs_setattr(bhv_desc_t *, bhv_vattr_t *vap, int flags, |
David Chinner | 92dfe8d | 2007-05-24 15:22:19 +1000 | [diff] [blame] | 122 | cred_t *credp); |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 123 | extern int xfs_change_file_space(bhv_desc_t *bdp, int cmd, xfs_flock64_t *bf, |
David Chinner | 92dfe8d | 2007-05-24 15:22:19 +1000 | [diff] [blame] | 124 | xfs_off_t offset, cred_t *credp, int flags); |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 125 | extern int xfs_set_dmattrs(bhv_desc_t *bdp, u_int evmask, u_int16_t state, |
David Chinner | 92dfe8d | 2007-05-24 15:22:19 +1000 | [diff] [blame] | 126 | cred_t *credp); |
| 127 | extern int xfs_free_eofblocks(struct xfs_mount *mp, struct xfs_inode *ip, |
| 128 | int flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
| 130 | #endif /* __XFS_RW_H__ */ |