linux-next: build failure after merge of the final tree (tty tree related)

7 messages, 4 authors, 2011-08-26 · open the first message on its own page

linux-next: build failure after merge of the final tree (tty tree related)

From: Stephen Rothwell <hidden>
Date: 2011-08-25 06:18:48

Hi all,

After merging the final tree, today's linux-next build (powerpc
allyesconfig) failed like this:

drivers/tty/ehv_bytechan.c: In function 'udbg_init_ehv_bc':
drivers/tty/ehv_bytechan.c:230:18: error: 'MSR_GS' undeclared (first use in this function)
drivers/tty/ehv_bytechan.c: In function 'ehv_bc_console_write':
drivers/tty/ehv_bytechan.c:289:24: warning: cast from pointer to integer of different size
drivers/tty/ehv_bytechan.c: In function 'ehv_bc_console_init':
drivers/tty/ehv_bytechan.c:355:24: warning: cast to pointer from integer of different size

Caused by commit dcd83aaff1c8 ("tty/powerpc: introduce the ePAPR embedded
hypervisor byte channel driver").

MSR_GS is defined in arch/powerpc/include/asm/reg_booke.h which is
included by arch/powerpc/include/asm/reg.h but only when defined
(CONFIG_BOOKE) || defined(CONFIG_40x).

I have reverted that commit for today.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

Re: linux-next: build failure after merge of the final tree (tty tree related)

From: Greg KH <hidden>
Date: 2011-08-25 14:24:44

On Thu, Aug 25, 2011 at 04:18:43PM +1000, Stephen Rothwell wrote:
Hi all,

After merging the final tree, today's linux-next build (powerpc
allyesconfig) failed like this:

drivers/tty/ehv_bytechan.c: In function 'udbg_init_ehv_bc':
drivers/tty/ehv_bytechan.c:230:18: error: 'MSR_GS' undeclared (first use in this function)
drivers/tty/ehv_bytechan.c: In function 'ehv_bc_console_write':
drivers/tty/ehv_bytechan.c:289:24: warning: cast from pointer to integer of different size
drivers/tty/ehv_bytechan.c: In function 'ehv_bc_console_init':
drivers/tty/ehv_bytechan.c:355:24: warning: cast to pointer from integer of different size

