Changes in / [70cd431:261e107]


Ignore:
Location:
libcfa/src/concurrency
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/stats.cfa

    r70cd431 r261e107  
    4848                        stats->io.submit.eagr       = 0;
    4949                        stats->io.submit.nblk       = 0;
    50                         stats->io.submit.extr       = 0;
    5150                        stats->io.flush.external    = 0;
    52                         stats->io.flush.signal      = 0;
    5351                        stats->io.flush.dirty       = 0;
    5452                        stats->io.flush.full        = 0;
     
    122120                        tally_one( &cltr->io.submit.eagr      , &proc->io.submit.eagr       );
    123121                        tally_one( &cltr->io.submit.nblk      , &proc->io.submit.nblk       );
    124                         tally_one( &cltr->io.submit.extr      , &proc->io.submit.extr       );
    125122                        tally_one( &cltr->io.flush.external   , &proc->io.flush.external    );
    126                         tally_one( &cltr->io.flush.signal     , &proc->io.flush.signal      );
    127123                        tally_one( &cltr->io.flush.dirty      , &proc->io.flush.dirty       );
    128124                        tally_one( &cltr->io.flush.full       , &proc->io.flush.full        );
     
    203199                                if(io.alloc.slow) {
    204200                                        double avgfasts = (100.0 * (double)io.submit.fast) / total_submits;
    205                                         sstr | "fast," | eng3(io.submit.slow) | "slow (" | ws(3, 3, avgfasts) | "%)," | eng3(io.submit.extr) | "external" | nonl;
     201                                        sstr | "fast," | eng3(io.submit.slow) | "slow (" | ws(3, 3, avgfasts) | "%)" | nonl;
    206202                                }
    207203                                sstr | " - eager" | eng3(io.submit.eagr) | nonl;
     
    221217                                     | " - cmp " | eng3(io.calls.locked) | "locked, " | eng3(io.calls.helped) | "helped"
    222218                                     | " - " | eng3(io.calls.errors.busy) | " EBUSY";
    223                                 sstr | " - sub: " | eng3(io.flush.full) | "full, " | eng3(io.flush.dirty) | "drty, " | eng3(io.flush.idle) | "idle, " | eng3(io.flush.eager) | "eagr, " | eng3(io.flush.external) | '/' | eng3(io.flush.signal) | "ext";
     219                                sstr | " - sub: " | eng3(io.flush.full) | "full, " | eng3(io.flush.dirty) | "drty, " | eng3(io.flush.idle) | "idle, " | eng3(io.flush.eager) | "eagr, " | eng3(io.flush.external) | "ext";
    224220                                sstr | "- ops blk: "
    225221                                     |   " sk rd: " | eng3(io.ops.sockread)  | "epll: " | eng3(io.ops.epllread)
  • libcfa/src/concurrency/stats.hfa

    r70cd431 r261e107  
    9494                                volatile uint64_t eagr;
    9595                                volatile uint64_t nblk;
    96                                 volatile uint64_t extr;
    9796                        } submit;
    9897                        struct {
    9998                                volatile uint64_t external;
    100                                 volatile uint64_t signal;
    10199                                volatile uint64_t dirty;
    102100                                volatile uint64_t full;
Note: See TracChangeset for help on using the changeset viewer.