s390(64) per_cpu in modules (ipv6)
From: Pete Zaitcev (zaitcev_at_redhat.com)
Date: 06/30/04
- Previous message: Joel Soete: "FW: Some cleanup patches for: '...lvalues is deprecated'"
- Next in thread: William Lee Irwin III: "Re: s390(64) per_cpu in modules (ipv6)"
- Reply: William Lee Irwin III: "Re: s390(64) per_cpu in modules (ipv6)"
- Reply: Roland Dreier: "Re: s390(64) per_cpu in modules (ipv6)"
- Maybe reply: Martin Schwidefsky: "Re: s390(64) per_cpu in modules (ipv6)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Tue, 29 Jun 2004 23:35:37 -0700 To: schwidefsky@de.ibm.com
Hi, Martin,
I tried to build ipv6 as a module in 2.6.7, and it bombs, producing a
module which wants per_cpu____icmpv6_socket (obviously, undefined).
The problem appears to be caused by this:
#define __get_got_cpu_var(var,offset) \
(*({ unsigned long *__ptr; \
asm ( "larl %0,per_cpu__"#var"@GOTENT" : "=a" (__ptr) ); \
((typeof(&per_cpu__##var))((*__ptr) + offset)); \
}))
The net/ipv6/icmp.c has this:
static DEFINE_PER_CPU(struct socket *, __icmpv6_socket) = NULL;
It is a static variable, and all references to it come from asm code.
The gcc does not know that they are present and optimizes the variable
away. It simply emits no code to define per_cpu____icmpv6_socket
whatsoever, as verified with gcc -S.
If the DEFINE_PER_CPU() is used without static, or if a bogus
reference is added to the C code (a printk), everything works.
I tried to add a fake input argument to the asm, like this:
--- linux-2.6.7-1.459/include/asm-s390/percpu.h 2004-06-16 01:20:04.000000000 -0400
+++ linux-2.6.7-1.459.z1/include/asm-s390/percpu.h 2004-06-29 22:03:23.000000000 -0400
@@ -15,7 +15,7 @@
#if defined(__s390x__) && defined(MODULE)
#define __get_got_cpu_var(var,offset) \
(*({ unsigned long *__ptr; \
- asm ( "larl %0,per_cpu__"#var"@GOTENT" : "=a" (__ptr) ); \
+ asm ( "larl %0,per_cpu__"#var"@GOTENT" : "=a" (__ptr) : "a" (&per_cpu__##var) ); \
((typeof(&per_cpu__##var))((*__ptr) + offset)); \
}))
#undef __get_cpu_var
It seems to work fine, but I'm wondering if a better fix can be found.
Ideas?
-- Pete
-
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/
- Previous message: Joel Soete: "FW: Some cleanup patches for: '...lvalues is deprecated'"
- Next in thread: William Lee Irwin III: "Re: s390(64) per_cpu in modules (ipv6)"
- Reply: William Lee Irwin III: "Re: s390(64) per_cpu in modules (ipv6)"
- Reply: Roland Dreier: "Re: s390(64) per_cpu in modules (ipv6)"
- Maybe reply: Martin Schwidefsky: "Re: s390(64) per_cpu in modules (ipv6)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|
|