The following reply was made to PR amd64/188010; it has been noted by GNATS.

From: [email protected] (dfilter service)
To: [email protected]
Cc:  
Subject: Re: amd64/188010: commit references a PR
Date: Thu, 27 Mar 2014 06:08:09 +0000 (UTC)

 Author: takawata
 Date: Thu Mar 27 06:08:07 2014
 New Revision: 263794
 URL: http://svnweb.freebsd.org/changeset/base/263794
 
 Log:
   To check polarity, check ACPI_MADT_POLARITY_CONFORMS, instead of 
ACPI_MADT_TRIGGER_CONFORMS.
   
   PR:amd64/188010
   Submitted by: syuu
 
 Modified:
   head/sys/x86/acpica/madt.c
 
 Modified: head/sys/x86/acpica/madt.c
 ==============================================================================
 --- head/sys/x86/acpica/madt.c Thu Mar 27 04:30:07 2014        (r263793)
 +++ head/sys/x86/acpica/madt.c Thu Mar 27 06:08:07 2014        (r263794)
 @@ -492,7 +492,7 @@ madt_parse_nmi(ACPI_MADT_NMI_SOURCE *nmi
        if (!(nmi->IntiFlags & ACPI_MADT_TRIGGER_CONFORMS))
                ioapic_set_triggermode(ioapic, pin,
                    interrupt_trigger(nmi->IntiFlags, 0));
 -      if (!(nmi->IntiFlags & ACPI_MADT_TRIGGER_CONFORMS))
 +      if (!(nmi->IntiFlags & ACPI_MADT_POLARITY_CONFORMS))
                ioapic_set_polarity(ioapic, pin,
                    interrupt_polarity(nmi->IntiFlags, 0));
  }
 _______________________________________________
 [email protected] mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "[email protected]"
 
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "[email protected]"

Reply via email to