Changeset 8d308b9 in mainline for kernel/generic/src/mm/frame.c
- Timestamp:
- 2011-05-15T19:28:27Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0d8a304, 9d47440
- Parents:
- d61c3a7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/mm/frame.c
rd61c3a7 r8d308b9 182 182 * 183 183 */ 184 #ifdef CONFIG_DEBUG 185 NO_TRACE static size_t total_frames_free(void) 184 NO_TRACE static size_t frame_total_free_get_internal(void) 186 185 { 187 186 size_t total = 0; 188 187 size_t i; 188 189 189 for (i = 0; i < zones.count; i++) 190 190 total += zones.info[i].free_count; … … 192 192 return total; 193 193 } 194 #endif /* CONFIG_DEBUG */ 194 195 NO_TRACE size_t frame_total_free_get(void) 196 { 197 size_t total; 198 199 irq_spinlock_lock(&zones.lock, true); 200 total = frame_total_free_get_internal(); 201 irq_spinlock_unlock(&zones.lock, true); 202 203 return total; 204 } 205 195 206 196 207 /** Find a zone with a given frames. … … 840 851 buddy_system_free(zone->buddy_system, &zone->frames[i].buddy_link); 841 852 } 842 843 /* "Unreserve" new frames. */844 reserve_free(count);845 853 } else 846 854 zone->frames = NULL; … … 1051 1059 1052 1060 #ifdef CONFIG_DEBUG 1053 size_t avail = total_frames_free();1061 size_t avail = frame_total_free_get_internal(); 1054 1062 #endif 1055 1063
Note:
See TracChangeset
for help on using the changeset viewer.