linux-um archives
 help / color / mirror / Atom feed
* Re: linux-next: Tree for July 22 (uml)
       [not found] <20110722164237.2b3f6cbdedafa9e1d3f70867@canb.auug.org.au>
@ 2011-07-22 15:53 ` Randy Dunlap
  2011-07-22 18:55   ` Richard Weinberger
  0 siblings, 1 reply; 4+ messages in thread
From: Randy Dunlap @ 2011-07-22 15:53 UTC (permalink / raw)
  To: Stephen Rothwell, Richard Weinberger
  Cc: linux-next, LKML, user-mode-linux-devel

On Fri, 22 Jul 2011 16:42:37 +1000 Stephen Rothwell wrote:

> Hi all,

uml build on i386 fails with:

arch/um/sys-i386/built-in.o: In function `call_rwsem_down_read_failed':
linux-next-20110722/arch/um/sys-i386/../../x86/lib/rwsem.S:93: undefined reference to `rwsem_down_read_failed'
arch/um/sys-i386/built-in.o: In function `call_rwsem_down_write_failed':
linux-next-20110722/arch/um/sys-i386/../../x86/lib/rwsem.S:105: undefined reference to `rwsem_down_write_failed'
arch/um/sys-i386/built-in.o: In function `call_rwsem_wake':
linux-next-20110722/arch/um/sys-i386/../../x86/lib/rwsem.S:118: undefined reference to `rwsem_wake'
arch/um/sys-i386/built-in.o: In function `call_rwsem_downgrade_wake':
linux-next-20110722/arch/um/sys-i386/../../x86/lib/rwsem.S:130: undefined reference to `rwsem_downgrade_wake'


---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***

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

* Re: linux-next: Tree for July 22 (uml)
  2011-07-22 15:53 ` linux-next: Tree for July 22 (uml) Randy Dunlap
@ 2011-07-22 18:55   ` Richard Weinberger
  2011-07-22 20:15     ` Randy Dunlap
  2011-07-25  6:54     ` Jan Beulich
  0 siblings, 2 replies; 4+ messages in thread
From: Richard Weinberger @ 2011-07-22 18:55 UTC (permalink / raw)
  To: JBeulich
  Cc: Randy Dunlap, mingo, akpm, Stephen Rothwell, LKML,
	user-mode-linux-devel

Am Freitag 22 Juli 2011, 17:53:46 schrieben Sie:
> On Fri, 22 Jul 2011 16:42:37 +1000 Stephen Rothwell wrote:
> > Hi all,
> 
> uml build on i386 fails with:
> 
> arch/um/sys-i386/built-in.o: In function `call_rwsem_down_read_failed':
> linux-next-20110722/arch/um/sys-i386/../../x86/lib/rwsem.S:93: undefined
> reference to `rwsem_down_read_failed' arch/um/sys-i386/built-in.o: In
> function `call_rwsem_down_write_failed':
> linux-next-20110722/arch/um/sys-i386/../../x86/lib/rwsem.S:105: undefined
> reference to `rwsem_down_write_failed' arch/um/sys-i386/built-in.o: In
> function `call_rwsem_wake':
> linux-next-20110722/arch/um/sys-i386/../../x86/lib/rwsem.S:118: undefined
> reference to `rwsem_wake' arch/um/sys-i386/built-in.o: In function
> `call_rwsem_downgrade_wake':
> linux-next-20110722/arch/um/sys-i386/../../x86/lib/rwsem.S:130: undefined
> reference to `rwsem_downgrade_wake'
> 

Jan,

"x86: Unify rwsem assembly implementation" broke the UML build on i386.
Please compile test you changes or CC me when you are touch something in arch/um/.

make ARCH=um SUBARCH=i386
and
make ARCH=um SUBARCH=x86_64

does not hurt. :-)

Thanks,
//richard

---

From b9ec24beb55276d74fdf4f9f9607c69fc8662b72 Mon Sep 17 00:00:00 2001
From: Richard Weinberger <richard@nod.at>
Date: Fri, 22 Jul 2011 20:46:32 +0200
Subject: [PATCH] um: Make rwsem.S depend on CONFIG_RWSEM_XCHGADD_ALGORITHM

rwsem.S can only be used with CONFIG_RWSEM_XCHGADD_ALGORITHM.
This unbreaks the UML build on i386.

Signed-off-by: Richard Weinberger <richard@nod.at>
Reported-by: Randy Dunlap <rdunlap@xenotime.net>
---
 arch/um/sys-i386/Makefile |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/arch/um/sys-i386/Makefile b/arch/um/sys-i386/Makefile
