linux-nilfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
  • [parent not found: <20230705185812.579118-2-jlayton@kernel.org>]
  • [parent not found: <20230705185812.579118-4-jlayton@kernel.org>]
  • [parent not found: <a4e6cfec345487fc9ac8ab814a817c79a61b123a.camel@kernel.org>]
  • * Re: [PATCH v2 00/89] fs: new accessors for inode->i_ctime
           [not found] <20230705185812.579118-1-jlayton@kernel.org>
                       ` (3 preceding siblings ...)
           [not found] ` <a4e6cfec345487fc9ac8ab814a817c79a61b123a.camel@kernel.org>
    @ 2023-07-07 12:42 ` Jeff Layton
      2023-07-10 12:35   ` Christian Brauner
      2023-07-10 12:18 ` [PATCH v2 00/92] " Christian Brauner
                       ` (2 subsequent siblings)
      7 siblings, 1 reply; 21+ messages in thread
    From: Jeff Layton @ 2023-07-07 12:42 UTC (permalink / raw)
      Cc: jk, arnd, mpe, npiggin, christophe.leroy, hca, gor, agordeev,
    	borntraeger, svens, gregkh, arve, tkjos, maco, joel, brauner,
    	cmllamas, surenb, dennis.dalessandro, jgg, leon, bwarrum,
    	rituagar, ericvh, lucho, asmadeus, linux_oss, dsterba, dhowells,
    	marc.dionne, viro, raven, luisbg, salah.triki, aivazian.tigran,
    	ebiederm, kees
    
    On Wed, 2023-07-05 at 14:58 -0400, Jeff Layton wrote:
    > v2:
    > - prepend patches to add missing ctime updates
    > - add simple_rename_timestamp helper function
    > - rename ctime accessor functions as inode_get_ctime/inode_set_ctime_*
    > - drop individual inode_ctime_set_{sec,nsec} helpers
    > 
    
    After review by Jan and others, and Jan's ext4 rework, the diff on top
    of the series I posted a couple of days ago is below. I don't really
    want to spam everyone with another ~100 patch v3 series, but I can if
    you think that's best.
    
    Christian, what would you like me to do here?
    
    diff --git a/fs/ceph/inode.c b/fs/ceph/inode.c
    index bcdb1a0beccf..5f6e93714f5a 100644
    --- a/fs/ceph/inode.c
    +++ b/fs/ceph/inode.c
    @@ -699,8 +699,7 @@ void ceph_fill_file_time(struct inode *inode, int issued,
     		if (ci->i_version == 0 ||
     		    timespec64_compare(ctime, &ictime) > 0) {
     			dout("ctime %lld.%09ld -> %lld.%09ld inc w/ cap\n",
    -			     inode_get_ctime(inode).tv_sec,
    -			     inode_get_ctime(inode).tv_nsec,
    +			     ictime.tv_sec, ictime.tv_nsec,
     			     ctime->tv_sec, ctime->tv_nsec);
     			inode_set_ctime_to_ts(inode, *ctime);
     		}
    diff --git a/fs/erofs/inode.c b/fs/erofs/inode.c
    index 806374d866d1..567c0d305ea4 100644
    --- a/fs/erofs/inode.c
    +++ b/fs/erofs/inode.c
    @@ -175,10 +175,7 @@ static void *erofs_read_inode(struct erofs_buf *buf,
     		vi->chunkbits = sb->s_blocksize_bits +
     			(vi->chunkformat & EROFS_CHUNK_FORMAT_BLKBITS_MASK);
     	}
    -	inode->i_mtime.tv_sec = inode_get_ctime(inode).tv_sec;
    -	inode->i_atime.tv_sec = inode_get_ctime(inode).tv_sec;
    -	inode->i_mtime.tv_nsec = inode_get_ctime(inode).tv_nsec;
    -	inode->i_atime.tv_nsec = inode_get_ctime(inode).tv_nsec;
    +	inode->i_mtime = inode->i_atime = inode_get_ctime(inode);
     
     	inode->i_flags &= ~S_DAX;
     	if (test_opt(&sbi->opt, DAX_ALWAYS) && S_ISREG(inode->i_mode) &&
    diff --git a/fs/exfat/namei.c b/fs/exfat/namei.c
    index c007de6ac1c7..1b9f587f6cca 100644
    --- a/fs/exfat/namei.c
    +++ b/fs/exfat/namei.c
    @@ -1351,7 +1351,7 @@ static int exfat_rename(struct mnt_idmap *idmap,
     			exfat_warn(sb, "abnormal access to an inode dropped");
     			WARN_ON(new_inode->i_nlink == 0);
     		}
    -		EXFAT_I(new_inode)->i_crtime = inode_set_ctime_current(new_inode);
    +		EXFAT_I(new_inode)->i_crtime = current_time(new_inode);
     	}
     
     unlock:
    diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h
    index d502b930431b..d63543187359 100644
    --- a/fs/ext4/ext4.h
    +++ b/fs/ext4/ext4.h
    @@ -868,64 +868,63 @@ struct ext4_inode {
      * affected filesystem before 2242.
      */
     
    -static inline __le32 ext4_encode_extra_time(struct timespec64 *time)
    +static inline __le32 ext4_encode_extra_time(struct timespec64 ts)
     {
    -	u32 extra =((time->tv_sec - (s32)time->tv_sec) >> 32) & EXT4_EPOCH_MASK;
    -	return cpu_to_le32(extra | (time->tv_nsec << EXT4_EPOCH_BITS));
    +	u32 extra = ((ts.tv_sec - (s32)ts.tv_sec) >> 32) & EXT4_EPOCH_MASK;
    +	return cpu_to_le32(extra | (ts.tv_nsec << EXT4_EPOCH_BITS));
     }
     
    -static inline void ext4_decode_extra_time(struct timespec64 *time,
    -					  __le32 extra)
    +static inline struct timespec64 ext4_decode_extra_time(__le32 base,
    +						       __le32 extra)
     {
    +	struct timespec64 ts = { .tv_sec = le32_to_cpu(base) };
    +
     	if (unlikely(extra & cpu_to_le32(EXT4_EPOCH_MASK)))
    -		time->tv_sec += (u64)(le32_to_cpu(extra) & EXT4_EPOCH_MASK) << 32;
    -	time->tv_nsec = (le32_to_cpu(extra) & EXT4_NSEC_MASK) >> EXT4_EPOCH_BITS;
    +		ts.tv_sec += (u64)(le32_to_cpu(extra) & EXT4_EPOCH_MASK) << 32;
    +	ts.tv_nsec = (le32_to_cpu(extra) & EXT4_NSEC_MASK) >> EXT4_EPOCH_BITS;
    +	return ts;
     }
     
    -#define EXT4_INODE_SET_XTIME(xtime, inode, raw_inode)				\
    +#define EXT4_INODE_SET_XTIME_VAL(xtime, inode, raw_inode, ts)			\
     do {										\
    -	if (EXT4_FITS_IN_INODE(raw_inode, EXT4_I(inode), xtime ## _extra))     {\
    -		(raw_inode)->xtime = cpu_to_le32((inode)->xtime.tv_sec);	\
    -		(raw_inode)->xtime ## _extra =					\
    -				ext4_encode_extra_time(&(inode)->xtime);	\
    -		}								\
    -	else	\
    -		(raw_inode)->xtime = cpu_to_le32(clamp_t(int32_t, (inode)->xtime.tv_sec, S32_MIN, S32_MAX));	\
    +	if (EXT4_FITS_IN_INODE(raw_inode, EXT4_I(inode), xtime ## _extra)) {	\
    +		(raw_inode)->xtime = cpu_to_le32((ts).tv_sec);			\
    +		(raw_inode)->xtime ## _extra = ext4_encode_extra_time(ts);	\
    +	} else									\
    +		(raw_inode)->xtime = cpu_to_le32(clamp_t(int32_t, (ts).tv_sec, S32_MIN, S32_MAX));	\
     } while (0)
     
    +#define EXT4_INODE_SET_XTIME(xtime, inode, raw_inode)				\
    +	EXT4_INODE_SET_XTIME_VAL(xtime, inode, raw_inode, (inode)->xtime)
    +
    +#define EXT4_INODE_SET_CTIME(inode, raw_inode)					\
    +	EXT4_INODE_SET_XTIME_VAL(i_ctime, inode, raw_inode, inode_get_ctime(inode))
    +
     #define EXT4_EINODE_SET_XTIME(xtime, einode, raw_inode)			       \
    -do {									       \
    -	if (EXT4_FITS_IN_INODE(raw_inode, einode, xtime))		       \
    -		(raw_inode)->xtime = cpu_to_le32((einode)->xtime.tv_sec);      \
    -	if (EXT4_FITS_IN_INODE(raw_inode, einode, xtime ## _extra))	       \
    -		(raw_inode)->xtime ## _extra =				       \
    -				ext4_encode_extra_time(&(einode)->xtime);      \
    -} while (0)
    +	EXT4_INODE_SET_XTIME_VAL(xtime, &((einode)->vfs_inode), raw_inode, (einode)->xtime)
    +
    +#define EXT4_INODE_GET_XTIME_VAL(xtime, inode, raw_inode)			\
    +	(EXT4_FITS_IN_INODE(raw_inode, EXT4_I(inode), xtime ## _extra) ?	\
    +		ext4_decode_extra_time((raw_inode)->xtime,				\
    +				       (raw_inode)->xtime ## _extra) :		\
    +		(struct timespec64) {						\
    +			.tv_sec = (signed)le32_to_cpu((raw_inode)->xtime)	\
    +		})
     
     #define EXT4_INODE_GET_XTIME(xtime, inode, raw_inode)				\
     do {										\
    -	(inode)->xtime.tv_sec = (signed)le32_to_cpu((raw_inode)->xtime);	\
    -	if (EXT4_FITS_IN_INODE(raw_inode, EXT4_I(inode), xtime ## _extra)) {	\
    -		ext4_decode_extra_time(&(inode)->xtime,				\
    -				       raw_inode->xtime ## _extra);		\
    -		}								\
    -	else									\
    -		(inode)->xtime.tv_nsec = 0;					\
    +	(inode)->xtime = EXT4_INODE_GET_XTIME_VAL(xtime, inode, raw_inode);	\
     } while (0)
     
    +#define EXT4_INODE_GET_CTIME(inode, raw_inode)					\
    +do {										\
    +	inode_set_ctime_to_ts(inode,						\
    +		EXT4_INODE_GET_XTIME_VAL(i_ctime, inode, raw_inode));		\
    +} while (0)
     
     #define EXT4_EINODE_GET_XTIME(xtime, einode, raw_inode)			       \
     do {									       \
    -	if (EXT4_FITS_IN_INODE(raw_inode, einode, xtime))		       \
    -		(einode)->xtime.tv_sec = 				       \
    -			(signed)le32_to_cpu((raw_inode)->xtime);	       \
    -	else								       \
    -		(einode)->xtime.tv_sec = 0;				       \
    -	if (EXT4_FITS_IN_INODE(raw_inode, einode, xtime ## _extra))	       \
    -		ext4_decode_extra_time(&(einode)->xtime,		       \
    -				       raw_inode->xtime ## _extra);	       \
    -	else								       \
    -		(einode)->xtime.tv_nsec = 0;				       \
    +	(einode)->xtime = EXT4_INODE_GET_XTIME_VAL(xtime, &(einode->vfs_inode), raw_inode);	\
     } while (0)
     
     #define i_disk_version osd1.linux1.l_i_version
    @@ -3823,27 +3822,6 @@ static inline int ext4_buffer_uptodate(struct buffer_head *bh)
     	return buffer_uptodate(bh);
     }
     
    -static inline void ext4_inode_set_ctime(struct inode *inode, struct ext4_inode *raw_inode)
    -{
    -	struct timespec64 ctime = inode_get_ctime(inode);
    -
    -	if (EXT4_FITS_IN_INODE(raw_inode, EXT4_I(inode), i_ctime_extra)) {
    -		raw_inode->i_ctime = cpu_to_le32(ctime.tv_sec);
    -		raw_inode->i_ctime_extra = ext4_encode_extra_time(&ctime);
    -	} else {
    -		raw_inode->i_ctime = cpu_to_le32(clamp_t(int32_t, ctime.tv_sec, S32_MIN, S32_MAX));
    -	}
    -}
    -
    -static inline void ext4_inode_get_ctime(struct inode *inode, const struct ext4_inode *raw_inode)
    -{
    -	struct timespec64 ctime = { .tv_sec = (signed)le32_to_cpu(raw_inode->i_ctime) };
    -
    -	if (EXT4_FITS_IN_INODE(raw_inode, EXT4_I(inode), i_ctime_extra))
    -		ext4_decode_extra_time(&ctime, raw_inode->i_ctime_extra);
    -	inode_set_ctime(inode, ctime.tv_sec, ctime.tv_nsec);
    -}
    -
     #endif	/* __KERNEL__ */
     
     #define EFSBADCRC	EBADMSG		/* Bad CRC detected */
    diff --git a/fs/ext4/inode-test.c b/fs/ext4/inode-test.c
    index 7935ea6cf92c..f0c0fd507fbc 100644
    --- a/fs/ext4/inode-test.c
    +++ b/fs/ext4/inode-test.c
    @@ -245,9 +245,9 @@ static void inode_test_xtimestamp_decoding(struct kunit *test)
     	struct timestamp_expectation *test_param =
     			(struct timestamp_expectation *)(test->param_value);
     
    -	timestamp.tv_sec = get_32bit_time(test_param);
    -	ext4_decode_extra_time(&timestamp,
    -			       cpu_to_le32(test_param->extra_bits));
    +	timestamp = ext4_decode_extra_time(
    +				cpu_to_le32(get_32bit_time(test_param)),
    +				cpu_to_le32(test_param->extra_bits));
     
     	KUNIT_EXPECT_EQ_MSG(test,
     			    test_param->expected.tv_sec,
    diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c
    index bbc57954dfd3..c6a837b90af4 100644
    --- a/fs/ext4/inode.c
    +++ b/fs/ext4/inode.c
    @@ -4249,7 +4249,7 @@ static int ext4_fill_raw_inode(struct inode *inode, struct ext4_inode *raw_inode
     	}
     	raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
     
    -	ext4_inode_set_ctime(inode, raw_inode);
    +	EXT4_INODE_SET_CTIME(inode, raw_inode);
     	EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
     	EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
     	EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
    @@ -4858,7 +4858,7 @@ struct inode *__ext4_iget(struct super_block *sb, unsigned long ino,
     		}
     	}
     
    -	ext4_inode_get_ctime(inode, raw_inode);
    +	EXT4_INODE_GET_CTIME(inode, raw_inode);
     	EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
     	EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
     	EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
    @@ -4981,7 +4981,7 @@ static void __ext4_update_other_inode_time(struct super_block *sb,
     		spin_unlock(&inode->i_lock);
     
     		spin_lock(&ei->i_raw_lock);
    -		ext4_inode_get_ctime(inode, raw_inode);
    +		EXT4_INODE_SET_CTIME(inode, raw_inode);
     		EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
     		EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
     		ext4_inode_csum_set(inode, raw_inode, ei);
    diff --git a/fs/fat/inode.c b/fs/fat/inode.c
    index 2be40ff8a74f..cdd39b6020f3 100644
    --- a/fs/fat/inode.c
    +++ b/fs/fat/inode.c
    @@ -1407,9 +1407,7 @@ static int fat_read_root(struct inode *inode)
     	MSDOS_I(inode)->mmu_private = inode->i_size;
     
     	fat_save_attrs(inode, ATTR_DIR);
    -	inode->i_mtime.tv_sec = inode->i_atime.tv_sec = inode_set_ctime(inode,
    -									0, 0).tv_sec;
    -	inode->i_mtime.tv_nsec = inode->i_atime.tv_nsec = 0;
    +	inode->i_mtime = inode->i_atime = inode_set_ctime(inode, 0, 0);
     	set_nlink(inode, fat_subdirs(inode)+2);
     
     	return 0;
    diff --git a/fs/hpfs/namei.c b/fs/hpfs/namei.c
    index 36babb78b510..f4eb8d6f5989 100644
    --- a/fs/hpfs/namei.c
    +++ b/fs/hpfs/namei.c
    @@ -15,8 +15,7 @@ static void hpfs_update_directory_times(struct inode *dir)
     	if (t == dir->i_mtime.tv_sec &&
     	    t == inode_get_ctime(dir).tv_sec)
     		return;
    -	dir->i_mtime.tv_sec = inode_set_ctime(dir, t, 0).tv_sec;
    -	dir->i_mtime.tv_nsec = 0;
    +	dir->i_mtime = inode_set_ctime(dir, t, 0);
     	hpfs_write_inode_nolock(dir);
     }
     
    @@ -59,11 +58,8 @@ static int hpfs_mkdir(struct mnt_idmap *idmap, struct inode *dir,
     	result->i_ino = fno;
     	hpfs_i(result)->i_parent_dir = dir->i_ino;
     	hpfs_i(result)->i_dno = dno;
    -	inode_set_ctime(result,
    -			result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb, le32_to_cpu(dee.creation_date)),
    -			0);
    -	result->i_mtime.tv_nsec = 0; 
    -	result->i_atime.tv_nsec = 0; 
    +	result->i_mtime = result->i_atime =
    +		inode_set_ctime(result, local_to_gmt(dir->i_sb, le32_to_cpu(dee.creation_date)), 0);
     	hpfs_i(result)->i_ea_size = 0;
     	result->i_mode |= S_IFDIR;
     	result->i_op = &hpfs_dir_iops;
    @@ -168,11 +164,8 @@ static int hpfs_create(struct mnt_idmap *idmap, struct inode *dir,
     	result->i_fop = &hpfs_file_ops;
     	set_nlink(result, 1);
     	hpfs_i(result)->i_parent_dir = dir->i_ino;
    -	inode_set_ctime(result,
    -			result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb, le32_to_cpu(dee.creation_date)),
    -			0);
    -	result->i_mtime.tv_nsec = 0;
    -	result->i_atime.tv_nsec = 0;
    +	result->i_mtime = result->i_atime =
    +		inode_set_ctime(result, local_to_gmt(dir->i_sb, le32_to_cpu(dee.creation_date)), 0);
     	hpfs_i(result)->i_ea_size = 0;
     	if (dee.read_only)
     		result->i_mode &= ~0222;
    @@ -252,11 +245,8 @@ static int hpfs_mknod(struct mnt_idmap *idmap, struct inode *dir,
     	hpfs_init_inode(result);
     	result->i_ino = fno;
     	hpfs_i(result)->i_parent_dir = dir->i_ino;
    -	inode_set_ctime(result,
    -			result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb, le32_to_cpu(dee.creation_date)),
    -			0);
    -	result->i_mtime.tv_nsec = 0;
    -	result->i_atime.tv_nsec = 0;
    +	result->i_mtime = result->i_atime =
    +		inode_set_ctime(result, local_to_gmt(dir->i_sb, le32_to_cpu(dee.creation_date)), 0);
     	hpfs_i(result)->i_ea_size = 0;
     	result->i_uid = current_fsuid();
     	result->i_gid = current_fsgid();
    @@ -329,11 +319,8 @@ static int hpfs_symlink(struct mnt_idmap *idmap, struct inode *dir,
     	result->i_ino = fno;
     	hpfs_init_inode(result);
     	hpfs_i(result)->i_parent_dir = dir->i_ino;
    -	inode_set_ctime(result,
    -			result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb, le32_to_cpu(dee.creation_date)),
    -			0);
    -	result->i_mtime.tv_nsec = 0;
    -	result->i_atime.tv_nsec = 0;
    +	result->i_mtime = result->i_atime =
    +		inode_set_ctime(result, local_to_gmt(dir->i_sb, le32_to_cpu(dee.creation_date)), 0);
     	hpfs_i(result)->i_ea_size = 0;
     	result->i_mode = S_IFLNK | 0777;
     	result->i_uid = current_fsuid();
    diff --git a/fs/isofs/inode.c b/fs/isofs/inode.c
    index 98a78200cff1..2ee21286ac8f 100644
    --- a/fs/isofs/inode.c
    +++ b/fs/isofs/inode.c
    @@ -1422,13 +1422,8 @@ static int isofs_read_inode(struct inode *inode, int relocated)
     			inode->i_ino, de->flags[-high_sierra]);
     	}
     #endif
    -
    -	inode->i_mtime.tv_sec =
    -	inode->i_atime.tv_sec = inode_set_ctime(inode,
    -						iso_date(de->date, high_sierra),
    -						0).tv_sec;
    -	inode->i_mtime.tv_nsec =
    -	inode->i_atime.tv_nsec = 0;
    +	inode->i_mtime = inode->i_atime =
    +		inode_set_ctime(inode, iso_date(de->date, high_sierra), 0);
     
     	ei->i_first_extent = (isonum_733(de->extent) +
     			isonum_711(de->ext_attr_length));
    diff --git a/fs/minix/inode.c b/fs/minix/inode.c
    index 3715a3940bd4..8a4fc9420b36 100644
    --- a/fs/minix/inode.c
    +++ b/fs/minix/inode.c
    @@ -501,11 +501,7 @@ static struct inode *V1_minix_iget(struct inode *inode)
     	i_gid_write(inode, raw_inode->i_gid);
     	set_nlink(inode, raw_inode->i_nlinks);
     	inode->i_size = raw_inode->i_size;
    -	inode->i_mtime.tv_sec = inode->i_atime.tv_sec = inode_set_ctime(inode,
    -									raw_inode->i_time,
    -									0).tv_sec;
    -	inode->i_mtime.tv_nsec = 0;
    -	inode->i_atime.tv_nsec = 0;
    +	inode->i_mtime = inode->i_atime = inode_set_ctime(inode, raw_inode->i_time, 0);
     	inode->i_blocks = 0;
     	for (i = 0; i < 9; i++)
     		minix_inode->u.i1_data[i] = raw_inode->i_zone[i];
    diff --git a/fs/overlayfs/file.c b/fs/overlayfs/file.c
    index 7acd3e3fe790..7e7876aae01c 100644
    --- a/fs/overlayfs/file.c
    +++ b/fs/overlayfs/file.c
    @@ -255,7 +255,7 @@ static void ovl_file_accessed(struct file *file)
     	if ((!timespec64_equal(&inode->i_mtime, &upperinode->i_mtime) ||
     	     !timespec64_equal(&ctime, &uctime))) {
     		inode->i_mtime = upperinode->i_mtime;
    -		inode_set_ctime_to_ts(inode, inode_get_ctime(upperinode));
    +		inode_set_ctime_to_ts(inode, uctime);
     	}
     
     	touch_atime(&file->f_path);
    diff --git a/fs/romfs/super.c b/fs/romfs/super.c
    index 961b9d342e0e..d89739655f9e 100644
    --- a/fs/romfs/super.c
    +++ b/fs/romfs/super.c
    @@ -322,8 +322,7 @@ static struct inode *romfs_iget(struct super_block *sb, unsigned long pos)
     
     	set_nlink(i, 1);		/* Hard to decide.. */
     	i->i_size = be32_to_cpu(ri.size);
    -	i->i_mtime.tv_sec = i->i_atime.tv_sec = inode_set_ctime(i, 0, 0).tv_sec;
    -	i->i_mtime.tv_nsec = i->i_atime.tv_nsec = 0;
    +	i->i_mtime = i->i_atime = inode_set_ctime(i, 0, 0);
     
     	/* set up mode and ops */
     	mode = romfs_modemap[nextfh & ROMFH_TYPE];
    diff --git a/fs/smb/client/fscache.h b/fs/smb/client/fscache.h
    index a228964bc2ce..84f3b09367d2 100644
    --- a/fs/smb/client/fscache.h
    +++ b/fs/smb/client/fscache.h
    @@ -56,7 +56,7 @@ void cifs_fscache_fill_coherency(struct inode *inode,
     	cd->last_write_time_sec   = cpu_to_le64(cifsi->netfs.inode.i_mtime.tv_sec);
     	cd->last_write_time_nsec  = cpu_to_le32(cifsi->netfs.inode.i_mtime.tv_nsec);
     	cd->last_change_time_sec  = cpu_to_le64(ctime.tv_sec);
    -	cd->last_change_time_nsec  = cpu_to_le64(ctime.tv_nsec);
    +	cd->last_change_time_nsec = cpu_to_le32(ctime.tv_nsec);
     }
     
     
    
    -- 
    Jeff Layton <jlayton@kernel.org>
    
    ^ permalink raw reply related	[flat|nested] 21+ messages in thread
  • * Re: [PATCH v2 00/92] fs: new accessors for inode->i_ctime
           [not found] <20230705185812.579118-1-jlayton@kernel.org>
                       ` (4 preceding siblings ...)
      2023-07-07 12:42 ` Jeff Layton
    @ 2023-07-10 12:18 ` Christian Brauner
           [not found] ` <20230705185812.579118-3-jlayton@kernel.org>
      2023-09-04 18:11 ` [f2fs-dev] [PATCH v2 00/89] fs: new accessors for inode->i_ctime patchwork-bot+f2fs
      7 siblings, 0 replies; 21+ messages in thread
    From: Christian Brauner @ 2023-07-10 12:18 UTC (permalink / raw)
      To: Jeff Layton
      Cc: Christian Brauner, jk, arnd, mpe, npiggin, christophe.leroy, hca,
    	gor, agordeev, borntraeger, svens, gregkh, arve, tkjos, maco,
    	joel, cmllamas, surenb, dennis.dalessandro, jgg, leon, bwarrum,
    	rituagar, ericvh, lucho, asmadeus, linux_oss, dsterba, dhowells,
    	marc.dionne, viro, raven, luisbg, salah.triki, aivazian.tigran,
    	ebiederm
    
    On Wed, 05 Jul 2023 14:58:09 -0400, Jeff Layton wrote:
    > v2:
    > - prepend patches to add missing ctime updates
    > - add simple_rename_timestamp helper function
    > - rename ctime accessor functions as inode_get_ctime/inode_set_ctime_*
    > - drop individual inode_ctime_set_{sec,nsec} helpers
    > 
    > I've been working on a patchset to change how the inode->i_ctime is
    > accessed in order to give us conditional, high-res timestamps for the
    > ctime and mtime. struct timespec64 has unused bits in it that we can use
    > to implement this. In order to do that however, we need to wrap all
    > accesses of inode->i_ctime to ensure that bits used as flags are
    > appropriately handled.
    > 
    > [...]
    
    Applied to the vfs.ctime branch of the vfs/vfs.git tree.
    Patches in the vfs.ctime branch should appear in linux-next soon.
    
    Please report any outstanding bugs that were missed during review in a
    new review to the original patch series allowing us to drop it.
    
    It's encouraged to provide Acked-bys and Reviewed-bys even though the
    patch has now been applied. If possible patch trailers will be updated.
    
    Note that commit hashes shown below are subject to change due to rebase,
    trailer updates or similar. If in doubt, please check the listed branch.
    
    tree:   https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs.git
    branch: vfs.ctime
    
    [01/92] ibmvmc: update ctime in conjunction with mtime on write
            https://git.kernel.org/vfs/vfs/c/ead310563ad2
    [02/92] bfs: update ctime in addition to mtime when adding entries
            https://git.kernel.org/vfs/vfs/c/f42faf14b838
    [03/92] efivarfs: update ctime when mtime changes on a write
            https://git.kernel.org/vfs/vfs/c/d8d026e0d1f2
    [04/92] exfat: ensure that ctime is updated whenever the mtime is
            https://git.kernel.org/vfs/vfs/c/d84bd8fa48d7
    [05/92] apparmor: update ctime whenever the mtime changes on an inode
            https://git.kernel.org/vfs/vfs/c/73955caedfae
    [06/92] cifs: update the ctime on a partial page write
            https://git.kernel.org/vfs/vfs/c/c2f784379c99
    [07/92] fs: add ctime accessors infrastructure
            https://git.kernel.org/vfs/vfs/c/64f0367de800
    [08/92] fs: new helper: simple_rename_timestamp
            https://git.kernel.org/vfs/vfs/c/54ced54a0239
    [09/92] btrfs: convert to simple_rename_timestamp
            https://git.kernel.org/vfs/vfs/c/218e0f662fee
    [10/92] ubifs: convert to simple_rename_timestamp
            https://git.kernel.org/vfs/vfs/c/caac4f65568d
    [11/92] shmem: convert to simple_rename_timestamp
            https://git.kernel.org/vfs/vfs/c/d3d11e9927b6
    [12/92] exfat: convert to simple_rename_timestamp
            https://git.kernel.org/vfs/vfs/c/71534b484c63
    [13/92] ntfs3: convert to simple_rename_timestamp
            https://git.kernel.org/vfs/vfs/c/140880821ce0
    [14/92] reiserfs: convert to simple_rename_timestamp
            https://git.kernel.org/vfs/vfs/c/1a1a4df5e8fc
    [15/92] spufs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/784e5a93c9cf
    [16/92] s390: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/1cece1f8e5c2
    [17/92] binderfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/0bcd830a76f3
    [18/92] infiniband: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/811f97f80b01
    [19/92] ibm: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/b447ed7597f0
    [20/92] usb: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/2557dc7f2dde
    [21/92] 9p: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/4cd4b11385ef
    [22/92] adfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/e257d7ade66e
    [23/92] affs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/770619f19a77
    [24/92] afs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/758506e44668
    [25/92] fs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/a0a5a9810b37
    [26/92] autofs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/d7d1363cc3f6
    [27/92] befs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/d6218773de2d
    [28/92] bfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/368b313ac2ab
    [29/92] btrfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/d3d15221956a
    [30/92] ceph: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/818fc6e0129a
    [31/92] coda: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/4e0b22fbc012
    [32/92] configfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/69c977798a6a
    [33/92] cramfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/911f086eae23
    [34/92] debugfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/634a50390dbb
    [35/92] devpts: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/92bb29a24707
    [36/92] ecryptfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/16d21856dfd6
    [37/92] efivarfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/cfeee05a50e1
    [38/92] efs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/3a30b097319f
    [39/92] erofs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/e3594996216f
    [40/92] exfat: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/8bd562d6f46d
    [41/92] ext2: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/7483252e8894
    [42/92] ext4: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/f2ddb05870fb
    [43/92] 9afc475653af f2fs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/f2ddb05870fb
    [44/92] fat: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/8a0c417b695b
    [45/92] freevxfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/7affaeb5b914
    [46/92] fuse: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/688279761436
    [47/92] gfs2: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/9e5b114b5ee4
    [48/92] hfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/d41f5876a177
    [49/92] hfsplus: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/147f3dd171d2
    [50/92] hostfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/2ceaa835b4f5
    [51/92] hpfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/e6fd7f49daa7
    [52/92] hugetlbfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/f5950f079b1a
    [53/92] isofs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/53f2bb3567f0
    [54/92] jffs2: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/7e8dc4ab1afb
    [55/92] jfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/77737373dbb3
    [56/92] kernfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/8b0e3c2e9900
    [57/92] nfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/12844cb15dc6
    [58/92] nfsd: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/f297728268bf
    [59/92] nilfs2: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/1e9f083bc9cd
    [60/92] ntfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/3cc66672eaa5
    [61/92] ntfs3: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/9438de01396e
    [62/92] ocfs2: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/da5b97da32e7
    [63/92] omfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/563d772c8d70
    [64/92] openpromfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/5f0978a6f0a6
    [65/92] orangefs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/6a83804b4325
    [66/92] overlayfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/60dcee636746
    [67/92] procfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/85e0a6b3b8cf
    [68/92] pstore: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/2b8125b5e7c6
    [69/92] qnx4: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/77eb00659cb5
    [70/92] qnx6: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/af1acd38df36
    [71/92] ramfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/0eb8012f4b0b
    [72/92] reiserfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/e3e5f5f70292
    [73/92] romfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/b6058a9af143
    [74/92] smb: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/d5c263f2187d
    [75/92] squashfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/eaace9c73ba8
    [76/92] sysv: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/41b6f4fbbe32
    [77/92] tracefs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/5f69a5364568
    [78/92] ubifs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/5bb225ba81c0
    [79/92] udf: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/e251f0e98433
    [80/92] ufs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/376ef9f6cab1
    [81/92] vboxsf: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/9f06612951d5
    [82/92] xfs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/4e8c1361146f
    [83/92] zonefs: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/cbdc6aa5f65d
    [84/92] linux: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/ff12abb4a71a
    [85/92] mqueue: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/a6b5a0055142
    [86/92] bpf: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/d2b6a0a3863a
    [87/92] shmem: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/ffcd778237d3
    [88/92] sunrpc: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/ccf1c9002d71
    [89/92] apparmor: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/ff91aaa76f1a
    [90/92] security: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/701071f9ad33
    [91/92] selinux: convert to ctime accessor functions
            https://git.kernel.org/vfs/vfs/c/cb6dfffdc7e9
    [92/92] fs: rename i_ctime field to __i_ctime
            https://git.kernel.org/vfs/vfs/c/c06d4bf5e207
    
    ^ permalink raw reply	[flat|nested] 21+ messages in thread
  • [parent not found: <20230705185812.579118-3-jlayton@kernel.org>]
  • * Re: [f2fs-dev] [PATCH v2 00/89] fs: new accessors for inode->i_ctime
           [not found] <20230705185812.579118-1-jlayton@kernel.org>
                       ` (6 preceding siblings ...)
           [not found] ` <20230705185812.579118-3-jlayton@kernel.org>
    @ 2023-09-04 18:11 ` patchwork-bot+f2fs
      7 siblings, 0 replies; 21+ messages in thread
    From: patchwork-bot+f2fs @ 2023-09-04 18:11 UTC (permalink / raw)
      To: Jeff Layton
      Cc: jk, arnd, mpe, npiggin, christophe.leroy, hca, gor, agordeev,
    	borntraeger, svens, gregkh, arve, tkjos, maco, joel, brauner,
    	cmllamas, surenb, dennis.dalessandro, jgg, leon, bwarrum,
    	rituagar, ericvh, lucho, asmadeus, linux_oss, dsterba, dhowells,
    	marc.dionne, viro, raven, luisbg, salah.triki, aivazian.tigran,
    	ebiederm, kees
    
    Hello:
    
    This series was applied to jaegeuk/f2fs.git (dev)
    by Christian Brauner <brauner@kernel.org>:
    
    On Wed,  5 Jul 2023 14:58:09 -0400 you wrote:
    > v2:
    > - prepend patches to add missing ctime updates
    > - add simple_rename_timestamp helper function
    > - rename ctime accessor functions as inode_get_ctime/inode_set_ctime_*
    > - drop individual inode_ctime_set_{sec,nsec} helpers
    > 
    > I've been working on a patchset to change how the inode->i_ctime is
    > accessed in order to give us conditional, high-res timestamps for the
    > ctime and mtime. struct timespec64 has unused bits in it that we can use
    > to implement this. In order to do that however, we need to wrap all
    > accesses of inode->i_ctime to ensure that bits used as flags are
    > appropriately handled.
    > 
    > [...]
    
    Here is the summary with links:
      - [f2fs-dev,v2,07/92] fs: add ctime accessors infrastructure
        https://git.kernel.org/jaegeuk/f2fs/c/9b6304c1d537
      - [f2fs-dev,v2,08/92] fs: new helper: simple_rename_timestamp
        https://git.kernel.org/jaegeuk/f2fs/c/0c4767923ed6
      - [f2fs-dev,v2,92/92] fs: rename i_ctime field to __i_ctime
        https://git.kernel.org/jaegeuk/f2fs/c/13bc24457850
    
    You are awesome, thank you!
    -- 
    Deet-doot-dot, I am a bot.
    https://korg.docs.kernel.org/patchwork/pwbot.html
    
    
    
    ^ permalink raw reply	[flat|nested] 21+ messages in thread

  • end of thread, other threads:[~2023-09-04 18:11 UTC | newest]
    
    Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
    -- links below jump to the message on this page --
         [not found] <20230705185812.579118-1-jlayton@kernel.org>
         [not found] ` <20230705185812.579118-1-jlayton-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
    2023-07-05 18:58   ` [PATCH v2 07/92] fs: add ctime accessors infrastructure Jeff Layton
    2023-07-05 18:58   ` [PATCH v2 08/92] fs: new helper: simple_rename_timestamp Jeff Layton
    2023-07-05 18:58   ` [PATCH v2 92/92] fs: rename i_ctime field to __i_ctime Jeff Layton
    2023-07-05 21:57   ` [PATCH v2 00/89] fs: new accessors for inode->i_ctime Jeff Layton
         [not found] ` <20230705185812.579118-2-jlayton@kernel.org>
         [not found]   ` <20230705185812.579118-2-jlayton-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
    2023-07-05 23:12     ` [PATCH v2 07/92] fs: add ctime accessors infrastructure Damien Le Moal
         [not found] ` <20230705185812.579118-4-jlayton@kernel.org>
         [not found]   ` <20230705185812.579118-4-jlayton-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
    2023-07-05 23:19     ` [PATCH v2 92/92] fs: rename i_ctime field to __i_ctime Damien Le Moal
    2023-07-06 14:58   ` Jan Kara
         [not found] ` <a4e6cfec345487fc9ac8ab814a817c79a61b123a.camel@kernel.org>
         [not found]   ` <a4e6cfec345487fc9ac8ab814a817c79a61b123a.camel-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
    2023-07-06 15:16     ` [PATCH v2 00/89] fs: new accessors for inode->i_ctime Eric W. Biederman
    2023-07-06 16:14       ` Jeff Layton
    2023-07-07 12:42 ` Jeff Layton
    2023-07-10 12:35   ` Christian Brauner
    2023-07-10 13:32     ` Jeff Layton
    2023-07-10 12:18 ` [PATCH v2 00/92] " Christian Brauner
         [not found] ` <20230705185812.579118-3-jlayton@kernel.org>
         [not found]   ` <20230705185812.579118-3-jlayton-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
    2023-07-05 23:19     ` [PATCH v2 08/92] fs: new helper: simple_rename_timestamp Damien Le Moal
    2023-07-06 10:27     ` Jan Kara
         [not found]   ` <3b403ef1-22e6-0220-6c9c-435e3444b4d3@kernel.org>
         [not found]     ` <3b403ef1-22e6-0220-6c9c-435e3444b4d3-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
    2023-07-06  0:04       ` Jeff Layton
         [not found]     ` <7c783969641b67d6ffdfb10e509f382d083c5291.camel@kernel.org>
    2023-07-06 21:02       ` [apparmor] " Seth Arnold
    2023-07-07 10:50         ` Jeff Layton
    2023-08-30  0:19   ` Al Viro
    2023-08-30  0:48     ` Jeff Layton
    2023-09-04 18:11 ` [f2fs-dev] [PATCH v2 00/89] fs: new accessors for inode->i_ctime patchwork-bot+f2fs
    

    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).