PERFORCE change 100800 for review

John Baldwin jhb at FreeBSD.org
Thu Jul 6 21:50:57 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=100800

Change 100800 by jhb at jhb_mutex on 2006/07/06 21:49:56

	Cleanup.

Affected files ...

.. //depot/projects/smpng/sys/kern/kern_prot.c#96 edit
.. //depot/projects/smpng/sys/kern/kern_thread.c#92 edit

Differences ...

==== //depot/projects/smpng/sys/kern/kern_prot.c#96 (text+ko) ====

@@ -65,7 +65,6 @@
 #include <sys/socketvar.h>
 #include <sys/syscallsubr.h>
 #include <sys/sysctl.h>
-#include <sys/uio.h>
 
 #include <security/audit/audit.h>
 
@@ -303,7 +302,7 @@
 	u_int ngrp;
 	int error;
 
-        ngrp = MIN(uap->gidsetsize, NGROUPS);
+	ngrp = MIN(uap->gidsetsize, NGROUPS);
 	error = kern_getgroups(td, &ngrp, groups);
 	if (error)
 		return (error);

==== //depot/projects/smpng/sys/kern/kern_thread.c#92 (text+ko) ====

@@ -604,7 +604,6 @@
 		 */
 		PROC_UNLOCK(p);
 	}
-
 	td->td_state = TDS_INACTIVE;
 	CTR1(KTR_PROC, "thread_exit: cpu_throw() thread %p", td);
 	cpu_throw(td, choosethread());


More information about the p4-projects mailing list