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.6 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 737B0C43461 for ; Mon, 14 Sep 2020 13:01:07 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id 0B774206B2 for ; Mon, 14 Sep 2020 13:01:07 +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="r7NUBn4H" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 0B774206B2 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 6802A900002; Mon, 14 Sep 2020 09:00:57 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id 606076B005C; Mon, 14 Sep 2020 09:00:57 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 481D5900002; Mon, 14 Sep 2020 09:00:57 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0209.hostedemail.com [216.40.44.209]) by kanga.kvack.org (Postfix) with ESMTP id 21A146B005A for ; Mon, 14 Sep 2020 09:00:57 -0400 (EDT) Received: from smtpin05.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay05.hostedemail.com (Postfix) with ESMTP id A1F2F18059B53 for ; Mon, 14 Sep 2020 13:00:56 +0000 (UTC) X-FDA: 77261676912.05.rings12_2314ebf27108 Received: from filter.hostedemail.com (10.5.16.251.rfc1918.com [10.5.16.251]) by smtpin05.hostedemail.com (Postfix) with ESMTP id 7935B1830EF4B for ; Mon, 14 Sep 2020 13:00:51 +0000 (UTC) X-HE-Tag: rings12_2314ebf27108 X-Filterd-Recvd-Size: 6107 Received: from casper.infradead.org (casper.infradead.org [90.155.50.34]) by imf11.hostedemail.com (Postfix) with ESMTP for ; Mon, 14 Sep 2020 13:00:50 +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=v4mRlLVz8AMSm1sdAYf6Zqwa2ax9GUax7tJyFxBJP4c=; b=r7NUBn4HsfyMPZEHvZXDedAQfR /ra65rrJOAXSZT0dsVc33AgTOwiHNe4wmmOJE7uyI28PlcGAp/Y31/b5/AHT86tBUBzePfaqeuiwx VpjE2ztuiaDcsWLGRxTQT09oN6ygYwJUefGsDjU57vADka9wapLfVN4rDfjDxcmuGvaTVR8sn5hmJ Je/nN/lLq+qNVjSIvMGAlXGwzqE0K2Mqshd6fVZQ5cFo3eAIgkDAuuhPvXICm9viRkJhLjDNZ5tpk ISekSRD5G5lVXrPH1GYwa3fStmKJn6go0EL52QtZ/1z+LCnXYD1D3t5pk/wXIny5L53FOohLUkdqZ frVsQjrQ==; Received: from willy by casper.infradead.org with local (Exim 4.92.3 #3 (Red Hat Linux)) id 1kHo69-00030A-Gd; Mon, 14 Sep 2020 13:00:45 +0000 From: "Matthew Wilcox (Oracle)" To: linux-mm@kvack.org Cc: "Matthew Wilcox (Oracle)" , Andrew Morton , Hugh Dickins , William Kucharski , Johannes Weiner , Jan Kara , Yang Shi , Dave Chinner , linux-kernel@vger.kernel.org Subject: [PATCH v2 06/12] mm: Add an 'end' parameter to find_get_entries Date: Mon, 14 Sep 2020 14:00:36 +0100 Message-Id: <20200914130042.11442-7-willy@infradead.org> X-Mailer: git-send-email 2.21.3 In-Reply-To: <20200914130042.11442-1-willy@infradead.org> References: <20200914130042.11442-1-willy@infradead.org> MIME-Version: 1.0 X-Rspamd-Queue-Id: 7935B1830EF4B X-Spamd-Result: default: False [0.00 / 100.00] X-Rspamd-Server: rspam01 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: This simplifies the callers and leads to a more efficient implementation since the XArray has this functionality already. Signed-off-by: Matthew Wilcox (Oracle) Reviewed-by: Jan Kara Reviewed-by: William Kucharski --- include/linux/pagemap.h | 4 ++-- mm/filemap.c | 9 +++++---- mm/shmem.c | 10 ++-------- mm/swap.c | 2 +- 4 files changed, 10 insertions(+), 15 deletions(-) diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h index 869dc371b800..d440c6750757 100644 --- a/include/linux/pagemap.h +++ b/include/linux/pagemap.h @@ -414,8 +414,8 @@ static inline struct page *find_subpage(struct page *= head, pgoff_t index) } =20 unsigned find_get_entries(struct address_space *mapping, pgoff_t start, - unsigned int nr_entries, struct page **entries, - pgoff_t *indices); + pgoff_t end, unsigned int nr_entries, struct page **entries, + 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 9f7f6b46aee4..6dc0a9b8c0fa 100644 --- a/mm/filemap.c +++ b/mm/filemap.c @@ -1799,6 +1799,7 @@ static inline struct page *xas_find_get_entry(struc= t xa_state *xas, * find_get_entries - gang pagecache lookup * @mapping: The address_space to search * @start: The starting page cache index + * @end: The final page index (inclusive). * @nr_entries: The maximum number of entries * @entries: Where the resulting entries are placed * @indices: The cache indices corresponding to the entries in @entries @@ -1822,9 +1823,9 @@ static inline struct page *xas_find_get_entry(struc= t xa_state *xas, * * Return: the number of pages and shadow entries which were found. */ -unsigned find_get_entries(struct address_space *mapping, - pgoff_t start, unsigned int nr_entries, - struct page **entries, pgoff_t *indices) +unsigned find_get_entries(struct address_space *mapping, pgoff_t start, + pgoff_t end, unsigned int nr_entries, struct page **entries, + pgoff_t *indices) { XA_STATE(xas, &mapping->i_pages, start); struct page *page; @@ -1834,7 +1835,7 @@ unsigned find_get_entries(struct address_space *map= ping, return 0; =20 rcu_read_lock(); - while ((page =3D xas_find_get_entry(&xas, ULONG_MAX, XA_PRESENT))) { + 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. diff --git a/mm/shmem.c b/mm/shmem.c index a73ce8ce28e3..404e45c285ca 100644 --- a/mm/shmem.c +++ b/mm/shmem.c @@ -911,8 +911,6 @@ static void shmem_undo_range(struct inode *inode, lof= f_t lstart, loff_t lend, struct page *page =3D pvec.pages[i]; =20 index =3D indices[i]; - if (index >=3D end) - break; =20 if (xa_is_value(page)) { if (unfalloc) @@ -965,9 +963,8 @@ static void shmem_undo_range(struct inode *inode, lof= f_t lstart, loff_t lend, while (index < end) { cond_resched(); =20 - pvec.nr =3D find_get_entries(mapping, index, - min(end - index, (pgoff_t)PAGEVEC_SIZE), - pvec.pages, indices); + pvec.nr =3D find_get_entries(mapping, index, end - 1, + PAGEVEC_SIZE, pvec.pages, indices); if (!pvec.nr) { /* If all gone or hole-punch or unfalloc, we're done */ if (index =3D=3D start || end !=3D -1) @@ -980,9 +977,6 @@ static void shmem_undo_range(struct inode *inode, lof= f_t lstart, loff_t lend, struct page *page =3D pvec.pages[i]; =20 index =3D indices[i]; - if (index >=3D end) - break; - if (xa_is_value(page)) { if (unfalloc) continue; diff --git a/mm/swap.c b/mm/swap.c index d16d65d9b4e0..fcf6ccb94b09 100644 --- a/mm/swap.c +++ b/mm/swap.c @@ -1060,7 +1060,7 @@ unsigned pagevec_lookup_entries(struct pagevec *pve= c, pgoff_t start, unsigned nr_entries, pgoff_t *indices) { - pvec->nr =3D find_get_entries(mapping, start, nr_entries, + pvec->nr =3D find_get_entries(mapping, start, ULONG_MAX, nr_entries, pvec->pages, indices); return pagevec_count(pvec); } --=20 2.28.0