Date: Thu, 19 Mar 2009 15:01:24 +0000 (UTC) From: Marius Strobl <marius@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org Subject: svn commit: r190062 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb sparc64/sparc64 Message-ID: <200903191501.n2JF1OQl065899@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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++) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200903191501.n2JF1OQl065899>