]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | /* |
1e69dd0e | 2 | * Copyright (c) 2000-2006 Silicon Graphics, Inc. |
7b718769 | 3 | * All Rights Reserved. |
1da177e4 | 4 | * |
7b718769 NS |
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 | |
1da177e4 LT |
7 | * published by the Free Software Foundation. |
8 | * | |
7b718769 NS |
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. | |
1da177e4 | 13 | * |
7b718769 NS |
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 | |
1da177e4 LT |
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 | ||
1da177e4 LT |
25 | /* |
26 | * Convert the given file system block to a disk block. | |
27 | * We have to treat it differently based on whether the | |
28 | * file is a real time file or not, because the bmap code | |
29 | * does. | |
30 | */ | |
1da177e4 | 31 | #define XFS_FSB_TO_DB(ip,fsb) xfs_fsb_to_db(ip,fsb) |
a844f451 NS |
32 | static inline xfs_daddr_t |
33 | xfs_fsb_to_db(struct xfs_inode *ip, xfs_fsblock_t fsb) | |
34 | { | |
71ddabb9 | 35 | return (XFS_IS_REALTIME_INODE(ip) ? \ |
1da177e4 | 36 | (xfs_daddr_t)XFS_FSB_TO_BB((ip)->i_mount, (fsb)) : \ |
a844f451 NS |
37 | XFS_FSB_TO_DADDR((ip)->i_mount, (fsb))); |
38 | } | |
1da177e4 | 39 | |
92dfe8d2 DC |
40 | /* |
41 | * Flags for xfs_free_eofblocks | |
42 | */ | |
43 | #define XFS_FREE_EOF_LOCK (1<<0) | |
44 | #define XFS_FREE_EOF_NOLOCK (1<<1) | |
45 | ||
957d0ebe DC |
46 | |
47 | /* | |
48 | * helper function to extract extent size hint from inode | |
49 | */ | |
50 | STATIC_INLINE xfs_extlen_t | |
51 | xfs_get_extsz_hint( | |
52 | xfs_inode_t *ip) | |
53 | { | |
54 | xfs_extlen_t extsz; | |
55 | ||
71ddabb9 | 56 | if (unlikely(XFS_IS_REALTIME_INODE(ip))) { |
957d0ebe DC |
57 | extsz = (ip->i_d.di_flags & XFS_DIFLAG_EXTSIZE) |
58 | ? ip->i_d.di_extsize | |
59 | : ip->i_mount->m_sb.sb_rextsize; | |
60 | ASSERT(extsz); | |
61 | } else { | |
62 | extsz = (ip->i_d.di_flags & XFS_DIFLAG_EXTSIZE) | |
63 | ? ip->i_d.di_extsize : 0; | |
64 | } | |
65 | return extsz; | |
66 | } | |
67 | ||
1da177e4 LT |
68 | /* |
69 | * Prototypes for functions in xfs_rw.c. | |
70 | */ | |
a844f451 | 71 | extern int xfs_write_clear_setuid(struct xfs_inode *ip); |
1e69dd0e | 72 | extern int xfs_write_sync_logforce(struct xfs_mount *mp, struct xfs_inode *ip); |
a844f451 NS |
73 | extern int xfs_bwrite(struct xfs_mount *mp, struct xfs_buf *bp); |
74 | extern int xfs_bioerror(struct xfs_buf *bp); | |
75 | extern int xfs_bioerror_relse(struct xfs_buf *bp); | |
76 | extern int xfs_read_buf(struct xfs_mount *mp, xfs_buftarg_t *btp, | |
77 | xfs_daddr_t blkno, int len, uint flags, | |
78 | struct xfs_buf **bpp); | |
79 | extern void xfs_ioerror_alert(char *func, struct xfs_mount *mp, | |
80 | xfs_buf_t *bp, xfs_daddr_t blkno); | |
1da177e4 LT |
81 | |
82 | /* | |
83 | * Prototypes for functions in xfs_vnodeops.c. | |
84 | */ | |
92dfe8d2 DC |
85 | extern int xfs_free_eofblocks(struct xfs_mount *mp, struct xfs_inode *ip, |
86 | int flags); | |
1da177e4 LT |
87 | |
88 | #endif /* __XFS_RW_H__ */ |