2007-05-02 14:07:11

by Thomas Klein

[permalink] [raw]
Subject: [PATCH] ehea: Fix skb header access

Adapt to new skb header access functions.

Signed-off-by: Thomas Klein <[email protected]>
---


diff --git a/drivers/net/ehea/ehea_main.c b/drivers/net/ehea/ehea_main.c
index c7a5614..7211648 100644
--- a/drivers/net/ehea/ehea_main.c
+++ b/drivers/net/ehea/ehea_main.c
@@ -1803,10 +1803,10 @@ static inline int ehea_hash_skb(struct s
u32 tmp;

if ((skb->protocol == htons(ETH_P_IP)) &&
- (skb->nh.iph->protocol == IPPROTO_TCP)) {
- tcp = (struct tcphdr*)(skb->nh.raw + (skb->nh.iph->ihl * 4));
+ (ip_hdr(skb)->protocol == IPPROTO_TCP)) {
+ tcp = (struct tcphdr*)(skb_network_header(skb) + (ip_hdr(skb)->ihl * 4));
tmp = (tcp->source + (tcp->dest << 16)) % 31;
- tmp += skb->nh.iph->daddr % 31;
+ tmp += ip_hdr(skb)->daddr % 31;
return tmp % num_qps;
}
else



2007-05-08 05:17:49

by Jeff Garzik

[permalink] [raw]
Subject: Re: [PATCH] ehea: Fix skb header access

Thomas Klein wrote:
> Adapt to new skb header access functions.
>
> Signed-off-by: Thomas Klein <[email protected]>

applied