summaryrefslogtreecommitdiffstats
path: root/sys/contrib/dev/acpica/utalloc.c
diff options
context:
space:
mode:
authormsmith <msmith@FreeBSD.org>2000-12-01 09:36:25 +0000
committermsmith <msmith@FreeBSD.org>2000-12-01 09:36:25 +0000
commit4d595f4926afa2a1f9c1a96d657dba5d33297a85 (patch)
tree7c849b394b62ba086bc123f7a780a33169a79fe8 /sys/contrib/dev/acpica/utalloc.c
parent748be155016b7e29202235815e27acc5ff5e9e87 (diff)
downloadFreeBSD-src-4d595f4926afa2a1f9c1a96d657dba5d33297a85.zip
FreeBSD-src-4d595f4926afa2a1f9c1a96d657dba5d33297a85.tar.gz
Update to the 20001115 Intel ACPI CA snapshot.
Diffstat (limited to 'sys/contrib/dev/acpica/utalloc.c')
-rw-r--r--sys/contrib/dev/acpica/utalloc.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/sys/contrib/dev/acpica/utalloc.c b/sys/contrib/dev/acpica/utalloc.c
index bb1e0dd..8ac46c8 100644
--- a/sys/contrib/dev/acpica/utalloc.c
+++ b/sys/contrib/dev/acpica/utalloc.c
@@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: cmalloc - local memory allocation routines
- * $Revision: 76 $
+ * $Revision: 78 $
*
*****************************************************************************/
@@ -475,42 +475,42 @@ AcpiCmDumpAllocationInfo (
DEBUG_PRINT (TRACE_ALLOCATIONS | TRACE_TABLES,
("%30s: %4d (%3d Kb)\n", "Current allocations",
AcpiGbl_CurrentAllocCount,
- (AcpiGbl_CurrentAllocSize + 1023) / 1024));
+ ROUND_UP_TO_1K (AcpiGbl_CurrentAllocSize)));
DEBUG_PRINT (TRACE_ALLOCATIONS | TRACE_TABLES,
("%30s: %4d (%3d Kb)\n", "Max concurrent allocations",
AcpiGbl_MaxConcurrentAllocCount,
- (AcpiGbl_MaxConcurrentAllocSize + 1023) / 1024));
+ ROUND_UP_TO_1K (AcpiGbl_MaxConcurrentAllocSize)));
DEBUG_PRINT (TRACE_ALLOCATIONS | TRACE_TABLES,
("%30s: %4d (%3d Kb)\n", "Current Internal objects",
AcpiGbl_CurrentObjectCount,
- (AcpiGbl_CurrentObjectSize + 1023) / 1024));
+ ROUND_UP_TO_1K (AcpiGbl_CurrentObjectSize)));
DEBUG_PRINT (TRACE_ALLOCATIONS | TRACE_TABLES,
("%30s: %4d (%3d Kb)\n", "Max internal objects",
AcpiGbl_MaxConcurrentObjectCount,
- (AcpiGbl_MaxConcurrentObjectSize + 1023) / 1024));
+ ROUND_UP_TO_1K (AcpiGbl_MaxConcurrentObjectSize)));
DEBUG_PRINT (TRACE_ALLOCATIONS | TRACE_TABLES,
("%30s: %4d (%3d Kb)\n", "Current Nodes",
AcpiGbl_CurrentNodeCount,
- (AcpiGbl_CurrentNodeSize + 1023) / 1024));
+ ROUND_UP_TO_1K (AcpiGbl_CurrentNodeSize)));
DEBUG_PRINT (TRACE_ALLOCATIONS | TRACE_TABLES,
("%30s: %4d (%3d Kb)\n", "Max Nodes",
AcpiGbl_MaxConcurrentNodeCount,
- ((AcpiGbl_MaxConcurrentNodeCount * sizeof (ACPI_NAMESPACE_NODE)) + 1023) / 1024));
+ ROUND_UP_TO_1K ((AcpiGbl_MaxConcurrentNodeCount * sizeof (ACPI_NAMESPACE_NODE)))));
DEBUG_PRINT (TRACE_ALLOCATIONS | TRACE_TABLES,
("%30s: %4d (%3d Kb)\n", "Total (all) internal objects",
AcpiGbl_RunningObjectCount,
- (AcpiGbl_RunningObjectSize + 1023) / 1024));
+ ROUND_UP_TO_1K (AcpiGbl_RunningObjectSize)));
DEBUG_PRINT (TRACE_ALLOCATIONS | TRACE_TABLES,
("%30s: %4d (%3d Kb)\n", "Total (all) allocations",
AcpiGbl_RunningAllocCount,
- (AcpiGbl_RunningAllocSize + 1023) / 1024));
+ ROUND_UP_TO_1K (AcpiGbl_RunningAllocSize)));
return_VOID;
}
@@ -642,7 +642,7 @@ _CmAllocate (
UINT32 Line)
{
void *Address = NULL;
- DEBUG_EXEC (\
+ DEBUG_ONLY_MEMBERS (\
ACPI_STATUS Status)
@@ -709,7 +709,7 @@ _CmCallocate (
UINT32 Line)
{
void *Address = NULL;
- DEBUG_EXEC (\
+ DEBUG_ONLY_MEMBERS (\
ACPI_STATUS Status)
OpenPOWER on IntegriCloud