diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2020-09-18 22:45:50 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2020-09-18 22:45:50 +0200 |
commit | 6d1349c769ea28543bdde20a658cbc93c3bc936d (patch) | |
tree | b35159c21b17c48fdec6b5349a7b69682b882076 /fs/xfs/xfs_super.c | |
parent | fs: Remove duplicated flag O_NDELAY occurring twice in VALID_OPEN_FLAGS (diff) | |
download | linux-6d1349c769ea28543bdde20a658cbc93c3bc936d.tar.xz linux-6d1349c769ea28543bdde20a658cbc93c3bc936d.zip |
[PATCH] reduce boilerplate in fsid handling
Get rid of boilerplate in most of ->statfs()
instances...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/xfs/xfs_super.c')
-rw-r--r-- | fs/xfs/xfs_super.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c index 71ac6c1cdc36..2e04dfc373c1 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c @@ -794,8 +794,7 @@ xfs_fs_statfs( statp->f_namelen = MAXNAMELEN - 1; id = huge_encode_dev(mp->m_ddev_targp->bt_dev); - statp->f_fsid.val[0] = (u32)id; - statp->f_fsid.val[1] = (u32)(id >> 32); + statp->f_fsid = u64_to_fsid(id); icount = percpu_counter_sum(&mp->m_icount); ifree = percpu_counter_sum(&mp->m_ifree); |