From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Renninger Date: Thu, 02 Mar 2006 12:37:13 +0000 Subject: [PATCH] max_refcount too low for starting debug messages Message-Id: <200603021337.14017.trenn@suse.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-acpi@vger.kernel.org Cc: linux-ia64@vger.kernel.org, "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 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 */