Home
last modified time | relevance | path

Searched refs:disk_stats (Results 1 – 8 of 8) sorted by relevance

/OK3568_Linux_fs/yocto/poky/scripts/pybootchartgui/pybootchartgui/
H A Dparsing.py41 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 Ddraw.py341 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 Dpart_stat.h7 struct disk_stats { struct
48 sizeof(struct disk_stats)); in part_stat_set_all()
H A Dgenhd.h66 struct disk_stats __percpu *dkstats;
/OK3568_Linux_fs/yocto/poky/scripts/pybootchartgui/pybootchartgui/tests/
H A Dparser_test.py38 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 Dgenhd.c95 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 Dblk-cgroup.c832 struct disk_stats *cpu_dkstats; in blkcg_fill_root_iostats()
/OK3568_Linux_fs/kernel/block/partitions/
H A Dcore.c412 p->dkstats = alloc_percpu(struct disk_stats); in add_partition()