linux-ext4.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ext2: compare old and new mode before setting update_mode flag
@ 2018-11-17  9:01 Chengguang Xu
  2018-11-19 10:04 ` Jan Kara
  0 siblings, 1 reply; 4+ messages in thread
From: Chengguang Xu @ 2018-11-17  9:01 UTC (permalink / raw)
  To: jack; +Cc: linux-ext4, Chengguang Xu

If new mode is the same as old mode we don't have to reset
inode mode in the rest of the code, so compare old and new
mode before setting update_mode flag.

Signed-off-by: Chengguang Xu <cgxu519@gmx.com>
---
 fs/ext2/acl.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fs/ext2/acl.c b/fs/ext2/acl.c
index cf4c77f8dd08..f4dd728393c8 100644
--- a/fs/ext2/acl.c
+++ b/fs/ext2/acl.c
@@ -226,7 +226,8 @@ ext2_set_acl(struct inode *inode, struct posix_acl *acl, int type)
 		error = posix_acl_update_mode(inode, &mode, &acl);
 		if (error)
 			return error;
-		update_mode = 1;
+		if (mode != inode->i_mode)
+			update_mode = 1;
 	}
 	error = __ext2_set_acl(inode, acl, type);
 	if (!error && update_mode) {
-- 
2.17.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] ext2: compare old and new mode before setting update_mode flag
  2018-11-17  9:01 [PATCH] ext2: compare old and new mode before setting update_mode flag Chengguang Xu
@ 2018-11-19 10:04 ` Jan Kara
  2018-11-21 10:55   ` cgxu519
  0 siblings, 1 reply; 4+ messages in thread
From: Jan Kara @ 2018-11-19 10:04 UTC (permalink / raw)
  To: Chengguang Xu; +Cc: jack, linux-ext4

On Sat 17-11-18 17:01:00, Chengguang Xu wrote:
> If new mode is the same as old mode we don't have to reset
> inode mode in the rest of the code, so compare old and new
> mode before setting update_mode flag.
> 
> Signed-off-by: Chengguang Xu <cgxu519@gmx.com>

I don't think this is quite correct. E.g. I would think that i_ctime should
be updated even if the effective mode resulting from acl did not change.

								Honza

> ---
>  fs/ext2/acl.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/fs/ext2/acl.c b/fs/ext2/acl.c
> index cf4c77f8dd08..f4dd728393c8 100644
> --- a/fs/ext2/acl.c
> +++ b/fs/ext2/acl.c
> @@ -226,7 +226,8 @@ ext2_set_acl(struct inode *inode, struct posix_acl *acl, int type)
>  		error = posix_acl_update_mode(inode, &mode, &acl);
>  		if (error)
>  			return error;
> -		update_mode = 1;
> +		if (mode != inode->i_mode)
> +			update_mode = 1;
>  	}
>  	error = __ext2_set_acl(inode, acl, type);
>  	if (!error && update_mode) {
> -- 
> 2.17.2
> 
> 
-- 
Jan Kara <jack@suse.com>
SUSE Labs, CR

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] ext2: compare old and new mode before setting update_mode flag
  2018-11-19 10:04 ` Jan Kara
@ 2018-11-21 10:55   ` cgxu519
  2018-11-21 14:29     ` Jan Kara
  0 siblings, 1 reply; 4+ messages in thread
From: cgxu519 @ 2018-11-21 10:55 UTC (permalink / raw)
  To: Jan Kara; +Cc: jack, linux-ext4

On 11/19/18 6:04 PM, Jan Kara wrote:
> On Sat 17-11-18 17:01:00, Chengguang Xu wrote:
>> If new mode is the same as old mode we don't have to reset
>> inode mode in the rest of the code, so compare old and new
>> mode before setting update_mode flag.
>>
>> Signed-off-by: Chengguang Xu <cgxu519@gmx.com>
> I don't think this is quite correct. E.g. I would think that i_ctime should
> be updated even if the effective mode resulting from acl did not change.

I think  __ext2_set_acl() will probably update i_ctime in this case, am 
I missing something?

Thanks,


> ---
>   fs/ext2/acl.c | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/fs/ext2/acl.c b/fs/ext2/acl.c
> index cf4c77f8dd08..f4dd728393c8 100644
> --- a/fs/ext2/acl.c
> +++ b/fs/ext2/acl.c
> @@ -226,7 +226,8 @@ ext2_set_acl(struct inode *inode, struct posix_acl *acl, int type)
>   		error = posix_acl_update_mode(inode, &mode, &acl);
>   		if (error)
>   			return error;
> -		update_mode = 1;
> +		if (mode != inode->i_mode)
> +			update_mode = 1;
>   	}
>   	error = __ext2_set_acl(inode, acl, type);
>   	if (!error && update_mode) {
> -- 
> 2.17.2
>
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] ext2: compare old and new mode before setting update_mode flag
  2018-11-21 10:55   ` cgxu519
@ 2018-11-21 14:29     ` Jan Kara
  0 siblings, 0 replies; 4+ messages in thread
From: Jan Kara @ 2018-11-21 14:29 UTC (permalink / raw)
  To: cgxu519; +Cc: Jan Kara, jack, linux-ext4

On Wed 21-11-18 18:55:28, cgxu519 wrote:
> On 11/19/18 6:04 PM, Jan Kara wrote:
> > On Sat 17-11-18 17:01:00, Chengguang Xu wrote:
> > > If new mode is the same as old mode we don't have to reset
> > > inode mode in the rest of the code, so compare old and new
> > > mode before setting update_mode flag.
> > > 
> > > Signed-off-by: Chengguang Xu <cgxu519@gmx.com>
> > I don't think this is quite correct. E.g. I would think that i_ctime should
> > be updated even if the effective mode resulting from acl did not change.
> 
> I think  __ext2_set_acl() will probably update i_ctime in this case, am I
> missing something?

Yeah, you're right. But I'd still prefer to keep the code simple as is.
There's no great reason to optimize this since saved time is going to be
minimal and the code is not performance critical.

								Honza


> > diff --git a/fs/ext2/acl.c b/fs/ext2/acl.c
> > index cf4c77f8dd08..f4dd728393c8 100644
> > --- a/fs/ext2/acl.c
> > +++ b/fs/ext2/acl.c
> > @@ -226,7 +226,8 @@ ext2_set_acl(struct inode *inode, struct posix_acl *acl, int type)
> >   		error = posix_acl_update_mode(inode, &mode, &acl);
> >   		if (error)
> >   			return error;
> > -		update_mode = 1;
> > +		if (mode != inode->i_mode)
> > +			update_mode = 1;
> >   	}
> >   	error = __ext2_set_acl(inode, acl, type);
> >   	if (!error && update_mode) {
> > -- 
> > 2.17.2
> > 
> > 
-- 
Jan Kara <jack@suse.com>
SUSE Labs, CR

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-11-22  1:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-17  9:01 [PATCH] ext2: compare old and new mode before setting update_mode flag Chengguang Xu
2018-11-19 10:04 ` Jan Kara
2018-11-21 10:55   ` cgxu519
2018-11-21 14:29     ` Jan Kara

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