[SK_BUFF]: Introduce tcp_hdr(), remove skb->h.th
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ab6a5bb6b2
commit
aa8223c7bb
23 changed files with 134 additions and 122 deletions
|
@ -237,7 +237,6 @@ struct sk_buff {
|
|||
/* 4 byte hole on 64 bit*/
|
||||
|
||||
union {
|
||||
struct tcphdr *th;
|
||||
struct iphdr *ipiph;
|
||||
struct ipv6hdr *ipv6h;
|
||||
unsigned char *raw;
|
||||
|
|
|
@ -178,14 +178,19 @@ struct tcp_md5sig {
|
|||
#include <net/inet_connection_sock.h>
|
||||
#include <net/inet_timewait_sock.h>
|
||||
|
||||
static inline struct tcphdr *tcp_hdr(const struct sk_buff *skb)
|
||||
{
|
||||
return (struct tcphdr *)skb->h.raw;
|
||||
}
|
||||
|
||||
static inline unsigned int tcp_hdrlen(const struct sk_buff *skb)
|
||||
{
|
||||
return skb->h.th->doff * 4;
|
||||
return tcp_hdr(skb)->doff * 4;
|
||||
}
|
||||
|
||||
static inline unsigned int tcp_optlen(const struct sk_buff *skb)
|
||||
{
|
||||
return (skb->h.th->doff - 5) * 4;
|
||||
return (tcp_hdr(skb)->doff - 5) * 4;
|
||||
}
|
||||
|
||||
/* This defines a selective acknowledgement block. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue