1
0
Fork 0

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 <hch@lst.de>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
wifi-calibration
Christoph Hellwig 2008-11-05 15:04:29 +01:00 committed by Al Viro
parent 52afeefb9d
commit 66f221875d
1 changed files with 0 additions and 1 deletions

View File

@ -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