[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <85cc0147-2fd0-de22-4ff6-57705983c968@redhat.com>
Date: Thu, 10 Aug 2023 13:04:21 -0500
From: Frank Sorenson <frank@...rocks.com>
To: Jeff Layton <jlayton@...nel.org>,
Christian Brauner <brauner@...nel.org>,
OGAWA Hirofumi <hirofumi@...l.parknet.co.jp>,
Jan Kara <jack@...e.com>
Cc: linux-kernel@...r.kernel.org, linux-fsdevel@...r.kernel.org
Subject: Re: [PATCH 1/2] fat: remove i_version handling from fat_update_time
On 8/10/23 08:12, Jeff Layton wrote:
> commit 6bb885ecd746 (fat: add functions to update and truncate
> timestamps appropriately") added an update_time routine for fat. That
> patch added a section for handling the S_VERSION bit, even though FAT
> doesn't enable SB_I_VERSION and the S_VERSION bit will never be set when
> calling it.
>
> Remove the section for handling S_VERSION since it's effectively dead
> code, and will be problematic vs. future changes.
>
> Cc: Frank Sorenson <sorenson@...hat.com>
> Signed-off-by: Jeff Layton <jlayton@...nel.org>
> ---
Reviewed-by: Frank Sorenson <sorenson@...hat.com>
> fs/fat/misc.c | 3 ---
> 1 file changed, 3 deletions(-)
>
> diff --git a/fs/fat/misc.c b/fs/fat/misc.c
> index ab28173348fa..37f4afb346af 100644
> --- a/fs/fat/misc.c
> +++ b/fs/fat/misc.c
> @@ -354,9 +354,6 @@ int fat_update_time(struct inode *inode, int flags)
> dirty_flags |= I_DIRTY_SYNC;
> }
>
> - if ((flags & S_VERSION) && inode_maybe_inc_iversion(inode, false))
> - dirty_flags |= I_DIRTY_SYNC;
> -
> __mark_inode_dirty(inode, dirty_flags);
> return 0;
> }
>
Powered by blists - more mailing lists