Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752173AbdI0UQU (ORCPT ); Wed, 27 Sep 2017 16:16:20 -0400 Received: from mail-wr0-f174.google.com ([209.85.128.174]:52121 "EHLO mail-wr0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751925AbdI0UOV (ORCPT ); Wed, 27 Sep 2017 16:14:21 -0400 X-Google-Smtp-Source: AOwi7QDYKRRxCGkj7hH863ROJnKgOVdqYb7nskYjzovC5Whgi1NcOwBzRk/Y3fFqK7N2IN12oh2oug== From: Jens Axboe To: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org Cc: hannes@cmpxchg.org, jack@suse.cz, torvalds@linux-foundation.org, Jens Axboe Subject: [PATCH 05/12] writeback: switch wakeup_flusher_threads() to cyclic writeback Date: Wed, 27 Sep 2017 14:13:52 -0600 Message-Id: <1506543239-31470-6-git-send-email-axboe@kernel.dk> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1506543239-31470-1-git-send-email-axboe@kernel.dk> References: <1506543239-31470-1-git-send-email-axboe@kernel.dk> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 686 Lines: 24 We're writing back the full range of dirty pages on the devices, there's no point in making this special and not do normal range cyclic writeback. Signed-off-by: Jens Axboe --- fs/fs-writeback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c index bb6148dc6d24..65e6992d8719 100644 --- a/fs/fs-writeback.c +++ b/fs/fs-writeback.c @@ -1971,7 +1971,7 @@ void wakeup_flusher_threads(enum wb_reason reason) list_for_each_entry_rcu(wb, &bdi->wb_list, bdi_node) wb_start_writeback(wb, wb_split_bdi_pages(wb, nr_pages), - false, reason); + true, reason); } rcu_read_unlock(); } -- 2.7.4