From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.6 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B6A5BC433DB for ; Fri, 5 Mar 2021 04:25:43 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id 5D18664FE4 for ; Fri, 5 Mar 2021 04:25:43 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 5D18664FE4 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id E45A26B0008; Thu, 4 Mar 2021 23:25:42 -0500 (EST) Received: by kanga.kvack.org (Postfix, from userid 40) id DCE106B000E; Thu, 4 Mar 2021 23:25:42 -0500 (EST) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id C48966B0010; Thu, 4 Mar 2021 23:25:42 -0500 (EST) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0130.hostedemail.com [216.40.44.130]) by kanga.kvack.org (Postfix) with ESMTP id A44736B0008 for ; Thu, 4 Mar 2021 23:25:42 -0500 (EST) Received: from smtpin23.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay03.hostedemail.com (Postfix) with ESMTP id 66B2F8249980 for ; Fri, 5 Mar 2021 04:25:42 +0000 (UTC) X-FDA: 77884532124.23.4C8D0A7 Received: from casper.infradead.org (casper.infradead.org [90.155.50.34]) by imf28.hostedemail.com (Postfix) with ESMTP id 5D5572000381 for ; Fri, 5 Mar 2021 04:25:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=ViUiDGdVnd7Iq4vdJDnK9pV32OXyBauhh7HNXcs3hWk=; b=HJV/2O4pf9RXMAw6lAoKTDf54y VEGFEKf0LEZCoauqkXpByXvcTOBxs0+GGYG3YARlLfXTahsDu1B/nhhDu0qkye3eO+/ygcRYy5K5X yv4f+ePzXS2tofWUz1fM6yCkOH4jouoL6hf2d/iHfjBTnKKywDXsNgWzqyOkT6u0zWThHeZubs51u JumpTVB5BnzgeHQ/MPt9YM+MbWoN5OU5DrLqfusBrUp6gqJpD/HMd4ahE/spyuNs8aBYKfpKsqc5v O+osyB0Cqf0VgOfm9QRnmmQ21abHsT/jwZqSUUYK19imKb0akySFhqSId9oaXLM+fFolZAGbRoQHF ui0+xE8g==; Received: from willy by casper.infradead.org with local (Exim 4.94 #2 (Red Hat Linux)) id 1lI21V-00A48z-E9; Fri, 05 Mar 2021 04:25:12 +0000 From: "Matthew Wilcox (Oracle)" To: linux-mm@kvack.org Cc: "Matthew Wilcox (Oracle)" , linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org Subject: [PATCH v4 19/25] mm/page-writeback: Add wait_for_stable_folio Date: Fri, 5 Mar 2021 04:18:55 +0000 Message-Id: <20210305041901.2396498-20-willy@infradead.org> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20210305041901.2396498-1-willy@infradead.org> References: <20210305041901.2396498-1-willy@infradead.org> MIME-Version: 1.0 X-Rspamd-Server: rspam03 X-Rspamd-Queue-Id: 5D5572000381 X-Stat-Signature: 11fssnt95cgque6srrg9anw1aopcsgmm Received-SPF: none (infradead.org>: No applicable sender policy available) receiver=imf28; identity=mailfrom; envelope-from=""; helo=casper.infradead.org; client-ip=90.155.50.34 X-HE-DKIM-Result: pass/pass X-HE-Tag: 1614918342-555069 Content-Transfer-Encoding: quoted-printable X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: Move wait_for_stable_page() into the folio compatibility file. wait_for_stable_folio() avoids a call to compound_head() and is 14 bytes smaller than wait_for_stable_page() was. The net text size grows by 24 bytes as a result of this patch. Signed-off-by: Matthew Wilcox (Oracle) --- include/linux/pagemap.h | 1 + mm/folio-compat.c | 6 ++++++ mm/page-writeback.c | 17 ++++++++--------- 3 files changed, 15 insertions(+), 9 deletions(-) diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h index 7d797847633c..e7ca8def2f0d 100644 --- a/include/linux/pagemap.h +++ b/include/linux/pagemap.h @@ -767,6 +767,7 @@ void wait_on_folio_writeback(struct folio *folio); void end_page_writeback(struct page *page); void end_folio_writeback(struct folio *folio); void wait_for_stable_page(struct page *page); +void wait_for_stable_folio(struct folio *folio); =20 void page_endio(struct page *page, bool is_write, int err); =20 diff --git a/mm/folio-compat.c b/mm/folio-compat.c index 6aadecc39fba..335594fe414e 100644 --- a/mm/folio-compat.c +++ b/mm/folio-compat.c @@ -29,3 +29,9 @@ void wait_on_page_writeback(struct page *page) return wait_on_folio_writeback(page_folio(page)); } EXPORT_SYMBOL_GPL(wait_on_page_writeback); + +void wait_for_stable_page(struct page *page) +{ + return wait_for_stable_folio(page_folio(page)); +} +EXPORT_SYMBOL_GPL(wait_for_stable_page); diff --git a/mm/page-writeback.c b/mm/page-writeback.c index 968579452ea4..eef36edc9e0c 100644 --- a/mm/page-writeback.c +++ b/mm/page-writeback.c @@ -2841,17 +2841,16 @@ void wait_on_folio_writeback(struct folio *folio) EXPORT_SYMBOL_GPL(wait_on_folio_writeback); =20 /** - * wait_for_stable_page() - wait for writeback to finish, if necessary. - * @page: The page to wait on. + * wait_for_stable_folio() - wait for writeback to finish, if necessary. + * @folio: The folio to wait on. * - * This function determines if the given page is related to a backing de= vice - * that requires page contents to be held stable during writeback. If s= o, then + * This function determines if the given folio is related to a backing d= evice + * that requires folio contents to be held stable during writeback. If = so, then * it will wait for any pending writeback to complete. */ -void wait_for_stable_page(struct page *page) +void wait_for_stable_folio(struct folio *folio) { - page =3D thp_head(page); - if (page->mapping->host->i_sb->s_iflags & SB_I_STABLE_WRITES) - wait_on_page_writeback(page); + if (folio->page.mapping->host->i_sb->s_iflags & SB_I_STABLE_WRITES) + wait_on_folio_writeback(folio); } -EXPORT_SYMBOL_GPL(wait_for_stable_page); +EXPORT_SYMBOL_GPL(wait_for_stable_folio); --=20 2.30.0