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,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=unavailable 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 9CB5CC07E95 for ; Tue, 20 Jul 2021 10:53:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 7554861107 for ; Tue, 20 Jul 2021 10:53:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237763AbhGTKJG (ORCPT ); Tue, 20 Jul 2021 06:09:06 -0400 Received: from mail.kernel.org ([198.145.29.99]:34594 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237389AbhGTKCi (ORCPT ); Tue, 20 Jul 2021 06:02:38 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 75A2E61186; Tue, 20 Jul 2021 10:43:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1626777796; bh=DGsSLkp6uOwkTE0wLeS3fDnP+ph5ucsvgTOh8pwLif8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=sB4JjV59376NGRoZBMG7hpcGnb7VpGw3pmKH59qKAxxRlZOOYSKz0sfX17uGhQ1Vl jGi9PHoPGSpMqky5+Rh7tss1dvXG1X9PVJ8ZlbOMNDkefEvjGdXzCSC3pZwkxgrUCr M+E1/kis0svJheifPAMRAEecK35cEpgn3IS+AOa2iVqBmt2fYMnlpR9Pc3i/68SVuR x5tJJ8Ao8t2AnuGvEnkrSPYIwlW+fjuyTR0+oDVF0hKxj9GJuE+WGa3VP4nhxelJWB PeKIAonmyTHMemjlfuGjovsDI89jkpE6w1VJ4aId6nMs7nfIpH2G1OaXbNQn6wGabe h5H02YwdPtbnQ== Date: Tue, 20 Jul 2021 13:43:09 +0300 From: Mike Rapoport To: "Matthew Wilcox (Oracle)" Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, linux-fsdevel@vger.kernel.org, Christoph Hellwig , Jeff Layton , "Kirill A . Shutemov" , Vlastimil Babka , William Kucharski , David Howells Subject: Re: [PATCH v14 013/138] mm/filemap: Add folio_index(), folio_file_page() and folio_contains() Message-ID: References: <20210715033704.692967-1-willy@infradead.org> <20210715033704.692967-14-willy@infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210715033704.692967-14-willy@infradead.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jul 15, 2021 at 04:34:59AM +0100, Matthew Wilcox (Oracle) wrote: > folio_index() is the equivalent of page_index() for folios. > folio_file_page() is the equivalent of find_subpage(). > folio_contains() is the equivalent of thp_contains(). > > No changes to generated code. > > Signed-off-by: Matthew Wilcox (Oracle) > Reviewed-by: Christoph Hellwig > Acked-by: Jeff Layton > Acked-by: Kirill A. Shutemov > Acked-by: Vlastimil Babka > Reviewed-by: William Kucharski > Reviewed-by: David Howells > --- Acked-by: Mike Rapoport