linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] *** add lost UL suffix to VMALLOC_END ***
@ 2011-07-08  2:54 Barry Song
  2011-07-08  2:54 ` [PATCH 1/3] ARM: CNS3XXX: add UL suffix to VMALLOC_END to ensure it is properly typed Barry Song
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Barry Song @ 2011-07-08  2:54 UTC (permalink / raw)
  To: linux-arm-kernel

After grepping, several platforms lost the UL suffix for VMALLOC_END.

Barry Song (3):
  ARM: CNS3XXX: add UL suffix to VMALLOC_END to ensure it is properly
    typed
  ARM: LPC32XXX: add UL suffix to VMALLOC_END to ensure it is properly
    typed
  ARM: NUC93X: add UL suffix to VMALLOC_END to ensure it is properly
    typed

 arch/arm/mach-cns3xxx/include/mach/vmalloc.h |    2 +-
 arch/arm/mach-lpc32xx/include/mach/vmalloc.h |    2 +-
 arch/arm/mach-nuc93x/include/mach/vmalloc.h  |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)



Member of the CSR plc group of companies. CSR plc registered in England and Wales, registered number 4187346, registered office Churchill House, Cambridge Business Park, Cowley Road, Cambridge, CB4 0WZ, United Kingdom
More information can be found at www.csr.com. Follow CSR on Twitter at http://twitter.com/CSR_PLC and read our blog at www.csr.com/blog

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/3] ARM: CNS3XXX: add UL suffix to VMALLOC_END to ensure it is properly typed
  2011-07-08  2:54 [PATCH 0/3] *** add lost UL suffix to VMALLOC_END *** Barry Song
@ 2011-07-08  2:54 ` Barry Song
  2011-07-08  2:54 ` [PATCH 2/3] ARM: LPC32XXX: " Barry Song
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Barry Song @ 2011-07-08  2:54 UTC (permalink / raw)
  To: linux-arm-kernel

Signed-off-by: Barry Song <baohua.song@csr.com>
---
 arch/arm/mach-cns3xxx/include/mach/vmalloc.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-cns3xxx/include/mach/vmalloc.h b/arch/arm/mach-cns3xxx/include/mach/vmalloc.h
index 4d381ec..1dd231d 100644
--- a/arch/arm/mach-cns3xxx/include/mach/vmalloc.h
+++ b/arch/arm/mach-cns3xxx/include/mach/vmalloc.h
@@ -8,4 +8,4 @@
  * published by the Free Software Foundation.
  */
 
-#define VMALLOC_END		0xd8000000
+#define VMALLOC_END		0xd8000000UL
-- 
1.7.1



Member of the CSR plc group of companies. CSR plc registered in England and Wales, registered number 4187346, registered office Churchill House, Cambridge Business Park, Cowley Road, Cambridge, CB4 0WZ, United Kingdom
More information can be found at www.csr.com. Follow CSR on Twitter at http://twitter.com/CSR_PLC and read our blog at www.csr.com/blog

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/3] ARM: LPC32XXX: add UL suffix to VMALLOC_END to ensure it is properly typed
  2011-07-08  2:54 [PATCH 0/3] *** add lost UL suffix to VMALLOC_END *** Barry Song
  2011-07-08  2:54 ` [PATCH 1/3] ARM: CNS3XXX: add UL suffix to VMALLOC_END to ensure it is properly typed Barry Song
