svn commit: r239350 - projects/calloutng/sys/kern
Davide Italiano
davide at FreeBSD.org
Fri Aug 17 03:10:49 UTC 2012
Author: davide
Date: Fri Aug 17 03:10:48 2012
New Revision: 239350
URL: http://svn.freebsd.org/changeset/base/239350
Log:
Minor cleanup: remove a couple of unused include and a comment that isn't
necessary true after the changes recently made.
Modified:
projects/calloutng/sys/kern/kern_timeout.c
Modified: projects/calloutng/sys/kern/kern_timeout.c
==============================================================================
--- projects/calloutng/sys/kern/kern_timeout.c Fri Aug 17 02:47:16 2012 (r239349)
+++ projects/calloutng/sys/kern/kern_timeout.c Fri Aug 17 03:10:48 2012 (r239350)
@@ -44,11 +44,9 @@ __FBSDID("$FreeBSD$");
#include <sys/systm.h>
#include <sys/bus.h>
#include <sys/callout.h>
-#include <sys/condvar.h>
#include <sys/interrupt.h>
#include <sys/kernel.h>
#include <sys/ktr.h>
-#include <sys/limits.h>
#include <sys/lock.h>
#include <sys/malloc.h>
#include <sys/mutex.h>
@@ -395,10 +393,6 @@ callout_process(struct bintime *now)
int cpu, depth_dir, first, future, mpcalls_dir, last, lockcalls_dir,
need_softclock;
- /*
- * Process callouts at a very low cpu priority, so we don't keep the
- * relatively high clock interrupt priority any longer than necessary.
- */
need_softclock = 0;
depth_dir = 0;
mpcalls_dir = 0;
More information about the svn-src-projects
mailing list