* scripts/mod/file2alias.c cross compile problem [not found] ` <617E1C2C70743745A92448908E030B2A0209BB9D@scsmsx411.amr.corp.intel.com> @ 2007-07-28 1:39 ` Adrian Bunk 2007-08-02 15:09 ` Thomas Renninger 0 siblings, 1 reply; 14+ messages in thread From: Adrian Bunk @ 2007-07-28 1:39 UTC (permalink / raw) To: Luck, Tony, Sam Ravnborg Cc: Thomas Renninger, Jan Dittmer, Len Brown, Linus Torvalds, Andrew Morton, linux-acpi, linux-kernel, linux-ia64 On Fri, Jul 27, 2007 at 04:21:47PM -0700, Luck, Tony wrote: > > So it seems on ia64 with gcc 3.3.6 there's some 8 byte alignment of the > > array members? > > > > Sam and the ia64 maintainers Cc'ed - they might know better what's going > > on here. > > This ia64 maintainer is baffled ... but I don't see the problem here (perhaps > because my build machine has gcc 3.4.6). I found what causes this problem, and it only occurs during cross compilation. The struct is: #define ACPI_ID_LEN 9 struct acpi_device_id { __u8 id[ACPI_ID_LEN]; kernel_ulong_t driver_data; }; When compiling for ia64, this results in: struct acpi_device_id { __u8 id[9]; uint64_t driver_data; }; sizeof(struct acpi_device_id) for ia64 is due to different padding after id[] 20 bytes on i386 but 24 bytes on ia64. scripts/mod/file2alias.c is compiled with HOSTCC and ensures that kernel_ulong_t is correct (in this case uint64_t for ia64), but it can't cope with different padding on different architectures. > -Tony cu Adrian -- "Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had been need of rain for many days. "Only a promise," Lao Er said. Pearl S. Buck - Dragon Seed ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: scripts/mod/file2alias.c cross compile problem 2007-07-28 1:39 ` scripts/mod/file2alias.c cross compile problem Adrian Bunk @ 2007-08-02 15:09 ` Thomas Renninger 2007-08-02 16:25 ` Luck, Tony 0 siblings, 1 reply; 14+ messages in thread From: Thomas Renninger @ 2007-08-02 15:09 UTC (permalink / raw) To: Adrian Bunk, tony.luck Cc: Sam Ravnborg, Jan Dittmer, Len Brown, Linus Torvalds, Andrew Morton, linux-acpi, linux-kernel, linux-ia64 On Sat, 2007-07-28 at 03:39 +0200, Adrian Bunk wrote: > On Fri, Jul 27, 2007 at 04:21:47PM -0700, Luck, Tony wrote: > > > So it seems on ia64 with gcc 3.3.6 there's some 8 byte alignment of the > > > array members? > > > > > > Sam and the ia64 maintainers Cc'ed - they might know better what's going > > > on here. > > > > This ia64 maintainer is baffled ... but I don't see the problem here (perhaps > > because my build machine has gcc 3.4.6). > > > I found what causes this problem, and it only occurs during cross > compilation. > > > The struct is: > > #define ACPI_ID_LEN 9 > > struct acpi_device_id { > __u8 id[ACPI_ID_LEN]; > kernel_ulong_t driver_data; > }; > > > When compiling for ia64, this results in: > > struct acpi_device_id { > __u8 id[9]; > uint64_t driver_data; > }; > > > sizeof(struct acpi_device_id) for ia64 is due to different padding > after id[] 20 bytes on i386 but 24 bytes on ia64. > > scripts/mod/file2alias.c is compiled with HOSTCC and ensures that > kernel_ulong_t is correct (in this case uint64_t for ia64), but it can't > cope with different padding on different architectures. This one should workaround it. Is this acceptable for now? Don't know how to fix this in a cleaner way (but I am sure it's possible... ). Maybe an IA64 guy who is more used to such things has a better idea and could have a look at this if there is time... Thomas ------------- Cross-compilation between e.g. i386 -> 64bit could break -> work around it Adrian Bunk: scripts/mod/file2alias.c is compiled with HOSTCC and ensures that kernel_ulong_t is correct, but it can't cope with different padding on different architectures. --- include/linux/mod_devicetable.h | 2 ++ 1 file changed, 2 insertions(+) Index: torvalds/include/linux/mod_devicetable.h =================================================================== --- torvalds.orig/include/linux/mod_devicetable.h +++ torvalds/include/linux/mod_devicetable.h @@ -160,9 +160,11 @@ struct ap_device_id { #define AP_DEVICE_ID_MATCH_DEVICE_TYPE 0x01 #define ACPI_ID_LEN 9 +#define FILLUP_LEN 7 /* dirty fix for i386 -> 64bit cross-compilation */ struct acpi_device_id { __u8 id[ACPI_ID_LEN]; + __u8 dummy[FILLUP_LEN]; kernel_ulong_t driver_data; }; ^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: scripts/mod/file2alias.c cross compile problem 2007-08-02 15:09 ` Thomas Renninger @ 2007-08-02 16:25 ` Luck, Tony 2007-08-02 16:36 ` Andreas Schwab 2007-08-02 22:08 ` Rusty Russell 0 siblings, 2 replies; 14+ messages in thread From: Luck, Tony @ 2007-08-02 16:25 UTC (permalink / raw) To: trenn, Adrian Bunk Cc: Sam Ravnborg, Jan Dittmer, Len Brown, Linus Torvalds, Andrew Morton, linux-acpi, linux-kernel, linux-ia64 > Adrian Bunk: scripts/mod/file2alias.c is compiled with HOSTCC and ensures that > kernel_ulong_t is correct, but it can't cope with different padding on > different architectures. Surely this is the root cause ... you can't expect that the alignment rules of HOSTCC to make any sense for an arbitraty target. > +#define FILLUP_LEN 7 /* dirty fix for i386 -> 64bit cross-compilation */ > > struct acpi_device_id { > __u8 id[ACPI_ID_LEN]; > + __u8 dummy[FILLUP_LEN]; > kernel_ulong_t driver_data; > }; What's so special about this structure that we get an error? Surely there are many kernel structures with different alignment/padding when built with i386 complier compared with ia64 compiler. We can't go around manually padding them all (it wastes time, and also wastes memory on the 32-bit systems that don't need this padding). -Tony ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: scripts/mod/file2alias.c cross compile problem 2007-08-02 16:25 ` Luck, Tony @ 2007-08-02 16:36 ` Andreas Schwab 2007-08-02 17:40 ` Luck, Tony 2007-08-02 22:08 ` Rusty Russell 1 sibling, 1 reply; 14+ messages in thread From: Andreas Schwab @ 2007-08-02 16:36 UTC (permalink / raw) To: Luck, Tony Cc: trenn, Adrian Bunk, Sam Ravnborg, Jan Dittmer, Len Brown, Linus Torvalds, Andrew Morton, linux-acpi, linux-kernel, linux-ia64 "Luck, Tony" <tony.luck@intel.com> writes: >> +#define FILLUP_LEN 7 /* dirty fix for i386 -> 64bit cross-compilation */ >> >> struct acpi_device_id { >> __u8 id[ACPI_ID_LEN]; >> + __u8 dummy[FILLUP_LEN]; >> kernel_ulong_t driver_data; >> }; > > What's so special about this structure that we get an error? It's special because it's a device_id structure, and those structures must come out identical using either the host or the target compiler. Andreas. -- Andreas Schwab, SuSE Labs, schwab@suse.de SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." ^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: scripts/mod/file2alias.c cross compile problem 2007-08-02 16:36 ` Andreas Schwab @ 2007-08-02 17:40 ` Luck, Tony 2007-08-02 18:09 ` Sam Ravnborg 0 siblings, 1 reply; 14+ messages in thread From: Luck, Tony @ 2007-08-02 17:40 UTC (permalink / raw) To: Andreas Schwab Cc: trenn, Adrian Bunk, Sam Ravnborg, Jan Dittmer, Len Brown, Linus Torvalds, Andrew Morton, linux-acpi, linux-kernel, linux-ia64 >>> struct acpi_device_id { >>> __u8 id[ACPI_ID_LEN]; >>> + __u8 dummy[FILLUP_LEN]; >>> kernel_ulong_t driver_data; >>> }; >> >> What's so special about this structure that we get an error? > > It's special because it's a device_id structure, and those structures > must come out identical using either the host or the target compiler. That didn't help me understand. Are device_id structures visible in some user-level API? If so, then I can see why they'd need to be the same (but then I'd be confused why this structure uses a "kernel_ulong_t" type). -Tony ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: scripts/mod/file2alias.c cross compile problem 2007-08-02 17:40 ` Luck, Tony @ 2007-08-02 18:09 ` Sam Ravnborg 2007-08-02 19:15 ` Adrian Bunk 0 siblings, 1 reply; 14+ messages in thread From: Sam Ravnborg @ 2007-08-02 18:09 UTC (permalink / raw) To: Luck, Tony Cc: Andreas Schwab, trenn, Adrian Bunk, Jan Dittmer, Len Brown, Linus Torvalds, Andrew Morton, linux-acpi, linux-kernel, linux-ia64 On Thu, Aug 02, 2007 at 10:40:14AM -0700, Luck, Tony wrote: > >>> struct acpi_device_id { > >>> __u8 id[ACPI_ID_LEN]; > >>> + __u8 dummy[FILLUP_LEN]; > >>> kernel_ulong_t driver_data; > >>> }; > >> > >> What's so special about this structure that we get an error? > > > > It's special because it's a device_id structure, and those structures > > must come out identical using either the host or the target compiler. > > That didn't help me understand. Are device_id structures visible > in some user-level API? If so, then I can see why they'd need to > be the same (but then I'd be confused why this structure uses a > "kernel_ulong_t" type). I second this. For anything visible in userspace from include/* we require usage of the kernel specific __u8, __u16, __u32, __u64 typedefs but for device_id we accept kernel_ulong_t which result in the following crap in file2alias.c: /* We use the ELF typedefs for kernel_ulong_t but bite the bullet and * use either stdint.h or inttypes.h for the rest. */ #if KERNEL_ELFCLASS == ELFCLASS32 typedef Elf32_Addr kernel_ulong_t; #define BITS_PER_LONG 32 #else typedef Elf64_Addr kernel_ulong_t; #define BITS_PER_LONG 64 #endif And we ought to have __u64 available. See for example types.h from asm-i386: #if defined(__GNUC__) && !defined(__STRICT_ANSI__) typedef __signed__ long long __s64; typedef unsigned long long __u64; #endif Sam ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: scripts/mod/file2alias.c cross compile problem 2007-08-02 18:09 ` Sam Ravnborg @ 2007-08-02 19:15 ` Adrian Bunk 2007-08-02 19:24 ` Sam Ravnborg 0 siblings, 1 reply; 14+ messages in thread From: Adrian Bunk @ 2007-08-02 19:15 UTC (permalink / raw) To: Sam Ravnborg Cc: Luck, Tony, Andreas Schwab, trenn, Jan Dittmer, Len Brown, Linus Torvalds, Andrew Morton, linux-acpi, linux-kernel, linux-ia64, rusty, jcm On Thu, Aug 02, 2007 at 08:09:03PM +0200, Sam Ravnborg wrote: > > I second this. For anything visible in userspace from > include/* we require usage of the kernel specific > __u8, __u16, __u32, __u64 typedefs but for device_id we accept > kernel_ulong_t which result in the following crap in > file2alias.c: > > /* We use the ELF typedefs for kernel_ulong_t but bite the bullet and > * use either stdint.h or inttypes.h for the rest. */ > #if KERNEL_ELFCLASS == ELFCLASS32 > typedef Elf32_Addr kernel_ulong_t; > #define BITS_PER_LONG 32 > #else > typedef Elf64_Addr kernel_ulong_t; > #define BITS_PER_LONG 64 > #endif > > And we ought to have __u64 available. > See for example types.h from asm-i386: > #if defined(__GNUC__) && !defined(__STRICT_ANSI__) > typedef __signed__ long long __s64; > typedef unsigned long long __u64; > #endif You are talking about something different than the current problem. The current problem is that when crosscompiling we get a different _padding_ due to file2alias.c being compiled with HOSTCC. What you are talking about is a different issue, and I can't talk about it since I don't understand these interactions between modpost and depmod. > Sam cu Adrian -- "Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had been need of rain for many days. "Only a promise," Lao Er said. Pearl S. Buck - Dragon Seed ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: scripts/mod/file2alias.c cross compile problem 2007-08-02 19:15 ` Adrian Bunk @ 2007-08-02 19:24 ` Sam Ravnborg 2007-08-02 19:39 ` Al Viro 0 siblings, 1 reply; 14+ messages in thread From: Sam Ravnborg @ 2007-08-02 19:24 UTC (permalink / raw) To: Adrian Bunk Cc: Luck, Tony, Andreas Schwab, trenn, Jan Dittmer, Len Brown, Linus Torvalds, Andrew Morton, linux-acpi, linux-kernel, linux-ia64, rusty, jcm On Thu, Aug 02, 2007 at 09:15:09PM +0200, Adrian Bunk wrote: > On Thu, Aug 02, 2007 at 08:09:03PM +0200, Sam Ravnborg wrote: > > > > I second this. For anything visible in userspace from > > include/* we require usage of the kernel specific > > __u8, __u16, __u32, __u64 typedefs but for device_id we accept > > kernel_ulong_t which result in the following crap in > > file2alias.c: > > > > /* We use the ELF typedefs for kernel_ulong_t but bite the bullet and > > * use either stdint.h or inttypes.h for the rest. */ > > #if KERNEL_ELFCLASS == ELFCLASS32 > > typedef Elf32_Addr kernel_ulong_t; > > #define BITS_PER_LONG 32 > > #else > > typedef Elf64_Addr kernel_ulong_t; > > #define BITS_PER_LONG 64 > > #endif > > > > And we ought to have __u64 available. > > See for example types.h from asm-i386: > > #if defined(__GNUC__) && !defined(__STRICT_ANSI__) > > typedef __signed__ long long __s64; > > typedef unsigned long long __u64; > > #endif > > > You are talking about something different than the current problem. > > The current problem is that when crosscompiling we get a different > _padding_ due to file2alias.c being compiled with HOSTCC. I am well aware of that. My point was that we are dealing with userspace - in this case depmod. So I wondered why we had special (as in less strict) rules here. Sam ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: scripts/mod/file2alias.c cross compile problem 2007-08-02 19:24 ` Sam Ravnborg @ 2007-08-02 19:39 ` Al Viro 0 siblings, 0 replies; 14+ messages in thread From: Al Viro @ 2007-08-02 19:39 UTC (permalink / raw) To: Sam Ravnborg Cc: Adrian Bunk, Luck, Tony, Andreas Schwab, trenn, Jan Dittmer, Len Brown, Linus Torvalds, Andrew Morton, linux-acpi, linux-kernel, linux-ia64, rusty, jcm On Thu, Aug 02, 2007 at 09:24:56PM +0200, Sam Ravnborg wrote: > I am well aware of that. > My point was that we are dealing with userspace - in this case depmod. > So I wondered why we had special (as in less strict) rules here. In reality it's a pointer... ^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: scripts/mod/file2alias.c cross compile problem 2007-08-02 16:25 ` Luck, Tony 2007-08-02 16:36 ` Andreas Schwab @ 2007-08-02 22:08 ` Rusty Russell 2007-08-02 23:03 ` Adrian Bunk 2007-08-16 14:27 ` Thomas Renninger 1 sibling, 2 replies; 14+ messages in thread From: Rusty Russell @ 2007-08-02 22:08 UTC (permalink / raw) To: Luck, Tony Cc: trenn, Adrian Bunk, Sam Ravnborg, Jan Dittmer, Len Brown, Linus Torvalds, Andrew Morton, linux-acpi, linux-kernel, linux-ia64 On Thu, 2007-08-02 at 09:25 -0700, Luck, Tony wrote: > > Adrian Bunk: scripts/mod/file2alias.c is compiled with HOSTCC and ensures that > > kernel_ulong_t is correct, but it can't cope with different padding on > > different architectures. > > Surely this is the root cause ... you can't expect that the alignment > rules of HOSTCC to make any sense for an arbitraty target. > > > +#define FILLUP_LEN 7 /* dirty fix for i386 -> 64bit cross-compilation */ > > > > struct acpi_device_id { > > __u8 id[ACPI_ID_LEN]; > > + __u8 dummy[FILLUP_LEN]; > > kernel_ulong_t driver_data; > > }; > > What's so special about this structure that we get an error? It's in mod_devicetable.h: see comment at top of that file. These structures serve dual purpose: to describe the capabilities of the driver to the kernel probing functions, *and* to export them to userspace tables. The former purpose is why there's a data pointer in there. scripts/mod/file2alias is the program that reads this: although it can be altered to parse 32-vs-64, Adrian's fix is the simplest. Hope that clarifies, Rusty. ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: scripts/mod/file2alias.c cross compile problem 2007-08-02 22:08 ` Rusty Russell @ 2007-08-02 23:03 ` Adrian Bunk 2007-08-16 14:27 ` Thomas Renninger 1 sibling, 0 replies; 14+ messages in thread From: Adrian Bunk @ 2007-08-02 23:03 UTC (permalink / raw) To: Rusty Russell Cc: Luck, Tony, trenn, Sam Ravnborg, Jan Dittmer, Len Brown, Linus Torvalds, Andrew Morton, linux-acpi, linux-kernel, linux-ia64 On Fri, Aug 03, 2007 at 08:08:20AM +1000, Rusty Russell wrote: >... > scripts/mod/file2alias is the program that reads this: although it can > be altered to parse 32-vs-64, Adrian's fix is the simplest. s/Adrian/Thomas/ > Hope that clarifies, > Rusty. cu Adrian -- "Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had been need of rain for many days. "Only a promise," Lao Er said. Pearl S. Buck - Dragon Seed ^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: scripts/mod/file2alias.c cross compile problem 2007-08-02 22:08 ` Rusty Russell 2007-08-02 23:03 ` Adrian Bunk @ 2007-08-16 14:27 ` Thomas Renninger 2007-08-16 16:26 ` Luck, Tony 1 sibling, 1 reply; 14+ messages in thread From: Thomas Renninger @ 2007-08-16 14:27 UTC (permalink / raw) To: Rusty Russell Cc: Luck, Tony, Adrian Bunk, Sam Ravnborg, Jan Dittmer, Len Brown, Linus Torvalds, Andrew Morton, linux-acpi, linux-kernel, linux-ia64 On Fri, 2007-08-03 at 08:08 +1000, Rusty Russell wrote: > On Thu, 2007-08-02 at 09:25 -0700, Luck, Tony wrote: > > > Adrian Bunk: scripts/mod/file2alias.c is compiled with HOSTCC and ensures that > > > kernel_ulong_t is correct, but it can't cope with different padding on > > > different architectures. > > > > Surely this is the root cause ... you can't expect that the alignment > > rules of HOSTCC to make any sense for an arbitraty target. > > > > > +#define FILLUP_LEN 7 /* dirty fix for i386 -> 64bit cross-compilation */ > > > > > > struct acpi_device_id { > > > __u8 id[ACPI_ID_LEN]; > > > + __u8 dummy[FILLUP_LEN]; > > > kernel_ulong_t driver_data; > > > }; > > > > What's so special about this structure that we get an error? > > It's in mod_devicetable.h: see comment at top of that file. These > structures serve dual purpose: to describe the capabilities of the > driver to the kernel probing functions, *and* to export them to > userspace tables. The former purpose is why there's a data pointer in > there. > > scripts/mod/file2alias is the program that reads this: although it can > be altered to parse 32-vs-64, Adrian's fix is the simplest. Oops, this will cause a lot build warnings, as this struct gets initialized like that: .. {"PNP0C0A", 0}, .. at a lot places. It would be better to bump up the id itself like the attached patch does... Thanks, Thomas ---------------------- Cross-compilation between e.g. i386 -> 64bit could break -> work around it Adrian Bunk: scripts/mod/file2alias.c is compiled with HOSTCC and ensures that kernel_ulong_t is correct, but it can't cope with different padding on different architectures. Signed-off-by: Thomas Renninger <trenn@suse.de> --- include/linux/mod_devicetable.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Index: linux-2.6.23-rc3/include/linux/mod_devicetable.h =================================================================== --- linux-2.6.23-rc3.orig/include/linux/mod_devicetable.h +++ linux-2.6.23-rc3/include/linux/mod_devicetable.h @@ -159,7 +159,8 @@ struct ap_device_id { #define AP_DEVICE_ID_MATCH_DEVICE_TYPE 0x01 -#define ACPI_ID_LEN 9 +#define ACPI_ID_LEN 16 /* only 9 bytes needed here, 16 bytes are used */ + /* to workaround crosscompile issues */ struct acpi_device_id { __u8 id[ACPI_ID_LEN]; ^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: scripts/mod/file2alias.c cross compile problem 2007-08-16 14:27 ` Thomas Renninger @ 2007-08-16 16:26 ` Luck, Tony 2007-08-16 17:03 ` Thomas Renninger 0 siblings, 1 reply; 14+ messages in thread From: Luck, Tony @ 2007-08-16 16:26 UTC (permalink / raw) To: trenn, Rusty Russell Cc: Adrian Bunk, Sam Ravnborg, Jan Dittmer, Len Brown, Linus Torvalds, Andrew Morton, linux-acpi, linux-kernel, linux-ia64 > -#define ACPI_ID_LEN 9 > +#define ACPI_ID_LEN 16 /* only 9 bytes needed here, 16 bytes are used */ What will happen if someone uses more than 9 bytes? With the old limit there would be a compile time error it someone initialized with: {"PNP0C0ABCDEFGH", 0}, But if we change ACPI_ID_LEN the error will move to run-time. -Tony ^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: scripts/mod/file2alias.c cross compile problem 2007-08-16 16:26 ` Luck, Tony @ 2007-08-16 17:03 ` Thomas Renninger 0 siblings, 0 replies; 14+ messages in thread From: Thomas Renninger @ 2007-08-16 17:03 UTC (permalink / raw) To: Luck, Tony Cc: Rusty Russell, Adrian Bunk, Sam Ravnborg, Jan Dittmer, Len Brown, Linus Torvalds, Andrew Morton, linux-acpi, linux-kernel, linux-ia64 On Thu, 2007-08-16 at 09:26 -0700, Luck, Tony wrote: > > -#define ACPI_ID_LEN 9 > > +#define ACPI_ID_LEN 16 /* only 9 bytes needed here, 16 bytes are used */ > > What will happen if someone uses more than 9 bytes? With the old > limit there would be a compile time error it someone initialized > with: > > {"PNP0C0ABCDEFGH", 0}, > > But if we change ACPI_ID_LEN the error will move to run-time. That should not harm. >From spec point of view only 8 bytes are needed. Here 9 bytes are used as then string functions can be used. The whole rest of the kernel does not use ACPI_ID_LEN. If someone defines such an id, his driver won't ever get loaded and he gets bug reports very soon anyway. Hmm, I wonder whether this even may come in handy later: Some BIOSes have some spec violating strange hids like: "*PNP0C0A" or "_PNP0C0A" While I thought the "_" or "*" should be cut away by ACPI parser, it might be a hint to the OS to do something special. AFAIK only very specific devices (WMI and some graphics?) have such strange hids defined, those drivers could explicitly match for the spec violating string then. Thomas ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2007-08-16 17:03 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20070727230741.GD15129@stusta.de>
[not found] ` <617E1C2C70743745A92448908E030B2A0209BB9D@scsmsx411.amr.corp.intel.com>
2007-07-28 1:39 ` scripts/mod/file2alias.c cross compile problem Adrian Bunk
2007-08-02 15:09 ` Thomas Renninger
2007-08-02 16:25 ` Luck, Tony
2007-08-02 16:36 ` Andreas Schwab
2007-08-02 17:40 ` Luck, Tony
2007-08-02 18:09 ` Sam Ravnborg
2007-08-02 19:15 ` Adrian Bunk
2007-08-02 19:24 ` Sam Ravnborg
2007-08-02 19:39 ` Al Viro
2007-08-02 22:08 ` Rusty Russell
2007-08-02 23:03 ` Adrian Bunk
2007-08-16 14:27 ` Thomas Renninger
2007-08-16 16:26 ` Luck, Tony
2007-08-16 17:03 ` Thomas Renninger
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox