diff options
author | Dave Chinner <dchinner@redhat.com> | 2012-04-23 01:59:02 -0400 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2012-05-14 17:20:58 -0400 |
commit | 2a0ec1d9ed7f3aa7974fccfbb612fadda2e10bad (patch) | |
tree | df922fdcf44b6b537b00668da1ffba98283727d1 /fs/xfs/xfs_inode.c | |
parent | fd50092c08068b5bc5d170bc17894db584aaf7b2 (diff) |
xfs: move xfs_get_extsz_hint() and kill xfs_rw.h
The only thing left in xfs_rw.h is a function prototype for an inode
function. Move that to xfs_inode.h, and kill xfs_rw.h.
Also move the function implementing the prototype from xfs_rw.c to
xfs_inode.c so we only have one function left in xfs_rw.c
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_inode.c')
-rw-r--r-- | fs/xfs/xfs_inode.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c index f64b482a7953..c6fb5f0577b8 100644 --- a/fs/xfs/xfs_inode.c +++ b/fs/xfs/xfs_inode.c | |||
@@ -61,6 +61,20 @@ STATIC int xfs_iformat_local(xfs_inode_t *, xfs_dinode_t *, int, int); | |||
61 | STATIC int xfs_iformat_extents(xfs_inode_t *, xfs_dinode_t *, int); | 61 | STATIC int xfs_iformat_extents(xfs_inode_t *, xfs_dinode_t *, int); |
62 | STATIC int xfs_iformat_btree(xfs_inode_t *, xfs_dinode_t *, int); | 62 | STATIC int xfs_iformat_btree(xfs_inode_t *, xfs_dinode_t *, int); |
63 | 63 | ||
64 | /* | ||
65 | * helper function to extract extent size hint from inode | ||
66 | */ | ||
67 | xfs_extlen_t | ||
68 | xfs_get_extsz_hint( | ||
69 | struct xfs_inode *ip) | ||
70 | { | ||
71 | if ((ip->i_d.di_flags & XFS_DIFLAG_EXTSIZE) && ip->i_d.di_extsize) | ||
72 | return ip->i_d.di_extsize; | ||
73 | if (XFS_IS_REALTIME_INODE(ip)) | ||
74 | return ip->i_mount->m_sb.sb_rextsize; | ||
75 | return 0; | ||
76 | } | ||
77 | |||
64 | #ifdef DEBUG | 78 | #ifdef DEBUG |
65 | /* | 79 | /* |
66 | * Make sure that the extents in the given memory buffer | 80 | * Make sure that the extents in the given memory buffer |