All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix ia64 tools build
@ 2010-09-02  4:43 KUWAMURA Shin'ya
  2010-10-29  7:39 ` KUWAMURA Shin'ya
  0 siblings, 1 reply; 9+ messages in thread
From: KUWAMURA Shin'ya @ 2010-09-02  4:43 UTC (permalink / raw)
  To: xen-devel

[-- Attachment #1: Type: Text/Plain, Size: 459 bytes --]

Hi,

22066:eccfdeb41b80 replaced tools/libxc/ia64/aclinux.h with 
xen/include/acpi/platform/aclinux.h.

In fact, the former differs from the latter: the former supports
non-kernel codes, but the latter does not support it because
17814:9af7a535225f removed it.

Thus tools cannot be built on ia64.

This patch adds #ifdef __XEN__ and copies non-kernel support codes in
the former.

Signed-off-by: KUWAMURA Shin'ya <kuwa@jp.fujitsu.com>
-- 
  KUWAMURA Shin'ya

[-- Attachment #2: fix-ia64-tools-aclinux.patch --]
[-- Type: Text/X-Patch, Size: 2237 bytes --]

# HG changeset patch
# User KUWAMURA Shin'ya <kuwa@jp.fujitsu.com>
# Date 1283396295 -32400
# Node ID 6367f64a1c3529ac2702bfa498cc2500db39ec65
# Parent  c7405a5e2d6df9dcc9c0344da47f45ea8c884b23
Fix ia64 tools build

22066:eccfdeb41b80 replaced tools/libxc/ia64/aclinux.h with
xen/include/acpi/platform/aclinux.h.

In fact, the former differs from the latter: the former supports
non-kernel codes, but the latter does not support it because
17814:9af7a535225f removed it.

Thus tools cannot be built on ia64.

This patch adds #ifdef __XEN__ and copies non-kernel support codes in
the former.

Signed-off-by: KUWAMURA Shin'ya <kuwa@jp.fujitsu.com>

diff -r c7405a5e2d6d -r 6367f64a1c35 xen/include/acpi/platform/aclinux.h
--- a/xen/include/acpi/platform/aclinux.h	Thu Sep 02 10:59:50 2010 +0900
+++ b/xen/include/acpi/platform/aclinux.h	Thu Sep 02 11:58:15 2010 +0900
@@ -47,6 +47,8 @@
 #define ACPI_USE_SYSTEM_CLIBRARY
 #define ACPI_USE_DO_WHILE_0
 
+#ifdef __XEN__
+
 #include <xen/config.h>
 #include <xen/cache.h>
 #include <xen/string.h>
@@ -70,6 +72,50 @@
 /* Full namespace pathname length limit - arbitrary */
 #define ACPI_PATHNAME_MAX              256
 
+#else /* !__XEN__ */
+
+#include <stdarg.h>
+#include <string.h>
+//#include <stdlib.h>
+#include <ctype.h>
+#include <unistd.h>
+
+#if defined(__ia64__) || defined(__x86_64__)
+#define ACPI_MACHINE_WIDTH          64
+#define COMPILER_DEPENDENT_INT64    long
+#define COMPILER_DEPENDENT_UINT64   unsigned long
+#else
+#define ACPI_MACHINE_WIDTH          32
+#define COMPILER_DEPENDENT_INT64    long long
+#define COMPILER_DEPENDENT_UINT64   unsigned long long
+#define ACPI_USE_NATIVE_DIVIDE
+#endif
+
+typedef int8_t		s8;
+typedef uint8_t		u8;
+typedef int16_t		s16;
+typedef uint16_t	u16;
+typedef int32_t		s32;
+typedef uint32_t	u32;
+typedef int64_t		s64;
+typedef uint64_t	u64;
+#define __iomem
+#ifdef __ia64__
+#ifdef __cplusplus
+#define CPP_ASMLINKAGE extern "C"
+#else
+#define CPP_ASMLINKAGE
+#endif
+#define asmlinkage CPP_ASMLINKAGE __attribute__((syscall_linkage))
+#endif
+#define CONFIG_ACPI_BOOT	1
+
+#define __cdecl
+#define ACPI_FLUSH_CPU_CACHE()
+#endif /* __XEN__ */
+
+/* Linux uses GCC */
+
 #include "acgcc.h"
 
 #define acpi_cpu_flags unsigned long

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

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

* Re: [PATCH] Fix ia64 tools build
  2010-09-02  4:43 [PATCH] Fix ia64 tools build KUWAMURA Shin'ya
@ 2010-10-29  7:39 ` KUWAMURA Shin'ya
  2010-10-29  7:55   ` Keir Fraser
  0 siblings, 1 reply; 9+ messages in thread
From: KUWAMURA Shin'ya @ 2010-10-29  7:39 UTC (permalink / raw)
  To: xen-devel

[-- Attachment #1: Type: Text/Plain, Size: 687 bytes --]

Ping?

This patch is still required for ia64 tools.

Best regards,
-- 
  KUWAMURA Shin'ya

On <20100902.134350.71558960.kuwa@jp.fujitsu.com>
 "KUWAMURA Shin'ya" wrote:
> 
> Hi,
> 
> 22066:eccfdeb41b80 replaced tools/libxc/ia64/aclinux.h with 
> xen/include/acpi/platform/aclinux.h.
> 
> In fact, the former differs from the latter: the former supports
> non-kernel codes, but the latter does not support it because
> 17814:9af7a535225f removed it.
> 
> Thus tools cannot be built on ia64.
> 
> This patch adds #ifdef __XEN__ and copies non-kernel support codes in
> the former.
> 
> Signed-off-by: KUWAMURA Shin'ya <kuwa@jp.fujitsu.com>
> -- 
>   KUWAMURA Shin'ya
-- 
  KUWAMURA Shin'ya

[-- Attachment #2: fix-ia64-tools-aclinux.patch --]
[-- Type: Text/X-Patch, Size: 2237 bytes --]

# HG changeset patch
# User KUWAMURA Shin'ya <kuwa@jp.fujitsu.com>
# Date 1283396295 -32400
# Node ID 6367f64a1c3529ac2702bfa498cc2500db39ec65
# Parent  c7405a5e2d6df9dcc9c0344da47f45ea8c884b23
Fix ia64 tools build

22066:eccfdeb41b80 replaced tools/libxc/ia64/aclinux.h with
xen/include/acpi/platform/aclinux.h.

In fact, the former differs from the latter: the former supports
non-kernel codes, but the latter does not support it because
17814:9af7a535225f removed it.

Thus tools cannot be built on ia64.

This patch adds #ifdef __XEN__ and copies non-kernel support codes in
the former.

Signed-off-by: KUWAMURA Shin'ya <kuwa@jp.fujitsu.com>

diff -r c7405a5e2d6d -r 6367f64a1c35 xen/include/acpi/platform/aclinux.h
--- a/xen/include/acpi/platform/aclinux.h	Thu Sep 02 10:59:50 2010 +0900
+++ b/xen/include/acpi/platform/aclinux.h	Thu Sep 02 11:58:15 2010 +0900
@@ -47,6 +47,8 @@
 #define ACPI_USE_SYSTEM_CLIBRARY
 #define ACPI_USE_DO_WHILE_0
 
+#ifdef __XEN__
+
 #include <xen/config.h>
 #include <xen/cache.h>
 #include <xen/string.h>
@@ -70,6 +72,50 @@
 /* Full namespace pathname length limit - arbitrary */
 #define ACPI_PATHNAME_MAX              256
 
+#else /* !__XEN__ */
+
+#include <stdarg.h>
+#include <string.h>
+//#include <stdlib.h>
+#include <ctype.h>
+#include <unistd.h>
+
+#if defined(__ia64__) || defined(__x86_64__)
+#define ACPI_MACHINE_WIDTH          64
+#define COMPILER_DEPENDENT_INT64    long
+#define COMPILER_DEPENDENT_UINT64   unsigned long
+#else
+#define ACPI_MACHINE_WIDTH          32
+#define COMPILER_DEPENDENT_INT64    long long
+#define COMPILER_DEPENDENT_UINT64   unsigned long long
+#define ACPI_USE_NATIVE_DIVIDE
+#endif
+
+typedef int8_t		s8;
+typedef uint8_t		u8;
+typedef int16_t		s16;
+typedef uint16_t	u16;
+typedef int32_t		s32;
+typedef uint32_t	u32;
+typedef int64_t		s64;
+typedef uint64_t	u64;
+#define __iomem
+#ifdef __ia64__
+#ifdef __cplusplus
+#define CPP_ASMLINKAGE extern "C"
+#else
+#define CPP_ASMLINKAGE
+#endif
+#define asmlinkage CPP_ASMLINKAGE __attribute__((syscall_linkage))
+#endif
+#define CONFIG_ACPI_BOOT	1
+
+#define __cdecl
+#define ACPI_FLUSH_CPU_CACHE()
+#endif /* __XEN__ */
+
+/* Linux uses GCC */
+
 #include "acgcc.h"
 
 #define acpi_cpu_flags unsigned long

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

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

* Re: [PATCH] Fix ia64 tools build
  2010-10-29  7:39 ` KUWAMURA Shin'ya
