• X
    alinux: mm, memcg: record latency of direct reclaim in every memcg · 83058e75
    Xu Yu 提交于
    to #26424368
    
    Probe and calculate the latency of global direct reclaim and memcg
    direct reclaim, respectively, and then group into the latency histogram
    in struct mem_cgroup. Besides, the total latency is accumulated each
    time the histogram is updated.
    
    Note that the latency in each memcg is aggregated from all child memcgs.
    
    Usage:
    
    $ cat memory.direct_reclaim_global_latency
    0-1ms:  228
    1-5ms:  283
    5-10ms:         0
    10-100ms:       0
    100-500ms:      0
    500-1000ms:     0
    >=1000ms:       0
    total(ms):      539
    
    Each line is the count of global direct reclaim within the appropriate
    latency range.
    
    To clear the latency histogram:
    
    $ echo 0 > memory.direct_reclaim_global_latency
    $ cat memory.direct_reclaim_global_latency
    0-1ms:  0
    1-5ms:  0
    5-10ms:         0
    10-100ms:       0
    100-500ms:      0
    500-1000ms:     0
    >=1000ms:       0
    total(ms):      0
    
    The usage of memory.direct_reclaim_memcg_latency is the same as
    memory.direct_reclaim_global_latency.
    Signed-off-by: NXu Yu <xuyu@linux.alibaba.com>
    Reviewed-by: NXunlei Pang <xlpang@linux.alibaba.com>
    83058e75
memcontrol.c 206.6 KB