aboutsummaryrefslogtreecommitdiffstats
path: root/fs/hpfs
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2020-09-18 16:45:50 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2020-09-18 16:45:50 -0400
commit6d1349c769ea28543bdde20a658cbc93c3bc936d (patch)
treeb35159c21b17c48fdec6b5349a7b69682b882076 /fs/hpfs
parentfs: Remove duplicated flag O_NDELAY occurring twice in VALID_OPEN_FLAGS (diff)
downloadlinux-dev-6d1349c769ea28543bdde20a658cbc93c3bc936d.tar.xz
linux-dev-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/hpfs')
-rw-r--r--fs/hpfs/super.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/hpfs/super.c b/fs/hpfs/super.c
index 0a677a9aaf34..a7dbfc892022 100644
--- a/fs/hpfs/super.c
+++ b/fs/hpfs/super.c
@@ -192,8 +192,7 @@ static int hpfs_statfs(struct dentry *dentry, struct kstatfs *buf)
buf->f_bavail = sbi->sb_n_free;
buf->f_files = sbi->sb_dirband_size / 4;
buf->f_ffree = hpfs_get_free_dnodes(s);
- buf->f_fsid.val[0] = (u32)id;
- buf->f_fsid.val[1] = (u32)(id >> 32);
+ buf->f_fsid = u64_to_fsid(id);
buf->f_namelen = 254;
hpfs_unlock(s);