svn commit: r206806 - stable/8/sys/sys

Edward Tomasz Napierala trasz at FreeBSD.org
Sun Apr 18 19:44:54 UTC 2010


Author: trasz
Date: Sun Apr 18 19:44:54 2010
New Revision: 206806
URL: http://svn.freebsd.org/changeset/base/206806

Log:
  MFC r200829:
  
  Cosmetic fixes.

Modified:
  stable/8/sys/sys/acl.h
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/dev/uath/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/sys/acl.h
==============================================================================
--- stable/8/sys/sys/acl.h	Sun Apr 18 19:40:52 2010	(r206805)
+++ stable/8/sys/sys/acl.h	Sun Apr 18 19:44:54 2010	(r206806)
@@ -99,13 +99,13 @@ struct oldacl {
  * Current "struct acl".
  */
 struct acl_entry {
-	acl_tag_t	ae_tag;
-	uid_t		ae_id;
-	acl_perm_t	ae_perm;
-	/* "allow" or "deny".  Unused in POSIX ACLs. */
+	acl_tag_t		ae_tag;
+	uid_t			ae_id;
+	acl_perm_t		ae_perm;
+	/* NFSv4 entry type, "allow" or "deny".  Unused in POSIX.1e ACLs. */
 	acl_entry_type_t	ae_entry_type;
-	/* Flags control inheritance.  Unused in POSIX ACLs. */
-	acl_flag_t	ae_flags;
+	/* NFSv4 ACL inheritance.  Unused in POSIX.1e ACLs. */
+	acl_flag_t		ae_flags;
 };
 typedef struct acl_entry	*acl_entry_t;
 


More information about the svn-src-stable-8 mailing list