[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] PV-on-HVM: Fix build for RHEL/SLES.
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1196851365 0 # Node ID fda41d46a6a3caabe3f2665b84dd0e117a8c3f7c # Parent 0974e59dd744adf0be9924d2cdf222733e53ac0f PV-on-HVM: Fix build for RHEL/SLES. Signed-off-by: Ben Guthro <bguthro@xxxxxxxxxxxxxxx> --- unmodified_drivers/linux-2.6/compat-include/xen/platform-compat.h | 15 ++++++++++ 1 files changed, 15 insertions(+) diff -r 0974e59dd744 -r fda41d46a6a3 unmodified_drivers/linux-2.6/compat-include/xen/platform-compat.h --- a/unmodified_drivers/linux-2.6/compat-include/xen/platform-compat.h Wed Dec 05 10:40:19 2007 +0000 +++ b/unmodified_drivers/linux-2.6/compat-include/xen/platform-compat.h Wed Dec 05 10:42:45 2007 +0000 @@ -114,9 +114,17 @@ extern char *kasprintf(gfp_t gfp, const #define __supported_pte_mask ((maddr_t)0) #endif +/* This code duplication is not ideal, but || does not seem to properly + * short circuit in a #if condition. + **/ #if defined(_LINUX_NETDEVICE_H) && LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18) +#if !defined(SLE_VERSION) #define netif_tx_lock_bh(dev) spin_lock_bh(&(dev)->xmit_lock) #define netif_tx_unlock_bh(dev) spin_unlock_bh(&(dev)->xmit_lock) +#elif SLE_VERSION_CODE < SLE_VERSION(10,1,0) +#define netif_tx_lock_bh(dev) spin_lock_bh(&(dev)->xmit_lock) +#define netif_tx_unlock_bh(dev) spin_unlock_bh(&(dev)->xmit_lock) +#endif #endif #if defined(__LINUX_SEQLOCK_H) && !defined(DEFINE_SEQLOCK) @@ -133,7 +141,14 @@ extern char *kasprintf(gfp_t gfp, const #endif #if defined(_LINUX_INTERRUPT_H) && LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19) +/** + * RHEL4-U5 pulled back this feature into the older kernel + * Since it is a typedef, and not a macro - detect this kernel via + * RHEL_VERSION + */ +#if !defined(RHEL_VERSION) || (RHEL_VERSION == 4 && RHEL_UPDATE < 5) typedef irqreturn_t (*irq_handler_t)(int, void *, struct pt_regs *); +#endif #endif #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23) _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |