Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1165743AbdDXO2u (ORCPT ); Mon, 24 Apr 2017 10:28:50 -0400 Received: from mx2.suse.de ([195.135.220.15]:33157 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1760196AbdDXO2i (ORCPT ); Mon, 24 Apr 2017 10:28:38 -0400 Date: Mon, 24 Apr 2017 16:28:35 +0200 From: Jan Kara To: Fabian Frederick Cc: Jan Kara , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/2 linux-next] udf: use octal for permissions Message-ID: <20170424142835.GA23988@quack2.suse.cz> References: <20170423185815.5851-1-fabf@skynet.be> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170423185815.5851-1-fabf@skynet.be> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2536 Lines: 74 On Sun 23-04-17 20:58:15, Fabian Frederick wrote: > According to commit f90774e1fd27 ("checkpatch: look for symbolic > permissions and suggest octal instead") OK, applied. Thanks. Honza > > Signed-off-by: Fabian Frederick > --- > fs/udf/inode.c | 14 +++++++------- > fs/udf/namei.c | 2 +- > 2 files changed, 8 insertions(+), 8 deletions(-) > > diff --git a/fs/udf/inode.c b/fs/udf/inode.c > index a8d8f71..8715dcd 100644 > --- a/fs/udf/inode.c > +++ b/fs/udf/inode.c > @@ -1535,7 +1535,7 @@ static int udf_read_inode(struct inode *inode, bool hidden_inode) > inode->i_data.a_ops = &udf_symlink_aops; > inode->i_op = &udf_symlink_inode_operations; > inode_nohighmem(inode); > - inode->i_mode = S_IFLNK | S_IRWXUGO; > + inode->i_mode = S_IFLNK | 0777; > break; > case ICBTAG_FILE_TYPE_MAIN: > udf_debug("METADATA FILE-----\n"); > @@ -1591,9 +1591,9 @@ static umode_t udf_convert_permissions(struct fileEntry *fe) > permissions = le32_to_cpu(fe->permissions); > flags = le16_to_cpu(fe->icbTag.flags); > > - mode = ((permissions) & S_IRWXO) | > - ((permissions >> 2) & S_IRWXG) | > - ((permissions >> 4) & S_IRWXU) | > + mode = ((permissions) & 0007) | > + ((permissions >> 2) & 0070) | > + ((permissions >> 4) & 0700) | > ((flags & ICBTAG_FLAG_SETUID) ? S_ISUID : 0) | > ((flags & ICBTAG_FLAG_SETGID) ? S_ISGID : 0) | > ((flags & ICBTAG_FLAG_STICKY) ? S_ISVTX : 0); > @@ -1669,9 +1669,9 @@ static int udf_update_inode(struct inode *inode, int do_sync) > else > fe->gid = cpu_to_le32(i_gid_read(inode)); > > - udfperms = ((inode->i_mode & S_IRWXO)) | > - ((inode->i_mode & S_IRWXG) << 2) | > - ((inode->i_mode & S_IRWXU) << 4); > + udfperms = ((inode->i_mode & 0007)) | > + ((inode->i_mode & 0070) << 2) | > + ((inode->i_mode & 0700) << 4); > > udfperms |= (le32_to_cpu(fe->permissions) & > (FE_PERM_O_DELETE | FE_PERM_O_CHATTR | > diff --git a/fs/udf/namei.c b/fs/udf/namei.c > index babf48d..385ee89 100644 > --- a/fs/udf/namei.c > +++ b/fs/udf/namei.c > @@ -906,7 +906,7 @@ static int udf_unlink(struct inode *dir, struct dentry *dentry) > static int udf_symlink(struct inode *dir, struct dentry *dentry, > const char *symname) > { > - struct inode *inode = udf_new_inode(dir, S_IFLNK | S_IRWXUGO); > + struct inode *inode = udf_new_inode(dir, S_IFLNK | 0777); > struct pathComponent *pc; > const char *compstart; > struct extent_position epos = {}; > -- > 2.9.3 > > -- Jan Kara SUSE Labs, CR