On Wed, 2006-08-09 at 18:09 +0100, Christoph Hellwig wrote:
> On Wed, Aug 09, 2006 at 09:57:30AM -0700, Dave Hansen wrote:
> >
> > We're shortly going to be adding a bunch more permission
> > checks in these functions. That requires adding either a
> > bunch of new if() conditions, or some gotos. This patch
> > collapses existing if()s and uses gotos instead to
> > prepare for the upcoming changes.
> >
> > Signed-off-by: Dave Hansen <[email protected]>
>
>
> Acked-by: Christoph Hellwig <[email protected]>
>
> > + res = vfs_permission(&nd, mode);
> > + /* SuS v2 requires we report a read only fs too */
> > + if(res || !(mode & S_IWOTH) ||
>
> except that there's a space missing after the if here :)
In my defense, the code I moved sucked, too. ;)
Signed-off-by: Dave Hansen <[email protected]>
---
lxc-dave/fs/open.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff -puN fs/namei.c~B1-prepwork-collapse-ifs-spacefix fs/namei.c
diff -puN fs/open.c~B1-prepwork-collapse-ifs-spacefix fs/open.c
--- lxc/fs/open.c~B1-prepwork-collapse-ifs-spacefix 2006-08-09 10:13:18.000000000 -0700
+++ lxc-dave/fs/open.c 2006-08-09 10:14:12.000000000 -0700
@@ -525,11 +525,11 @@ asmlinkage long sys_faccessat(int dfd, c
res = vfs_permission(&nd, mode);
/* SuS v2 requires we report a read only fs too */
- if(res || !(mode & S_IWOTH) ||
+ if (res || !(mode & S_IWOTH) ||
special_file(nd.dentry->d_inode->i_mode))
goto out_path_release;
- if(IS_RDONLY(nd.dentry->d_inode))
+ if (IS_RDONLY(nd.dentry->d_inode))
res = -EROFS;
out_path_release:
_
-- Dave
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]