diff options
author | Christoph Hellwig | 2023-08-09 15:05:33 -0700 |
---|---|---|
committer | Christian Brauner | 2023-08-10 10:34:53 +0200 |
commit | dbbff489064d89391c4f0c7a73e77e61ce29fe96 (patch) | |
tree | dd994b7df85478c124e3dc605e863809a1a2c245 /fs | |
parent | 6a3207395563f724d91231ec0aa7c4d95bf9591d (diff) |
xfs: reformat the xfs_fs_free prototype
The xfs_fs_free prototype formatting is a weird mix of the classic XFS
style and the Linux style. Fix it up to be consistent.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>
Message-Id: <20230809220545.1308228-2-hch@lst.de>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/xfs/xfs_super.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c index 818510243130..79c1dd9435c2 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c @@ -1934,7 +1934,8 @@ xfs_fs_reconfigure( return 0; } -static void xfs_fs_free( +static void +xfs_fs_free( struct fs_context *fc) { struct xfs_mount *mp = fc->s_fs_info; |