Caused by commit dcd83aaff1c8 ("tty/powerpc: introduce the ePAPR embedded
hypervisor byte channel driver").

MSR_GS is defined in arch/powerpc/include/asm/reg_booke.h which is
included by arch/powerpc/include/asm/reg.h but only when defined
(CONFIG_BOOKE) || defined(CONFIG_40x).
Thanks for the report.

Timur, care to send a fixup patch for this so this gets resolved?

greg k-h

Re: linux-next: build failure after merge of the final tree (tty tree related)

From: Timur Tabi <hidden>
Date: 2011-08-25 14:27:56


On Aug 25, 2011, at 9:08 AM, Greg KH [off-list ref] wrote:
On Thu, Aug 25, 2011 at 04:18:43PM +1000, Stephen Rothwell wrote:
quoted
Thanks for the report.

Timur, care to send a fixup patch for this so this gets resolved?
Yes, I will do it ASAP, probably within the next two hours.

Re: linux-next: build failure after merge of the final tree (tty tree related)

From: Timur Tabi <hidden>
Date: 2011-08-25 15:22:22

Greg KH wrote:
quoted
quoted
MSR_GS is defined in arch/powerpc/include/asm/reg_booke.h which is
included by arch/powerpc/include/asm/reg.h but only when defined
(CONFIG_BOOKE) || defined(CONFIG_40x).
Thanks for the report.

Timur, care to send a fixup patch for this so this gets resolved?
Is there some trick to building allyesconfig on PowerPC?  When I do try that, I
get all sorts of weird build errors, and it dies long before it gets to my
driver.  I get stuff like:

  LD      arch/powerpc/sysdev/xics/built-in.o
WARNING: arch/powerpc/sysdev/xics/built-in.o(.text+0x1310): Section mismatch in
reference from the function .icp_native_init() to the function
.init.text:.icp_native_init_one_node()
The function .icp_native_init() references
the function __init .icp_native_init_one_node().
This is often because .icp_native_init lacks a __init
annotation or the annotation of .icp_native_init_one_node is wrong.

and

  AS      arch/powerpc/kernel/head_64.o
arch/powerpc/kernel/exceptions-64s.S: Assembler messages:
arch/powerpc/kernel/exceptions-64s.S:1151: Error: attempt to move .org backwards
arch/powerpc/kernel/exceptions-64s.S:1160: Error: attempt to move .org backwards
make[1]: *** [arch/powerpc/kernel/head_64.o] Error 1

I guess I don't have the right compiler.

Anyway, I think I know how to fix the break that Stephen is seeing.  I will post
a v4 patch in a few minutes.


-- 
Timur Tabi
Linux kernel developer at Freescale

Re: linux-next: build failure after merge of the final tree (tty tree related)

From: Stephen Rothwell <hidden>
Date: 2011-08-25 15:51:21

Hi Timur,

On Thu, 25 Aug 2011 10:22:05 -0500 Timur Tabi [off-list ref] wrote:
Is there some trick to building allyesconfig on PowerPC?  When I do try that, I
get all sorts of weird build errors, and it dies long before it gets to my
driver.  I get stuff like:

  LD      arch/powerpc/sysdev/xics/built-in.o
WARNING: arch/powerpc/sysdev/xics/built-in.o(.text+0x1310): Section mismatch in
reference from the function .icp_native_init() to the function
.init.text:.icp_native_init_one_node()
The function .icp_native_init() references
the function __init .icp_native_init_one_node().
This is often because .icp_native_init lacks a __init
annotation or the annotation of .icp_native_init_one_node is wrong.
We get lots of those in many builds. :-(  Just a warning.
and

  AS      arch/powerpc/kernel/head_64.o
arch/powerpc/kernel/exceptions-64s.S: Assembler messages:
arch/powerpc/kernel/exceptions-64s.S:1151: Error: attempt to move .org backwards
arch/powerpc/kernel/exceptions-64s.S:1160: Error: attempt to move .org backwards
There is a patch for that pending with either the kvm guys or the powerpc guys.
I guess I don't have the right compiler.
Yours seems to be OK.  If you pass -k to make it will get further.  Or
you could configure it and then just try building your driver rather than
the whole tree.
Anyway, I think I know how to fix the break that Stephen is seeing.  I will post
a v4 patch in a few minutes.
Thanks.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

Re: linux-next: build failure after merge of the final tree (tty tree related)

From: Arnaud Lacombe <hidden>
Date: 2011-08-25 16:09:22

Hi,

On Thu, Aug 25, 2011 at 11:51 AM, Stephen Rothwell [off-list ref] w=
rote:
Hi Timur,

On Thu, 25 Aug 2011 10:22:05 -0500 Timur Tabi [off-list ref] wrote=
:
quoted
Is there some trick to building allyesconfig on PowerPC? =A0When I do tr=
y that, I
quoted
get all sorts of weird build errors, and it dies long before it gets to =
my
quoted
driver. =A0I get stuff like:

=A0 LD =A0 =A0 =A0arch/powerpc/sysdev/xics/built-in.o
WARNING: arch/powerpc/sysdev/xics/built-in.o(.text+0x1310): Section mism=
atch in
quoted
reference from the function .icp_native_init() to the function
.init.text:.icp_native_init_one_node()
The function .icp_native_init() references
the function __init .icp_native_init_one_node().
This is often because .icp_native_init lacks a __init
annotation or the annotation of .icp_native_init_one_node is wrong.
We get lots of those in many builds. :-( =A0Just a warning.
If you could provide an exhaustive list of them, I'd be interested. Do
you account/reference them in the report you make on each new -next
tree ?

 - Arnaud
quoted
and

=A0 AS =A0 =A0 =A0arch/powerpc/kernel/head_64.o
arch/powerpc/kernel/exceptions-64s.S: Assembler messages:
arch/powerpc/kernel/exceptions-64s.S:1151: Error: attempt to move .org b=
ackwards
quoted
arch/powerpc/kernel/exceptions-64s.S:1160: Error: attempt to move .org b=
ackwards
There is a patch for that pending with either the kvm guys or the powerpc=
 guys.
quoted
I guess I don't have the right compiler.
Yours seems to be OK. =A0If you pass -k to make it will get further. =A0O=
r
you could configure it and then just try building your driver rather than
the whole tree.
quoted
Anyway, I think I know how to fix the break that Stephen is seeing. =A0I=
 will post
quoted
a v4 patch in a few minutes.
Thanks.
--
Cheers,
Stephen Rothwell =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0sfr@canb.auug.org=
.au
http://www.canb.auug.org.au/~sfr/

Re: linux-next: build failure after merge of the final tree (tty tree related)

From: Stephen Rothwell <hidden>
Date: 2011-08-26 00:39:43

Hi Arnaud,

On Thu, 25 Aug 2011 12:09:20 -0400 Arnaud Lacombe [off-list ref] wrote:
If you could provide an exhaustive list of them, I'd be interested. Do
you account/reference them in the report you make on each new -next
tree ?
I don't refer to them at all :-(

If you are not just referring to powerpc ones, then an x86_64
allmodconfig is a good place to start, there are several in there.

Otherwise, I will send you the results of some of my builds this evening.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help