projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
52afeef
)
remove incorrect comment in inode_permission
author
Christoph Hellwig
<hch@lst.de>
Wed, 5 Nov 2008 14:04:29 +0000
(15:04 +0100)
committer
Al Viro
<viro@zeniv.linux.org.uk>
Wed, 31 Dec 2008 23:07:41 +0000
(18:07 -0500)
We now pass on all MAY_ flags to the filesystems permission routines,
so remove the comment stating the contrary.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/namei.c
patch
|
blob
|
history
diff --git
a/fs/namei.c
b/fs/namei.c
index
9ed5e28
..
631cfdd
100644
(file)
--- a/
fs/namei.c
+++ b/
fs/namei.c
@@
-247,7
+247,6
@@
int inode_permission(struct inode *inode, int mask)
return -EACCES;
}
- /* Ordinary permission routines do not understand MAY_APPEND. */
if (inode->i_op && inode->i_op->permission)
retval = inode->i_op->permission(inode, mask);
else