Changeset bd08239 in mainline for kernel/generic/src/sysinfo/stats.c
- Timestamp:
- 2011-06-18T15:35:25Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 44e2c1a
- Parents:
- 313775b (diff), adfdbd5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/sysinfo/stats.c
r313775b rbd08239 173 173 174 174 /* Walk the B+ tree and count pages */ 175 link_t *cur; 176 for (cur = as->as_area_btree.leaf_head.next; 177 cur != &as->as_area_btree.leaf_head; cur = cur->next) { 175 list_foreach(as->as_area_btree.leaf_list, cur) { 178 176 btree_node_t *node = 179 177 list_get_instance(cur, btree_node_t, leaf_link); … … 218 216 219 217 /* Walk the B+ tree and count pages */ 220 link_t *cur; 221 for (cur = as->as_area_btree.leaf_head.next; 222 cur != &as->as_area_btree.leaf_head; cur = cur->next) { 218 list_foreach(as->as_area_btree.leaf_list, cur) { 223 219 btree_node_t *node = 224 220 list_get_instance(cur, btree_node_t, leaf_link);
Note:
See TracChangeset
for help on using the changeset viewer.