From: Jeff Layton <jlayton@kernel.org>
To: Zhihao Cheng <chengzhihao1@huawei.com>,
Christian Brauner <brauner@kernel.org>,
Richard Weinberger <richard@nod.at>
Cc: Al Viro <viro@zeniv.linux.org.uk>, Jan Kara <jack@suse.cz>,
linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-mtd@lists.infradead.org
Subject: Re: [PATCH v2 78/92] ubifs: convert to ctime accessor functions
Date: Thu, 06 Jul 2023 08:10:24 -0400 [thread overview]
Message-ID: <7f2bbca046f120d6dc6f64c22f94dafa0becace3.camel@kernel.org> (raw)
In-Reply-To: <13131dc7-c823-e65f-9bf0-4f8fe907e58b@huawei.com>
On Thu, 2023-07-06 at 20:07 +0800, Zhihao Cheng wrote:
> 在 2023/7/6 3:01, Jeff Layton 写道:
> > In later patches, we're going to change how the inode's ctime field is
> > used. Switch to using accessor functions instead of raw accesses of
> > inode->i_ctime.
> >
> > Signed-off-by: Jeff Layton <jlayton@kernel.org>
> > ---
> > fs/ubifs/debug.c | 4 ++--
> > fs/ubifs/dir.c | 24 +++++++++++-------------
> > fs/ubifs/file.c | 16 +++++++++-------
> > fs/ubifs/ioctl.c | 2 +-
> > fs/ubifs/journal.c | 4 ++--
> > fs/ubifs/super.c | 4 ++--
> > fs/ubifs/xattr.c | 6 +++---
> > 7 files changed, 30 insertions(+), 30 deletions(-)
> >
> > diff --git a/fs/ubifs/debug.c b/fs/ubifs/debug.c
> > index 9c9d3f0e36a4..eef9e527d9ff 100644
> > --- a/fs/ubifs/debug.c
> > +++ b/fs/ubifs/debug.c
> > @@ -243,8 +243,8 @@ void ubifs_dump_inode(struct ubifs_info *c, const struct inode *inode)
> > (unsigned int)inode->i_mtime.tv_sec,
> > (unsigned int)inode->i_mtime.tv_nsec);
> > pr_err("\tctime %u.%u\n",
> > - (unsigned int)inode->i_ctime.tv_sec,
> > - (unsigned int)inode->i_ctime.tv_nsec);
> > + (unsigned int) inode_get_ctime(inode).tv_sec,
> > + (unsigned int) inode_get_ctime(inode).tv_nsec);
> > pr_err("\tcreat_sqnum %llu\n", ui->creat_sqnum);
> > pr_err("\txattr_size %u\n", ui->xattr_size);
> > pr_err("\txattr_cnt %u\n", ui->xattr_cnt);
> > diff --git a/fs/ubifs/dir.c b/fs/ubifs/dir.c
> > index 7ec25310bd8a..3a1ba8ba308a 100644
> > --- a/fs/ubifs/dir.c
> > +++ b/fs/ubifs/dir.c
> > @@ -96,8 +96,7 @@ struct inode *ubifs_new_inode(struct ubifs_info *c, struct inode *dir,
> > inode->i_flags |= S_NOCMTIME;
> >
> > inode_init_owner(&nop_mnt_idmap, inode, dir, mode);
> > - inode->i_mtime = inode->i_atime = inode->i_ctime =
> > - current_time(inode);
> > + inode->i_mtime = inode->i_atime = inode_set_ctime_current(inode);
> > inode->i_mapping->nrpages = 0;
> >
> > if (!is_xattr) {
> > @@ -325,7 +324,7 @@ static int ubifs_create(struct mnt_idmap *idmap, struct inode *dir,
> > mutex_lock(&dir_ui->ui_mutex);
> > dir->i_size += sz_change;
> > dir_ui->ui_size = dir->i_size;
> > - dir->i_mtime = dir->i_ctime = inode->i_ctime;
> > + dir->i_mtime = inode_set_ctime_to_ts(dir, inode_get_ctime(inode));
> > err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
> > if (err)
> > goto out_cancel;
> > @@ -765,10 +764,10 @@ static int ubifs_link(struct dentry *old_dentry, struct inode *dir,
> >
> > inc_nlink(inode);
> > ihold(inode);
> > - inode->i_ctime = current_time(inode);
> > + inode_set_ctime_current(inode);
> > dir->i_size += sz_change;
> > dir_ui->ui_size = dir->i_size;
> > - dir->i_mtime = dir->i_ctime = inode->i_ctime;
> > + dir->i_mtime = inode_set_ctime_to_ts(dir, inode_get_ctime(inode));
> > err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
> > if (err)
> > goto out_cancel;
> > @@ -838,11 +837,11 @@ static int ubifs_unlink(struct inode *dir, struct dentry *dentry)
> > }
> >
> > lock_2_inodes(dir, inode);
> > - inode->i_ctime = current_time(dir);
> > + inode_set_ctime_current(inode);
> > drop_nlink(inode);
> > dir->i_size -= sz_change;
> > dir_ui->ui_size = dir->i_size;
> > - dir->i_mtime = dir->i_ctime = inode->i_ctime;
> > + dir->i_mtime = inode_set_ctime_to_ts(dir, inode_get_ctime(inode));
> > err = ubifs_jnl_update(c, dir, &nm, inode, 1, 0);
> > if (err)
> > goto out_cancel;
> > @@ -940,12 +939,12 @@ static int ubifs_rmdir(struct inode *dir, struct dentry *dentry)
> > }
> >
> > lock_2_inodes(dir, inode);
> > - inode->i_ctime = current_time(dir);
> > + inode_set_ctime_current(inode);
> > clear_nlink(inode);
> > drop_nlink(dir);
> > dir->i_size -= sz_change;
> > dir_ui->ui_size = dir->i_size;
> > - dir->i_mtime = dir->i_ctime = inode->i_ctime;
> > + dir->i_mtime = inode_set_ctime_to_ts(dir, inode_get_ctime(inode));
> > err = ubifs_jnl_update(c, dir, &nm, inode, 1, 0);
> > if (err)
> > goto out_cancel;
> > @@ -1019,7 +1018,7 @@ static int ubifs_mkdir(struct mnt_idmap *idmap, struct inode *dir,
> > inc_nlink(dir);
> > dir->i_size += sz_change;
> > dir_ui->ui_size = dir->i_size;
> > - dir->i_mtime = dir->i_ctime = inode->i_ctime;
> > + dir->i_mtime = inode_set_ctime_to_ts(dir, inode_get_ctime(inode));
> > err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
> > if (err) {
> > ubifs_err(c, "cannot create directory, error %d", err);
> > @@ -1110,7 +1109,7 @@ static int ubifs_mknod(struct mnt_idmap *idmap, struct inode *dir,
> > mutex_lock(&dir_ui->ui_mutex);
> > dir->i_size += sz_change;
> > dir_ui->ui_size = dir->i_size;
> > - dir->i_mtime = dir->i_ctime = inode->i_ctime;
> > + dir->i_mtime = inode_set_ctime_to_ts(dir, inode_get_ctime(inode));
> > err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
> > if (err)
> > goto out_cancel;
> > @@ -1210,7 +1209,7 @@ static int ubifs_symlink(struct mnt_idmap *idmap, struct inode *dir,
> > mutex_lock(&dir_ui->ui_mutex);
> > dir->i_size += sz_change;
> > dir_ui->ui_size = dir->i_size;
> > - dir->i_mtime = dir->i_ctime = inode->i_ctime;
> > + dir->i_mtime = inode_set_ctime_to_ts(dir, inode_get_ctime(inode));
> > err = ubifs_jnl_update(c, dir, &nm, inode, 0, 0);
> > if (err)
> > goto out_cancel;
> > @@ -1298,7 +1297,6 @@ static int do_rename(struct inode *old_dir, struct dentry *old_dentry,
> > struct ubifs_budget_req ino_req = { .dirtied_ino = 1,
> > .dirtied_ino_d = ALIGN(old_inode_ui->data_len, 8) };
> > struct ubifs_budget_req wht_req;
> > - struct timespec64 time;
> > unsigned int saved_nlink;
> > struct fscrypt_name old_nm, new_nm;
> >
>
> It would be better to put the change of do_rename in '[PATCH v2 10/92]
> ubifs: convert to simple_rename_timestamp'.
>
> Reviewed-by: Zhihao Cheng <chengzhihao1@huawei.com>
>
Good catch. I'll fix that up in my tree.
Thanks!
> > diff --git a/fs/ubifs/file.c b/fs/ubifs/file.c
> > index 6738fe43040b..436b27d7c58f 100644
> > --- a/fs/ubifs/file.c
> > +++ b/fs/ubifs/file.c
> > @@ -1092,7 +1092,7 @@ static void do_attr_changes(struct inode *inode, const struct iattr *attr)
> > if (attr->ia_valid & ATTR_MTIME)
> > inode->i_mtime = attr->ia_mtime;
> > if (attr->ia_valid & ATTR_CTIME)
> > - inode->i_ctime = attr->ia_ctime;
> > + inode_set_ctime_to_ts(inode, attr->ia_ctime);
> > if (attr->ia_valid & ATTR_MODE) {
> > umode_t mode = attr->ia_mode;
> >
> > @@ -1192,7 +1192,7 @@ static int do_truncation(struct ubifs_info *c, struct inode *inode,
> > mutex_lock(&ui->ui_mutex);
> > ui->ui_size = inode->i_size;
> > /* Truncation changes inode [mc]time */
> > - inode->i_mtime = inode->i_ctime = current_time(inode);
> > + inode->i_mtime = inode_set_ctime_current(inode);
> > /* Other attributes may be changed at the same time as well */
> > do_attr_changes(inode, attr);
> > err = ubifs_jnl_truncate(c, inode, old_size, new_size);
> > @@ -1239,7 +1239,7 @@ static int do_setattr(struct ubifs_info *c, struct inode *inode,
> > mutex_lock(&ui->ui_mutex);
> > if (attr->ia_valid & ATTR_SIZE) {
> > /* Truncation changes inode [mc]time */
> > - inode->i_mtime = inode->i_ctime = current_time(inode);
> > + inode->i_mtime = inode_set_ctime_current(inode);
> > /* 'truncate_setsize()' changed @i_size, update @ui_size */
> > ui->ui_size = inode->i_size;
> > }
> > @@ -1364,8 +1364,10 @@ int ubifs_fsync(struct file *file, loff_t start, loff_t end, int datasync)
> > static inline int mctime_update_needed(const struct inode *inode,
> > const struct timespec64 *now)
> > {
> > + struct timespec64 ctime = inode_get_ctime(inode);
> > +
> > if (!timespec64_equal(&inode->i_mtime, now) ||
> > - !timespec64_equal(&inode->i_ctime, now))
> > + !timespec64_equal(&ctime, now))
> > return 1;
> > return 0;
> > }
> > @@ -1396,7 +1398,7 @@ int ubifs_update_time(struct inode *inode, struct timespec64 *time,
> > if (flags & S_ATIME)
> > inode->i_atime = *time;
> > if (flags & S_CTIME)
> > - inode->i_ctime = *time;
> > + inode_set_ctime_to_ts(inode, *time);
> > if (flags & S_MTIME)
> > inode->i_mtime = *time;
> >
> > @@ -1432,7 +1434,7 @@ static int update_mctime(struct inode *inode)
> > return err;
> >
> > mutex_lock(&ui->ui_mutex);
> > - inode->i_mtime = inode->i_ctime = current_time(inode);
> > + inode->i_mtime = inode_set_ctime_current(inode);
> > release = ui->dirty;
> > mark_inode_dirty_sync(inode);
> > mutex_unlock(&ui->ui_mutex);
> > @@ -1570,7 +1572,7 @@ static vm_fault_t ubifs_vm_page_mkwrite(struct vm_fault *vmf)
> > struct ubifs_inode *ui = ubifs_inode(inode);
> >
> > mutex_lock(&ui->ui_mutex);
> > - inode->i_mtime = inode->i_ctime = current_time(inode);
> > + inode->i_mtime = inode_set_ctime_current(inode);
> > release = ui->dirty;
> > mark_inode_dirty_sync(inode);
> > mutex_unlock(&ui->ui_mutex);
> > diff --git a/fs/ubifs/ioctl.c b/fs/ubifs/ioctl.c
> > index 67c5108abd89..d79cabe193c3 100644
> > --- a/fs/ubifs/ioctl.c
> > +++ b/fs/ubifs/ioctl.c
> > @@ -118,7 +118,7 @@ static int setflags(struct inode *inode, int flags)
> > ui->flags &= ~ioctl2ubifs(UBIFS_SETTABLE_IOCTL_FLAGS);
> > ui->flags |= ioctl2ubifs(flags);
> > ubifs_set_inode_flags(inode);
> > - inode->i_ctime = current_time(inode);
> > + inode_set_ctime_current(inode);
> > release = ui->dirty;
> > mark_inode_dirty_sync(inode);
> > mutex_unlock(&ui->ui_mutex);
> > diff --git a/fs/ubifs/journal.c b/fs/ubifs/journal.c
> > index dc52ac0f4a34..ffc9beee7be6 100644
> > --- a/fs/ubifs/journal.c
> > +++ b/fs/ubifs/journal.c
> > @@ -454,8 +454,8 @@ static void pack_inode(struct ubifs_info *c, struct ubifs_ino_node *ino,
> > ino->creat_sqnum = cpu_to_le64(ui->creat_sqnum);
> > ino->atime_sec = cpu_to_le64(inode->i_atime.tv_sec);
> > ino->atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec);
> > - ino->ctime_sec = cpu_to_le64(inode->i_ctime.tv_sec);
> > - ino->ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
> > + ino->ctime_sec = cpu_to_le64(inode_get_ctime(inode).tv_sec);
> > + ino->ctime_nsec = cpu_to_le32(inode_get_ctime(inode).tv_nsec);
> > ino->mtime_sec = cpu_to_le64(inode->i_mtime.tv_sec);
> > ino->mtime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
> > ino->uid = cpu_to_le32(i_uid_read(inode));
> > diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c
> > index 32cb14759796..b08fb28d16b5 100644
> > --- a/fs/ubifs/super.c
> > +++ b/fs/ubifs/super.c
> > @@ -146,8 +146,8 @@ struct inode *ubifs_iget(struct super_block *sb, unsigned long inum)
> > inode->i_atime.tv_nsec = le32_to_cpu(ino->atime_nsec);
> > inode->i_mtime.tv_sec = (int64_t)le64_to_cpu(ino->mtime_sec);
> > inode->i_mtime.tv_nsec = le32_to_cpu(ino->mtime_nsec);
> > - inode->i_ctime.tv_sec = (int64_t)le64_to_cpu(ino->ctime_sec);
> > - inode->i_ctime.tv_nsec = le32_to_cpu(ino->ctime_nsec);
> > + inode_set_ctime(inode, (int64_t)le64_to_cpu(ino->ctime_sec),
> > + le32_to_cpu(ino->ctime_nsec));
> > inode->i_mode = le32_to_cpu(ino->mode);
> > inode->i_size = le64_to_cpu(ino->size);
> >
> > diff --git a/fs/ubifs/xattr.c b/fs/ubifs/xattr.c
> > index 349228dd1191..406c82eab513 100644
> > --- a/fs/ubifs/xattr.c
> > +++ b/fs/ubifs/xattr.c
> > @@ -134,7 +134,7 @@ static int create_xattr(struct ubifs_info *c, struct inode *host,
> > ui->data_len = size;
> >
> > mutex_lock(&host_ui->ui_mutex);
> > - host->i_ctime = current_time(host);
> > + inode_set_ctime_current(host);
> > host_ui->xattr_cnt += 1;
> > host_ui->xattr_size += CALC_DENT_SIZE(fname_len(nm));
> > host_ui->xattr_size += CALC_XATTR_BYTES(size);
> > @@ -215,7 +215,7 @@ static int change_xattr(struct ubifs_info *c, struct inode *host,
> > ui->data_len = size;
> >
> > mutex_lock(&host_ui->ui_mutex);
> > - host->i_ctime = current_time(host);
> > + inode_set_ctime_current(host);
> > host_ui->xattr_size -= CALC_XATTR_BYTES(old_size);
> > host_ui->xattr_size += CALC_XATTR_BYTES(size);
> >
> > @@ -474,7 +474,7 @@ static int remove_xattr(struct ubifs_info *c, struct inode *host,
> > return err;
> >
> > mutex_lock(&host_ui->ui_mutex);
> > - host->i_ctime = current_time(host);
> > + inode_set_ctime_current(host);
> > host_ui->xattr_cnt -= 1;
> > host_ui->xattr_size -= CALC_DENT_SIZE(fname_len(nm));
> > host_ui->xattr_size -= CALC_XATTR_BYTES(ui->data_len);
> >
>
--
Jeff Layton <jlayton@kernel.org>
next prev parent reply other threads:[~2023-07-06 12:10 UTC|newest]
Thread overview: 185+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20230705185755.579053-1-jlayton@kernel.org>
2023-07-05 19:00 ` [PATCH v2 01/92] ibmvmc: update ctime in conjunction with mtime on write Jeff Layton
2023-07-05 19:00 ` [PATCH v2 02/92] bfs: update ctime in addition to mtime when adding entries Jeff Layton
2023-07-05 19:00 ` [PATCH v2 03/92] efivarfs: update ctime when mtime changes on a write Jeff Layton
2023-07-05 19:00 ` [PATCH v2 04/92] exfat: ensure that ctime is updated whenever the mtime is Jeff Layton
2023-07-05 19:00 ` [PATCH v2 05/92] apparmor: update ctime whenever the mtime changes on an inode Jeff Layton
2023-07-05 19:00 ` [PATCH v2 06/92] cifs: update the ctime on a partial page write Jeff Layton
[not found] ` <CAH2r5mv+Fc9PuNtb8qMTwpb8qrEO2Tta5+o=mxD-2AY0cU5Aeg@mail.gmail.com>
2023-07-06 7:11 ` Christian Brauner
2023-07-06 15:26 ` Steve French
2023-07-05 19:00 ` [PATCH v2 09/92] btrfs: convert to simple_rename_timestamp Jeff Layton
2023-07-05 19:00 ` [PATCH v2 10/92] ubifs: " Jeff Layton
2023-07-06 10:30 ` Jan Kara
2023-07-06 12:08 ` Zhihao Cheng
2023-07-05 19:00 ` [PATCH v2 11/92] shmem: " Jeff Layton
2023-07-06 10:33 ` Jan Kara
2023-07-05 19:00 ` [PATCH v2 12/92] exfat: " Jeff Layton
2023-07-06 10:39 ` Jan Kara
2023-07-06 11:40 ` Jeff Layton
2023-07-05 19:00 ` [PATCH v2 13/92] ntfs3: " Jeff Layton
2023-07-06 10:40 ` Jan Kara
2023-07-05 19:00 ` [PATCH v2 14/92] reiserfs: " Jeff Layton
2023-07-06 10:32 ` Jan Kara
2023-07-05 19:00 ` [PATCH v2 15/92] spufs: convert to ctime accessor functions Jeff Layton
2023-07-06 11:34 ` Arnd Bergmann
2023-07-05 19:00 ` [PATCH v2 16/92] s390: " Jeff Layton
2023-07-12 12:56 ` Alexander Gordeev
2023-07-05 19:00 ` [PATCH v2 17/92] binderfs: " Jeff Layton
2023-07-05 19:00 ` [PATCH v2 18/92] infiniband: " Jeff Layton
2023-07-05 19:00 ` [PATCH v2 19/92] ibm: " Jeff Layton
2023-07-06 10:41 ` Jan Kara
2023-07-05 19:00 ` [PATCH v2 20/92] usb: " Jeff Layton
2023-07-05 19:00 ` [PATCH v2 21/92] 9p: " Jeff Layton
2023-07-05 19:00 ` [PATCH v2 22/92] adfs: " Jeff Layton
2023-07-05 19:00 ` [PATCH v2 23/92] affs: " Jeff Layton
2023-07-05 19:00 ` [PATCH v2 24/92] afs: " Jeff Layton
2023-07-05 19:00 ` [PATCH v2 25/92] fs: " Jeff Layton
2023-07-05 19:00 ` [PATCH v2 26/92] autofs: " Jeff Layton
2023-07-05 19:00 ` [PATCH v2 27/92] befs: " Jeff Layton
2023-07-05 19:00 ` [PATCH v2 28/92] bfs: " Jeff Layton
2023-07-06 10:44 ` Jan Kara
2023-07-05 19:00 ` [PATCH v2 29/92] btrfs: " Jeff Layton
2023-07-06 10:51 ` Jan Kara
2023-07-05 19:00 ` [PATCH v2 30/92] ceph: " Jeff Layton
2023-07-06 10:53 ` Jan Kara
2023-07-06 11:47 ` Jeff Layton
2023-07-05 19:00 ` [PATCH v2 31/92] coda: " Jeff Layton
2023-07-06 10:54 ` Jan Kara
2023-07-05 19:00 ` [PATCH v2 32/92] configfs: " Jeff Layton
2023-07-06 10:54 ` Jan Kara
2023-07-06 22:12 ` Joel Becker
2023-07-05 19:00 ` [PATCH v2 33/92] cramfs: " Jeff Layton
2023-07-06 10:55 ` Jan Kara
2023-07-05 19:00 ` [PATCH v2 34/92] debugfs: " Jeff Layton
2023-07-06 10:55 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 35/92] devpts: " Jeff Layton
2023-07-06 10:56 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 36/92] ecryptfs: " Jeff Layton
2023-07-06 10:56 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 37/92] efivarfs: " Jeff Layton
2023-07-06 10:57 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 38/92] efs: " Jeff Layton
2023-07-06 10:57 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 39/92] erofs: " Jeff Layton
2023-07-06 11:00 ` Jan Kara
2023-07-06 11:53 ` Jeff Layton
2023-07-06 15:12 ` Gao Xiang
2023-07-05 19:01 ` [PATCH v2 40/92] exfat: " Jeff Layton
2023-07-06 11:01 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 41/92] ext2: " Jeff Layton
2023-07-06 11:03 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 42/92] ext4: " Jeff Layton
2023-07-06 12:36 ` Jan Kara
2023-07-06 13:10 ` Jeff Layton
2023-07-05 19:01 ` [PATCH v2 43/92] f2fs: " Jeff Layton
2023-07-06 11:18 ` Jan Kara
2023-09-04 18:11 ` [f2fs-dev] " patchwork-bot+f2fs
2023-07-05 19:01 ` [PATCH v2 44/92] fat: " Jeff Layton
2023-07-06 1:54 ` OGAWA Hirofumi
2023-07-06 11:25 ` Jeff Layton
2023-07-05 19:01 ` [PATCH v2 45/92] freevxfs: " Jeff Layton
2023-07-06 11:19 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 46/92] fuse: " Jeff Layton
2023-07-06 11:20 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 47/92] gfs2: " Jeff Layton
2023-07-06 12:54 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 48/92] hfs: " Jeff Layton
2023-07-06 12:50 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 49/92] hfsplus: " Jeff Layton
2023-07-06 12:49 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 50/92] hostfs: " Jeff Layton
2023-07-06 12:48 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 51/92] hpfs: " Jeff Layton
2023-07-06 12:47 ` Jan Kara
2023-07-06 13:11 ` Jeff Layton
2023-07-05 19:01 ` [PATCH v2 52/92] hugetlbfs: " Jeff Layton
2023-07-05 19:58 ` Mike Kravetz
2023-07-06 12:40 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 53/92] isofs: " Jeff Layton
2023-07-06 12:39 ` Jan Kara
2023-07-06 13:11 ` Jeff Layton
2023-07-05 19:01 ` [PATCH v2 54/92] jffs2: " Jeff Layton
2023-07-06 13:25 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 55/92] jfs: " Jeff Layton
2023-07-06 13:27 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 56/92] kernfs: " Jeff Layton
2023-07-06 13:32 ` Jan Kara
2023-07-06 13:50 ` Jeff Layton
2023-07-05 19:01 ` [PATCH v2 57/92] nfs: " Jeff Layton
2023-07-06 13:34 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 58/92] nfsd: " Jeff Layton
2023-07-06 13:34 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 59/92] nilfs2: " Jeff Layton
2023-07-06 13:35 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 60/92] ntfs: " Jeff Layton
2023-07-06 13:37 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 61/92] ntfs3: " Jeff Layton
2023-07-06 13:47 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 62/92] ocfs2: " Jeff Layton
2023-07-06 13:51 ` Jan Kara
2023-07-07 3:15 ` Joseph Qi
2023-07-07 10:07 ` Jeff Layton
2023-07-09 13:59 ` Joseph Qi
2023-07-05 19:01 ` [PATCH v2 63/92] omfs: " Jeff Layton
2023-07-06 13:52 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 64/92] openpromfs: " Jeff Layton
2023-07-06 13:52 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 65/92] orangefs: " Jeff Layton
2023-07-06 13:55 ` Jan Kara
2023-07-06 13:56 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 66/92] overlayfs: " Jeff Layton
2023-07-06 13:58 ` Jan Kara
2023-07-06 14:01 ` Jeff Layton
2023-07-05 19:01 ` [PATCH v2 67/92] procfs: " Jeff Layton
2023-07-06 13:59 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 68/92] pstore: " Jeff Layton
2023-07-06 14:00 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 69/92] qnx4: " Jeff Layton
2023-07-06 14:00 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 70/92] qnx6: " Jeff Layton
2023-07-06 14:01 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 71/92] ramfs: " Jeff Layton
2023-07-06 14:01 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 72/92] reiserfs: " Jeff Layton
2023-07-06 14:03 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 73/92] romfs: " Jeff Layton
2023-07-06 14:04 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 74/92] smb: " Jeff Layton
2023-07-05 23:01 ` Jeff Layton
2023-07-06 15:28 ` Steve French
2023-07-05 19:01 ` [PATCH v2 75/92] squashfs: " Jeff Layton
2023-07-06 14:04 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 76/92] sysv: " Jeff Layton
2023-07-06 14:05 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 77/92] tracefs: " Jeff Layton
2023-07-06 14:06 ` Jan Kara
2023-07-06 14:27 ` Steven Rostedt
2023-07-05 19:01 ` [PATCH v2 78/92] ubifs: " Jeff Layton
2023-07-06 12:07 ` Zhihao Cheng
2023-07-06 12:10 ` Jeff Layton [this message]
2023-07-05 19:01 ` [PATCH v2 79/92] udf: " Jeff Layton
2023-07-06 12:57 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 80/92] ufs: " Jeff Layton
2023-07-06 14:49 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 81/92] vboxsf: " Jeff Layton
2023-07-06 14:50 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 82/92] xfs: " Jeff Layton
2023-07-06 14:52 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 83/92] zonefs: " Jeff Layton
2023-07-06 14:52 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 84/92] linux: " Jeff Layton
2023-07-06 14:53 ` Jan Kara
2023-07-06 15:05 ` Jeff Layton
2023-07-05 19:01 ` [PATCH v2 85/92] mqueue: " Jeff Layton
2023-07-06 14:54 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 86/92] bpf: " Jeff Layton
2023-07-06 14:55 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 87/92] shmem: " Jeff Layton
2023-07-06 14:56 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 88/92] sunrpc: " Jeff Layton
2023-07-06 14:56 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 89/92] apparmor: " Jeff Layton
2023-07-06 14:57 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 90/92] security: " Jeff Layton
2023-07-06 14:57 ` Jan Kara
2023-07-05 19:01 ` [PATCH v2 91/92] selinux: " Jeff Layton
2023-07-06 14:57 ` Jan Kara
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=7f2bbca046f120d6dc6f64c22f94dafa0becace3.camel@kernel.org \
--to=jlayton@kernel.org \
--cc=brauner@kernel.org \
--cc=chengzhihao1@huawei.com \
--cc=jack@suse.cz \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=richard@nod.at \
--cc=viro@zeniv.linux.org.uk \
/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;
as well as URLs for NNTP newsgroup(s).