diff options
author | Christoph Hellwig <hch@lst.de> | 2017-11-06 11:54:01 -0800 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2017-11-06 11:57:39 -0800 |
commit | e89fbb5ee1893f3cf5fad6a12e1f9e37b91cf69d (patch) | |
tree | 97f12a8e18990531c2780ef9ead4bbd00fdc9f79 /fs | |
parent | 4483eb566b2c045f69f2fa01629aca7772cdf95e (diff) | |
download | linux-e89fbb5ee1893f3cf5fad6a12e1f9e37b91cf69d.tar.bz2 |
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 'fs')
-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) { |