[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1330019314-20865-8-git-send-email-stefano.stabellini@eu.citrix.com>
Date: Thu, 23 Feb 2012 17:48:29 +0000
From: Stefano Stabellini <stefano.stabellini@...citrix.com>
To: linux-kernel@...r.kernel.org
CC: xen-devel@...ts.xensource.com, arnd@...db.de,
linux-arm-kernel@...ts.infradead.org, catalin.marinas@....com,
linaro-dev@...ts.linaro.org, david.vrabel@...rix.com,
Ian.Campbell@...rix.com,
Stefano Stabellini <stefano.stabellini@...citrix.com>
Subject: [PATCH-WIP 08/13] xen/arm: fix arm xen guest handle definitions
__XEN__ is never defined in Linux: remove non-relevant functions and
macros
Signed-off-by: Stefano Stabellini <stefano.stabellini@...citrix.com>
---
arch/arm/include/asm/xen/interface.h | 9 +--------
1 files changed, 1 insertions(+), 8 deletions(-)
diff --git a/arch/arm/include/asm/xen/interface.h b/arch/arm/include/asm/xen/interface.h
index 93b0139..2ee39e8 100644
--- a/arch/arm/include/asm/xen/interface.h
+++ b/arch/arm/include/asm/xen/interface.h
@@ -9,27 +9,20 @@
#include <linux/types.h>
-#ifdef __XEN__
-#define __DEFINE_GUEST_HANDLE(name, type) \
- typedef struct { type *p; } __guest_handle_ ## name
-#else
#define __DEFINE_GUEST_HANDLE(name, type) \
typedef type * __guest_handle_ ## name
-#endif
#define DEFINE_GUEST_HANDLE_STRUCT(name) \
__DEFINE_GUEST_HANDLE(name, struct name)
#define DEFINE_GUEST_HANDLE(name) __DEFINE_GUEST_HANDLE(name, name)
#define GUEST_HANDLE(name) __guest_handle_ ## name
-#ifdef __XEN__
#define set_xen_guest_handle(hnd, val) \
do { \
if (sizeof(hnd) == 8) \
*(uint64_t *)&(hnd) = 0; \
- (hnd).p = val; \
+ (hnd) = val; \
} while (0)
-#endif
#ifndef __ASSEMBLY__
/* Guest handles for primitive C types. */
--
1.7.2.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists