From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 13E64563FA3; Wed, 9 Sep 2026 14:35:17 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788964518; cv=none; b=mHyAfSSEUW9SMqX/u+AwNTFmMPUreM80ralzpHBdU8wdkKbHsAgDB3p0wPixulO3Uhmoziizz+U18RZc3x6LT6JAZBxSehUngMolESxbejdQEoHY25I0En/4d+Vm/muFnHvEtt0c2xqoVyIRWNsr0cOx3eK4BctwqDc6bQD7JCA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788964518; c=relaxed/simple; bh=S+qlQ4K82uGZjyJQ3JFlGWTam3YdSiTgAeDF6193Yms=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=rdrgPFWcf+/TE+339w9OANOWbLu/8atRxC3+YXYMVns/d25iflU6Zjz3Qhw/22kSDRn5fWpaazhaN1FGykgPvDn2z8eoOg8eLZsKvamubBNyLfijKVqLNoPCMKPUFPmLqCqSpNz08ZC3S4xBeESx/lCXp4Zp/0NGpzr6rag3iBs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=m7tSQZLr; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="m7tSQZLr" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4CF4D1F00A3A; Wed, 9 Sep 2026 14:35:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1788964517; bh=2qLev9zIHRSLCSsfCfFoM0goIOlfFe4SjIDUux450/c=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=m7tSQZLrYpAUs8pGFYEkYYMHuGTpwgvAcwVNCXedAaV7foWML163kqA612vHuz0uP Id3QUzqDWHh9P4mjIZL/z7bNq8bzf/StY2b7aMQGIjrIaQY1EMbh8uZK+AWEqVzEA2 CeqCObfy4uZJPydI27d4R1kWpojtTUw6hqCSHVT8= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Kairui Song , Axel Rasmussen , Barry Song , Baolin Wang , Chen Ridong , Chris Li , David Hildenbrand , David Stevens , Johannes Weiner , Kalesh Singh , Leno Hou , Lorenzo Stoakes , Michal Hocko , Shakeel Butt , Suren Baghdasaryan , Vernon Yang , Wei Xu , Yafang , Yuanchu Xie , Yu Zhao , Andrew Morton , Sasha Levin Subject: [PATCH 6.18 451/583] mm/mglru: use the common routine for dirty/writeback reactivation Date: Wed, 9 Sep 2026 15:42:16 +0200 Message-ID: <20260909134253.575899778@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260909134237.773280130@linuxfoundation.org> References: <20260909134237.773280130@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Kairui Song [ Upstream commit 75d4c3f5fb980de1b620adede47e43dff4d6a5f3 ] Currently MGLRU will move the dirty writeback folios to the second oldest gen instead of reactivate them like the classical LRU. This might help to reduce the LRU contention as it skipped the isolation. But as a result we will see these folios at the LRU tail more frequently leading to inefficient reclaim. Besides, the dirty / writeback check after isolation in shrink_folio_list is more accurate and covers more cases. So instead, just drop the special handling for dirty writeback, use the common routine and re-activate it like the classical LRU. This should in theory improve the scan efficiency. These folios will be rotated back to LRU tail once writeback is done so there is no risk of hotness inversion. And now each reclaim loop will have a higher success rate. This also prepares for unifying the writeback and throttling mechanism with classical LRU, we keep these folios far from tail so detecting the tail batch will have a similar pattern with classical LRU. The micro optimization that avoids LRU contention by skipping the isolation is gone, which should be fine. Compared to IO and writeback cost, the isolation overhead is trivial. And using the common routine also keeps the folio's referenced bits (tier bits), which could improve metrics in the long term. Also no more need to clean reclaim bit as the common routine will make use of it. Note the common routine updates a few throttling and writeback counters, which are not used, and never have been for the MGLRU case. We will start making use of these in later commits. Link: https://lore.kernel.org/20260428-mglru-reclaim-v7-10-02fabb92dc43@tencent.com Signed-off-by: Kairui Song Reviewed-by: Axel Rasmussen Reviewed-by: Barry Song Reviewed-by: Baolin Wang Cc: Chen Ridong Cc: Chris Li Cc: David Hildenbrand Cc: David Stevens Cc: Johannes Weiner Cc: Kalesh Singh Cc: Leno Hou Cc: Lorenzo Stoakes Cc: Michal Hocko Cc: Shakeel Butt Cc: Suren Baghdasaryan Cc: Vernon Yang Cc: Wei Xu Cc: Yafang Cc: Yuanchu Xie Cc: Yu Zhao Signed-off-by: Andrew Morton Stable-dep-of: f7e698e326b2 ("mm/mglru: fix and remove redundant unevictable folio handling") Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- mm/vmscan.c | 19 ------------------- 1 file changed, 19 deletions(-) --- a/mm/vmscan.c +++ b/mm/vmscan.c @@ -4469,7 +4469,6 @@ static bool sort_folio(struct lruvec *lr int tier_idx) { bool success; - bool dirty, writeback; int gen = folio_lru_gen(folio); int type = folio_is_file_lru(folio); int zone = folio_zonenum(folio); @@ -4519,21 +4518,6 @@ static bool sort_folio(struct lruvec *lr return true; } - dirty = folio_test_dirty(folio); - writeback = folio_test_writeback(folio); - if (type == LRU_GEN_FILE && dirty) { - sc->nr.file_taken += delta; - if (!writeback) - sc->nr.unqueued_dirty += delta; - } - - /* waiting for writeback */ - if (writeback || (type == LRU_GEN_FILE && dirty)) { - gen = folio_inc_gen(lruvec, folio, true); - list_move(&folio->lru, &lrugen->folios[gen][type][zone]); - return true; - } - return false; } @@ -4561,9 +4545,6 @@ static bool isolate_folio(struct lruvec if (!folio_test_referenced(folio)) set_mask_bits(&folio->flags.f, LRU_REFS_MASK, 0); - /* for shrink_folio_list() */ - folio_clear_reclaim(folio); - success = lru_gen_del_folio(lruvec, folio, true); VM_WARN_ON_ONCE_FOLIO(!success, folio);