From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-173.mta0.migadu.com (out-173.mta0.migadu.com [91.218.175.173]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 4C9793CE4A2 for ; Fri, 10 Apr 2026 16:10:07 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.173 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775837408; cv=none; b=kkBHlqqVKhP1aHCpnQVP6qpBfyEMlQYiiO58bwEF1qS9fo5DCKIsS1DcAJ0sYyhLF5d0rJNkF0bBaY6DlJ5l/jJ4JzE982fazdlwBSwQDfZORsNz5NVLsVCQtT7b/wGCyyR/1Hesng3Ptsl8ZFF9NX1PgyyG97MOniIESfyzTdM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775837408; c=relaxed/simple; bh=BB7IYjQQZ1l045FGtH9jNsk980TMEUrAf2ulxew8SDA=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version:Content-Type; b=s8tQ1fMR54H8lbhBV5OdKduHgEdBYFQBTkaDGPReDleuih9SipQOnLJ9/+f3vfuOE0oxAdBQvs1rKNQ2koL/Iwjk3zQ1VdLMNk45zj1yNVSyHulHnn6j/jHSnqkL3IeTV/m6JIXHvjQG/m81DuDyranKK3jmFNVwKmBs4gtVqHM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=Keaynp1b; arc=none smtp.client-ip=91.218.175.173 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="Keaynp1b" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1775837405; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=BB7IYjQQZ1l045FGtH9jNsk980TMEUrAf2ulxew8SDA=; b=Keaynp1bQXn/qXRCODYj45J8Fua6vqzgHhv3cyproUZbe1LyzdF2pmFauECJm8QcyvbVDq kpMG4HoYcFKChLGXGIJL7p2WyNPlAXy22DYIV2bl0crYuYoZ7rSqqFEpnSYKqqwil6JCFm p/MfnwZ/QW0PZhK3EO1nfTYr6I6q1KM= From: Lance Yang To: luizcap@redhat.com Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, david@kernel.org, baolin.wang@linux.alibaba.com, ryan.roberts@arm.com, akpm@linux-foundation.org, ljs@kernel.org, ziy@nvidia.com, Liam.Howlett@oracle.com, npache@redhat.com, dev.jain@arm.com, baohua@kernel.org, Lance Yang Subject: Re: [PATCH v3 05/10] mm: debug_vm_pgtable: use pgtable_has_pmd_leaves() Date: Sat, 11 Apr 2026 00:09:43 +0800 Message-Id: <20260410160943.74271-1-lance.yang@linux.dev> In-Reply-To: <18d82575497d06a4d18605ae33f9c22e08a3209e.1775679721.git.luizcap@redhat.com> References: <18d82575497d06a4d18605ae33f9c22e08a3209e.1775679721.git.luizcap@redhat.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT On Wed, Apr 08, 2026 at 04:23:00PM -0400, Luiz Capitulino wrote: >debug_vm_pgtable calls has_transparent_hugepage() in multiple places to >check if PMD-sized pages are supported, use pgtable_has_pmd_leaves() >instead. > >Signed-off-by: Luiz Capitulino >--- Nothing obvious was missed. LGTM! Reviewed-by: Lance Yang