@ 2011-07-08  2:54 ` Barry Song
  2011-07-08  2:54 ` [PATCH 3/3] ARM: NUC93X: " Barry Song
  2011-07-08  9:14 ` [PATCH 0/3] *** add lost UL suffix to VMALLOC_END *** Russell King - ARM Linux
  3 siblings, 0 replies; 6+ messages in thread
From: Barry Song @ 2011-07-08  2:54 UTC (permalink / raw)
  To: linux-arm-kernel

Signed-off-by: Barry Song <baohua.song@csr.com>
---
 arch/arm/mach-lpc32xx/include/mach/vmalloc.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-lpc32xx/include/mach/vmalloc.h b/arch/arm/mach-lpc32xx/include/mach/vmalloc.h
index d1d936c..720fa43 100644
--- a/arch/arm/mach-lpc32xx/include/mach/vmalloc.h
+++ b/arch/arm/mach-lpc32xx/include/mach/vmalloc.h
@@ -19,6 +19,6 @@
 #ifndef __ASM_ARCH_VMALLOC_H
 #define __ASM_ARCH_VMALLOC_H
 
-#define VMALLOC_END	0xF0000000
+#define VMALLOC_END	0xF0000000UL
 
 #endif
-- 
1.7.1



Member of the CSR plc group of companies. CSR plc registered in England and Wales, registered number 4187346, registered office Churchill House, Cambridge Business Park, Cowley Road, Cambridge, CB4 0WZ, United Kingdom
More information can be found at www.csr.com. Follow CSR on Twitter at http://twitter.com/CSR_PLC and read our blog at www.csr.com/blog

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 3/3] ARM: NUC93X: add UL suffix to VMALLOC_END to ensure it is properly typed
  2011-07-08  2:54 [PATCH 0/3] *** add lost UL suffix to VMALLOC_END *** Barry Song
  2011-07-08  2:54 ` [PATCH 1/3] ARM: CNS3XXX: add UL suffix to VMALLOC_END to ensure it is properly typed Barry Song
  2011-07-08  2:54 ` [PATCH 2/3] ARM: LPC32XXX: " Barry Song
@ 2011-07-08  2:54 ` Barry Song
  2011-07-08  9:14 ` [PATCH 0/3] *** add lost UL suffix to VMALLOC_END *** Russell King - ARM Linux
  3 siblings, 0 replies; 6+ messages in thread
From: Barry Song @ 2011-07-08  2:54 UTC (permalink / raw)
  To: linux-arm-kernel

Signed-off-by: Barry Song <baohua.song@csr.com>
---
 arch/arm/mach-nuc93x/include/mach/vmalloc.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-nuc93x/include/mach/vmalloc.h b/arch/arm/mach-nuc93x/include/mach/vmalloc.h
index 98a21b8..7d11a5f 100644
--- a/arch/arm/mach-nuc93x/include/mach/vmalloc.h
+++ b/arch/arm/mach-nuc93x/include/mach/vmalloc.h
@@ -18,6 +18,6 @@
 #ifndef __ASM_ARCH_VMALLOC_H
 #define __ASM_ARCH_VMALLOC_H
 
-#define VMALLOC_END	  (0xE0000000)
+#define VMALLOC_END	  0xE0000000UL
 
 #endif /* __ASM_ARCH_VMALLOC_H */
-- 
1.7.1



Member of the CSR plc group of companies. CSR plc registered in England and Wales, registered number 4187346, registered office Churchill House, Cambridge Business Park, Cowley Road, Cambridge, CB4 0WZ, United Kingdom
More information can be found at www.csr.com. Follow CSR on Twitter at http://twitter.com/CSR_PLC and read our blog at www.csr.com/blog

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 0/3] *** add lost UL suffix to VMALLOC_END ***
  2011-07-08  2:54 [PATCH 0/3] *** add lost UL suffix to VMALLOC_END *** Barry Song
                   ` (2 preceding siblings ...)
  2011-07-08  2:54 ` [PATCH 3/3] ARM: NUC93X: " Barry Song
@ 2011-07-08  9:14 ` Russell King - ARM Linux
  2011-07-08 15:54   ` Arnd Bergmann
  3 siblings, 1 reply; 6+ messages in thread
From: Russell King - ARM Linux @ 2011-07-08  9:14 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Jul 07, 2011 at 07:54:26PM -0700, Barry Song wrote:
> After grepping, several platforms lost the UL suffix for VMALLOC_END.
> 
> Barry Song (3):
>   ARM: CNS3XXX: add UL suffix to VMALLOC_END to ensure it is properly
>     typed
>   ARM: LPC32XXX: add UL suffix to VMALLOC_END to ensure it is properly
>     typed
>   ARM: NUC93X: add UL suffix to VMALLOC_END to ensure it is properly
>     typed

All looks fine to me, thanks.  Arnd - are you going to pick these up?
If so...

Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>

for all three.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 0/3] *** add lost UL suffix to VMALLOC_END ***
  2011-07-08  9:14 ` [PATCH 0/3] *** add lost UL suffix to VMALLOC_END *** Russell King - ARM Linux
@ 2011-07-08 15:54   ` Arnd Bergmann
  0 siblings, 0 replies; 6+ messages in thread
From: Arnd Bergmann @ 2011-07-08 15:54 UTC (permalink / raw)
  To: linux-arm-kernel

On Friday 08 July 2011, Russell King - ARM Linux wrote:
> On Thu, Jul 07, 2011 at 07:54:26PM -0700, Barry Song wrote:
> > After grepping, several platforms lost the UL suffix for VMALLOC_END.
> > 
> > Barry Song (3):
> >   ARM: CNS3XXX: add UL suffix to VMALLOC_END to ensure it is properly
> >     typed
> >   ARM: LPC32XXX: add UL suffix to VMALLOC_END to ensure it is properly
> >     typed
> >   ARM: NUC93X: add UL suffix to VMALLOC_END to ensure it is properly
> >     typed
> 
> All looks fine to me, thanks.  Arnd - are you going to pick these up?
> If so...
> 
> Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>

Applied to arm-soc/next/fixes, thanks!

	Arnd

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-07-08 15:54 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-08  2:54 [PATCH 0/3] *** add lost UL suffix to VMALLOC_END *** Barry Song
2011-07-08  2:54 ` [PATCH 1/3] ARM: CNS3XXX: add UL suffix to VMALLOC_END to ensure it is properly typed Barry Song
2011-07-08  2:54 ` [PATCH 2/3] ARM: LPC32XXX: " Barry Song
2011-07-08  2:54 ` [PATCH 3/3] ARM: NUC93X: " Barry Song
2011-07-08  9:14 ` [PATCH 0/3] *** add lost UL suffix to VMALLOC_END *** Russell King - ARM Linux
2011-07-08 15:54   ` Arnd Bergmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).