From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Jeff Layton <jlayton@kernel.org>,
Christian Brauner <brauner@kernel.org>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.6 174/192] ocfs2: convert to new timestamp accessors
Date: Tue, 25 Jun 2024 11:34:06 +0200 [thread overview]
Message-ID: <20240625085543.839128614@linuxfoundation.org> (raw)
In-Reply-To: <20240625085537.150087723@linuxfoundation.org>
6.6-stable review patch. If anyone has any objections, please let me know.
------------------
From: Jeff Layton <jlayton@kernel.org>
[ Upstream commit fd6acbbc4d1edb218ade7ac0ab1839f9e4fcd094 ]
Convert to using the new inode timestamp accessor functions.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Link: https://lore.kernel.org/r/20231004185347.80880-54-jlayton@kernel.org
Signed-off-by: Christian Brauner <brauner@kernel.org>
Stable-dep-of: 8c40984eeb88 ("ocfs2: update inode fsync transaction id in ocfs2_unlink and ocfs2_link")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
fs/ocfs2/acl.c | 4 ++--
fs/ocfs2/alloc.c | 6 +++---
fs/ocfs2/aops.c | 6 +++---
fs/ocfs2/dir.c | 9 +++++----
fs/ocfs2/dlmfs/dlmfs.c | 4 ++--
fs/ocfs2/dlmglue.c | 29 ++++++++++++++---------------
fs/ocfs2/file.c | 30 ++++++++++++++++--------------
fs/ocfs2/inode.c | 28 ++++++++++++++--------------
fs/ocfs2/move_extents.c | 4 ++--
fs/ocfs2/namei.c | 16 ++++++++--------
fs/ocfs2/refcounttree.c | 12 ++++++------
fs/ocfs2/xattr.c | 4 ++--
12 files changed, 77 insertions(+), 75 deletions(-)
diff --git a/fs/ocfs2/acl.c b/fs/ocfs2/acl.c
index e75137a8e7cb4..62464d194da3f 100644
--- a/fs/ocfs2/acl.c
+++ b/fs/ocfs2/acl.c
@@ -193,8 +193,8 @@ static int ocfs2_acl_set_mode(struct inode *inode, struct buffer_head *di_bh,
inode->i_mode = new_mode;
inode_set_ctime_current(inode);
di->i_mode = cpu_to_le16(inode->i_mode);
- di->i_ctime = cpu_to_le64(inode_get_ctime(inode).tv_sec);
- di->i_ctime_nsec = cpu_to_le32(inode_get_ctime(inode).tv_nsec);
+ di->i_ctime = cpu_to_le64(inode_get_ctime_sec(inode));
+ di->i_ctime_nsec = cpu_to_le32(inode_get_ctime_nsec(inode));
ocfs2_update_inode_fsync_trans(handle, inode, 0);
ocfs2_journal_dirty(handle, di_bh);
diff --git a/fs/ocfs2/alloc.c b/fs/ocfs2/alloc.c
index aef58f1395c87..f0937902f7b46 100644
--- a/fs/ocfs2/alloc.c
+++ b/fs/ocfs2/alloc.c
@@ -7436,10 +7436,10 @@ int ocfs2_truncate_inline(struct inode *inode, struct buffer_head *di_bh,
}
inode->i_blocks = ocfs2_inode_sector_count(inode);
- inode->i_mtime = inode_set_ctime_current(inode);
+ inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode));
- di->i_ctime = di->i_mtime = cpu_to_le64(inode_get_ctime(inode).tv_sec);
- di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode_get_ctime(inode).tv_nsec);
+ di->i_ctime = di->i_mtime = cpu_to_le64(inode_get_ctime_sec(inode));
+ di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode_get_ctime_nsec(inode));
ocfs2_update_inode_fsync_trans(handle, inode, 1);
ocfs2_journal_dirty(handle, di_bh);
diff --git a/fs/ocfs2/aops.c b/fs/ocfs2/aops.c
index 0fdba30740ab5..6ab03494fc6e7 100644
--- a/fs/ocfs2/aops.c
+++ b/fs/ocfs2/aops.c
@@ -2048,9 +2048,9 @@ int ocfs2_write_end_nolock(struct address_space *mapping,
}
inode->i_blocks = ocfs2_inode_sector_count(inode);
di->i_size = cpu_to_le64((u64)i_size_read(inode));
- inode->i_mtime = inode_set_ctime_current(inode);
- di->i_mtime = di->i_ctime = cpu_to_le64(inode->i_mtime.tv_sec);
- di->i_mtime_nsec = di->i_ctime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
+ inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode));
+ di->i_mtime = di->i_ctime = cpu_to_le64(inode_get_mtime_sec(inode));
+ di->i_mtime_nsec = di->i_ctime_nsec = cpu_to_le32(inode_get_mtime_nsec(inode));
if (handle)
ocfs2_update_inode_fsync_trans(handle, inode, 1);
}
diff --git a/fs/ocfs2/dir.c b/fs/ocfs2/dir.c
index 8b123d543e6e2..a14c8fee6ee5e 100644
--- a/fs/ocfs2/dir.c
+++ b/fs/ocfs2/dir.c
@@ -1658,7 +1658,8 @@ int __ocfs2_add_entry(handle_t *handle,
offset, ocfs2_dir_trailer_blk_off(dir->i_sb));
if (ocfs2_dirent_would_fit(de, rec_len)) {
- dir->i_mtime = inode_set_ctime_current(dir);
+ inode_set_mtime_to_ts(dir,
+ inode_set_ctime_current(dir));
retval = ocfs2_mark_inode_dirty(handle, dir, parent_fe_bh);
if (retval < 0) {
mlog_errno(retval);
@@ -2962,11 +2963,11 @@ static int ocfs2_expand_inline_dir(struct inode *dir, struct buffer_head *di_bh,
ocfs2_dinode_new_extent_list(dir, di);
i_size_write(dir, sb->s_blocksize);
- dir->i_mtime = inode_set_ctime_current(dir);
+ inode_set_mtime_to_ts(dir, inode_set_ctime_current(dir));
di->i_size = cpu_to_le64(sb->s_blocksize);
- di->i_ctime = di->i_mtime = cpu_to_le64(inode_get_ctime(dir).tv_sec);
- di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode_get_ctime(dir).tv_nsec);
+ di->i_ctime = di->i_mtime = cpu_to_le64(inode_get_ctime_sec(dir));
+ di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode_get_ctime_nsec(dir));
ocfs2_update_inode_fsync_trans(handle, dir, 1);
/*
diff --git a/fs/ocfs2/dlmfs/dlmfs.c b/fs/ocfs2/dlmfs/dlmfs.c
index 81265123ce6ce..9b57d012fd5cf 100644
--- a/fs/ocfs2/dlmfs/dlmfs.c
+++ b/fs/ocfs2/dlmfs/dlmfs.c
@@ -337,7 +337,7 @@ static struct inode *dlmfs_get_root_inode(struct super_block *sb)
if (inode) {
inode->i_ino = get_next_ino();
inode_init_owner(&nop_mnt_idmap, inode, NULL, mode);
- inode->i_atime = inode->i_mtime = inode_set_ctime_current(inode);
+ simple_inode_init_ts(inode);
inc_nlink(inode);
inode->i_fop = &simple_dir_operations;
@@ -360,7 +360,7 @@ static struct inode *dlmfs_get_inode(struct inode *parent,
inode->i_ino = get_next_ino();
inode_init_owner(&nop_mnt_idmap, inode, parent, mode);
- inode->i_atime = inode->i_mtime = inode_set_ctime_current(inode);
+ simple_inode_init_ts(inode);
ip = DLMFS_I(inode);
ip->ip_conn = DLMFS_I(parent)->ip_conn;
diff --git a/fs/ocfs2/dlmglue.c b/fs/ocfs2/dlmglue.c
index c3e2961ee5db3..64a6ef638495c 100644
--- a/fs/ocfs2/dlmglue.c
+++ b/fs/ocfs2/dlmglue.c
@@ -2162,7 +2162,7 @@ static void __ocfs2_stuff_meta_lvb(struct inode *inode)
struct ocfs2_inode_info *oi = OCFS2_I(inode);
struct ocfs2_lock_res *lockres = &oi->ip_inode_lockres;
struct ocfs2_meta_lvb *lvb;
- struct timespec64 ctime = inode_get_ctime(inode);
+ struct timespec64 ts;
lvb = ocfs2_dlm_lvb(&lockres->l_lksb);
@@ -2183,12 +2183,12 @@ static void __ocfs2_stuff_meta_lvb(struct inode *inode)
lvb->lvb_igid = cpu_to_be32(i_gid_read(inode));
lvb->lvb_imode = cpu_to_be16(inode->i_mode);
lvb->lvb_inlink = cpu_to_be16(inode->i_nlink);
- lvb->lvb_iatime_packed =
- cpu_to_be64(ocfs2_pack_timespec(&inode->i_atime));
- lvb->lvb_ictime_packed =
- cpu_to_be64(ocfs2_pack_timespec(&ctime));
- lvb->lvb_imtime_packed =
- cpu_to_be64(ocfs2_pack_timespec(&inode->i_mtime));
+ ts = inode_get_atime(inode);
+ lvb->lvb_iatime_packed = cpu_to_be64(ocfs2_pack_timespec(&ts));
+ ts = inode_get_ctime(inode);
+ lvb->lvb_ictime_packed = cpu_to_be64(ocfs2_pack_timespec(&ts));
+ ts = inode_get_mtime(inode);
+ lvb->lvb_imtime_packed = cpu_to_be64(ocfs2_pack_timespec(&ts));
lvb->lvb_iattr = cpu_to_be32(oi->ip_attr);
lvb->lvb_idynfeatures = cpu_to_be16(oi->ip_dyn_features);
lvb->lvb_igeneration = cpu_to_be32(inode->i_generation);
@@ -2209,7 +2209,7 @@ static int ocfs2_refresh_inode_from_lvb(struct inode *inode)
struct ocfs2_inode_info *oi = OCFS2_I(inode);
struct ocfs2_lock_res *lockres = &oi->ip_inode_lockres;
struct ocfs2_meta_lvb *lvb;
- struct timespec64 ctime;
+ struct timespec64 ts;
mlog_meta_lvb(0, lockres);
@@ -2236,13 +2236,12 @@ static int ocfs2_refresh_inode_from_lvb(struct inode *inode)
i_gid_write(inode, be32_to_cpu(lvb->lvb_igid));
inode->i_mode = be16_to_cpu(lvb->lvb_imode);
set_nlink(inode, be16_to_cpu(lvb->lvb_inlink));
- ocfs2_unpack_timespec(&inode->i_atime,
- be64_to_cpu(lvb->lvb_iatime_packed));
- ocfs2_unpack_timespec(&inode->i_mtime,
- be64_to_cpu(lvb->lvb_imtime_packed));
- ocfs2_unpack_timespec(&ctime,
- be64_to_cpu(lvb->lvb_ictime_packed));
- inode_set_ctime_to_ts(inode, ctime);
+ ocfs2_unpack_timespec(&ts, be64_to_cpu(lvb->lvb_iatime_packed));
+ inode_set_atime_to_ts(inode, ts);
+ ocfs2_unpack_timespec(&ts, be64_to_cpu(lvb->lvb_imtime_packed));
+ inode_set_mtime_to_ts(inode, ts);
+ ocfs2_unpack_timespec(&ts, be64_to_cpu(lvb->lvb_ictime_packed));
+ inode_set_ctime_to_ts(inode, ts);
spin_unlock(&oi->ip_lock);
return 0;
}
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c
index f861b8c345e86..8bbe4a2b48a2a 100644
--- a/fs/ocfs2/file.c
+++ b/fs/ocfs2/file.c
@@ -233,16 +233,18 @@ int ocfs2_should_update_atime(struct inode *inode,
if (vfsmnt->mnt_flags & MNT_RELATIME) {
struct timespec64 ctime = inode_get_ctime(inode);
+ struct timespec64 atime = inode_get_atime(inode);
+ struct timespec64 mtime = inode_get_mtime(inode);
- if ((timespec64_compare(&inode->i_atime, &inode->i_mtime) <= 0) ||
- (timespec64_compare(&inode->i_atime, &ctime) <= 0))
+ if ((timespec64_compare(&atime, &mtime) <= 0) ||
+ (timespec64_compare(&atime, &ctime) <= 0))
return 1;
return 0;
}
now = current_time(inode);
- if ((now.tv_sec - inode->i_atime.tv_sec <= osb->s_atime_quantum))
+ if ((now.tv_sec - inode_get_atime_sec(inode) <= osb->s_atime_quantum))
return 0;
else
return 1;
@@ -275,9 +277,9 @@ int ocfs2_update_inode_atime(struct inode *inode,
* have i_rwsem to guard against concurrent changes to other
* inode fields.
*/
- inode->i_atime = current_time(inode);
- di->i_atime = cpu_to_le64(inode->i_atime.tv_sec);
- di->i_atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec);
+ inode_set_atime_to_ts(inode, current_time(inode));
+ di->i_atime = cpu_to_le64(inode_get_atime_sec(inode));
+ di->i_atime_nsec = cpu_to_le32(inode_get_atime_nsec(inode));
ocfs2_update_inode_fsync_trans(handle, inode, 0);
ocfs2_journal_dirty(handle, bh);
@@ -296,7 +298,7 @@ int ocfs2_set_inode_size(handle_t *handle,
i_size_write(inode, new_i_size);
inode->i_blocks = ocfs2_inode_sector_count(inode);
- inode->i_mtime = inode_set_ctime_current(inode);
+ inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode));
status = ocfs2_mark_inode_dirty(handle, inode, fe_bh);
if (status < 0) {
@@ -417,12 +419,12 @@ static int ocfs2_orphan_for_truncate(struct ocfs2_super *osb,
}
i_size_write(inode, new_i_size);
- inode->i_mtime = inode_set_ctime_current(inode);
+ inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode));
di = (struct ocfs2_dinode *) fe_bh->b_data;
di->i_size = cpu_to_le64(new_i_size);
- di->i_ctime = di->i_mtime = cpu_to_le64(inode_get_ctime(inode).tv_sec);
- di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode_get_ctime(inode).tv_nsec);
+ di->i_ctime = di->i_mtime = cpu_to_le64(inode_get_ctime_sec(inode));
+ di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode_get_ctime_nsec(inode));
ocfs2_update_inode_fsync_trans(handle, inode, 0);
ocfs2_journal_dirty(handle, fe_bh);
@@ -821,9 +823,9 @@ static int ocfs2_write_zero_page(struct inode *inode, u64 abs_from,
i_size_write(inode, abs_to);
inode->i_blocks = ocfs2_inode_sector_count(inode);
di->i_size = cpu_to_le64((u64)i_size_read(inode));
- inode->i_mtime = inode_set_ctime_current(inode);
- di->i_mtime = di->i_ctime = cpu_to_le64(inode->i_mtime.tv_sec);
- di->i_ctime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
+ inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode));
+ di->i_mtime = di->i_ctime = cpu_to_le64(inode_get_mtime_sec(inode));
+ di->i_ctime_nsec = cpu_to_le32(inode_get_mtime_nsec(inode));
di->i_mtime_nsec = di->i_ctime_nsec;
if (handle) {
ocfs2_journal_dirty(handle, di_bh);
@@ -2042,7 +2044,7 @@ static int __ocfs2_change_file_space(struct file *file, struct inode *inode,
goto out_inode_unlock;
}
- inode->i_mtime = inode_set_ctime_current(inode);
+ inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode));
ret = ocfs2_mark_inode_dirty(handle, inode, di_bh);
if (ret < 0)
mlog_errno(ret);
diff --git a/fs/ocfs2/inode.c b/fs/ocfs2/inode.c
index e8771600b9304..999111bfc2717 100644
--- a/fs/ocfs2/inode.c
+++ b/fs/ocfs2/inode.c
@@ -302,10 +302,10 @@ void ocfs2_populate_inode(struct inode *inode, struct ocfs2_dinode *fe,
inode->i_blocks = ocfs2_inode_sector_count(inode);
inode->i_mapping->a_ops = &ocfs2_aops;
}
- inode->i_atime.tv_sec = le64_to_cpu(fe->i_atime);
- inode->i_atime.tv_nsec = le32_to_cpu(fe->i_atime_nsec);
- inode->i_mtime.tv_sec = le64_to_cpu(fe->i_mtime);
- inode->i_mtime.tv_nsec = le32_to_cpu(fe->i_mtime_nsec);
+ inode_set_atime(inode, le64_to_cpu(fe->i_atime),
+ le32_to_cpu(fe->i_atime_nsec));
+ inode_set_mtime(inode, le64_to_cpu(fe->i_mtime),
+ le32_to_cpu(fe->i_mtime_nsec));
inode_set_ctime(inode, le64_to_cpu(fe->i_ctime),
le32_to_cpu(fe->i_ctime_nsec));
@@ -1312,12 +1312,12 @@ int ocfs2_mark_inode_dirty(handle_t *handle,
fe->i_uid = cpu_to_le32(i_uid_read(inode));
fe->i_gid = cpu_to_le32(i_gid_read(inode));
fe->i_mode = cpu_to_le16(inode->i_mode);
- fe->i_atime = cpu_to_le64(inode->i_atime.tv_sec);
- fe->i_atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec);
- fe->i_ctime = cpu_to_le64(inode_get_ctime(inode).tv_sec);
- fe->i_ctime_nsec = cpu_to_le32(inode_get_ctime(inode).tv_nsec);
- fe->i_mtime = cpu_to_le64(inode->i_mtime.tv_sec);
- fe->i_mtime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
+ fe->i_atime = cpu_to_le64(inode_get_atime_sec(inode));
+ fe->i_atime_nsec = cpu_to_le32(inode_get_atime_nsec(inode));
+ fe->i_ctime = cpu_to_le64(inode_get_ctime_sec(inode));
+ fe->i_ctime_nsec = cpu_to_le32(inode_get_ctime_nsec(inode));
+ fe->i_mtime = cpu_to_le64(inode_get_mtime_sec(inode));
+ fe->i_mtime_nsec = cpu_to_le32(inode_get_mtime_nsec(inode));
ocfs2_journal_dirty(handle, bh);
ocfs2_update_inode_fsync_trans(handle, inode, 1);
@@ -1348,10 +1348,10 @@ void ocfs2_refresh_inode(struct inode *inode,
inode->i_blocks = 0;
else
inode->i_blocks = ocfs2_inode_sector_count(inode);
- inode->i_atime.tv_sec = le64_to_cpu(fe->i_atime);
- inode->i_atime.tv_nsec = le32_to_cpu(fe->i_atime_nsec);
- inode->i_mtime.tv_sec = le64_to_cpu(fe->i_mtime);
- inode->i_mtime.tv_nsec = le32_to_cpu(fe->i_mtime_nsec);
+ inode_set_atime(inode, le64_to_cpu(fe->i_atime),
+ le32_to_cpu(fe->i_atime_nsec));
+ inode_set_mtime(inode, le64_to_cpu(fe->i_mtime),
+ le32_to_cpu(fe->i_mtime_nsec));
inode_set_ctime(inode, le64_to_cpu(fe->i_ctime),
le32_to_cpu(fe->i_ctime_nsec));
diff --git a/fs/ocfs2/move_extents.c b/fs/ocfs2/move_extents.c
index 05d67968a3a9e..1f9ed117e78b6 100644
--- a/fs/ocfs2/move_extents.c
+++ b/fs/ocfs2/move_extents.c
@@ -951,8 +951,8 @@ static int ocfs2_move_extents(struct ocfs2_move_extents_context *context)
di = (struct ocfs2_dinode *)di_bh->b_data;
inode_set_ctime_current(inode);
- di->i_ctime = cpu_to_le64(inode_get_ctime(inode).tv_sec);
- di->i_ctime_nsec = cpu_to_le32(inode_get_ctime(inode).tv_nsec);
+ di->i_ctime = cpu_to_le64(inode_get_ctime_sec(inode));
+ di->i_ctime_nsec = cpu_to_le32(inode_get_ctime_nsec(inode));
ocfs2_update_inode_fsync_trans(handle, inode, 0);
ocfs2_journal_dirty(handle, di_bh);
diff --git a/fs/ocfs2/namei.c b/fs/ocfs2/namei.c
index 8e648073bf712..791fc5050e46b 100644
--- a/fs/ocfs2/namei.c
+++ b/fs/ocfs2/namei.c
@@ -795,8 +795,8 @@ static int ocfs2_link(struct dentry *old_dentry,
inc_nlink(inode);
inode_set_ctime_current(inode);
ocfs2_set_links_count(fe, inode->i_nlink);
- fe->i_ctime = cpu_to_le64(inode_get_ctime(inode).tv_sec);
- fe->i_ctime_nsec = cpu_to_le32(inode_get_ctime(inode).tv_nsec);
+ fe->i_ctime = cpu_to_le64(inode_get_ctime_sec(inode));
+ fe->i_ctime_nsec = cpu_to_le32(inode_get_ctime_nsec(inode));
ocfs2_journal_dirty(handle, fe_bh);
err = ocfs2_add_entry(handle, dentry, inode,
@@ -995,7 +995,7 @@ static int ocfs2_unlink(struct inode *dir,
ocfs2_set_links_count(fe, inode->i_nlink);
ocfs2_journal_dirty(handle, fe_bh);
- dir->i_mtime = inode_set_ctime_current(dir);
+ inode_set_mtime_to_ts(dir, inode_set_ctime_current(dir));
if (S_ISDIR(inode->i_mode))
drop_nlink(dir);
@@ -1550,8 +1550,8 @@ static int ocfs2_rename(struct mnt_idmap *idmap,
if (status >= 0) {
old_di = (struct ocfs2_dinode *) old_inode_bh->b_data;
- old_di->i_ctime = cpu_to_le64(inode_get_ctime(old_inode).tv_sec);
- old_di->i_ctime_nsec = cpu_to_le32(inode_get_ctime(old_inode).tv_nsec);
+ old_di->i_ctime = cpu_to_le64(inode_get_ctime_sec(old_inode));
+ old_di->i_ctime_nsec = cpu_to_le32(inode_get_ctime_nsec(old_inode));
ocfs2_journal_dirty(handle, old_inode_bh);
} else
mlog_errno(status);
@@ -1592,7 +1592,7 @@ static int ocfs2_rename(struct mnt_idmap *idmap,
drop_nlink(new_inode);
inode_set_ctime_current(new_inode);
}
- old_dir->i_mtime = inode_set_ctime_current(old_dir);
+ inode_set_mtime_to_ts(old_dir, inode_set_ctime_current(old_dir));
if (update_dot_dot) {
status = ocfs2_update_entry(old_inode, handle,
@@ -1614,8 +1614,8 @@ static int ocfs2_rename(struct mnt_idmap *idmap,
if (old_dir != new_dir) {
/* Keep the same times on both directories.*/
- new_dir->i_mtime = inode_set_ctime_to_ts(new_dir,
- inode_get_ctime(old_dir));
+ inode_set_mtime_to_ts(new_dir,
+ inode_set_ctime_to_ts(new_dir, inode_get_ctime(old_dir)));
/*
* This will also pick up the i_nlink change from the
diff --git a/fs/ocfs2/refcounttree.c b/fs/ocfs2/refcounttree.c
index 25c8ec3c8c3a5..3f80a56d0d603 100644
--- a/fs/ocfs2/refcounttree.c
+++ b/fs/ocfs2/refcounttree.c
@@ -3751,8 +3751,8 @@ static int ocfs2_change_ctime(struct inode *inode,
}
inode_set_ctime_current(inode);
- di->i_ctime = cpu_to_le64(inode_get_ctime(inode).tv_sec);
- di->i_ctime_nsec = cpu_to_le32(inode_get_ctime(inode).tv_nsec);
+ di->i_ctime = cpu_to_le64(inode_get_ctime_sec(inode));
+ di->i_ctime_nsec = cpu_to_le32(inode_get_ctime_nsec(inode));
ocfs2_journal_dirty(handle, di_bh);
@@ -4075,10 +4075,10 @@ static int ocfs2_complete_reflink(struct inode *s_inode,
*/
inode_set_ctime_current(t_inode);
- di->i_ctime = cpu_to_le64(inode_get_ctime(t_inode).tv_sec);
- di->i_ctime_nsec = cpu_to_le32(inode_get_ctime(t_inode).tv_nsec);
+ di->i_ctime = cpu_to_le64(inode_get_ctime_sec(t_inode));
+ di->i_ctime_nsec = cpu_to_le32(inode_get_ctime_nsec(t_inode));
- t_inode->i_mtime = s_inode->i_mtime;
+ inode_set_mtime_to_ts(t_inode, inode_get_mtime(s_inode));
di->i_mtime = s_di->i_mtime;
di->i_mtime_nsec = s_di->i_mtime_nsec;
}
@@ -4456,7 +4456,7 @@ int ocfs2_reflink_update_dest(struct inode *dest,
if (newlen > i_size_read(dest))
i_size_write(dest, newlen);
spin_unlock(&OCFS2_I(dest)->ip_lock);
- dest->i_mtime = inode_set_ctime_current(dest);
+ inode_set_mtime_to_ts(dest, inode_set_ctime_current(dest));
ret = ocfs2_mark_inode_dirty(handle, dest, d_bh);
if (ret) {
diff --git a/fs/ocfs2/xattr.c b/fs/ocfs2/xattr.c
index 6510ad783c912..b562cfef888ad 100644
--- a/fs/ocfs2/xattr.c
+++ b/fs/ocfs2/xattr.c
@@ -3422,8 +3422,8 @@ static int __ocfs2_xattr_set_handle(struct inode *inode,
}
inode_set_ctime_current(inode);
- di->i_ctime = cpu_to_le64(inode_get_ctime(inode).tv_sec);
- di->i_ctime_nsec = cpu_to_le32(inode_get_ctime(inode).tv_nsec);
+ di->i_ctime = cpu_to_le64(inode_get_ctime_sec(inode));
+ di->i_ctime_nsec = cpu_to_le32(inode_get_ctime_nsec(inode));
ocfs2_journal_dirty(ctxt->handle, xis->inode_bh);
}
out:
--
2.43.0
next prev parent reply other threads:[~2024-06-25 9:55 UTC|newest]
Thread overview: 211+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-25 9:31 [PATCH 6.6 000/192] 6.6.36-rc1 review Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 001/192] fs/writeback: bail out if there is no more inodes for IO and queued once Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 002/192] padata: Disable BH when taking works lock on MT path Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 003/192] crypto: hisilicon/sec - Fix memory leak for sec resource release Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 004/192] crypto: hisilicon/qm - Add the err memory release process to qm uninit Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 005/192] io_uring/sqpoll: work around a potential audit memory leak Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 006/192] rcutorture: Fix rcu_torture_one_read() pipe_count overflow comment Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 007/192] rcutorture: Make stall-tasks directly exit when rcutorture tests end Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 008/192] rcutorture: Fix invalid context warning when enable srcu barrier testing Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 009/192] block/ioctl: prefer different overflow check Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 010/192] ssb: Fix potential NULL pointer dereference in ssb_device_uevent() Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 011/192] selftests/bpf: Prevent client connect before server bind in test_tc_tunnel.sh Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 012/192] selftests/bpf: Fix flaky test btf_map_in_map/lookup_update Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 013/192] batman-adv: bypass empty buckets in batadv_purge_orig_ref() Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 014/192] wifi: ath9k: work around memset overflow warning Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 015/192] af_packet: avoid a false positive warning in packet_setsockopt() Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 016/192] ACPI: x86: Add PNP_UART1_SKIP quirk for Lenovo Blade2 tablets Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 017/192] drop_monitor: replace spin_lock by raw_spin_lock Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 018/192] scsi: qedi: Fix crash while reading debugfs attribute Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 019/192] net: sfp: add quirk for ATS SFP-GE-T 1000Base-TX module Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 020/192] net/sched: fix false lockdep warning on qdisc root lock Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 021/192] kselftest: arm64: Add a null pointer check Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 022/192] net: dsa: realtek: keep default LED state in rtl8366rb Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 023/192] netpoll: Fix race condition in netpoll_owner_active Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 024/192] wifi: mt76: mt7921s: fix potential hung tasks during chip recovery Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 025/192] HID: Add quirk for Logitech Casa touchpad Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 026/192] HID: asus: fix more n-key report descriptors if n-key quirked Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 027/192] ACPI: video: Add backlight=native quirk for Lenovo Slim 7 16ARH7 Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 028/192] Bluetooth: ath3k: Fix multiple issues reported by checkpatch.pl Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 029/192] drm/amd/display: Exit idle optimizations before HDCP execution Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 030/192] platform/x86: toshiba_acpi: Add quirk for buttons on Z830 Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 031/192] ASoC: Intel: sof_sdw: add JD2 quirk for HP Omen 14 Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 032/192] ASoC: Intel: sof_sdw: add quirk for Dell SKU 0C0F Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 033/192] drm/lima: add mask irq callback to gp and pp Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 034/192] drm/lima: mask irqs in timeout path before hard reset Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 035/192] ALSA: hda/realtek: Add quirks for Lenovo 13X Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 036/192] powerpc/pseries: Enforce hcall result buffer validity and size Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 037/192] media: intel/ipu6: Fix build with !ACPI Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 038/192] media: mtk-vcodec: potential null pointer deference in SCP Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 039/192] powerpc/io: Avoid clang null pointer arithmetic warnings Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 040/192] platform/x86: p2sb: Dont init until unassigned resources have been assigned Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 041/192] power: supply: cros_usbpd: provide ID table for avoiding fallback match Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 042/192] iommu/arm-smmu-v3: Free MSIs in case of ENOMEM Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 043/192] ext4: fix uninitialized ratelimit_state->lock access in __ext4_fill_super() Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 044/192] kprobe/ftrace: bail out if ftrace was killed Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 045/192] usb: gadget: uvc: configfs: ensure guid to be valid before set Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 046/192] f2fs: remove clear SB_INLINECRYPT flag in default_options Greg Kroah-Hartman
2024-06-25 9:31 ` [PATCH 6.6 047/192] usb: misc: uss720: check for incompatible versions of the Belkin F5U002 Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 048/192] Avoid hw_desc array overrun in dw-axi-dmac Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 049/192] usb: dwc3: pci: Dont set "linux,phy_charger_detect" property on Lenovo Yoga Tab2 1380 Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 050/192] usb: typec: ucsi_glink: drop special handling for CCI_BUSY Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 051/192] udf: udftime: prevent overflow in udf_disk_stamp_to_time() Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 052/192] PCI/PM: Avoid D3cold for HP Pavilion 17 PC/1972 PCIe Ports Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 053/192] f2fs: dont set RO when shutting down f2fs Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 054/192] MIPS: Octeon: Add PCIe link status check Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 055/192] serial: imx: Introduce timeout when waiting on transmitter empty Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 056/192] serial: exar: adding missing CTI and Exar PCI ids Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 057/192] usb: gadget: function: Remove usage of the deprecated ida_simple_xx() API Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 058/192] tty: add the option to have a tty reject a new ldisc Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 059/192] vfio/pci: Collect hot-reset devices to local buffer Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 060/192] cpufreq: amd-pstate: fix memory leak on CPU EPP exit Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 061/192] ACPI: EC: Install address space handler at the namespace root Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 062/192] PCI: Do not wait for disconnected devices when resuming Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 063/192] ALSA: hda: cs35l41: Possible null pointer dereference in cs35l41_hda_unbind() Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 064/192] ALSA: seq: ump: Fix missing System Reset message handling Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 065/192] MIPS: Routerboard 532: Fix vendor retry check code Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 066/192] mips: bmips: BCM6358: make sure CBR is correctly set Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 067/192] tracing: Build event generation tests only as modules Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 068/192] ALSA: hda/realtek: Remove Framework Laptop 16 from quirks Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 069/192] ALSA/hda: intel-dsp-config: Document AVS as dsp_driver option Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 070/192] ice: avoid IRQ collision to fix init failure on ACPI S3 resume Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 071/192] btrfs: zoned: allocate dummy checksums for zoned NODATASUM writes Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 072/192] net: mvpp2: use slab_build_skb for oversized frames Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 073/192] cipso: fix total option length computation Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 074/192] ALSA: hda: cs35l56: Component should be unbound before deconstruction Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 075/192] ALSA: hda: tas2781: " Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 076/192] bpf: Avoid splat in pskb_pull_reason Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 077/192] ALSA: hda/realtek: Enable headset mic on IdeaPad 330-17IKB 81DM Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 078/192] netrom: Fix a memory leak in nr_heartbeat_expiry() Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 079/192] ipv6: prevent possible NULL deref in fib6_nh_init() Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 080/192] ipv6: prevent possible NULL dereference in rt6_probe() Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 081/192] xfrm6: check ip6_dst_idev() return value in xfrm6_get_saddr() Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 082/192] netns: Make get_net_ns() handle zero refcount net Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 083/192] qca_spi: Make interrupt remembering atomic Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 084/192] net: lan743x: disable WOL upon resume to restore full data path operation Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 085/192] net: lan743x: Support WOL at both the PHY and MAC appropriately Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 086/192] net: phy: mxl-gpy: Remove interrupt mask clearing from config_init Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 087/192] net/sched: act_api: rely on rcu in tcf_idr_check_alloc Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 088/192] net/sched: act_api: fix possible infinite loop in tcf_idr_check_alloc() Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 089/192] tipc: force a dst refcount before doing decryption Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 090/192] sched: act_ct: add netns into the key of tcf_ct_flow_table Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 091/192] ptp: fix integer overflow in max_vclocks_store Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 092/192] selftests: openvswitch: Use bash as interpreter Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 093/192] net: stmmac: No need to calculate speed divider when offload is disabled Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 094/192] virtio_net: checksum offloading handling fix Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 095/192] virtio_net: fixing XDP for fully checksummed packets handling Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 096/192] octeontx2-pf: Add error handling to VLAN unoffload handling Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 097/192] octeontx2-pf: Fix linking objects into multiple modules Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 098/192] netfilter: ipset: Fix suspicious rcu_dereference_protected() Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 099/192] seg6: fix parameter passing when calling NF_HOOK() in End.DX4 and End.DX6 behaviors Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 100/192] netfilter: move the sysctl nf_hooks_lwtunnel into the netfilter core Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 101/192] ice: Fix VSI list rule with ICE_SW_LKUP_LAST type Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 102/192] bnxt_en: Restore PTP tx_avail count in case of skb_pad() error Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 103/192] net: usb: rtl8150 fix unintiatilzed variables in rtl8150_get_link_ksettings Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 104/192] RDMA/bnxt_re: Fix the max msix vectors macro Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 105/192] spi: cs42l43: Correct SPI root clock speed Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 106/192] RDMA/rxe: Fix responder length checking for UD request packets Greg Kroah-Hartman
2024-06-25 9:32 ` [PATCH 6.6 107/192] regulator: core: Fix modpost error "regulator_get_regmap" undefined Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 108/192] dmaengine: idxd: Fix possible Use-After-Free in irq_process_work_list Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 109/192] dmaengine: ioatdma: Fix leaking on version mismatch Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 110/192] dmaengine: ioatdma: Fix error path in ioat3_dma_probe() Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 111/192] dmaengine: ioatdma: Fix kmemleak in ioat_pci_probe() Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 112/192] dmaengine: fsl-edma: avoid linking both modules Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 113/192] dmaengine: ioatdma: Fix missing kmem_cache_destroy() Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 114/192] regulator: bd71815: fix ramp values Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 115/192] thermal/drivers/mediatek/lvts_thermal: Return error in case of invalid efuse data Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 116/192] arm64: dts: imx8mp: Fix TC9595 reset GPIO on DH i.MX8M Plus DHCOM SoM Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 117/192] arm64: dts: imx8mp: Fix TC9595 input clock " Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 118/192] arm64: dts: freescale: imx8mp-venice-gw73xx-2x: fix BT shutdown GPIO Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 119/192] arm64: dts: imx93-11x11-evk: Remove the no-sdio property Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 120/192] arm64: dts: freescale: imx8mm-verdin: enable hysteresis on slow input pin Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 121/192] ACPICA: Revert "ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine." Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 122/192] spi: spi-imx: imx51: revert burst length calculation back to bits_per_word Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 123/192] io_uring/rsrc: fix incorrect assignment of iter->nr_segs in io_import_fixed Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 124/192] firmware: psci: Fix return value from psci_system_suspend() Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 125/192] RDMA/mlx5: Fix unwind flow as part of mlx5_ib_stage_init_init Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 126/192] RDMA/mlx5: Add check for srq max_sge attribute Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 127/192] RDMA/mana_ib: Ignore optional access flags for MRs Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 128/192] ACPI: EC: Evaluate orphan _REG under EC device Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 129/192] arm64: defconfig: enable the vf610 gpio driver Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 130/192] ext4: avoid overflow when setting values via sysfs Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 131/192] ext4: fix slab-out-of-bounds in ext4_mb_find_good_group_avg_frag_lists() Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 132/192] locking/atomic: scripts: fix ${atomic}_sub_and_test() kerneldoc Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 133/192] net: stmmac: Assign configured channel value to EXTTS event Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 134/192] net: usb: ax88179_178a: improve reset check Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 135/192] net: do not leave a dangling sk pointer, when socket creation fails Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 136/192] btrfs: retry block group reclaim without infinite loop Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 137/192] scsi: ufs: core: Free memory allocated for model before reinit Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 138/192] cifs: fix typo in module parameter enable_gcm_256 Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 139/192] LoongArch: Fix watchpoint setting error Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 140/192] LoongArch: Trigger user-space watchpoints correctly Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 141/192] LoongArch: Fix multiple hardware watchpoint issues Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 142/192] KVM: Fix a data race on last_boosted_vcpu in kvm_vcpu_on_spin() Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 143/192] KVM: arm64: Disassociate vcpus from redistributor region on teardown Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 144/192] KVM: x86: Always sync PIR to IRR prior to scanning I/O APIC routes Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 145/192] RDMA/rxe: Fix data copy for IB_SEND_INLINE Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 146/192] RDMA/mlx5: Remove extra unlock on error path Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 147/192] RDMA/mlx5: Follow rb_key.ats when creating new mkeys Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 148/192] ovl: fix encoding fid for lower only root Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 149/192] ALSA: hda/realtek: fix mute/micmute LEDs dont work for ProBook 445/465 G11 Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 150/192] ALSA: hda/realtek: Limit mic boost on N14AP7 Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 151/192] ALSA: hda/realtek: Add quirk for Lenovo Yoga Pro 7 14AHP9 Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 152/192] drm/i915/mso: using joiner is not possible with eDP MSO Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 153/192] drm/radeon: fix UBSAN warning in kv_dpm.c Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 154/192] drm/amdgpu: " Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 155/192] dt-bindings: dma: fsl-edma: fix dma-channels constraints Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 156/192] ocfs2: fix NULL pointer dereference in ocfs2_journal_dirty() Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 157/192] ocfs2: fix NULL pointer dereference in ocfs2_abort_trigger() Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 158/192] gcov: add support for GCC 14 Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 159/192] kcov: dont lose track of remote references during softirqs Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 160/192] efi/x86: Free EFI memory map only when installing a new one Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 161/192] serial: 8250_dw: Revert "Move definitions to the shared header" Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 162/192] mm: mmap: allow for the maximum number of bits for randomizing mmap_base by default Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 163/192] tcp: clear tp->retrans_stamp in tcp_rcv_fastopen_synack() Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 164/192] mm/page_table_check: fix crash on ZONE_DEVICE Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 165/192] i2c: ocores: set IACK bit after core is enabled Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 166/192] dt-bindings: i2c: atmel,at91sam: correct path to i2c-controller schema Greg Kroah-Hartman
2024-06-25 9:33 ` [PATCH 6.6 167/192] dt-bindings: i2c: google,cros-ec-i2c-tunnel: " Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 168/192] spi: stm32: qspi: Fix dual flash mode sanity test in stm32_qspi_setup() Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 169/192] arm64: dts: imx8qm-mek: fix gpio number for reg_usdhc2_vmmc Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 170/192] spi: stm32: qspi: Clamp stm32_qspi_get_mode() output to CCR_BUSWIDTH_4 Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 171/192] perf: script: add raw|disasm arguments to --insn-trace option Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 172/192] perf script: Show also errors for " Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 173/192] wifi: rtl8xxxu: enable MFP support with security flag of RX descriptor Greg Kroah-Hartman
2024-06-25 9:34 ` Greg Kroah-Hartman [this message]
2024-06-25 9:34 ` [PATCH 6.6 175/192] ocfs2: update inode fsync transaction id in ocfs2_unlink and ocfs2_link Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 176/192] nbd: Improve the documentation of the locking assumptions Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 177/192] nbd: Fix signal handling Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 178/192] tracing: Add MODULE_DESCRIPTION() to preemptirq_delay_test Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 179/192] x86/cpu/vfm: Add new macros to work with (vendor/family/model) values Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 180/192] x86/cpu: Fix x86_match_cpu() to match just X86_VENDOR_INTEL Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 181/192] riscv: Dont use PGD entries for the linear mapping Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 182/192] riscv: force PAGE_SIZE linear mapping if debug_pagealloc is enabled Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 183/192] vgacon: rework screen_info #ifdef checks Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 184/192] efi: move screen_info into efi init code Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 185/192] efi/loongarch: Directly position the loaded image file Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 186/192] LoongArch: Fix entry point in kernel image header Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 187/192] drm/amd/display: revert Exit idle optimizations before HDCP execution Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 188/192] ASoC: Intel: sof-sdw: really remove FOUR_SPEAKER quirk Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 189/192] net/sched: unregister lockdep keys in qdisc_create/qdisc_alloc error path Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 190/192] kprobe/ftrace: fix build error due to bad function definition Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 191/192] hid: asus: asus_report_fixup: fix potential read out of bounds Greg Kroah-Hartman
2024-06-25 9:34 ` [PATCH 6.6 192/192] Revert "mm: mmap: allow for the maximum number of bits for randomizing mmap_base by default" Greg Kroah-Hartman
[not found] ` <2935400.2255.1719311647175.JavaMail.root@jt-retransmission-dep-5ccd6997dd-985ss>
2024-06-25 10:46 ` [PATCH 6.6 100/192] netfilter: move the sysctl nf_hooks_lwtunnel into the netfilter core wujianguo
2024-06-25 12:01 ` Greg Kroah-Hartman
2024-06-25 12:20 ` wujianguo
2024-06-25 14:16 ` Pablo Neira Ayuso
2024-06-25 11:09 ` [PATCH 6.6 000/192] 6.6.36-rc1 review Naresh Kamboju
2024-06-25 14:43 ` Naresh Kamboju
2024-06-25 15:08 ` Arnd Bergmann
2024-06-27 11:28 ` Greg Kroah-Hartman
2024-06-26 8:04 ` Jon Hunter
2024-06-25 11:41 ` Florian Fainelli
2024-06-25 13:30 ` Peter Schneider
2024-06-25 13:49 ` Takeshi Ogasawara
2024-06-25 17:03 ` SeongJae Park
2024-06-25 21:25 ` Shuah Khan
2024-06-26 10:38 ` Shreeya Patel
2024-06-26 12:48 ` Ron Economos
2024-06-26 20:56 ` Naresh Kamboju
2024-06-27 3:35 ` Kelsey Steele
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240625085543.839128614@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=brauner@kernel.org \
--cc=jlayton@kernel.org \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox