Re: [PATCH -next] dma-debug: Use %pa to format phys_addr_t

From: Jerry Snitselaar
Date: Wed Mar 29 2023 - 11:39:41 EST


On Wed, Mar 29, 2023 at 05:34:23PM +0200, Geert Uytterhoeven wrote:
> Hi Jerry,
>
> On Wed, Mar 29, 2023 at 5:03 PM Jerry Snitselaar <jsnitsel@xxxxxxxxxx> wrote:
> > On Wed, Mar 29, 2023 at 09:14:05AM +0200, Geert Uytterhoeven wrote:
> > > On 32-bit without LPAE:
> > >
> > > kernel/dma/debug.c: In function ‘debug_dma_dump_mappings’:
> > > kernel/dma/debug.c:537:7: warning: format ‘%llx’ expects argument of type ‘long long unsigned int’, but argument 9 has type ‘phys_addr_t’ {aka ‘unsigned int’} [-Wformat=]
> > > kernel/dma/debug.c: In function ‘dump_show’:
> > > kernel/dma/debug.c:568:59: warning: format ‘%llx’ expects argument of type ‘long long unsigned int’, but argument 11 has type ‘phys_addr_t’ {aka ‘unsigned int’} [-Wformat=]
> > >
> > > Fixes: bd89d69a529fbef3 ("dma-debug: add cacheline to user/kernel space dump messages")
> > > Reported-by: kernel test robot <lkp@xxxxxxxxx>
> > > Link: https://lore.kernel.org/r/202303160548.ReyuTsGD-lkp@xxxxxxxxx
> > > Reported-by: noreply@xxxxxxxxxxxxxx
> > > Signed-off-by: Geert Uytterhoeven <geert+renesas@xxxxxxxxx>
> =
> > > --- a/kernel/dma/debug.c
> > > +++ b/kernel/dma/debug.c
> > > @@ -534,11 +534,11 @@ void debug_dma_dump_mappings(struct device *dev)
> > > if (!dev || dev == entry->dev) {
> > > cln = to_cacheline_number(entry);
> > > dev_info(entry->dev,
> > > - "%s idx %d P=%llx N=%lx D=%llx L=%llx cln=%llx %s %s\n",
> > > + "%s idx %d P=%llx N=%lx D=%llx L=%llx cln=%pa %s %s\n",
> > > type2name[entry->type], idx,
> > > phys_addr(entry), entry->pfn,
> > > entry->dev_addr, entry->size,
> > > - cln, dir2name[entry->direction],
> > > + &cln, dir2name[entry->direction],
> >
> > Won't this just print out the address of cln declared at the beginning of debug_dma_dump_mappings() each time, instead of the value
> > returned from to_cacheline_entry() ?
>
> The physical address is passed by reference, cfr.
> https://elixir.bootlin.com/linux/latest/source/Documentation/core-api/printk-formats.rst#L231
>
> Gr{oetje,eeting}s,
>
> Geert

Got it. Thanks Geert

snits

>
> --
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@xxxxxxxxxxxxxx
>
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
> -- Linus Torvalds