diff options
author | Thomas Klein <osstklei@de.ibm.com> | 2007-05-02 10:07:05 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-05-08 01:16:24 -0400 |
commit | 88ca2d070c3a169611ec38f00e945a036564ca26 (patch) | |
tree | 578b96aaf3dc7f7521bb8fa285bbbca5bc3a8f6c /drivers/net/ehea | |
parent | 7dd976fcfd89080915e217dd494be0c6c475835c (diff) |
ehea: Fix skb header access
Adapt to new skb header access functions.
Signed-off-by: Thomas Klein <tklein@de.ibm.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/ehea')
-rw-r--r-- | drivers/net/ehea/ehea_main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/ehea/ehea_main.c b/drivers/net/ehea/ehea_main.c index c7a5614e66c0..721164874a80 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 sk_buff *skb, int num_qps) | |||
1803 | u32 tmp; | 1803 | u32 tmp; |
1804 | 1804 | ||
1805 | if ((skb->protocol == htons(ETH_P_IP)) && | 1805 | if ((skb->protocol == htons(ETH_P_IP)) && |
1806 | (skb->nh.iph->protocol == IPPROTO_TCP)) { | 1806 | (ip_hdr(skb)->protocol == IPPROTO_TCP)) { |
1807 | tcp = (struct tcphdr*)(skb->nh.raw + (skb->nh.iph->ihl * 4)); | 1807 | tcp = (struct tcphdr*)(skb_network_header(skb) + (ip_hdr(skb)->ihl * 4)); |
1808 | tmp = (tcp->source + (tcp->dest << 16)) % 31; | 1808 | tmp = (tcp->source + (tcp->dest << 16)) % 31; |
1809 | tmp += skb->nh.iph->daddr % 31; | 1809 | tmp += ip_hdr(skb)->daddr % 31; |
1810 | return tmp % num_qps; | 1810 | return tmp % num_qps; |
1811 | } | 1811 | } |
1812 | else | 1812 | else |