diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2007-04-21 01:47:35 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:25:10 -0400 |
commit | eddc9ec53be2ecdbf4efe0efd4a83052594f0ac0 (patch) | |
tree | 4a38ab4dbd9d61fdf5a5ea6ed61463e0b9e33ba7 /drivers/net/via-velocity.c | |
parent | e023dd643798c4f06c16466af90b4d250e4b8bd7 (diff) |
[SK_BUFF]: Introduce ip_hdr(), remove skb->nh.iph
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/via-velocity.c')
-rw-r--r-- | drivers/net/via-velocity.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/via-velocity.c b/drivers/net/via-velocity.c index 9f6cc1569b3e..422eaf8ea12d 100644 --- a/drivers/net/via-velocity.c +++ b/drivers/net/via-velocity.c | |||
@@ -2006,7 +2006,7 @@ static int velocity_xmit(struct sk_buff *skb, struct net_device *dev) | |||
2006 | */ | 2006 | */ |
2007 | if ((vptr->flags & VELOCITY_FLAGS_TX_CSUM) | 2007 | if ((vptr->flags & VELOCITY_FLAGS_TX_CSUM) |
2008 | && (skb->ip_summed == CHECKSUM_PARTIAL)) { | 2008 | && (skb->ip_summed == CHECKSUM_PARTIAL)) { |
2009 | struct iphdr *ip = skb->nh.iph; | 2009 | const struct iphdr *ip = ip_hdr(skb); |
2010 | if (ip->protocol == IPPROTO_TCP) | 2010 | if (ip->protocol == IPPROTO_TCP) |
2011 | td_ptr->tdesc1.TCR |= TCR0_TCPCK; | 2011 | td_ptr->tdesc1.TCR |= TCR0_TCPCK; |
2012 | else if (ip->protocol == IPPROTO_UDP) | 2012 | else if (ip->protocol == IPPROTO_UDP) |