From: Christoph Hellwig Date: Mon, 6 Nov 2017 19:54:01 +0000 (-0800) Subject: xfs: mark xfs_btree_check_lblock and xfs_btree_check_ptr static X-Git-Tag: v4.19~2220^2~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4483eb566b2c045f69f2fa01629aca7772cdf95e;p=platform%2Fkernel%2Flinux-rpi.git xfs: mark xfs_btree_check_lblock and xfs_btree_check_ptr static Signed-off-by: Christoph Hellwig Reviewed-by: Darrick J. Wong Signed-off-by: Darrick J. Wong --- diff --git a/fs/xfs/libxfs/xfs_btree.c b/fs/xfs/libxfs/xfs_btree.c index 994fc1c..5f33adf8 100644 --- a/fs/xfs/libxfs/xfs_btree.c +++ b/fs/xfs/libxfs/xfs_btree.c @@ -109,7 +109,7 @@ __xfs_btree_check_lblock( } /* Check a long btree block header. */ -int +static int xfs_btree_check_lblock( struct xfs_btree_cur *cur, struct xfs_btree_block *block, @@ -239,7 +239,7 @@ xfs_btree_check_sptr( * Check that a given (indexed) btree pointer at a certain level of a * btree is valid and doesn't point past where it should. */ -int +static int xfs_btree_check_ptr( struct xfs_btree_cur *cur, union xfs_btree_ptr *ptr,