public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] max_refcount too low for starting debug messages
@ 2006-03-02 12:37 Thomas Renninger
  2006-03-03 17:48 ` Moore, Robert
  0 siblings, 1 reply; 2+ messages in thread
From: Thomas Renninger @ 2006-03-02 12:37 UTC (permalink / raw)
  To: linux-acpi; +Cc: linux-ia64, Moore, Robert, Raymund Will, Brown, Len

Some big equipped IA64 machines might show large ref count messages.

I increased ACPI_MAX_REFERENCE_COUNT and hid the message as debug.
Feel free to only hide msg, only increase reference count or both ..., not sure which
one is best, but at least one thing should be done ...

Subject: Hide ref_cnt debug message

signed-off-by: Thomas Renninger <trenn@suse.de>

drivers/acpi/utilities/utdelete.c |    8 +++-----
include/acpi/acconfig.h           |    2 +-
 2 files changed, 4 insertions(+), 6 deletions(-)

Index: linux-2.6.16-rc5/drivers/acpi/utilities/utdelete.c
=================================--- linux-2.6.16-rc5.orig/drivers/acpi/utilities/utdelete.c
+++ linux-2.6.16-rc5/drivers/acpi/utilities/utdelete.c
@@ -372,12 +372,10 @@ acpi_ut_update_ref_count(union acpi_oper
 	 * (A deleted object will have a huge reference count)
 	 */
 	if (count > ACPI_MAX_REFERENCE_COUNT) {
-
-		ACPI_WARNING((AE_INFO,
-			      "Large Reference Count (%X) in object %p",
-			      count, object));
+		ACPI_DEBUG_PRINT((ACPI_DB_WARN,
+				  "Large Reference Count (%X) in object %p",
+				  count, object));
 	}
-
 	return;
 }
 
Index: linux-2.6.16-rc5/include/acpi/acconfig.h
=================================--- linux-2.6.16-rc5.orig/include/acpi/acconfig.h
+++ linux-2.6.16-rc5/include/acpi/acconfig.h
@@ -104,7 +104,7 @@
 
 /* Max reference count (for debug only) */
 
-#define ACPI_MAX_REFERENCE_COUNT        0x400
+#define ACPI_MAX_REFERENCE_COUNT        0x800
 
 /* Size of cached memory mapping for system memory operation region */
 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-03-03 17:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-02 12:37 [PATCH] max_refcount too low for starting debug messages Thomas Renninger
2006-03-03 17:48 ` Moore, Robert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox