Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 Feb 2014 18:11:46 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r261519 - head/sys/x86/x86
Message-ID:  <201402051811.s15IBkAF072425@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Wed Feb  5 18:11:46 2014
New Revision: 261519
URL: http://svnweb.freebsd.org/changeset/base/261519

Log:
  Move a warning about LINT pins configured with a level trigger under
  bootverbose.

Modified:
  head/sys/x86/x86/local_apic.c

Modified: head/sys/x86/x86/local_apic.c
==============================================================================
--- head/sys/x86/x86/local_apic.c	Wed Feb  5 17:41:00 2014	(r261518)
+++ head/sys/x86/x86/local_apic.c	Wed Feb  5 18:11:46 2014	(r261519)
@@ -199,7 +199,7 @@ lvt_mode(struct lapic *la, u_int pin, ui
 	case APIC_LVT_DM_SMI:
 	case APIC_LVT_DM_INIT:
 	case APIC_LVT_DM_EXTINT:
-		if (!lvt->lvt_edgetrigger) {
+		if (!lvt->lvt_edgetrigger && bootverbose) {
 			printf("lapic%u: Forcing LINT%u to edge trigger\n",
 			    la->la_id, pin);
 			value |= APIC_LVT_TM;



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