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 8A210EB64D7 for ; Tue, 13 Jun 2023 20:56:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239638AbjFMUyr (ORCPT ); Tue, 13 Jun 2023 16:54:47 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51550 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S239122AbjFMUyn (ORCPT ); Tue, 13 Jun 2023 16:54:43 -0400 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EE2AE1701 for ; Tue, 13 Jun 2023 13:54:42 -0700 (PDT) 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=SNTYUvQq/3batOkapGSECA6ix3wsUL7r3MNZpjEUVdY=; b=cawQPlJPfT5seEBGbzb0u/DPI3 QCqqlR5asC0GnDMSLGBRmO/CxH/ATIarj8KbxrTEgAArhv+j5US4UDqgFdSRdcn3iO+eJRpWgdaBK uhK08EBkF/mpSJ//mihnuP5vOcgQmBd/jx3+wPYEPWfOERcF8H0t4Rgxr0bOAQAm+qyp3wwgRGvvh iwHlZCsNoDTV1+i42JrDEWzvOipRqyO3YW/Zgy2teO6VhXpBE4h0bU6lO8osLjo9CTNb0B9PaW/XW bG6hF3SCc/sekWoLeWaI6vbhfGuDNWMutoBfmzjp7m7FRYvxES8OsNXpxUfivc3zLko9x55QpKFCr MeaghKBw==; Received: from willy by casper.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1q9B2G-004K9i-Gl; Tue, 13 Jun 2023 20:54:40 +0000 Date: Tue, 13 Jun 2023 21:54:40 +0100 From: Matthew Wilcox To: "Vishal Moola (Oracle)" Cc: akpm@linux-foundation.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 3/5] mm/gup_test.c: Convert verify_dma_pinned() to us folios Message-ID: References: <20230613201827.9441-1-vishal.moola@gmail.com> <20230613201827.9441-4-vishal.moola@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230613201827.9441-4-vishal.moola@gmail.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jun 13, 2023 at 01:18:25PM -0700, Vishal Moola (Oracle) wrote: > verify_dma_pinned() checks that pages are dma-pinned. We can convert > this to use folios. > > Signed-off-by: Vishal Moola (Oracle) Reviewed-by: Matthew Wilcox (Oracle)