[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <063c785caa11b8e1c421c656b2a030d45d6eb68f.camel@perches.com>
Date: Tue, 03 Jul 2018 13:24:07 -0700
From: Joe Perches <joe@...ches.com>
To: Andrew Morton <akpm@...ux-foundation.org>,
Mike Rapoport <rppt@...ux.vnet.ibm.com>
Cc: linux-mm <linux-mm@...ck.org>, lkml <linux-kernel@...r.kernel.org>,
Michal Hocko <mhocko@...nel.org>,
Matthew Wilcox <willy@...radead.org>,
Sergey Senozhatsky <sergey.senozhatsky.work@...il.com>,
Linus Torvalds <torvalds@...ux-foundation.org>
Subject: Re: [PATCH] mm/memblock: replace u64 with phys_addr_t where
appropriate
On Tue, 2018-07-03 at 12:57 -0700, Andrew Morton wrote:
> Did you see all this checkpatch noise?
>
> : WARNING: Deprecated vsprintf pointer extension '%pF' - use %pS instead
> : #54: FILE: mm/memblock.c:1348:
> : + memblock_dbg("%s: %llu bytes align=0x%llx nid=%d from=%pa max_addr=%pa %pF\n",
> : + __func__, (u64)size, (u64)align, nid, &min_addr,
> : + &max_addr, (void *)_RET_IP_);
> : ...
%p[Ff] got deprecated by commit 04b8eb7a4ccd9ef9343e2720ccf2a5db8cfe2f67
I think it'd be simplest to just convert
all the %pF and %pf uses all at once.
$ git grep --name-only "%p[Ff]" | \
xargs sed -i -e 's/%pF/%pS/' -e 's/%pf/%ps/'
and remove the appropriate Documentation bit.
Powered by blists - more mailing lists