aboutsummaryrefslogtreecommitdiffstats
path: root/include/acpi/aclocal.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/acpi/aclocal.h')
-rw-r--r--include/acpi/aclocal.h24
1 files changed, 8 insertions, 16 deletions
diff --git a/include/acpi/aclocal.h b/include/acpi/aclocal.h
index 52c6a2025860..58f9ba1a34e7 100644
--- a/include/acpi/aclocal.h
+++ b/include/acpi/aclocal.h
@@ -953,24 +953,18 @@ struct acpi_debug_mem_block
953 953
954#define ACPI_MEM_LIST_GLOBAL 0 954#define ACPI_MEM_LIST_GLOBAL 0
955#define ACPI_MEM_LIST_NSNODE 1 955#define ACPI_MEM_LIST_NSNODE 1
956 956#define ACPI_MEM_LIST_MAX 1
957#define ACPI_MEM_LIST_FIRST_CACHE_LIST 2 957#define ACPI_NUM_MEM_LISTS 2
958#define ACPI_MEM_LIST_STATE 2
959#define ACPI_MEM_LIST_PSNODE 3
960#define ACPI_MEM_LIST_PSNODE_EXT 4
961#define ACPI_MEM_LIST_OPERAND 5
962#define ACPI_MEM_LIST_WALK 6
963#define ACPI_MEM_LIST_MAX 6
964#define ACPI_NUM_MEM_LISTS 7
965 958
966 959
967struct acpi_memory_list 960struct acpi_memory_list
968{ 961{
962 char *list_name;
969 void *list_head; 963 void *list_head;
970 u16 link_offset;
971 u16 max_cache_depth;
972 u16 cache_depth;
973 u16 object_size; 964 u16 object_size;
965 u16 max_depth;
966 u16 current_depth;
967 u16 link_offset;
974 968
975#ifdef ACPI_DBG_TRACK_ALLOCATIONS 969#ifdef ACPI_DBG_TRACK_ALLOCATIONS
976 970
@@ -979,11 +973,9 @@ struct acpi_memory_list
979 u32 total_allocated; 973 u32 total_allocated;
980 u32 total_freed; 974 u32 total_freed;
981 u32 current_total_size; 975 u32 current_total_size;
982 u32 cache_requests; 976 u32 requests;
983 u32 cache_hits; 977 u32 hits;
984 char *list_name;
985#endif 978#endif
986}; 979};
987 980
988
989#endif /* __ACLOCAL_H__ */ 981#endif /* __ACLOCAL_H__ */