@@ -204,6 +204,14 @@ config ARCH_ENABLE_SPLIT_PMD_PTLOCK
config MEMORY_BALLOON
bool
+config CGWB_BDP_WITH_EBDI
+ bool
+ help
+ This puts the walk-dog method in balancing dirty pages
+ instead of measuring bandwidth.
+
+ Say N if unsure.
+
#
# support for memory balloon compaction
config BALLOON_COMPACTION
@@ -170,6 +170,10 @@ struct bdi_writeback {
struct list_head bdi_node; /* anchored at bdi->wb_list */
+#ifdef CONFIG_CGWB_BDP_WITH_EBDI
+ struct wait_queue_head bdp_waitq;
+#endif
+
#ifdef CONFIG_CGROUP_WRITEBACK
struct percpu_ref refcnt; /* used only for !root wb's */
struct fprop_local_percpu memcg_completions;
@@ -324,6 +324,9 @@ static int wb_init(struct bdi_writeback
goto out_destroy_stat;
}
+ if (IS_ENABLED(CONFIG_CGWB_BDP_WITH_EBDI))
+ init_waitqueue_head(&wb->bdp_waitq);
+
return 0;
out_destroy_stat:
@@ -1551,6 +1551,41 @@ static inline void wb_dirty_limits(struc
}
}
+#ifdef CONFIG_CGWB_BDP_WITH_EBDI
+static bool cgwb_bdp_should_throttle(struct bdi_writeback *wb)
+{
+ struct dirty_throttle_control gdtc = { GDTC_INIT_NO_WB };
+
+ if (fatal_signal_pending(current))
+ return false;
+
+ gdtc.avail = global_dirtyable_memory();
+
+ domain_dirty_limits(&gdtc);
+
+ gdtc.dirty = global_node_page_state(NR_FILE_DIRTY) +
+ global_node_page_state(NR_UNSTABLE_NFS) +
+ global_node_page_state(NR_WRITEBACK);
+
+ if (gdtc.dirty < gdtc.bg_thresh)
+ return false;
+
+ if (!writeback_in_progress(wb))
+ wb_start_background_writeback(wb);
+
+ return gdtc.dirty > gdtc.thresh &&
+ wb_stat(wb, WB_DIRTIED) >
+ wb_stat(wb, WB_WRITTEN) +
+ wb_stat_error();
+}
+
+static inline void cgwb_bdp(struct bdi_writeback *wb)
+{
+ wait_event_interruptible_timeout(wb->bdp_waitq,
+ !cgwb_bdp_should_throttle(wb), HZ);
+}
+#endif
+
/*
* balance_dirty_pages() must be called by processes which are generating dirty
* data. It looks at the number of dirty pages in the machine and will force
@@ -1910,7 +1945,10 @@ void balance_dirty_pages_ratelimited(str
preempt_enable();
if (unlikely(current->nr_dirtied >= ratelimit))
- balance_dirty_pages(wb, current->nr_dirtied);
+ if (IS_ENABLED(CONFIG_CGWB_BDP_WITH_EBDI))
+ cgwb_bdp(wb);
+ else
+ balance_dirty_pages(wb, current->nr_dirtied);
wb_put(wb);
}
@@ -811,6 +811,9 @@ static long wb_split_bdi_pages(struct bd
if (nr_pages == LONG_MAX)
return LONG_MAX;
+ if (IS_ENABLED(CONFIG_CGWB_BDP_WITH_EBDI))
+ return nr_pages;
+
/*
* This may be called on clean wb's and proportional distribution
* may not make sense, just use the original @nr_pages in those
@@ -1598,6 +1601,8 @@ static long writeback_chunk_size(struct
*/
if (work->sync_mode == WB_SYNC_ALL || work->tagged_writepages)
pages = LONG_MAX;
+ else if (IS_ENABLED(CONFIG_CGWB_BDP_WITH_EBDI))
+ pages = work->nr_pages;
else {
pages = min(wb->avg_write_bandwidth / 2,
global_wb_domain.dirty_limit / DIRTY_SCOPE);
@@ -2092,6 +2097,10 @@ void wb_workfn(struct work_struct *work)
wb_wakeup_delayed(wb);
current->flags &= ~PF_SWAPWRITE;
+
+ if (IS_ENABLED(CONFIG_CGWB_BDP_WITH_EBDI))
+ if (waitqueue_active(&wb->bdp_waitq))
+ wake_up_all(&wb->bdp_waitq);
}
/*
The elastic bdi is the mirror bdi of spinning disks, SSD, USB and other storage devices/instruments on market. The performance of ebdi goes up and down as the pattern of IO dispatched changes. It can be approximately estimated as below. P = j(..., IO pattern); In ebdi's view, the bandwidth currently measured in balancing dirty pages has close relation to its performance because the former is a part of the latter as represented below. B = y(P); The functions above suggest that there may be a layer violation if filesystems don't care what is measured at the mm layer, while it could be better measured somewhere below fs. It is measured however to the extent that makes every judge happy, and is playing a role in dispatching IO with the IO pattern entirely ignored that is volatile in nature. And it helps to throttle the dirty speed, with the figure ignored that DRAM in general is x10 faster than ebdi. If B is half of P for instance, then it is near 5% of dirty speed, only 2 points from the figure in the snippet below. /* * If ratelimit_pages is too high then we can get into dirty-data overload * if a large number of processes all perform writes at the same time. * If it is too low then SMP machines will call the (expensive) * get_writeback_state too often. * * Here we set ratelimit_pages to a level which ensures that when all CPUs are * dirtying in parallel, we cannot go more than 3% (1/32) over the dirty memory * thresholds. */ To prevent dirty speed from running away from laundry speed in bdp, ebdi suggests the walk-dog method to consider in assumption that a leash churns less in IO pattern. V1 is based on 5.4-rc3. Changes since v0 - add CGWB_BDP_WITH_EBDI in mm/Kconfig - drop wakeup in wbc_detach_inode() - add wakeup in wb_workfn() Cc: Tejun Heo <tj@kernel.org> Cc: Jan Kara <jack@suse.com> Cc: Fengguang Wu <fengguang.wu@intel.com> Cc: Johannes Weiner <hannes@cmpxchg.org> Cc: Shakeel Butt <shakeelb@google.com> Cc: Minchan Kim <minchan@kernel.org> Cc: Mel Gorman <mgorman@suse.de> Signed-off-by: Hillf Danton <hdanton@sina.com> --- --