public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: include/linux: Add missing include / fix build failure
       [not found]   ` <g09gC-5Db-9@gated-at.bofh.it>
@ 2010-12-16  7:57     ` Axel
  2010-12-17  5:26       ` Nick Piggin
  0 siblings, 1 reply; 3+ messages in thread
From: Axel @ 2010-12-16  7:57 UTC (permalink / raw)
  To: Peter Hüwe; +Cc: Nick Piggin, linux-kernel, Russell King

On 12月16日, 上午7時50分, Peter Hüwe <PeterHu...@gmx.de> wrote:
> From: Peter Huewe <peterhu...@gmx.de>
>
> This patch fixes a build failure[1-2] by adding the missing asm/memory.h
> include needed for arch_is_coherent().
>
> Error message:
> In file included from include/linux/list_bl.h:5,
>                  from include/linux/rculist_bl.h:7,
>                  from include/linux/dcache.h:7,
>                  from include/linux/fs.h:381,
>                  from arch/arm/mm/mmap.c:4:
> include/linux/bit_spinlock.h: In function 'bit_spin_unlock':
> include/linux/bit_spinlock.h:61: error: implicit declaration of function
> 'arch_is_coherent'
>
> KernelVersion: linux-next-20101215
> Used configs: hackkit_defconfig (arm), ep93xx_defconfig (arm)
>
> References:
> [1]http://kisskb.ellerman.id.au/kisskb/buildresult/3651495/
> [2]http://kisskb.ellerman.id.au/kisskb/buildresult/3651425/
>
> Signed-off-by: Peter Huewe <peterhu...@gmx.de>
> ---
> v2:
> moved additional information in the commit message.
>
>  include/linux/bit_spinlock.h |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/include/linux/bit_spinlock.h b/include/linux/bit_spinlock.h
> index e612575..053fad7 100644
> --- a/include/linux/bit_spinlock.h
> +++ b/include/linux/bit_spinlock.h
> @@ -4,6 +4,7 @@
>  #include <linux/kernel.h>
>  #include <linux/preempt.h>
>  #include <asm/atomic.h>
> +#include <asm/memory.h>
>
>  /*
>   *  bit-based spin_lock()
> --
> 1.7.2.2
>
> --

hi Peter,
After apply the patch,
I got below error message while
# make i386_defconfig;make

  CHK     include/linux/version.h
  CHK     include/generated/utsrelease.h
  CALL    scripts/checksyscalls.sh
  CC      init/main.o
In file included from include/linux/list_bl.h:5,
                 from include/linux/rculist_bl.h:7,
                 from include/linux/dcache.h:7,
                 from include/linux/fs.h:381,
                 from include/linux/proc_fs.h:5,
                 from init/main.c:14:
include/linux/bit_spinlock.h:7:24: error: asm/memory.h: No such file
or directory
make[1]: *** [init/main.o] Error 1
make: *** [init] Error 2

I personally fix it by below patch now, but I'm not so sure if this is
a good way to fix it.

git diff arch/arm/include/asm/system.h
diff --git a/arch/arm/include/asm/system.h b/arch/arm/include/asm/
system.h
index ec4327a..3222ab8 100644
--- a/arch/arm/include/asm/system.h
+++ b/arch/arm/include/asm/system.h
@@ -155,6 +155,7 @@ extern unsigned int user_debug;
 #define rmb()          dmb()
 #define wmb()          mb()
 #else
+#include <asm/memory.h>
 #define mb()   do { if (arch_is_coherent()) dmb(); else barrier(); }
while (0)
 #define rmb()  do { if (arch_is_coherent()) dmb(); else barrier(); }
while (0)
 #define wmb()  do { if (arch_is_coherent()) dmb(); else barrier(); }
while (0)


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

* Re: include/linux: Add missing include / fix build failure
  2010-12-16  7:57     ` include/linux: Add missing include / fix build failure Axel
@ 2010-12-17  5:26       ` Nick Piggin
  2010-12-17  7:01         ` Peter Hüwe
  0 siblings, 1 reply; 3+ messages in thread
From: Nick Piggin @ 2010-12-17  5:26 UTC (permalink / raw)
  To: Axel; +Cc: Peter Hüwe, Nick Piggin, linux-kernel, Russell King

