Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 6 Jul 2006 21:50:56 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 100800 for review
Message-ID:  <200607062150.k66LouiR051417@repoman.freebsd.org>

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

Change 100800 by jhb@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());



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