Re: [PATCH] print_hex_dump: use %px when using DUMP_PREFIX_ADDRESS

2020-09-16 Thread Timur Tabi
On Wed, Jun 24, 2020 at 7:23 AM Roman Fietze wrote: > > This function is mainly used for debugging. But for that purpose the > hashed memory address of the dumped data provides no useful > information at all. > > Note: There are only very few locations in the kernel, where > print_hex_dump is not

[PATCH] print_hex_dump: use %px when using DUMP_PREFIX_ADDRESS

2020-06-24 Thread Roman Fietze
This function is mainly used for debugging. But for that purpose the hashed memory address of the dumped data provides no useful information at all. Note: There are only very few locations in the kernel, where print_hex_dump is not used with KERN_DEBUG and DUMP_PREFIX_ADDRESS. Signed-off-by: Roma