On Wed, Dec 15, 2010 at 11:57:41PM -0800, Axel wrote:
> On 12月16日, 上午7時50分, Peter Hüwe <PeterHu...@gmx.de> wrote:
> > From: Peter Huewe <peterhu...@gmx.de>
> >
> > This patch fixes a build failure[1-2] by adding the missing asm/memory.h
> > include needed for arch_is_coherent().
> >
> > Error message:
> > In file included from include/linux/list_bl.h:5,
> >                  from include/linux/rculist_bl.h:7,
> >                  from include/linux/dcache.h:7,
> >                  from include/linux/fs.h:381,
> >                  from arch/arm/mm/mmap.c:4:
> > include/linux/bit_spinlock.h: In function 'bit_spin_unlock':
> > include/linux/bit_spinlock.h:61: error: implicit declaration of function
> > 'arch_is_coherent'
> >
> > KernelVersion: linux-next-20101215
> > Used configs: hackkit_defconfig (arm), ep93xx_defconfig (arm)
> >
> > References:
> > [1]http://kisskb.ellerman.id.au/kisskb/buildresult/3651495/
> > [2]http://kisskb.ellerman.id.au/kisskb/buildresult/3651425/
> >
> > Signed-off-by: Peter Huewe <peterhu...@gmx.de>
> > ---
> > v2:
> > moved additional information in the commit message.
> >
> >  include/linux/bit_spinlock.h |    1 +
> >  1 files changed, 1 insertions(+), 0 deletions(-)
> >
> > diff --git a/include/linux/bit_spinlock.h b/include/linux/bit_spinlock.h
> > index e612575..053fad7 100644
> > --- a/include/linux/bit_spinlock.h
> > +++ b/include/linux/bit_spinlock.h
> > @@ -4,6 +4,7 @@
> >  #include <linux/kernel.h>
> >  #include <linux/preempt.h>
> >  #include <asm/atomic.h>
> > +#include <asm/memory.h>
> >
> >  /*
> >   *  bit-based spin_lock()
> > --
> > 1.7.2.2
> >
> > --
> 
> hi Peter,
> After apply the patch,
> I got below error message while
> # make i386_defconfig;make
> 
>   CHK     include/linux/version.h
>   CHK     include/generated/utsrelease.h
>   CALL    scripts/checksyscalls.sh
>   CC      init/main.o
> In file included from include/linux/list_bl.h:5,
>                  from include/linux/rculist_bl.h:7,
>                  from include/linux/dcache.h:7,
>                  from include/linux/fs.h:381,
>                  from include/linux/proc_fs.h:5,
>                  from init/main.c:14:
> include/linux/bit_spinlock.h:7:24: error: asm/memory.h: No such file
> or directory
> make[1]: *** [init/main.o] Error 1
> make: *** [init] Error 2
> 
> I personally fix it by below patch now, but I'm not so sure if this is
> a good way to fix it.

Yes it should be fixed in arm code. If someone would send along a
patch to the maintainer, that would be appreciated.

Thanks,
Nick

> 
> git diff arch/arm/include/asm/system.h
> diff --git a/arch/arm/include/asm/system.h b/arch/arm/include/asm/
> system.h
> index ec4327a..3222ab8 100644
> --- a/arch/arm/include/asm/system.h
> +++ b/arch/arm/include/asm/system.h
> @@ -155,6 +155,7 @@ extern unsigned int user_debug;
>  #define rmb()          dmb()
>  #define wmb()          mb()
>  #else
> +#include <asm/memory.h>
>  #define mb()   do { if (arch_is_coherent()) dmb(); else barrier(); }
> while (0)
>  #define rmb()  do { if (arch_is_coherent()) dmb(); else barrier(); }
> while (0)
>  #define wmb()  do { if (arch_is_coherent()) dmb(); else barrier(); }
> while (0)

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

* Re: include/linux: Add missing include / fix build failure
  2010-12-17  5:26       ` Nick Piggin
@ 2010-12-17  7:01         ` Peter Hüwe
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Hüwe @ 2010-12-17  7:01 UTC (permalink / raw)
  To: Nick Piggin; +Cc: Axel, linux-kernel, Russell King

> > After apply the patch,
> > I got below error message while
> > # make i386_defconfig;make

Sorry about that - thanks for testing!

> > I personally fix it by below patch now, but I'm not so sure if this is
> > a good way to fix it.

> Yes it should be fixed in arm code. If someone would send along a
> patch to the maintainer, that would be appreciated.

Axel seems to have done that already - unfortunately I haven't found the time 
yesterday. Thanks!


I'll review/test the patch tonight - meanwhile you'll get a
Reported-by: Peter Huewe <peterhuewe@gmx.de>

Thanks,
Peter

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

end of thread, other threads:[~2010-12-17  7:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <g06LM-1y8-17@gated-at.bofh.it>
     [not found] ` <g096W-5pB-17@gated-at.bofh.it>
     [not found]   ` <g09gC-5Db-9@gated-at.bofh.it>
2010-12-16  7:57     ` include/linux: Add missing include / fix build failure Axel
2010-12-17  5:26       ` Nick Piggin
2010-12-17  7:01         ` Peter Hüwe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox