Changeset cefb126 in mainline for kernel/generic/src/mm/frame.c


Ignore:
Timestamp:
2010-07-02T14:19:30Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
89c57b6
Parents:
fe7abd0 (diff), e3ee9b9 (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.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/mm/frame.c

    rfe7abd0 rcefb126  
    12341234{
    12351235#ifdef __32_BITS__
    1236         printf("#  base address frames       flags    free frames  busy frames\n");
    1237         printf("-- ------------ ------------ -------- ------------ ------------\n");
     1236        printf("[nr] [base addr] [frames    ] [flags ] [free frames ] [busy frames ]\n");
    12381237#endif
    12391238
    12401239#ifdef __64_BITS__
    1241         printf("#  base address          frames      flags    free frames  busy frames\n");
    1242         printf("-- -------------------- ------------ -------- ------------ ------------\n");
     1240        printf("[nr] [base address    ] [frames    ] [flags ] [free frames ] [busy frames ]\n");
    12431241#endif
    12441242       
     
    12731271                bool available = zone_flags_available(flags);
    12741272               
    1275                 printf("%-2" PRIs, i);
     1273                printf("%-4" PRIs, i);
    12761274               
    12771275#ifdef __32_BITS__
    1278                 printf("   %10p", base);
     1276                printf("  %10p", base);
    12791277#endif
    12801278               
    12811279#ifdef __64_BITS__
    1282                 printf("   %18p", base);
     1280                printf(" %18p", base);
    12831281#endif
    12841282               
     
    12891287               
    12901288                if (available)
    1291                         printf("%12" PRIs " %12" PRIs,
     1289                        printf("%14" PRIs " %14" PRIs,
    12921290                            free_count, busy_count);
    12931291               
Note: See TracChangeset for help on using the changeset viewer.