VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   57 Tags
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 parent: aabf59432c51be174994ecfe280f75ac139b5550
Commit Summary:
[PATCH] reduce boilerplate in fsid handling
Diffstat:
1 file changed, 1 insertion, 2 deletions
diff --git a/fs/ext2/super.c b/fs/ext2/super.c
index dda860562ca3..4911c59679bb 100644
--- a/fs/ext2/super.c
+++ b/fs/ext2/super.c
@@ -1455,8 +1455,7 @@ static int ext2_statfs (struct dentry * dentry, struct kstatfs * buf)
 	buf->f_namelen = EXT2_NAME_LEN;
 	fsid = le64_to_cpup((void *)es->s_uuid) ^
 	       le64_to_cpup((void *)es->s_uuid + sizeof(u64));
-	buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
-	buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
+	buf->f_fsid = u64_to_fsid(fsid);
 	spin_unlock(&sbi->s_lock);
 	return 0;
 }