diff options
author | 2017-11-06 11:54:01 -0800 | |
---|---|---|
committer | 2017-11-06 11:57:39 -0800 | |
commit | e89fbb5ee1893f3cf5fad6a12e1f9e37b91cf69d (patch) | |
tree | 97f12a8e18990531c2780ef9ead4bbd00fdc9f79 | |
parent | xfs: mark xfs_btree_check_lblock and xfs_btree_check_ptr static (diff) | |
download | wireguard-linux-e89fbb5ee1893f3cf5fad6a12e1f9e37b91cf69d.tar.xz wireguard-linux-e89fbb5ee1893f3cf5fad6a12e1f9e37b91cf69d.zip |
xfs: mark xlog_recover_check_summary STATIC
We already did it in the forward declaration, but not for the function
body itself.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to '')
-rw-r--r-- | fs/xfs/xfs_log_recover.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c index 6e0e38b5b7ad..87b1c331f9eb 100644 --- a/fs/xfs/xfs_log_recover.c +++ b/fs/xfs/xfs_log_recover.c @@ -5825,7 +5825,7 @@ xlog_recover_cancel( * Read all of the agf and agi counters and check that they * are consistent with the superblock counters. */ -void +STATIC void xlog_recover_check_summary( struct xlog *log) { |