aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_iomap.c
diff options
context:
space:
mode:
authorMark Tinguely <tinguely@sgi.com>2013-02-24 13:04:37 -0600
committerBen Myers <bpm@sgi.com>2013-03-18 13:38:50 -0500
commit3325beed46d8d14d873e94d89ea57ee900dec942 (patch)
treea141b731fc45732c6e0abda9d66d710f840d017c /fs/xfs/xfs_iomap.c
parentxfs: fix potential infinite loop in xfs_iomap_prealloc_size() (diff)
downloadlinux-dev-3325beed46d8d14d873e94d89ea57ee900dec942.tar.xz
linux-dev-3325beed46d8d14d873e94d89ea57ee900dec942.zip
xfs: fix xfs_iomap_eof_prealloc_initial_size type
Fix the return type of xfs_iomap_eof_prealloc_initial_size() to xfs_fsblock_t to reflect the fact that the return value may be an unsigned 64 bits if XFS_BIG_BLKNOS is defined. Signed-off-by: Mark Tinguely <tinguely@sgi.com> Reviewed-by: Dave Chinner <dchinner@redhat.com> Signed-off-by: Ben Myers <bpm@sgi.com> (cherry picked from commit e8108cedb1c5d1dc359690d18ca997e97a0061d2)
Diffstat (limited to '')
-rw-r--r--fs/xfs/xfs_iomap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_iomap.c b/fs/xfs/xfs_iomap.c
index b0b0f448e843..5a30dd899d2b 100644
--- a/fs/xfs/xfs_iomap.c
+++ b/fs/xfs/xfs_iomap.c
@@ -325,7 +325,7 @@ xfs_iomap_eof_want_preallocate(
* rather than falling short due to things like stripe unit/width alignment of
* real extents.
*/
-STATIC int
+STATIC xfs_fsblock_t
xfs_iomap_eof_prealloc_initial_size(
struct xfs_mount *mp,
struct xfs_inode *ip,