@ 2010-10-29  7:55   ` Keir Fraser
  2010-10-29 13:12     ` Ian Campbell
  2010-11-01  8:39     ` KUWAMURA Shin'ya
  0 siblings, 2 replies; 9+ messages in thread
From: Keir Fraser @ 2010-10-29  7:55 UTC (permalink / raw)
  To: KUWAMURA Shin'ya, xen-devel; +Cc: Ian Campbell

On 29/10/2010 08:39, "KUWAMURA Shin'ya" <kuwa@jp.fujitsu.com> wrote:

> Ping?
> 
> This patch is still required for ia64 tools.
> 
> Best regards,

I think it would ne neater to have your own
tools/libxc/ia64/ac_ia64_tools.h, and then conditionally include that from
Xen's acenv.h (e.g., dependent on __XEN_TOOLS__). Or revert the bits of c/s
22066 that broke the ia64 build in the first place -- possibly the changes
were based on a false assumption? Cc'ing the author of that patch, Ian
Campbell. In any case, ifdef'ing the bulk of aclinux.h is just gross, I
don't like that fix.

 -- Keir

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

* Re: [PATCH] Fix ia64 tools build
  2010-10-29  7:55   ` Keir Fraser
@ 2010-10-29 13:12     ` Ian Campbell
  2010-11-01  8:39     ` KUWAMURA Shin'ya
  1 sibling, 0 replies; 9+ messages in thread
