Re: [PATCH] mm: Standardize printing for pgtable entries
From: Anshuman Khandual
Date: Tue Jul 07 2026 - 00:58:09 EST
On 07/07/26 10:23 AM, Matthew Wilcox wrote:
> On Tue, Jul 07, 2026 at 09:47:03AM +0530, Anshuman Khandual wrote:
>> if (!pgd_present(*pgdp) || pgd_leaf(*pgdp)) {
>> - pr_alert("pgd:%08llx\n", pgdv);
>> + pr_alert("pgd: %s\n", pgd_str);
>
> I don't like the extra space being introduced after the colon.
> It's normal practice to not do that.
Sure will remove that.
>
> But in general, this looks a lot better.
Thanks !