index 15587ed..87b659d 100644
--- a/arch/um/sys-i386/Makefile
+++ b/arch/um/sys-i386/Makefile
@@ -8,7 +8,8 @@ obj-y = bug.o bugs.o checksum.o delay.o fault.o ksyms.o ldt.o ptrace.o \
 
 obj-$(CONFIG_BINFMT_ELF) += elfcore.o
 
-subarch-obj-y = lib/rwsem.o lib/string_32.o
+subarch-obj-y = lib/string_32.o
+subarch-obj-$(CONFIG_RWSEM_XCHGADD_ALGORITHM) += lib/rwsem.o
 subarch-obj-$(CONFIG_HIGHMEM) += mm/highmem_32.o
 subarch-obj-$(CONFIG_MODULES) += kernel/module.o
 
-- 
1.7.6


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

* Re: linux-next: Tree for July 22 (uml)
  2011-07-22 18:55   ` Richard Weinberger
@ 2011-07-22 20:15     ` Randy Dunlap
  2011-07-25  6:54     ` Jan Beulich
  1 sibling, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2011-07-22 20:15 UTC (permalink / raw)
  To: Richard Weinberger
  Cc: JBeulich, mingo, akpm, Stephen Rothwell, LKML,
	user-mode-linux-devel

On Fri, 22 Jul 2011 20:55:34 +0200 Richard Weinberger wrote:

> Am Freitag 22 Juli 2011, 17:53:46 schrieben Sie:
> > On Fri, 22 Jul 2011 16:42:37 +1000 Stephen Rothwell wrote:
> > > Hi all,
> > 
> > uml build on i386 fails with:
> > 
> > arch/um/sys-i386/built-in.o: In function `call_rwsem_down_read_failed':
> > linux-next-20110722/arch/um/sys-i386/../../x86/lib/rwsem.S:93: undefined
> > reference to `rwsem_down_read_failed' arch/um/sys-i386/built-in.o: In
> > function `call_rwsem_down_write_failed':
> > linux-next-20110722/arch/um/sys-i386/../../x86/lib/rwsem.S:105: undefined
> > reference to `rwsem_down_write_failed' arch/um/sys-i386/built-in.o: In
> > function `call_rwsem_wake':
> > linux-next-20110722/arch/um/sys-i386/../../x86/lib/rwsem.S:118: undefined
> > reference to `rwsem_wake' arch/um/sys-i386/built-in.o: In function
> > `call_rwsem_downgrade_wake':
> > linux-next-20110722/arch/um/sys-i386/../../x86/lib/rwsem.S:130: undefined
> > reference to `rwsem_downgrade_wake'
> > 
> 
> Jan,
> 
> "x86: Unify rwsem assembly implementation" broke the UML build on i386.
> Please compile test you changes or CC me when you are touch something in arch/um/.
> 
> make ARCH=um SUBARCH=i386
> and
> make ARCH=um SUBARCH=x86_64
> 
> does not hurt. :-)

Ack.

> Thanks,
> //richard
> 
> ---
> 
> From b9ec24beb55276d74fdf4f9f9607c69fc8662b72 Mon Sep 17 00:00:00 2001
> From: Richard Weinberger <richard@nod.at>
> Date: Fri, 22 Jul 2011 20:46:32 +0200
> Subject: [PATCH] um: Make rwsem.S depend on CONFIG_RWSEM_XCHGADD_ALGORITHM
> 
> rwsem.S can only be used with CONFIG_RWSEM_XCHGADD_ALGORITHM.
> This unbreaks the UML build on i386.
> 
> Signed-off-by: Richard Weinberger <richard@nod.at>
> Reported-by: Randy Dunlap <rdunlap@xenotime.net>

Acked-by: Randy Dunlap <rdunlap@xenotime.net>

Thanks.

> ---
>  arch/um/sys-i386/Makefile |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/um/sys-i386/Makefile b/arch/um/sys-i386/Makefile
> index 15587ed..87b659d 100644
> --- a/arch/um/sys-i386/Makefile
> +++ b/arch/um/sys-i386/Makefile
> @@ -8,7 +8,8 @@ obj-y = bug.o bugs.o checksum.o delay.o fault.o ksyms.o ldt.o ptrace.o \
>  
>  obj-$(CONFIG_BINFMT_ELF) += elfcore.o
>  
> -subarch-obj-y = lib/rwsem.o lib/string_32.o
> +subarch-obj-y = lib/string_32.o
> +subarch-obj-$(CONFIG_RWSEM_XCHGADD_ALGORITHM) += lib/rwsem.o
>  subarch-obj-$(CONFIG_HIGHMEM) += mm/highmem_32.o
>  subarch-obj-$(CONFIG_MODULES) += kernel/module.o
>  
> -- 


---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***

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

* Re: linux-next: Tree for July 22 (uml)
  2011-07-22 18:55   ` Richard Weinberger
  2011-07-22 20:15     ` Randy Dunlap
@ 2011-07-25  6:54     ` Jan Beulich
  1 sibling, 0 replies; 4+ messages in thread
