Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/sysinfo/stats.c

    rc0699467 rfc47885  
    3535
    3636#include <typedefs.h>
    37 #include <abi/sysinfo.h>
     37#include <sysinfo/abi.h>
    3838#include <sysinfo/stats.h>
    3939#include <sysinfo/sysinfo.h>
     
    173173       
    174174        /* Walk the B+ tree and count pages */
    175         list_foreach(as->as_area_btree.leaf_list, cur) {
     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) {
    176178                btree_node_t *node =
    177179                    list_get_instance(cur, btree_node_t, leaf_link);
     
    216218       
    217219        /* Walk the B+ tree and count pages */
    218         list_foreach(as->as_area_btree.leaf_list, cur) {
     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) {
    219223                btree_node_t *node =
    220224                    list_get_instance(cur, btree_node_t, leaf_link);
Note: See TracChangeset for help on using the changeset viewer.