Searched refs:disk_stats (Results 1 – 8 of 8) sorted by relevance
| /OK3568_Linux_fs/yocto/poky/scripts/pybootchartgui/pybootchartgui/ |
| H A D | parsing.py | 41 self.disk_stats = [] 114 return self.headers != None and self.disk_stats != None and \ 209 disk_util = [(sample.time, sample.util) for sample in self.disk_stats] 229 while len (self.disk_stats) \ 230 and self.disk_stats[-1].time > crop_at: 231 self.disk_stats.pop() 478 disk_stats = [] 488 disk_stats.append(DiskSample(sample2.time, readTput, writeTput, util)) 490 return disk_stats 540 disk_stats = [] [all …]
|
| H A D | draw.py | 341 if trace.disk_stats: 387 if trace.disk_stats: 397 [(sample.time, sample.util) for sample in trace.disk_stats], \ 401 max_sample = max (trace.disk_stats, key = lambda s: s.tput) 404 [(sample.time, sample.tput) for sample in trace.disk_stats], \
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | part_stat.h | 7 struct disk_stats { struct 48 sizeof(struct disk_stats)); in part_stat_set_all()
|
| H A D | genhd.h | 66 struct disk_stats __percpu *dkstats;
|
| /OK3568_Linux_fs/yocto/poky/scripts/pybootchartgui/pybootchartgui/tests/ |
| H A D | parser_test.py | 38 self.assertEqual(141, len(state.disk_stats)) 66 …es = parsing.parse_file(writer, state_with_headers, self.mk_fname('proc_diskstats.log')).disk_stats
|
| /OK3568_Linux_fs/kernel/block/ |
| H A D | genhd.c | 95 static void part_stat_read_all(struct hd_struct *part, struct disk_stats *stat) in part_stat_read_all() 99 memset(stat, 0, sizeof(struct disk_stats)); in part_stat_read_all() 101 struct disk_stats *ptr = per_cpu_ptr(part->dkstats, cpu); in part_stat_read_all() 1293 struct disk_stats stat; in part_stat_show() 1606 struct disk_stats stat; in diskstats_show() 1731 disk->part0.dkstats = alloc_percpu(struct disk_stats); in __alloc_disk_node()
|
| H A D | blk-cgroup.c | 832 struct disk_stats *cpu_dkstats; in blkcg_fill_root_iostats()
|
| /OK3568_Linux_fs/kernel/block/partitions/ |
| H A D | core.c | 412 p->dkstats = alloc_percpu(struct disk_stats); in add_partition()
|