From: Jan Beulich @ 2011-07-25  6:54 UTC (permalink / raw)
  To: mingo, Richard Weinberger
  Cc: Stephen Rothwell, akpm, user-mode-linux-devel, LKML, Randy Dunlap

>>> On 22.07.11 at 20:55, Richard Weinberger <richard@nod.at> wrote:
> Am Freitag 22 Juli 2011, 17:53:46 schrieben Sie:
>> On Fri, 22 Jul 2011 16:42:37 +1000 Stephen Rothwell wrote:
>> > Hi all,
>> 
>> uml build on i386 fails with:
>> 
>> arch/um/sys-i386/built-in.o: In function `call_rwsem_down_read_failed':
>> linux-next-20110722/arch/um/sys-i386/../../x86/lib/rwsem.S:93: undefined
>> reference to `rwsem_down_read_failed' arch/um/sys-i386/built-in.o: In
>> function `call_rwsem_down_write_failed':
>> linux-next-20110722/arch/um/sys-i386/../../x86/lib/rwsem.S:105: undefined
>> reference to `rwsem_down_write_failed' arch/um/sys-i386/built-in.o: In
>> function `call_rwsem_wake':
>> linux-next-20110722/arch/um/sys-i386/../../x86/lib/rwsem.S:118: undefined
>> reference to `rwsem_wake' arch/um/sys-i386/built-in.o: In function
>> `call_rwsem_downgrade_wake':
>> linux-next-20110722/arch/um/sys-i386/../../x86/lib/rwsem.S:130: undefined
>> reference to `rwsem_downgrade_wake'
>> 
> 
> Jan,
> 
> "x86: Unify rwsem assembly implementation" broke the UML build on i386.
> Please compile test you changes or CC me when you are touch something in 
> arch/um/.
> 
> make ARCH=um SUBARCH=i386
> and
> make ARCH=um SUBARCH=x86_64
> 
> does not hurt. :-)

I'm sorry for that - I actually meant to, but then forgot.

> Thanks,
> //richard
> 
> ---
> 
> From b9ec24beb55276d74fdf4f9f9607c69fc8662b72 Mon Sep 17 00:00:00 2001
> From: Richard Weinberger <richard@nod.at>
> Date: Fri, 22 Jul 2011 20:46:32 +0200
> Subject: [PATCH] um: Make rwsem.S depend on CONFIG_RWSEM_XCHGADD_ALGORITHM
> 
> rwsem.S can only be used with CONFIG_RWSEM_XCHGADD_ALGORITHM.
> This unbreaks the UML build on i386.
> 
> Signed-off-by: Richard Weinberger <richard@nod.at>
> Reported-by: Randy Dunlap <rdunlap@xenotime.net>

Acked-by: Jan Beulich <jbeulich@novell.com>

> ---
>  arch/um/sys-i386/Makefile |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/um/sys-i386/Makefile b/arch/um/sys-i386/Makefile
> index 15587ed..87b659d 100644
> --- a/arch/um/sys-i386/Makefile
> +++ b/arch/um/sys-i386/Makefile
> @@ -8,7 +8,8 @@ obj-y = bug.o bugs.o checksum.o delay.o fault.o ksyms.o ldt.o 
> ptrace.o \
>  
>  obj-$(CONFIG_BINFMT_ELF) += elfcore.o
>  
> -subarch-obj-y = lib/rwsem.o lib/string_32.o
> +subarch-obj-y = lib/string_32.o
> +subarch-obj-$(CONFIG_RWSEM_XCHGADD_ALGORITHM) += lib/rwsem.o
>  subarch-obj-$(CONFIG_HIGHMEM) += mm/highmem_32.o
>  subarch-obj-$(CONFIG_MODULES) += kernel/module.o
>  





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

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

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20110722164237.2b3f6cbdedafa9e1d3f70867@canb.auug.org.au>
2011-07-22 15:53 ` linux-next: Tree for July 22 (uml) Randy Dunlap
2011-07-22 18:55   ` Richard Weinberger
2011-07-22 20:15     ` Randy Dunlap
2011-07-25  6:54     ` Jan Beulich

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