svn commit: r281910 - in stable: 10/sys/dev/acpica 9/sys/dev/acpica

John Baldwin jhb at FreeBSD.org
Thu Apr 23 22:39:33 UTC 2015


Author: jhb
Date: Thu Apr 23 22:39:32 2015
New Revision: 281910
URL: https://svnweb.freebsd.org/changeset/base/281910

Log:
  MFC 281159:
  Move the message complaining about failed system resource allocations
  under bootverbose.  Every example I've seen to date has been due to
  an ACPI system resource device reserving a range that overlaps with
  system memory (which ram0 attempts to reserve) or a local or I/O APIC
  (which apic0 attempts to reserve).  These are always harmless but look
  scary to users.

Modified:
  stable/9/sys/dev/acpica/acpi.c
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/dev/   (props changed)

Changes in other areas also in this revision:
Modified:
  stable/10/sys/dev/acpica/acpi.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/9/sys/dev/acpica/acpi.c
==============================================================================
--- stable/9/sys/dev/acpica/acpi.c	Thu Apr 23 22:20:43 2015	(r281909)
+++ stable/9/sys/dev/acpica/acpi.c	Thu Apr 23 22:39:32 2015	(r281910)
@@ -1112,7 +1112,7 @@ acpi_sysres_alloc(device_t dev)
 	if (res != NULL) {
 	    rman_manage_region(rm, rman_get_start(res), rman_get_end(res));
 	    rle->res = res;
-	} else
+	} else if (bootverbose)
 	    device_printf(dev, "reservation of %lx, %lx (%d) failed\n",
 		rle->start, rle->count, rle->type);
     }


More information about the svn-src-all mailing list