VisionFive2 Linux kernel

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

More than 9999 Commits   32 Branches   54 Tags
author: Deepa Dinamani <deepa.kernel@gmail.com> 2019-07-30 08:22:29 -0700 committer: Deepa Dinamani <deepa.kernel@gmail.com> 2019-08-30 07:27:17 -0700 commit: 22b139691f9eb8b9d0bfd7341fa7436cb7a9491d parent: 42e729b9ddbbc40e5732f062ef2fa0554c652fb5
Commit Summary:
fs: Fill in max and min timestamps in superblock
Diffstat:
1 file changed, 2 insertions, 0 deletions
diff --git a/fs/freevxfs/vxfs_super.c b/fs/freevxfs/vxfs_super.c
index a89f68c3cbed..578a5062706e 100644
--- a/fs/freevxfs/vxfs_super.c
+++ b/fs/freevxfs/vxfs_super.c
@@ -229,6 +229,8 @@ static int vxfs_fill_super(struct super_block *sbp, void *dp, int silent)
 
 	sbp->s_op = &vxfs_super_ops;
 	sbp->s_fs_info = infp;
+	sbp->s_time_min = 0;
+	sbp->s_time_max = U32_MAX;
 
 	if (!vxfs_try_sb_magic(sbp, silent, 1,
 			(__force __fs32)cpu_to_le32(VXFS_SUPER_MAGIC))) {