svn commit: r200697 - stable/8/sys/boot/i386/libi386

John Baldwin jhb at FreeBSD.org
Fri Dec 18 22:23:28 UTC 2009


Author: jhb
Date: Fri Dec 18 22:23:27 2009
New Revision: 200697
URL: http://svn.freebsd.org/changeset/base/200697

Log:
  MFC 200357:
  Don't warn about an RSDP with a corrupt checksum.  The kernel does a better
  job about warning about these things later and this message can be
  confusing.

Modified:
  stable/8/sys/boot/i386/libi386/biosacpi.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/boot/i386/libi386/biosacpi.c
==============================================================================
--- stable/8/sys/boot/i386/libi386/biosacpi.c	Fri Dec 18 22:14:28 2009	(r200696)
+++ stable/8/sys/boot/i386/libi386/biosacpi.c	Fri Dec 18 22:23:27 2009	(r200697)
@@ -125,10 +125,8 @@ biosacpi_search_rsdp(char *base, int len
 	    sum = 0;
 	    for (idx = 0; idx < RSDP_CHECKSUM_LENGTH; idx++)
 		sum += *(cp + idx);
-	    if (sum != 0) {
-		printf("acpi: bad RSDP checksum (%d)\n", sum);
+	    if (sum != 0)
 		continue;
-	    }
 	    return(rsdp);
 	}
     }


More information about the svn-src-stable-8 mailing list