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=-12.5 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,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 10CA8C56201 for ; Mon, 26 Oct 2020 04:14:29 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id A27102073A for ; Mon, 26 Oct 2020 04:14:28 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="YcfZjdNN" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org A27102073A 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 724956B006E; Mon, 26 Oct 2020 00:14:20 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id 5C3196B0070; Mon, 26 Oct 2020 00:14:20 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 483846B0071; Mon, 26 Oct 2020 00:14:20 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0228.hostedemail.com [216.40.44.228]) by kanga.kvack.org (Postfix) with ESMTP id 109BD6B006E for ; Mon, 26 Oct 2020 00:14:20 -0400 (EDT) Received: from smtpin17.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay01.hostedemail.com (Postfix) with ESMTP id A474C180AD815 for ; Mon, 26 Oct 2020 04:14:19 +0000 (UTC) X-FDA: 77412759438.17.cook88_320218027270 Received: from filter.hostedemail.com (10.5.16.251.rfc1918.com [10.5.16.251]) by smtpin17.hostedemail.com (Postfix) with ESMTP id 8BF25180D0180 for ; Mon, 26 Oct 2020 04:14:19 +0000 (UTC) X-HE-Tag: cook88_320218027270 X-Filterd-Recvd-Size: 6503 Received: from casper.infradead.org (casper.infradead.org [90.155.50.34]) by imf35.hostedemail.com (Postfix) with ESMTP for ; Mon, 26 Oct 2020 04:14:16 +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=kpUczdeKYi1+38xZwHEXixHpdmrDrWMrdTwGd2Ba8x0=; b=YcfZjdNN1aDe/LcHqu+I3/RUD7 ZB/2qcxmUEd0z/Z+O9YaxXNnWUummKleEY3HmDXPF9Z9OOL/EfnAFqBUH5T9hRUaOQTScouC78Aq3 xw8jSrszyqXqn+fwCOXxEUMcOyXHpzE8nFgzbwL/2K7eVO4HPakPOm+rnQy6p2csVx+4pPDsObLRm OZKyyMBUt4CJHQbpNVhyAGYa00xjzg9iaQ0UP/sx8iI2v8g0Ng5KC4SMhk37oLj49g8y97KRZo4Y9 keDM8o968FrKmDot2d98jRh6+ozGlQarsJz4VWaUjUssDqRLKqQCDReXLZw7XEU3VvvmQOfpsEwMJ prUEKttw==; Received: from willy by casper.infradead.org with local (Exim 4.92.3 #3 (Red Hat Linux)) id 1kWttd-0006as-1o; Mon, 26 Oct 2020 04:14:13 +0000 From: "Matthew Wilcox (Oracle)" To: linux-mm@kvack.org Cc: "Matthew Wilcox (Oracle)" , linux-fsdevel@vger.kernel.org, Andrew Morton , Hugh Dickins , Johannes Weiner , Yang Shi , Dave Chinner , linux-kernel@vger.kernel.org, Jan Kara , William Kucharski Subject: [PATCH v3 12/12] mm/filemap: Return only head pages from find_get_entries Date: Mon, 26 Oct 2020 04:14:08 +0000 Message-Id: <20201026041408.25230-13-willy@infradead.org> X-Mailer: git-send-email 2.21.3 In-Reply-To: <20201026041408.25230-1-willy@infradead.org> References: <20201026041408.25230-1-willy@infradead.org> MIME-Version: 1.0 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: All callers now expect head (and base) pages, and can handle multiple head pages in a single batch, so make find_get_entries() behave that way. Also take the opportunity to make it use the pagevec infrastructure instead of open-coding how pvecs behave. This has the side-effect of being able to append to a pagevec with existing contents, although we don't make use of that functionality anywhere yet. Signed-off-by: Matthew Wilcox (Oracle) Reviewed-by: Jan Kara Reviewed-by: William Kucharski --- include/linux/pagemap.h | 2 -- mm/filemap.c | 36 ++++++++---------------------------- mm/internal.h | 2 ++ 3 files changed, 10 insertions(+), 30 deletions(-) diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h index f0bbe29de732..8938c64f418b 100644 --- a/include/linux/pagemap.h +++ b/include/linux/pagemap.h @@ -449,8 +449,6 @@ static inline struct page *find_subpage(struct page *= head, pgoff_t index) return head + (index & (thp_nr_pages(head) - 1)); } =20 -unsigned find_get_entries(struct address_space *mapping, pgoff_t start, - pgoff_t end, struct pagevec *pvec, pgoff_t *indices); unsigned find_get_pages_range(struct address_space *mapping, pgoff_t *st= art, pgoff_t end, unsigned int nr_pages, struct page **pages); diff --git a/mm/filemap.c b/mm/filemap.c index e0fa943011d8..a117718ec1a8 100644 --- a/mm/filemap.c +++ b/mm/filemap.c @@ -1905,49 +1905,29 @@ static inline struct page *xas_find_get_entry(str= uct xa_state *xas, * the mapping. The entries are placed in @pvec. find_get_entries() * takes a reference on any actual pages it returns. * - * The search returns a group of mapping-contiguous page cache entries - * with ascending indexes. There may be holes in the indices due to - * not-present pages. + * The entries have ascending indexes. The indices may not be consecuti= ve + * due to not-present entries or THPs. * * Any shadow entries of evicted pages, or swap entries from * shmem/tmpfs, are included in the returned array. * - * If it finds a Transparent Huge Page, head or tail, find_get_entries() - * stops at that page: the caller is likely to have a better way to hand= le - * the compound page as a whole, and then skip its extent, than repeated= ly - * calling find_get_entries() to return all its tails. - * - * Return: the number of pages and shadow entries which were found. + * Return: The number of entries which were found. */ unsigned find_get_entries(struct address_space *mapping, pgoff_t start, pgoff_t end, struct pagevec *pvec, pgoff_t *indices) { XA_STATE(xas, &mapping->i_pages, start); struct page *page; - unsigned int ret =3D 0; - unsigned nr_entries =3D PAGEVEC_SIZE; =20 rcu_read_lock(); while ((page =3D xas_find_get_entry(&xas, end, XA_PRESENT))) { - /* - * Terminate early on finding a THP, to allow the caller to - * handle it all at once; but continue if this is hugetlbfs. - */ - if (!xa_is_value(page) && PageTransHuge(page) && - !PageHuge(page)) { - page =3D find_subpage(page, xas.xa_index); - nr_entries =3D ret + 1; - } - - indices[ret] =3D xas.xa_index; - pvec->pages[ret] =3D page; - if (++ret =3D=3D nr_entries) + indices[pvec->nr] =3D xas.xa_index; + if (!pagevec_add(pvec, page)) break; } rcu_read_unlock(); =20 - pvec->nr =3D ret; - return ret; + return pagevec_count(pvec); } =20 /** @@ -1966,8 +1946,8 @@ unsigned find_get_entries(struct address_space *map= ping, pgoff_t start, * not returned. * * The entries have ascending indexes. The indices may not be consecuti= ve - * due to not-present entries, THP pages, pages which could not be locke= d - * or pages under writeback. + * due to not-present entries, THPs, pages which could not be locked or + * pages under writeback. * * Return: The number of entries which were found. */ diff --git a/mm/internal.h b/mm/internal.h index 194572e1ab49..5aca7d7bc57c 100644 --- a/mm/internal.h +++ b/mm/internal.h @@ -62,6 +62,8 @@ static inline void force_page_cache_readahead(struct ad= dress_space *mapping, =20 struct page *find_get_entry(struct address_space *mapping, pgoff_t index= ); struct page *find_lock_entry(struct address_space *mapping, pgoff_t inde= x); +unsigned find_get_entries(struct address_space *mapping, pgoff_t start, + pgoff_t end, struct pagevec *pvec, pgoff_t *indices); unsigned find_lock_entries(struct address_space *mapping, pgoff_t start, pgoff_t end, struct pagevec *pvec, pgoff_t *indices); =20 --=20 2.28.0