lkml.org 
[lkml]   [2019]   [Mar]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 2/2] elf: print userspace address with %lx
On Fri, Mar 15, 2019 at 07:53:27AM +0100, Michal Hocko wrote:
> On Thu 14-03-19 23:45:48, Alexey Dobriyan wrote:
> > Use %lx, save a cast.
> >
> > "addr" is userspace address so using (and mangling) pointer was never
> > necessary.
>
> There shouldn't be any mangling AFAIU. Documentation for pointer()
> says
>
> * - 'x' For printing the address. Equivalent to "%lx".

The implication of using %p/%px is that the address is kernel pointer
which should or should not be mangled. But "map_addr" is not a kernel
pointer. And it saves a cast.

> > --- a/fs/binfmt_elf.c
> > +++ b/fs/binfmt_elf.c
> > @@ -376,8 +376,8 @@ static unsigned long elf_map(struct file *filep, unsigned long addr,
> > map_addr = vm_mmap(filep, addr, size, prot, type, off);
> >
> > if ((type & MAP_FIXED_NOREPLACE) && map_addr == -EEXIST)
> > - pr_info("%d (%s): Uhuuh, elf segment at %px requested but the memory is mapped already\n",
> > - task_pid_nr(current), current->comm, (void *)addr);
> > + pr_info("%d (%s): Uhuuh, elf segment at %lx requested but the memory is mapped already\n",
> > + task_pid_nr(current), current->comm, addr);

\
 
 \ /
  Last update: 2019-03-15 17:09    [W:0.053 / U:0.100 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site