From: Ian Campbell @ 2010-10-29 13:12 UTC (permalink / raw)
  To: Keir Fraser; +Cc: KUWAMURA Shin'ya, xen-devel

On Fri, 2010-10-29 at 08:55 +0100, Keir Fraser wrote:
> On 29/10/2010 08:39, "KUWAMURA Shin'ya" <kuwa@jp.fujitsu.com> wrote:
> 
> > Ping?
> > 
> > This patch is still required for ia64 tools.
> > 
> > Best regards,
> 
> I think it would ne neater to have your own
> tools/libxc/ia64/ac_ia64_tools.h, and then conditionally include that from
> Xen's acenv.h (e.g., dependent on __XEN_TOOLS__). Or revert the bits of c/s
> 22066 that broke the ia64 build in the first place -- possibly the changes
> were based on a false assumption?

Yeah, I thought it was unused. I may have confused it with
tools/libxc/ia64/acpi/platform/aclinux.h which is in fact just a symlink
to xen/include/acpi/platform/aclinux.h.

Note that tools/libxc is now licensed as LGPL so before simply
reinstating the old file it probably needs to be confirmed that it is ok
to license that way. (that said the contents of the file don't seem
particularly exciting, a cleanroom rewrite based on compiling and
observing the errors would be pretty trivial)

