From: Michal Hocko <mhocko@kernel.org>
To: Alexey Dobriyan <adobriyan@gmail.com>
Cc: akpm@linux-foundation.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] elf: print userspace address with %lx
Date: Fri, 15 Mar 2019 07:53:27 +0100 [thread overview]
Message-ID: <20190315065327.GA15672@dhcp22.suse.cz> (raw)
In-Reply-To: <20190314204548.GB18143@avx2>
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".
>
> Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
> ---
>
> fs/binfmt_elf.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> --- 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);
>
> return(map_addr);
> }
--
Michal Hocko
SUSE Labs
next prev parent reply other threads:[~2019-03-15 6:53 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-14 20:45 [PATCH 2/2] elf: print userspace address with %lx Alexey Dobriyan
2019-03-15 6:53 ` Michal Hocko [this message]
2019-03-15 16:06 ` Alexey Dobriyan
2019-03-16 8:28 ` Michal Hocko
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190315065327.GA15672@dhcp22.suse.cz \
--to=mhocko@kernel.org \
--cc=adobriyan@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox