]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Linux 6.6 compat: use inode_get/set_ctime*(...)
authorColeman Kane <ckane@colemankane.org>
Tue, 12 Sep 2023 03:21:29 +0000 (23:21 -0400)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Fri, 22 Sep 2023 01:38:31 +0000 (18:38 -0700)
commitb37f29341b9aec1b6e45d55b6f7a1bc5b2723f7a
treeff8a76f28d1e48212f804e966872f205ef7fc85c
parent2dc89b922bd12f86db193b7cd8d87159dee93bc6
Linux 6.6 compat: use inode_get/set_ctime*(...)

In Linux commit 13bc24457850583a2e7203ded05b7209ab4bc5ef, direct access
to the i_ctime member of struct inode was removed. The new approach is
to use accessor methods that exclusively handle passing the timestamp
around by value. This change adds new tests for each of these functions
and introduces zpl_* equivalents in include/os/linux/zfs/sys/zpl.h. In
where the inode_get/set_ctime*() functions exist, these zpl_* calls will
be mapped to the new functions. On older kernels, these macros just wrap
direct-access calls. The code that operated on an address of ip->i_ctime
to call ZFS_TIME_DECODE() now will take a local copy using
zpl_inode_get_ctime(), and then pass the address of the local copy when
performing the ZFS_TIME_DECODE() call, in all cases, rather than
directly accessing the member.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Coleman Kane <ckane@colemankane.org>
Closes #15263
Closes #15257
config/kernel-inode-times.m4
include/os/linux/zfs/sys/zpl.h
module/os/linux/zfs/zfs_ctldir.c
module/os/linux/zfs/zfs_vnops_os.c
module/os/linux/zfs/zfs_znode.c
module/os/linux/zfs/zpl_inode.c
module/os/linux/zfs/zpl_xattr.c