linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fat: set s_time_gran for msdos or vfat mounts
@ 2018-03-26 21:23 Frank Sorenson
  0 siblings, 0 replies; only message in thread
From: Frank Sorenson @ 2018-03-26 21:23 UTC (permalink / raw)
  To: linux-fsdevel, OGAWA Hirofumi

Author: Frank Sorenson <sorenson@redhat.com>
Date:   2018-01-23 15:51:37 -0600

    fat: set the s_time_gran for msdos or vfat mounts
    
    For vfat, ctime granularity is 10ms; set the
    super_block's s_time_gran to 10ms for vfat and
    1 second for msdos mounts.
    
    Signed-off-by: Frank Sorenson <sorenson@redhat.com>

diff --git a/fs/fat/inode.c b/fs/fat/inode.c
index 20a0a89eaca5..ff10cdf07a93 100644
--- a/fs/fat/inode.c
+++ b/fs/fat/inode.c
@@ -1612,6 +1612,7 @@ int fat_fill_super(struct super_block *sb, void *data, int silent, int isvfat,
 	sb->s_magic = MSDOS_SUPER_MAGIC;
 	sb->s_op = &fat_sops;
 	sb->s_export_op = &fat_export_ops;
+	sb->s_time_gran = isvfat ? 10000000 : 1000000000;
 	mutex_init(&sbi->nfs_build_inode_lock);
 	ratelimit_state_init(&sbi->ratelimit, DEFAULT_RATELIMIT_INTERVAL,
 			     DEFAULT_RATELIMIT_BURST);

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2018-03-26 21:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-26 21:23 [PATCH] fat: set s_time_gran for msdos or vfat mounts Frank Sorenson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).