aboutsummaryrefslogtreecommitdiffstats
path: root/block/blk-cgroup.h
diff options
context:
space:
mode:
authorDivyesh Shah <dpshah@google.com>2010-04-13 13:59:17 -0400
committerJens Axboe <jens.axboe@oracle.com>2010-04-13 13:59:17 -0400
commita11cdaa7af56423a921a8bdad8f5a5f4ddca918a (patch)
tree45309d760ab80347d4ad5a2cd249c988a507c636 /block/blk-cgroup.h
parentda69da184c06f365b335a0e013dc6360a82abe85 (diff)
block: Update to io-controller stats
Changelog from v1: o Call blkiocg_update_idle_time_stats() at cfq_rq_enqueued() instead of at dispatch time. Changelog from original patchset: (in response to Vivek Goyal's comments) o group blkiocg_update_blkio_group_dequeue_stats() with other DEBUG functions o rename blkiocg_update_set_active_queue_stats() to blkiocg_update_avg_queue_size_stats() o s/request/io/ in blkiocg_update_request_add_stats() and blkiocg_update_request_remove_stats() o Call cfq_del_timer() at request dispatch() instead of blkiocg_update_idle_time_stats() Signed-off-by: Divyesh Shah<dpshah@google.com> Acked-by: Vivek Goyal <vgoyal@redhat.com> Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'block/blk-cgroup.h')
-rw-r--r--block/blk-cgroup.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/block/blk-cgroup.h b/block/blk-cgroup.h
index 3c27bdfc97b9..1d409ad9c6e8 100644
--- a/block/blk-cgroup.h
+++ b/block/blk-cgroup.h
@@ -169,7 +169,7 @@ static inline char *blkg_path(struct blkio_group *blkg)
169{ 169{
170 return blkg->path; 170 return blkg->path;
171} 171}
172void blkiocg_update_set_active_queue_stats(struct blkio_group *blkg); 172void blkiocg_update_avg_queue_size_stats(struct blkio_group *blkg);
173void blkiocg_update_dequeue_stats(struct blkio_group *blkg, 173void blkiocg_update_dequeue_stats(struct blkio_group *blkg,
174 unsigned long dequeue); 174 unsigned long dequeue);
175void blkiocg_update_set_idle_time_stats(struct blkio_group *blkg); 175void blkiocg_update_set_idle_time_stats(struct blkio_group *blkg);
@@ -198,7 +198,7 @@ BLKG_FLAG_FNS(empty)
198#undef BLKG_FLAG_FNS 198#undef BLKG_FLAG_FNS
199#else 199#else
200static inline char *blkg_path(struct blkio_group *blkg) { return NULL; } 200static inline char *blkg_path(struct blkio_group *blkg) { return NULL; }
201static inline void blkiocg_update_set_active_queue_stats( 201static inline void blkiocg_update_avg_queue_size_stats(
202 struct blkio_group *blkg) {} 202 struct blkio_group *blkg) {}
203static inline void blkiocg_update_dequeue_stats(struct blkio_group *blkg, 203static inline void blkiocg_update_dequeue_stats(struct blkio_group *blkg,
204 unsigned long dequeue) {} 204 unsigned long dequeue) {}
@@ -226,9 +226,9 @@ void blkiocg_update_completion_stats(struct blkio_group *blkg,
226 uint64_t start_time, uint64_t io_start_time, bool direction, bool sync); 226 uint64_t start_time, uint64_t io_start_time, bool direction, bool sync);
227void blkiocg_update_io_merged_stats(struct blkio_group *blkg, bool direction, 227void blkiocg_update_io_merged_stats(struct blkio_group *blkg, bool direction,
228 bool sync); 228 bool sync);
229void blkiocg_update_request_add_stats(struct blkio_group *blkg, 229void blkiocg_update_io_add_stats(struct blkio_group *blkg,
230 struct blkio_group *curr_blkg, bool direction, bool sync); 230 struct blkio_group *curr_blkg, bool direction, bool sync);
231void blkiocg_update_request_remove_stats(struct blkio_group *blkg, 231void blkiocg_update_io_remove_stats(struct blkio_group *blkg,
232 bool direction, bool sync); 232 bool direction, bool sync);
233#else 233#else
234struct cgroup; 234struct cgroup;
@@ -253,9 +253,9 @@ static inline void blkiocg_update_completion_stats(struct blkio_group *blkg,
253 bool sync) {} 253 bool sync) {}
254static inline void blkiocg_update_io_merged_stats(struct blkio_group *blkg, 254static inline void blkiocg_update_io_merged_stats(struct blkio_group *blkg,
255 bool direction, bool sync) {} 255 bool direction, bool sync) {}
256static inline void blkiocg_update_request_add_stats(struct blkio_group *blkg, 256static inline void blkiocg_update_io_add_stats(struct blkio_group *blkg,
257 struct blkio_group *curr_blkg, bool direction, bool sync) {} 257 struct blkio_group *curr_blkg, bool direction, bool sync) {}
258static inline void blkiocg_update_request_remove_stats(struct blkio_group *blkg, 258static inline void blkiocg_update_io_remove_stats(struct blkio_group *blkg,
259 bool direction, bool sync) {} 259 bool direction, bool sync) {}
260#endif 260#endif
261#endif /* _BLK_CGROUP_H */ 261#endif /* _BLK_CGROUP_H */