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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 960A3C61D97 for ; Thu, 23 Nov 2023 07:26:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233871AbjKWH0M (ORCPT ); Thu, 23 Nov 2023 02:26:12 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46144 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230267AbjKWH0J (ORCPT ); Thu, 23 Nov 2023 02:26:09 -0500 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1DEE8C1 for ; Wed, 22 Nov 2023 23:26:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; 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=ucNIMLdxUFVbCLp9HspFVrXSn5iGqL5LxFwAG/1uGD4=; b=1D4CBpbxv4d4JTuoMceC6cwKDs 5DUJ6R7EohJ1LkucUf4xdCoIpt3HtGoW9BwAH5gcRCGgcYs2mVS3JZJjbwBIZXf6ooVUlMr4Z3EoS VrXnD8Sp6/2bj0iW5C7byD8EQToZezqi/rCfhNEJF6NJdTKAi8WQTQT0LMTORjRmKxHszexdeailm USOIIwdBL9MwC88RG7BI2rTEk39p74ILrXMku8ZBq4Xw8ygwf/kFaG9uJNpDeYfk6/75rsaJhkqxo IHYn9UlE0tQ89kRS4ux3sHAnKrqJB1pD4aBzCMT0hQH/r1/SwHzZFwLHHNdolYJo0R9L2UjwpepNQ U+hjNp3g==; Received: from hch by bombadil.infradead.org with local (Exim 4.96 #2 (Red Hat Linux)) id 1r646I-00422X-10; Thu, 23 Nov 2023 07:26:14 +0000 Date: Wed, 22 Nov 2023 23:26:14 -0800 From: Christoph Hellwig To: Peter Xu Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, Mike Kravetz , "Kirill A . Shutemov" , Lorenzo Stoakes , Axel Rasmussen , Matthew Wilcox , John Hubbard , Mike Rapoport , Hugh Dickins , David Hildenbrand , Andrea Arcangeli , Rik van Riel , James Houghton , Yang Shi , Jason Gunthorpe , Vlastimil Babka , Andrew Morton Subject: Re: [PATCH RFC 08/12] mm/gup: Handle hugetlb for no_page_table() Message-ID: References: <20231116012908.392077-1-peterx@redhat.com> <20231116012908.392077-9-peterx@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231116012908.392077-9-peterx@redhat.com> X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > static struct page *no_page_table(struct vm_area_struct *vma, > - unsigned int flags) > + unsigned int flags, unsigned long address) More reformatting that makes the code less readable :( Oterwise looks good: Reviewed-by: Christoph Hellwig