# HG changeset patch # User Ian Campbell # Date Wed Oct 25 13:58:30 2006 +0100 # Node ID ded9d1ae21f794f924bb312077bab69f782f87b8 # parent: e09720caf72dbdc0fe0689c8e2bf8ace97abaae4 PV-to-HVM: Add compatibility definitions of various #defines when they are not present in the kernel we are building against. Signed-off-by: Ian Campbell Signed-off-by: K. Y. Srinivasan Signed-off-by: Tsunehisa Doi --- a/unmodified_drivers/linux-2.6/compat-include/xen/platform-compat.h Wed Oct 25 13:58:30 2006 +0100 +++ b/unmodified_drivers/linux-2.6/compat-include/xen/platform-compat.h Wed Oct 25 13:58:30 2006 +0100 @@ -3,4 +3,26 @@ #include +#include + +#if defined(__LINUX_COMPILER_H) && !defined(__always_inline) +#define __always_inline inline #endif + +#if defined(__LINUX_SPINLOCK_H) && !defined(DEFINE_SPINLOCK) +#define DEFINE_SPINLOCK(x) spinlock_t x = SPIN_LOCK_UNLOCKED +#endif + +#if defined(_LINUX_INIT_H) && !defined(__init) +#define __init +#endif + +#if defined(__LINUX_CACHE_H) && !defined(__read_mostly) +#define __read_mostly +#endif + +#if defined(_LINUX_SKBUFF_H) && !defined(NET_IP_ALIGN) +#define NET_IP_ALIGN 0 +#endif + +#endif