Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1244191

Re: [PATCH v2 1/1] x86/early_printk: Use __iomem address space for IO

From Thomas Gleixner <tglx@linutronix.de>
Newsgroups linux.kernel
Subject Re: [PATCH v2 1/1] x86/early_printk: Use __iomem address space for IO
Date 2015-10-11 21:20 +0200
Message-ID <qiuk1-L5-3@gated-at.bofh.it> (permalink)
References <qhGQk-4IM-43@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Andy,

On Fri, 9 Oct 2015, Andy Shevchenko wrote:
>  #ifdef CONFIG_PCI
>  static void mem32_serial_out(unsigned long addr, int offset, int value)
>  {
> -	u32 *vaddr = (u32 *)addr;
> +	void __iomem *vaddr = (void __iomem *)addr;
>  	/* shift implied by pointer type */
>  	writel(value, vaddr + offset);

This is broken. Assume vaddr = 0x1000 and offset = 1

==>  u32 *vaddr = 0x1000;
==>  vaddr + offset = 0x1004

with your change

==>  void __iomem *vaddr = 0x1000;

==>  vaddr + offset = 0x1001

This comment is there for a reason:
>  	/* shift implied by pointer type */

Thanks,

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

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v2 1/1] x86/early_printk: Use __iomem address space for IO Andy Shevchenko <andriy.shevchenko@linux.intel.com> - 2015-10-09 16:30 +0200
  Re: [PATCH v2 1/1] x86/early_printk: Use __iomem address space for  IO Andy Shevchenko <andriy.shevchenko@linux.intel.com> - 2015-10-09 16:40 +0200
  Re: [PATCH v2 1/1] x86/early_printk: Use __iomem address space for  IO Thomas Gleixner <tglx@linutronix.de> - 2015-10-11 21:20 +0200
    Re: [PATCH v2 1/1] x86/early_printk: Use __iomem address space for  IO Andy Shevchenko <andriy.shevchenko@linux.intel.com> - 2015-10-12 10:20 +0200
      Re: [PATCH v2 1/1] x86/early_printk: Use __iomem address space for  IO Thomas Gleixner <tglx@linutronix.de> - 2015-10-12 11:20 +0200

csiph-web