From: Christoph Hellwig Date: Wed, 5 Nov 2008 14:04:29 +0000 (+0100) Subject: remove incorrect comment in inode_permission X-Git-Tag: v2.6.29-rc1~549^2~16 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=66f221875dc10813aa2f06c83ad60d0eb1356406;p=~emulex%2Finfiniband.git remove incorrect comment in inode_permission We now pass on all MAY_ flags to the filesystems permission routines, so remove the comment stating the contrary. Signed-off-by: Christoph Hellwig Signed-off-by: Al Viro --- diff --git a/fs/namei.c b/fs/namei.c index 9ed5e2818f8..631cfdd45c6 100644 --- 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