diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2020-09-18 16:45:50 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2020-09-18 16:45:50 -0400 |
commit | 6d1349c769ea28543bdde20a658cbc93c3bc936d (patch) | |
tree | b35159c21b17c48fdec6b5349a7b69682b882076 /fs/9p/vfs_super.c | |
parent | aabf59432c51be174994ecfe280f75ac139b5550 (diff) |
[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/9p/vfs_super.c')
-rw-r--r-- | fs/9p/vfs_super.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/9p/vfs_super.c b/fs/9p/vfs_super.c index 74df32be4c6a..124855b3324d 100644 --- a/fs/9p/vfs_super.c +++ b/fs/9p/vfs_super.c @@ -258,8 +258,7 @@ static int v9fs_statfs(struct dentry *dentry, struct kstatfs *buf) buf->f_bavail = rs.bavail; buf->f_files = rs.files; buf->f_ffree = rs.ffree; - buf->f_fsid.val[0] = rs.fsid & 0xFFFFFFFFUL; - buf->f_fsid.val[1] = (rs.fsid >> 32) & 0xFFFFFFFFUL; + buf->f_fsid = u64_to_fsid(rs.fsid); buf->f_namelen = rs.namelen; } if (res != -ENOSYS) |