49 messages in com.xensource.lists.xen-ia64-develRe: [Xen-ia64-devel] [PATCH 12/12]MCA...| From | Sent On | Attachments |
|---|---|---|
| SUZUKI Kazuhiro | 22 Sep 2006 03:30 | |
| SUZUKI Kazuhiro | 22 Sep 2006 03:31 | .patch |
| SUZUKI Kazuhiro | 22 Sep 2006 03:32 | .patch |
| SUZUKI Kazuhiro | 22 Sep 2006 03:32 | .patch |
| SUZUKI Kazuhiro | 22 Sep 2006 03:32 | .patch |
| SUZUKI Kazuhiro | 22 Sep 2006 03:32 | .patch |
| SUZUKI Kazuhiro | 22 Sep 2006 03:32 | .patch |
| SUZUKI Kazuhiro | 22 Sep 2006 03:32 | .patch |
| SUZUKI Kazuhiro | 22 Sep 2006 03:32 | .patch |
| SUZUKI Kazuhiro | 22 Sep 2006 03:32 | .patch |
| SUZUKI Kazuhiro | 22 Sep 2006 03:33 | .patch |
| SUZUKI Kazuhiro | 22 Sep 2006 03:33 | .patch |
| SUZUKI Kazuhiro | 22 Sep 2006 03:33 | .patch |
| Alex Williamson | 24 Sep 2006 18:21 | |
| Alex Williamson | 24 Sep 2006 18:22 | |
| Alex Williamson | 24 Sep 2006 18:22 | |
| Alex Williamson | 24 Sep 2006 18:22 | |
| SUZUKI Kazuhiro | 28 Sep 2006 00:10 | .patch |
| SUZUKI Kazuhiro | 28 Sep 2006 00:10 | .patch |
| SUZUKI Kazuhiro | 28 Sep 2006 00:10 | .patch |
| SUZUKI Kazuhiro | 28 Sep 2006 00:10 | .patch |
| Tristan Gingold | 28 Sep 2006 00:23 | |
| Jes Sorensen | 28 Sep 2006 02:07 | |
| Jes Sorensen | 28 Sep 2006 02:12 | |
| Alex Williamson | 01 Oct 2006 13:14 | |
| Alex Williamson | 01 Oct 2006 13:14 | |
| SUZUKI Kazuhiro | 10 Oct 2006 04:01 | .patch, .patch |
| SUZUKI Kazuhiro | 10 Oct 2006 04:01 | .patch, .patch, .patch |
| SUZUKI Kazuhiro | 10 Oct 2006 04:02 | .patch |
| SUZUKI Kazuhiro | 10 Oct 2006 17:11 | .patch |
| Alex Williamson | 15 Oct 2006 14:13 | |
| SUZUKI Kazuhiro | 15 Oct 2006 22:46 | .patch |
| Alex Williamson | 16 Oct 2006 15:38 | |
| SUZUKI Kazuhiro | 18 Oct 2006 00:28 | .patch, .patch |
| Alex Williamson | 18 Oct 2006 15:00 | |
| SUZUKI Kazuhiro | 23 Oct 2006 19:33 | .patch |
| Alex Williamson | 25 Oct 2006 15:53 | |
| Alex Williamson | 29 Oct 2006 09:53 | |
| SUZUKI Kazuhiro | 30 Oct 2006 17:55 | |
| Alex Williamson | 01 Nov 2006 07:35 | |
| Alex Williamson | 01 Nov 2006 08:02 | |
| Alex Williamson | 01 Nov 2006 08:06 | |
| SUZUKI Kazuhiro | 07 Nov 2006 00:23 | |
| SUZUKI Kazuhiro | 08 Nov 2006 02:23 | .patch, .patch, .patch |
| SUZUKI Kazuhiro | 08 Nov 2006 23:59 | .patch |
| Alex Williamson | 15 Nov 2006 14:31 | |
| Isaku Yamahata | 27 Nov 2006 20:43 | |
| SUZUKI Kazuhiro | 30 Nov 2006 00:58 | .patch |
| Alex Williamson | 30 Nov 2006 13:24 |
| Subject: | Re: [Xen-ia64-devel] [PATCH 12/12]MCA handler support for Xen/ia64 TAKE 2![]() |
|---|---|
| From: | Alex Williamson (alex...@hp.com) |
| Date: | 09/24/2006 06:22:26 PM |
| List: | com.xensource.lists.xen-ia64-devel |
On Fri, 2006-09-22 at 19:33 +0900, SUZUKI Kazuhiro wrote:
[12/12] Fix conflicts of typedef of UINT64 and BOOLEAN.[mca-typedef.patch]
This is kind of ugly. Can we converge on a single definition for these or at least confine the fix to the ia64 specific code? Thanks,
Alex
plain text document attachment (mca-typedef.patch) diff -r 3e4fa8b5b245 xen/include/acpi/actypes.h --- a/xen/include/acpi/actypes.h Tue Sep 12 11:43:22 2006 -0600 +++ b/xen/include/acpi/actypes.h Fri Sep 22 09:26:49 2006 +0900 @@ -103,12 +103,18 @@ typedef COMPILER_DEPENDENT_UINT64 * 64-bit type definitions */ typedef unsigned char UINT8; +#ifndef __TYPEDEF_BOOLEAN__ +#define __TYPEDEF_BOOLEAN__ typedef unsigned char BOOLEAN; +#endif /* __TYPEDEF_BOOLEAN__ */ typedef unsigned short UINT16; typedef int INT32; typedef unsigned int UINT32; typedef COMPILER_DEPENDENT_INT64 INT64; +#ifndef __TYPEDEF_UINT64__ +#define __TYPEDEF_UINT64__ typedef COMPILER_DEPENDENT_UINT64 UINT64; +#endif /* __TYPEDEF_UINT64__ */
/*! [End] no source code translation !*/
diff -r 3e4fa8b5b245 xen/include/asm-ia64/vcpu.h --- a/xen/include/asm-ia64/vcpu.h Tue Sep 12 11:43:22 2006 -0600 +++ b/xen/include/asm-ia64/vcpu.h Fri Sep 22 09:26:49 2006 +0900 @@ -10,9 +10,15 @@ #include <asm/ia64_int.h> #include <xen/types.h> #include <public/xen.h> +#ifndef __TYPEDEF_UINT64__ +#define __TYPEDEF_UINT64__ typedef unsigned long UINT64; +#endif /* __TYPEDEF_UINT64__ */ typedef unsigned int UINT; +#ifndef __TYPEDEF_BOOLEAN__ +#define __TYPEDEF_BOOLEAN__ typedef int BOOLEAN; +#endif /* __TYPEDEF_BOOLEAN__ */ struct vcpu; typedef struct vcpu VCPU; typedef cpu_user_regs_t REGS;
-- Alex Williamson HP Open Source & Linux Org.
_______________________________________________ Xen-ia64-devel mailing list Xen-...@lists.xensource.com http://lists.xensource.com/xen-ia64-devel





.patch