svn commit: r190062 - in stable/7/sys: . contrib/pf dev/ath/ath_hal
dev/cxgb sparc64/sparc64
Marius Strobl
marius at FreeBSD.org
Thu Mar 19 08:01:26 PDT 2009
Author: marius
Date: Thu Mar 19 15:01:24 2009
New Revision: 190062
URL: http://svn.freebsd.org/changeset/base/190062
Log:
MFC: r183144
- Add a missing prototype.
- Remove a banal comment.
Modified:
stable/7/sys/ (props changed)
stable/7/sys/contrib/pf/ (props changed)
stable/7/sys/dev/ath/ath_hal/ (props changed)
stable/7/sys/dev/cxgb/ (props changed)
stable/7/sys/sparc64/sparc64/intr_machdep.c
Modified: stable/7/sys/sparc64/sparc64/intr_machdep.c
==============================================================================
--- stable/7/sys/sparc64/sparc64/intr_machdep.c Thu Mar 19 14:51:56 2009 (r190061)
+++ stable/7/sys/sparc64/sparc64/intr_machdep.c Thu Mar 19 15:01:24 2009 (r190062)
@@ -111,6 +111,7 @@ static struct mtx intrcnt_lock;
static int assign_cpu;
static void intr_assign_next_cpu(struct intr_vector *iv);
+static void intr_shuffle_irqs(void *arg __unused);
#endif
static int intr_assign_cpu(void *arg, u_char cpu);
@@ -520,7 +521,7 @@ intr_add_cpu(u_int cpu)
/*
* Distribute all the interrupt sources among the available CPUs once the
- * AP's have been launched.
+ * APs have been launched.
*/
static void
intr_shuffle_irqs(void *arg __unused)
@@ -533,7 +534,6 @@ intr_shuffle_irqs(void *arg __unused)
if (mp_ncpus == 1)
return;
- /* Round-robin assign a CPU to each enabled source. */
sx_xlock(&intr_table_lock);
assign_cpu = 1;
for (i = 0; i < IV_MAX; i++) {
More information about the svn-src-stable
mailing list