Re: [PATCH] mm: Standardize printing for pgtable entries

From: Matthew Wilcox

Date: Tue Jul 07 2026 - 00:54:07 EST


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.

But in general, this looks a lot better.