search for: priv_file_owner

Displaying 1 result from an estimated 1 matches for "priv_file_owner".

2007 Sep 03
1
Code/comment mismatch in delegated administration code.
...ser is the owner of the mount point * or has sufficient privileges. */ This makes sense, but the code doesn''t match the comment. The code ensures that user is the owner of the mount point _and_ can write to the directory. Or does "has sufficient privileges" means that he has PRIV_FILE_OWNER privilege? IMHO if either of those two (is the owner or can write) is true, we should allow the mount. Am I right? If I am right, the patch below implements my thinking. --- uts/common/fs/zfs/zfs_vfsops.c +++ uts/common/fs/zfs/zfs_vfsops.c @@ -608,11 +608,9 @@ goto out; } - if (error =...