* [PATCH] writeback: Fix occasional slow sync(1)
@ 2013-07-15 9:45 Jan Kara
2013-07-23 16:16 ` Jan Kara
2013-08-15 22:15 ` Andrew Morton
0 siblings, 2 replies; 4+ messages in thread
From: Jan Kara @ 2013-07-15 9:45 UTC (permalink / raw)
To: Al Viro; +Cc: linux-fsdevel, Paul Taysom, Jan Kara, stable
In case when system contains no dirty pages, wakeup_flusher_threads()
will submit WB_SYNC_NONE writeback for 0 pages so wb_writeback() exits
immediately without doing anything. Thus sync(1) will write all the
dirty inodes from a WB_SYNC_ALL writeback pass which is slow.
Fix the problem by using get_nr_dirty_pages() in
wakeup_flusher_threads() instead of calculating number of dirty pages
manually. That function also takes number of dirty inodes into account.
CC: stable@vger.kernel.org
Reported-by: Paul Taysom <taysom@chromium.org>
Signed-off-by: Jan Kara <jack@suse.cz>
---
fs/fs-writeback.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c
index a85ac4e..d0d70a8 100644
--- a/fs/fs-writeback.c
+++ b/fs/fs-writeback.c
@@ -1055,10 +1055,8 @@ void wakeup_flusher_threads(long nr_pages, enum wb_reason reason)
{
struct backing_dev_info *bdi;
- if (!nr_pages) {
- nr_pages = global_page_state(NR_FILE_DIRTY) +
- global_page_state(NR_UNSTABLE_NFS);
- }
+ if (!nr_pages)
+ nr_pages = get_nr_dirty_pages();
rcu_read_lock();
list_for_each_entry_rcu(bdi, &bdi_list, bdi_list) {
--
1.8.1.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] writeback: Fix occasional slow sync(1)
2013-07-15 9:45 [PATCH] writeback: Fix occasional slow sync(1) Jan Kara
@ 2013-07-23 16:16 ` Jan Kara
2013-08-15 22:15 ` Andrew Morton
1 sibling, 0 replies; 4+ messages in thread
From: Jan Kara @ 2013-07-23 16:16 UTC (permalink / raw)
To: Al Viro; +Cc: linux-fsdevel, Paul Taysom, Jan Kara
On Mon 15-07-13 11:45:14, Jan Kara wrote:
> In case when system contains no dirty pages, wakeup_flusher_threads()
> will submit WB_SYNC_NONE writeback for 0 pages so wb_writeback() exits
> immediately without doing anything. Thus sync(1) will write all the
> dirty inodes from a WB_SYNC_ALL writeback pass which is slow.
>
> Fix the problem by using get_nr_dirty_pages() in
> wakeup_flusher_threads() instead of calculating number of dirty pages
> manually. That function also takes number of dirty inodes into account.
>
> CC: stable@vger.kernel.org
> Reported-by: Paul Taysom <taysom@chromium.org>
> Signed-off-by: Jan Kara <jack@suse.cz>
Ping Al?
Honza
> ---
> fs/fs-writeback.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c
> index a85ac4e..d0d70a8 100644
> --- a/fs/fs-writeback.c
> +++ b/fs/fs-writeback.c
> @@ -1055,10 +1055,8 @@ void wakeup_flusher_threads(long nr_pages, enum wb_reason reason)
> {
> struct backing_dev_info *bdi;
>
> - if (!nr_pages) {
> - nr_pages = global_page_state(NR_FILE_DIRTY) +
> - global_page_state(NR_UNSTABLE_NFS);
> - }
> + if (!nr_pages)
> + nr_pages = get_nr_dirty_pages();
>
> rcu_read_lock();
> list_for_each_entry_rcu(bdi, &bdi_list, bdi_list) {
> --
> 1.8.1.4
>
--
Jan Kara <jack@suse.cz>
SUSE Labs, CR
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] writeback: Fix occasional slow sync(1)
2013-07-15 9:45 [PATCH] writeback: Fix occasional slow sync(1) Jan Kara
2013-07-23 16:16 ` Jan Kara
@ 2013-08-15 22:15 ` Andrew Morton
2013-08-16 12:21 ` Jan Kara
1 sibling, 1 reply; 4+ messages in thread
From: Andrew Morton @ 2013-08-15 22:15 UTC (permalink / raw)
To: Jan Kara; +Cc: Al Viro, linux-fsdevel, Paul Taysom, stable
On Mon, 15 Jul 2013 11:45:14 +0200 Jan Kara <jack@suse.cz> wrote:
> In case when system contains no dirty pages, wakeup_flusher_threads()
> will submit WB_SYNC_NONE writeback for 0 pages so wb_writeback() exits
> immediately without doing anything. Thus sync(1) will write all the
> dirty inodes from a WB_SYNC_ALL writeback pass which is slow.
>
> Fix the problem by using get_nr_dirty_pages() in
> wakeup_flusher_threads() instead of calculating number of dirty pages
> manually. That function also takes number of dirty inodes into account.
Fair enough.
> CC: stable@vger.kernel.org
Unexpected. What was your thinking here?
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] writeback: Fix occasional slow sync(1)
2013-08-15 22:15 ` Andrew Morton
@ 2013-08-16 12:21 ` Jan Kara
0 siblings, 0 replies; 4+ messages in thread
From: Jan Kara @ 2013-08-16 12:21 UTC (permalink / raw)
To: Andrew Morton; +Cc: Jan Kara, Al Viro, linux-fsdevel, Paul Taysom, stable
On Thu 15-08-13 15:15:04, Andrew Morton wrote:
> On Mon, 15 Jul 2013 11:45:14 +0200 Jan Kara <jack@suse.cz> wrote:
>
> > In case when system contains no dirty pages, wakeup_flusher_threads()
> > will submit WB_SYNC_NONE writeback for 0 pages so wb_writeback() exits
> > immediately without doing anything. Thus sync(1) will write all the
> > dirty inodes from a WB_SYNC_ALL writeback pass which is slow.
> >
> > Fix the problem by using get_nr_dirty_pages() in
> > wakeup_flusher_threads() instead of calculating number of dirty pages
> > manually. That function also takes number of dirty inodes into account.
>
> Fair enough.
>
> > CC: stable@vger.kernel.org
>
> Unexpected. What was your thinking here?
Right, probably the problem isn't serious enough. Just discard the CC
please. Thanks!
Honza
--
Jan Kara <jack@suse.cz>
SUSE Labs, CR
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-08-16 12:21 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-15 9:45 [PATCH] writeback: Fix occasional slow sync(1) Jan Kara
2013-07-23 16:16 ` Jan Kara
2013-08-15 22:15 ` Andrew Morton
2013-08-16 12:21 ` Jan Kara
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).