mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-04 05:24:03 +00:00
esp4: improve xfrm4_beet_gso_segment() to be more readable
This patch is to improve the code to make xfrm4_beet_gso_segment() more readable, and keep consistent with xfrm6_beet_gso_segment(). Signed-off-by: Xin Long <lucien.xin@gmail.com> Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
This commit is contained in:
parent
56b1b7c667
commit
3ffb93ba32
1 changed files with 10 additions and 7 deletions
|
@ -141,20 +141,23 @@ static struct sk_buff *xfrm4_beet_gso_segment(struct xfrm_state *x,
|
||||||
|
|
||||||
skb->transport_header += x->props.header_len;
|
skb->transport_header += x->props.header_len;
|
||||||
|
|
||||||
|
if (x->sel.family != AF_INET6) {
|
||||||
if (proto == IPPROTO_BEETPH) {
|
if (proto == IPPROTO_BEETPH) {
|
||||||
struct ip_beet_phdr *ph = (struct ip_beet_phdr *)skb->data;
|
struct ip_beet_phdr *ph =
|
||||||
|
(struct ip_beet_phdr *)skb->data;
|
||||||
|
|
||||||
skb->transport_header += ph->hdrlen * 8;
|
skb->transport_header += ph->hdrlen * 8;
|
||||||
proto = ph->nexthdr;
|
proto = ph->nexthdr;
|
||||||
} else if (x->sel.family == AF_INET6) {
|
} else {
|
||||||
|
skb->transport_header -= IPV4_BEET_PHMAXLEN;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
__be16 frag;
|
__be16 frag;
|
||||||
|
|
||||||
skb->transport_header +=
|
skb->transport_header +=
|
||||||
ipv6_skip_exthdr(skb, 0, &proto, &frag);
|
ipv6_skip_exthdr(skb, 0, &proto, &frag);
|
||||||
if (proto == IPPROTO_TCP)
|
if (proto == IPPROTO_TCP)
|
||||||
skb_shinfo(skb)->gso_type |= SKB_GSO_TCPV4;
|
skb_shinfo(skb)->gso_type |= SKB_GSO_TCPV4;
|
||||||
} else {
|
|
||||||
skb->transport_header -= IPV4_BEET_PHMAXLEN;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
__skb_pull(skb, skb_transport_offset(skb));
|
__skb_pull(skb, skb_transport_offset(skb));
|
||||||
|
|
Loading…
Add table
Reference in a new issue