diff options
| author | Tejun Heo <tj@kernel.org> | 2015-05-22 18:23:22 -0400 |
|---|---|---|
| committer | Jens Axboe <axboe@fb.com> | 2015-06-02 10:38:12 -0400 |
| commit | dcc25ae76eb7b8ff883eaaab57e30e8f2f085be3 (patch) | |
| tree | 7fb1d01278ad2b16a1c21ead3e567a3bb7d00c25 /include/trace | |
| parent | 380c27ca33ebecc9da35aa90c8b3a9154f90aac2 (diff) | |
writeback: move global_dirty_limit into wb_domain
This patch is a part of the series to define wb_domain which
represents a domain that wb's (bdi_writeback's) belong to and are
measured against each other in. This will enable IO backpressure
propagation for cgroup writeback.
global_dirty_limit exists to regulate the global dirty threshold which
is a property of the wb_domain. This patch moves hard_dirty_limit,
dirty_lock, and update_time into wb_domain.
This is pure reorganization and doesn't introduce any behavioral
changes.
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Jan Kara <jack@suse.cz>
Cc: Wu Fengguang <fengguang.wu@intel.com>
Cc: Greg Thelen <gthelen@google.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'include/trace')
| -rw-r--r-- | include/trace/events/writeback.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/trace/events/writeback.h b/include/trace/events/writeback.h index 9b876f6cc81a..bec69995968f 100644 --- a/include/trace/events/writeback.h +++ b/include/trace/events/writeback.h | |||
| @@ -361,7 +361,7 @@ TRACE_EVENT(global_dirty_state, | |||
| 361 | __entry->nr_written = global_page_state(NR_WRITTEN); | 361 | __entry->nr_written = global_page_state(NR_WRITTEN); |
| 362 | __entry->background_thresh = background_thresh; | 362 | __entry->background_thresh = background_thresh; |
| 363 | __entry->dirty_thresh = dirty_thresh; | 363 | __entry->dirty_thresh = dirty_thresh; |
| 364 | __entry->dirty_limit = global_dirty_limit; | 364 | __entry->dirty_limit = global_wb_domain.dirty_limit; |
| 365 | ), | 365 | ), |
| 366 | 366 | ||
| 367 | TP_printk("dirty=%lu writeback=%lu unstable=%lu " | 367 | TP_printk("dirty=%lu writeback=%lu unstable=%lu " |
| @@ -463,8 +463,9 @@ TRACE_EVENT(balance_dirty_pages, | |||
| 463 | unsigned long freerun = (thresh + bg_thresh) / 2; | 463 | unsigned long freerun = (thresh + bg_thresh) / 2; |
| 464 | strlcpy(__entry->bdi, dev_name(bdi->dev), 32); | 464 | strlcpy(__entry->bdi, dev_name(bdi->dev), 32); |
| 465 | 465 | ||
| 466 | __entry->limit = global_dirty_limit; | 466 | __entry->limit = global_wb_domain.dirty_limit; |
| 467 | __entry->setpoint = (global_dirty_limit + freerun) / 2; | 467 | __entry->setpoint = (global_wb_domain.dirty_limit + |
| 468 | freerun) / 2; | ||
| 468 | __entry->dirty = dirty; | 469 | __entry->dirty = dirty; |
| 469 | __entry->bdi_setpoint = __entry->setpoint * | 470 | __entry->bdi_setpoint = __entry->setpoint * |
| 470 | bdi_thresh / (thresh + 1); | 471 | bdi_thresh / (thresh + 1); |
