> @@ -184,7 +184,7 @@ int generic_permission(struct inode *ino > { > umode_t mode = inode->i_mode; > > - if (current->fsuid == inode->i_uid) > + if (inode_task_same_uid(inode, current)) > mode >>= 6; > else { Looking at the source of the above code in the email, I get : @@ -184,7 +184,7 @@ int generic_permission(struct inode *ino { umode_t mode =3D inode->i_mode; = - if (current->fsuid =3D=3D inode->i_uid) + if (inode_task_same_uid(inode, current)) mode >>=3D 6; else { Where are those ugly '=3D' coming from ? is it my mailer or do you get them also ? thanks, C. - To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html