datapath: Fix compat skb_get_rxhash()
[sliver-openvswitch.git] / datapath / linux / compat / include / linux / skbuff.h
index 9868a98..79b0b75 100644 (file)
@@ -218,7 +218,8 @@ extern u32 __skb_get_rxhash(struct sk_buff *skb);
 static inline __u32 skb_get_rxhash(struct sk_buff *skb)
 {
 #if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,34)
-       if (!skb->rxhash)
+       if (skb->rxhash)
+               return skb->rxhash;
 #endif
        return __skb_get_rxhash(skb);
 }