Re: [GIT PULL] x86 fixes

From: Linus Torvalds
Date: Wed May 06 2015 - 14:14:34 EST


Ugh, I pulled, but:

On Wed, May 6, 2015 at 5:58 AM, Ingo Molnar <mingo2.kernel.org@xxxxxxxxx> wrote:
>
> Ingo Molnar (1):
> x86/mm: Clean up types in xlate_dev_mem_ptr()
>
> diff --git a/arch/x86/mm/ioremap.c b/arch/x86/mm/ioremap.c
> index fdf617c00e2f..4bf037b20f47 100644
> --- a/arch/x86/mm/ioremap.c
> +++ b/arch/x86/mm/ioremap.c
> @@ -332,18 +332,20 @@ EXPORT_SYMBOL(iounmap);
> */
> void *xlate_dev_mem_ptr(phys_addr_t phys)
> {
> + unsigned long start = phys & PAGE_MASK;
> + unsigned long offset = phys & ~PAGE_MASK;
> + unsigned long vaddr;

That "unsigned long vaddr" is just stupid and not a cleanup.

It causes two pointless casts:

> + vaddr = (unsigned long)ioremap_cache(start, PAGE_SIZE);
> + /* Only add the offset on success and return NULL if the ioremap() failed: */
> + if (vaddr)
> + vaddr += offset;
>
> + return (void *)vaddr;

neither of which is helpful in the least. And the "vaddr += offset"
would work equally well in "void *", gcc is perfectly happy to treat
"void *" arithmetic as byte offsets, it's both documented and already
extensively used in the kernel.

So the cleanup to use "start/offset" is a good cleanup, but you should
have kept "addr" as a pointer.

Linus
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/