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=-6.5 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no 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 C7204C4363A for ; Wed, 21 Oct 2020 20:43:40 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id 1AEB12237B for ; Wed, 21 Oct 2020 20:43:39 +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="pLs6Fw24" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 1AEB12237B 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 381436B005D; Wed, 21 Oct 2020 16:43:39 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id 331E26B0062; Wed, 21 Oct 2020 16:43:39 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 2227D6B0068; Wed, 21 Oct 2020 16:43:39 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0025.hostedemail.com [216.40.44.25]) by kanga.kvack.org (Postfix) with ESMTP id E78E46B005D for ; Wed, 21 Oct 2020 16:43:38 -0400 (EDT) Received: from smtpin06.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay02.hostedemail.com (Postfix) with ESMTP id 0F694364D for ; Wed, 21 Oct 2020 20:43:38 +0000 (UTC) X-FDA: 77397108516.06.turn44_4c085302724b Received: from filter.hostedemail.com (10.5.16.251.rfc1918.com [10.5.16.251]) by smtpin06.hostedemail.com (Postfix) with ESMTP id 9AD101034BF90 for ; Wed, 21 Oct 2020 20:43:37 +0000 (UTC) X-HE-Tag: turn44_4c085302724b X-Filterd-Recvd-Size: 1907 Received: from casper.infradead.org (casper.infradead.org [90.155.50.34]) by imf45.hostedemail.com (Postfix) with ESMTP for ; Wed, 21 Oct 2020 20:43:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=Lu+hGrdqeWMftTlTMobTvofpTtHSyJ0i3sN8+ViuhWw=; b=pLs6Fw24U1S/xJW6kT9LgOdc9c PWDGagljMAqzy5KHOnNjTRQcryrg5kVEes3Zg606P5R9ZYCCgiq+txRfD1azjEtzpXUO9hJhmRX1B UsVa2NlBMR3PqHSgkVzNMAHgcGb78y0WuxEYZEREcf5Drnwgd5ZNqQorfvh29IFvDye5TnXTQgSB0 xj9oQHf3+awaZoPT4GvbpHrlHiI1+SgKals5HFonQRbLu1ujJAjupODb3G41ETA/IVz395xT4rT2X RHag7AJBAv8F7XetNQn583a7t9reBkHsk1yVbBfB9bwOdg0V2fK6vhwD9f7maJcMUmaPN0EeGpey6 wlUSVVbA==; Received: from willy by casper.infradead.org with local (Exim 4.92.3 #3 (Red Hat Linux)) id 1kVKxI-0006Cw-GM; Wed, 21 Oct 2020 20:43:32 +0000 Date: Wed, 21 Oct 2020 21:43:32 +0100 From: Matthew Wilcox To: Jeff Layton Cc: akpm@linux-foundation.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org Subject: Re: [PATCH] mm: remove pagevec_lookup_range_nr_tag Message-ID: <20201021204332.GN20115@casper.infradead.org> References: <20201021193926.101474-1-jlayton@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201021193926.101474-1-jlayton@kernel.org> 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: On Wed, Oct 21, 2020 at 03:39:26PM -0400, Jeff Layton wrote: > With the merge of 2e1692966034 (ceph: have ceph_writepages_start call > pagevec_lookup_range_tag), nothing calls this anymore. > > Cc: Matthew Wilcox > Signed-off-by: Jeff Layton Reviewed-by: Matthew Wilcox (Oracle)