Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 Aug 2008 09:32:41 GMT
From:      Edward Tomasz Napierala <trasz@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 146687 for review
Message-ID:  <200808050932.m759Wf4w063137@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=146687

Change 146687 by trasz@trasz_traszkan on 2008/08/05 09:32:37

	Fix ZFS support.  Btw, granularity for ZFS is already there.

Affected files ...

.. //depot/projects/soc2008/trasz_nfs4acl/TODO#29 edit
.. //depot/projects/soc2008/trasz_nfs4acl/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/acl_compat.c#2 edit

Differences ...

==== //depot/projects/soc2008/trasz_nfs4acl/TODO#29 (text+ko) ====

@@ -14,8 +14,6 @@
   acl_set_extended_np, acl_set_flagset_np, acl_to_text_np, acl_is_trivial_np,
   acl_strip_np.
 
-- Add granular access control to ZFS.
-
 - Write code to do the same operations on UFS and ZFS and compare results.
 
 - Make 'struct acl' variable size.

==== //depot/projects/soc2008/trasz_nfs4acl/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/acl_compat.c#2 (text+ko) ====

@@ -139,6 +139,7 @@
 	bzero(aclp, sizeof(*aclp));
 
 	aclp->acl_cnt = nentries;
+	aclp->acl_magic = ACL_MAGIC;
 
 	for (i = 0; i < nentries; i++) {
 		entry = &(aclp->acl_entry[i]);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200808050932.m759Wf4w063137>