diff options
author | Eric Sandeen <sandeen@sandeen.net> | 2016-06-01 03:38:15 -0400 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2016-06-01 03:38:15 -0400 |
commit | 0d5a75e9e23ee39cd0d8a167393dcedb4f0f47b2 (patch) | |
tree | d9939f394f84061b34691df16c894d99ea29e731 /fs/xfs/xfs_bmap_util.h | |
parent | 0c871f9a101a290e61af02df49087d118543caeb (diff) |
xfs: make several functions static
Al Viro noticed that xfs_lock_inodes should be static, and
that led to ... a few more.
These are just the easy ones, others require moving functions
higher in source files, so that's not done here to keep
this review simple.
Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_bmap_util.h')
-rw-r--r-- | fs/xfs/xfs_bmap_util.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/xfs/xfs_bmap_util.h b/fs/xfs/xfs_bmap_util.h index af97d9a1dfb4..149234824070 100644 --- a/fs/xfs/xfs_bmap_util.h +++ b/fs/xfs/xfs_bmap_util.h | |||
@@ -31,8 +31,6 @@ struct xfs_bmalloca; | |||
31 | int xfs_bmap_rtalloc(struct xfs_bmalloca *ap); | 31 | int xfs_bmap_rtalloc(struct xfs_bmalloca *ap); |
32 | int xfs_bmap_eof(struct xfs_inode *ip, xfs_fileoff_t endoff, | 32 | int xfs_bmap_eof(struct xfs_inode *ip, xfs_fileoff_t endoff, |
33 | int whichfork, int *eof); | 33 | int whichfork, int *eof); |
34 | int xfs_bmap_count_blocks(struct xfs_trans *tp, struct xfs_inode *ip, | ||
35 | int whichfork, int *count); | ||
36 | int xfs_bmap_punch_delalloc_range(struct xfs_inode *ip, | 34 | int xfs_bmap_punch_delalloc_range(struct xfs_inode *ip, |
37 | xfs_fileoff_t start_fsb, xfs_fileoff_t length); | 35 | xfs_fileoff_t start_fsb, xfs_fileoff_t length); |
38 | 36 | ||