>  Cc'ing the author of that patch, Ian
> Campbell. In any case, ifdef'ing the bulk of aclinux.h is just gross, I
> don't like that fix.

Why do we even need what appears to be a simplistic OS abstraction layer
in the tools first place?

Ian.

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

* Re: [PATCH] Fix ia64 tools build
  2010-10-29  7:55   ` Keir Fraser
  2010-10-29 13:12     ` Ian Campbell
@ 2010-11-01  8:39     ` KUWAMURA Shin'ya
  2010-11-01  9:21       ` Keir Fraser
  1 sibling, 1 reply; 9+ messages in thread
From: KUWAMURA Shin'ya @ 2010-11-01  8:39 UTC (permalink / raw)
  To: keir, Ian.Campbell; +Cc: xen-devel

[-- Attachment #1: Type: Text/Plain, Size: 565 bytes --]

Hi Keir and Ian,

>>>>> On Fri, 29 Oct 2010 08:55:31 +0100
>>>>> keir@xen.org(Keir Fraser)  said:
> 
> I think it would ne neater to have your own
> tools/libxc/ia64/ac_ia64_tools.h, and then conditionally include that from
> Xen's acenv.h (e.g., dependent on __XEN_TOOLS__).

I created a patch for Keir's first advice.

This patch introduces ac_ia64_tools.h and it only defines identifiers
in order to avoid compilation errors.

Because all identifiers can be easily led from the error message, 
it is trivial.

Any comments?

Best regards,
-- 
  KUWAMURA Shin'ya

[-- Attachment #2: fix-ia64-tools-aclinux-v2.patch --]
[-- Type: Text/X-Patch, Size: 1105 bytes --]

diff -r bbffb400f507 tools/libxc/ia64/ac_ia64_tools.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/libxc/ia64/ac_ia64_tools.h	Mon Nov 01 17:15:10 2010 +0900
@@ -0,0 +1,17 @@
+#ifndef AC_IA64_TOOLS_H
+#define AC_IA64_TOOLS_H
+
+#define ACPI_MACHINE_WIDTH 64
+#define COMPILER_DEPENDENT_UINT64 unsigned long long
+#define COMPILER_DEPENDENT_INT64 long long
+typedef unsigned long long u64;
+typedef long long s64;
+typedef unsigned u32;
+typedef int s32;
+typedef unsigned char u8;
+typedef unsigned short u16;
+#define __iomem
+#define asmlinkage
+#define CONFIG_ACPI_BOOT
+
+#endif /* AC_IA64_TOOLS_H */
diff -r bbffb400f507 xen/include/acpi/platform/acenv.h
--- a/xen/include/acpi/platform/acenv.h	Mon Nov 01 15:35:03 2010 +0900
+++ b/xen/include/acpi/platform/acenv.h	Mon Nov 01 17:15:10 2010 +0900
@@ -136,7 +136,9 @@
 
 /*! [Begin] no source code translation */
 
-#if 1/*defined(_LINUX) || defined(__linux__)*/
+#if defined(__XEN_TOOLS__) && defined(__ia64__)
+#include "ac_ia64_tools.h"
+#elif 1 /*defined(_LINUX) || defined(__linux__)*/
 #include "aclinux.h"
 
 #elif defined(_AED_EFI)

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

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

* Re: [PATCH] Fix ia64 tools build
  2010-11-01  8:39     ` KUWAMURA Shin'ya
@ 2010-11-01  9:21       ` Keir Fraser
  2010-11-01  9:28         ` Ian Campbell
  0 siblings, 1 reply; 9+ messages in thread
From: Keir Fraser @ 2010-11-01  9:21 UTC (permalink / raw)
  To: KUWAMURA Shin'ya, Ian.Campbell; +Cc: xen-devel

On 01/11/2010 08:39, "KUWAMURA Shin'ya" <kuwa@jp.fujitsu.com> wrote:

> Hi Keir and Ian,
> 
>>>>>> On Fri, 29 Oct 2010 08:55:31 +0100
>>>>>> keir@xen.org(Keir Fraser)  said:
>> 
>> I think it would ne neater to have your own
>> tools/libxc/ia64/ac_ia64_tools.h, and then conditionally include that from
>> Xen's acenv.h (e.g., dependent on __XEN_TOOLS__).
> 
> I created a patch for Keir's first advice.
> 
> This patch introduces ac_ia64_tools.h and it only defines identifiers
> in order to avoid compilation errors.
> 
> Because all identifiers can be easily led from the error message,
> it is trivial.
> 
> Any comments?

I'll apply this if IanC finds it acceptable.

 -- Keir

> Best regards,

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

* Re: [PATCH] Fix ia64 tools build
  2010-11-01  9:21       ` Keir Fraser
@ 2010-11-01  9:28         ` Ian Campbell
  2010-11-01  9:48           ` Keir Fraser
  0 siblings, 1 reply; 9+ messages in thread
From: Ian Campbell @ 2010-11-01  9:28 UTC (permalink / raw)
  To: Keir Fraser; +Cc: KUWAMURA Shin'ya, xen-devel

On Mon, 2010-11-01 at 09:21 +0000, Keir Fraser wrote:
> On 01/11/2010 08:39, "KUWAMURA Shin'ya" <kuwa@jp.fujitsu.com> wrote:
> 
> > Hi Keir and Ian,
> > 
> >>>>>> On Fri, 29 Oct 2010 08:55:31 +0100
> >>>>>> keir@xen.org(Keir Fraser)  said:
> >> 
> >> I think it would ne neater to have your own
> >> tools/libxc/ia64/ac_ia64_tools.h, and then conditionally include that from
> >> Xen's acenv.h (e.g., dependent on __XEN_TOOLS__).
> > 
> > I created a patch for Keir's first advice.
> > 
> > This patch introduces ac_ia64_tools.h and it only defines identifiers
> > in order to avoid compilation errors.
> > 
> > Because all identifiers can be easily led from the error message,
> > it is trivial.
> > 
> > Any comments?
> 
> I'll apply this if IanC finds it acceptable.

Subject to the addition of a license boiler plate at the top of
ltools/libxc/ia64/ac_ia64_tools.h, either the LGPLv2 one used through
out libxc or something compatible, it is fine with me.

Ian.

> 
>  -- Keir
> 
> > Best regards,
> 
> 

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

* Re: [PATCH] Fix ia64 tools build
  2010-11-01  9:28         ` Ian Campbell
@ 2010-11-01  9:48           ` Keir Fraser
  2010-11-02  0:43             ` KUWAMURA Shin'ya
  0 siblings, 1 reply; 9+ messages in thread
From: Keir Fraser @ 2010-11-01  9:48 UTC (permalink / raw)
  To: Ian Campbell; +Cc: KUWAMURA Shin'ya, xen-devel

On 01/11/2010 09:28, "Ian Campbell" <Ian.Campbell@eu.citrix.com> wrote:

>> I'll apply this if IanC finds it acceptable.
> 
> Subject to the addition of a license boiler plate at the top of
> ltools/libxc/ia64/ac_ia64_tools.h, either the LGPLv2 one used through
> out libxc or something compatible, it is fine with me.

Kuwamura,

Please fix that and then I will apply the patch.

 Thanks,
 Keir

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

* Re: [PATCH] Fix ia64 tools build
  2010-11-01  9:48           ` Keir Fraser
@ 2010-11-02  0:43             ` KUWAMURA Shin'ya
  0 siblings, 0 replies; 9+ messages in thread
From: KUWAMURA Shin'ya @ 2010-11-02  0:43 UTC (permalink / raw)
  To: keir; +Cc: Ian.Campbell, xen-devel

[-- Attachment #1: Type: Text/Plain, Size: 551 bytes --]

Hi,

>>>>> On Mon, 01 Nov 2010 09:48:41 +0000
>>>>> keir@xen.org(Keir Fraser)  said:
> 
> On 01/11/2010 09:28, "Ian Campbell" <Ian.Campbell@eu.citrix.com> wrote:
> 
> >> I'll apply this if IanC finds it acceptable.
> > 
> > Subject to the addition of a license boiler plate at the top of
> > ltools/libxc/ia64/ac_ia64_tools.h, either the LGPLv2 one used through
> > out libxc or something compatible, it is fine with me.
> 
> Please fix that and then I will apply the patch.

I added LGPLv2 license boiler plate.

Best regards,
-- 
  KUWAMURA Shin'ya

[-- Attachment #2: fix-ia64-tools-aclinux-v2.patch --]
[-- Type: Text/X-Patch, Size: 2583 bytes --]

# HG changeset patch
# User KUWAMURA Shin'ya <kuwa@jp.fujitsu.com>
# Date 1288657800 -32400
# Node ID 6f6ab71e600e48ed5bfc05c313cef1a7263e1e83
# Parent  bbffb400f50787e334ed11301119f702fa146e12
Fix ia64 tools build

22066:eccfdeb41b80 replaced tools/libxc/ia64/aclinux.h with
xen/include/acpi/platform/aclinux.h.
Because both are incompatible, tools cannot be built on ia64.

This patch fixes compilation errors by defining identifiers at
ac_ia64_tools.h.

Signed-off-by: KUWAMURA Shin'ya <kuwa@jp.fujitsu.com>

diff -r bbffb400f507 -r 6f6ab71e600e tools/libxc/ia64/ac_ia64_tools.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/libxc/ia64/ac_ia64_tools.h	Tue Nov 02 09:30:00 2010 +0900
@@ -0,0 +1,46 @@
+/*
+ * ac_ia64_tools.h
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ */
+
+#ifndef AC_IA64_TOOLS_H
+#define AC_IA64_TOOLS_H
+
+#define ACPI_MACHINE_WIDTH 64
+#define COMPILER_DEPENDENT_UINT64 unsigned long long
+#define COMPILER_DEPENDENT_INT64 long long
+typedef unsigned long long u64;
+typedef long long s64;
+typedef unsigned u32;
+typedef int s32;
+typedef unsigned char u8;
+typedef unsigned short u16;
+#define __iomem
+#define asmlinkage
+#define CONFIG_ACPI_BOOT
+
+#endif /* AC_IA64_TOOLS_H */
+
+/*
+ * Local variables:
+ * mode: C
+ * c-set-style: "BSD"
+ * c-basic-offset: 4
+ * tab-width: 4
+ * indent-tabs-mode: nil
+ * End:
+ */
diff -r bbffb400f507 -r 6f6ab71e600e xen/include/acpi/platform/acenv.h
--- a/xen/include/acpi/platform/acenv.h	Mon Nov 01 15:35:03 2010 +0900
+++ b/xen/include/acpi/platform/acenv.h	Tue Nov 02 09:30:00 2010 +0900
@@ -136,7 +136,9 @@
 
 /*! [Begin] no source code translation */
 
-#if 1/*defined(_LINUX) || defined(__linux__)*/
+#if defined(__XEN_TOOLS__) && defined(__ia64__)
+#include "ac_ia64_tools.h"
+#elif 1 /*defined(_LINUX) || defined(__linux__)*/
 #include "aclinux.h"
 
 #elif defined(_AED_EFI)

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

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

end of thread, other threads:[~2010-11-02  0:43 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-02  4:43 [PATCH] Fix ia64 tools build KUWAMURA Shin'ya
2010-10-29  7:39 ` KUWAMURA Shin'ya
2010-10-29  7:55   ` Keir Fraser
2010-10-29 13:12     ` Ian Campbell
2010-11-01  8:39     ` KUWAMURA Shin'ya
2010-11-01  9:21       ` Keir Fraser
2010-11-01  9:28         ` Ian Campbell
2010-11-01  9:48           ` Keir Fraser
2010-11-02  0:43             ` KUWAMURA Shin'ya

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.