svn commit: r197473 - in stable/8/sys: . amd64/include/xen cddl/contrib/opensolaris contrib/dev/acpica contrib/pf dev/xen/xenpci ufs/ufs

Brooks Davis brooks at FreeBSD.org
Thu Sep 24 21:32:57 UTC 2009


Author: brooks
Date: Thu Sep 24 21:32:56 2009
New Revision: 197473
URL: http://svn.freebsd.org/changeset/base/197473

Log:
  MFC r197269:
  Allocate space for the group array in a static credential used in
  the quota code.  One case was correctly handled in r194498, but
  this one was missed.
  
  PR:		kern/138657
  Tested by:	PR submitter
  MFC after:	3 days
  Approved by:	re@ (kib)

Modified:
  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/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)
  stable/8/sys/ufs/ufs/ufs_vnops.c

Modified: stable/8/sys/ufs/ufs/ufs_vnops.c
==============================================================================
--- stable/8/sys/ufs/ufs/ufs_vnops.c	Thu Sep 24 20:43:08 2009	(r197472)
+++ stable/8/sys/ufs/ufs/ufs_vnops.c	Thu Sep 24 21:32:56 2009	(r197473)
@@ -1449,6 +1449,7 @@ ufs_mkdir(ap)
 	{
 #ifdef QUOTA
 		struct ucred ucred, *ucp;
+		gid_t ucred_group;
 		ucp = cnp->cn_cred;
 #endif
 		/*
@@ -1476,6 +1477,7 @@ ufs_mkdir(ap)
 				refcount_init(&ucred.cr_ref, 1);
 				ucred.cr_uid = ip->i_uid;
 				ucred.cr_ngroups = 1;
+				ucred.cr_groups = &ucred_group;
 				ucred.cr_groups[0] = dp->i_gid;
 				ucp = &ucred;
 			}


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