diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1999-01-20 04:24:22 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1999-01-20 04:24:22 +0000 |
| commit | c71d51c375b29ad49568ea0fdc125fa1737f68f1 (patch) | |
| tree | dcdffc1939ddef9fd18b5dd47c002ee02cb876fb | |
| parent | 7e32bcf677fa83805cff7d459b1be3268486af05 (diff) | |
Notes
| -rw-r--r-- | sys/amd64/amd64/mp_machdep.c | 8 | ||||
| -rw-r--r-- | sys/amd64/amd64/mptable.c | 8 | ||||
| -rw-r--r-- | sys/amd64/include/mptable.h | 8 | ||||
| -rw-r--r-- | sys/i386/i386/mp_machdep.c | 8 | ||||
| -rw-r--r-- | sys/i386/i386/mptable.c | 8 | ||||
| -rw-r--r-- | sys/i386/include/mptable.h | 8 | ||||
| -rw-r--r-- | sys/kern/subr_smp.c | 8 |
7 files changed, 35 insertions, 21 deletions
diff --git a/sys/amd64/amd64/mp_machdep.c b/sys/amd64/amd64/mp_machdep.c index dd9f14422f59..569f04baf659 100644 --- a/sys/amd64/amd64/mp_machdep.c +++ b/sys/amd64/amd64/mp_machdep.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.86 1998/12/07 21:58:18 archie Exp $ + * $Id: mp_machdep.c,v 1.87 1999/01/12 00:19:31 eivind Exp $ */ #include "opt_smp.h" @@ -1388,11 +1388,13 @@ int undirect_isa_irq(int rirq) { #if defined(READY) - printf("Freeing redirected ISA irq %d.\n", rirq); + if (bootverbose) + printf("Freeing redirected ISA irq %d.\n", rirq); /** FIXME: tickle the MB redirector chip */ return ???; #else - printf("Freeing (NOT implemented) redirected ISA irq %d.\n", rirq); + if (bootverbose) + printf("Freeing (NOT implemented) redirected ISA irq %d.\n", rirq); return 0; #endif /* READY */ } diff --git a/sys/amd64/amd64/mptable.c b/sys/amd64/amd64/mptable.c index dd9f14422f59..569f04baf659 100644 --- a/sys/amd64/amd64/mptable.c +++ b/sys/amd64/amd64/mptable.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.86 1998/12/07 21:58:18 archie Exp $ + * $Id: mp_machdep.c,v 1.87 1999/01/12 00:19:31 eivind Exp $ */ #include "opt_smp.h" @@ -1388,11 +1388,13 @@ int undirect_isa_irq(int rirq) { #if defined(READY) - printf("Freeing redirected ISA irq %d.\n", rirq); + if (bootverbose) + printf("Freeing redirected ISA irq %d.\n", rirq); /** FIXME: tickle the MB redirector chip */ return ???; #else - printf("Freeing (NOT implemented) redirected ISA irq %d.\n", rirq); + if (bootverbose) + printf("Freeing (NOT implemented) redirected ISA irq %d.\n", rirq); return 0; #endif /* READY */ } diff --git a/sys/amd64/include/mptable.h b/sys/amd64/include/mptable.h index dd9f14422f59..569f04baf659 100644 --- a/sys/amd64/include/mptable.h +++ b/sys/amd64/include/mptable.h @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.86 1998/12/07 21:58:18 archie Exp $ + * $Id: mp_machdep.c,v 1.87 1999/01/12 00:19:31 eivind Exp $ */ #include "opt_smp.h" @@ -1388,11 +1388,13 @@ int undirect_isa_irq(int rirq) { #if defined(READY) - printf("Freeing redirected ISA irq %d.\n", rirq); + if (bootverbose) + printf("Freeing redirected ISA irq %d.\n", rirq); /** FIXME: tickle the MB redirector chip */ return ???; #else - printf("Freeing (NOT implemented) redirected ISA irq %d.\n", rirq); + if (bootverbose) + printf("Freeing (NOT implemented) redirected ISA irq %d.\n", rirq); return 0; #endif /* READY */ } diff --git a/sys/i386/i386/mp_machdep.c b/sys/i386/i386/mp_machdep.c index dd9f14422f59..569f04baf659 100644 --- a/sys/i386/i386/mp_machdep.c +++ b/sys/i386/i386/mp_machdep.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.86 1998/12/07 21:58:18 archie Exp $ + * $Id: mp_machdep.c,v 1.87 1999/01/12 00:19:31 eivind Exp $ */ #include "opt_smp.h" @@ -1388,11 +1388,13 @@ int undirect_isa_irq(int rirq) { #if defined(READY) - printf("Freeing redirected ISA irq %d.\n", rirq); + if (bootverbose) + printf("Freeing redirected ISA irq %d.\n", rirq); /** FIXME: tickle the MB redirector chip */ return ???; #else - printf("Freeing (NOT implemented) redirected ISA irq %d.\n", rirq); + if (bootverbose) + printf("Freeing (NOT implemented) redirected ISA irq %d.\n", rirq); return 0; #endif /* READY */ } diff --git a/sys/i386/i386/mptable.c b/sys/i386/i386/mptable.c index dd9f14422f59..569f04baf659 100644 --- a/sys/i386/i386/mptable.c +++ b/sys/i386/i386/mptable.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.86 1998/12/07 21:58:18 archie Exp $ + * $Id: mp_machdep.c,v 1.87 1999/01/12 00:19:31 eivind Exp $ */ #include "opt_smp.h" @@ -1388,11 +1388,13 @@ int undirect_isa_irq(int rirq) { #if defined(READY) - printf("Freeing redirected ISA irq %d.\n", rirq); + if (bootverbose) + printf("Freeing redirected ISA irq %d.\n", rirq); /** FIXME: tickle the MB redirector chip */ return ???; #else - printf("Freeing (NOT implemented) redirected ISA irq %d.\n", rirq); + if (bootverbose) + printf("Freeing (NOT implemented) redirected ISA irq %d.\n", rirq); return 0; #endif /* READY */ } diff --git a/sys/i386/include/mptable.h b/sys/i386/include/mptable.h index dd9f14422f59..569f04baf659 100644 --- a/sys/i386/include/mptable.h +++ b/sys/i386/include/mptable.h @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.86 1998/12/07 21:58:18 archie Exp $ + * $Id: mp_machdep.c,v 1.87 1999/01/12 00:19:31 eivind Exp $ */ #include "opt_smp.h" @@ -1388,11 +1388,13 @@ int undirect_isa_irq(int rirq) { #if defined(READY) - printf("Freeing redirected ISA irq %d.\n", rirq); + if (bootverbose) + printf("Freeing redirected ISA irq %d.\n", rirq); /** FIXME: tickle the MB redirector chip */ return ???; #else - printf("Freeing (NOT implemented) redirected ISA irq %d.\n", rirq); + if (bootverbose) + printf("Freeing (NOT implemented) redirected ISA irq %d.\n", rirq); return 0; #endif /* READY */ } diff --git a/sys/kern/subr_smp.c b/sys/kern/subr_smp.c index dd9f14422f59..569f04baf659 100644 --- a/sys/kern/subr_smp.c +++ b/sys/kern/subr_smp.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.86 1998/12/07 21:58:18 archie Exp $ + * $Id: mp_machdep.c,v 1.87 1999/01/12 00:19:31 eivind Exp $ */ #include "opt_smp.h" @@ -1388,11 +1388,13 @@ int undirect_isa_irq(int rirq) { #if defined(READY) - printf("Freeing redirected ISA irq %d.\n", rirq); + if (bootverbose) + printf("Freeing redirected ISA irq %d.\n", rirq); /** FIXME: tickle the MB redirector chip */ return ???; #else - printf("Freeing (NOT implemented) redirected ISA irq %d.\n", rirq); + if (bootverbose) + printf("Freeing (NOT implemented) redirected ISA irq %d.\n", rirq); return 0; #endif /* READY */ } |
