Commit a12daf13 authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller

tcp: rename tcp_v4_err() skb parameter

This essentially reverts 4d1a2d9e ("Revert Backoff [v3]:
Rename skb to icmp_skb in tcp_v4_err()")

Now we have tcp_ld_RTO_revert() helper, we can use the usual
name for sk_buff parameter, so that tcp_v4_err() and
tcp_v6_err() use similar names.
Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
Acked-by: default avatarNeal Cardwell <ncardwell@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f7456642
...@@ -458,23 +458,23 @@ static void tcp_ld_RTO_revert(struct sock *sk, u32 seq) ...@@ -458,23 +458,23 @@ static void tcp_ld_RTO_revert(struct sock *sk, u32 seq)
* *
*/ */
int tcp_v4_err(struct sk_buff *icmp_skb, u32 info) int tcp_v4_err(struct sk_buff *skb, u32 info)
{ {
const struct iphdr *iph = (const struct iphdr *)icmp_skb->data; const struct iphdr *iph = (const struct iphdr *)skb->data;
struct tcphdr *th = (struct tcphdr *)(icmp_skb->data + (iph->ihl << 2)); struct tcphdr *th = (struct tcphdr *)(skb->data + (iph->ihl << 2));
struct tcp_sock *tp; struct tcp_sock *tp;
struct inet_sock *inet; struct inet_sock *inet;
const int type = icmp_hdr(icmp_skb)->type; const int type = icmp_hdr(skb)->type;
const int code = icmp_hdr(icmp_skb)->code; const int code = icmp_hdr(skb)->code;
struct sock *sk; struct sock *sk;
struct request_sock *fastopen; struct request_sock *fastopen;
u32 seq, snd_una; u32 seq, snd_una;
int err; int err;
struct net *net = dev_net(icmp_skb->dev); struct net *net = dev_net(skb->dev);
sk = __inet_lookup_established(net, &tcp_hashinfo, iph->daddr, sk = __inet_lookup_established(net, &tcp_hashinfo, iph->daddr,
th->dest, iph->saddr, ntohs(th->source), th->dest, iph->saddr, ntohs(th->source),
inet_iif(icmp_skb), 0); inet_iif(skb), 0);
if (!sk) { if (!sk) {
__ICMP_INC_STATS(net, ICMP_MIB_INERRORS); __ICMP_INC_STATS(net, ICMP_MIB_INERRORS);
return -ENOENT; return -ENOENT;
...@@ -524,7 +524,7 @@ int tcp_v4_err(struct sk_buff *icmp_skb, u32 info) ...@@ -524,7 +524,7 @@ int tcp_v4_err(struct sk_buff *icmp_skb, u32 info)
switch (type) { switch (type) {
case ICMP_REDIRECT: case ICMP_REDIRECT:
if (!sock_owned_by_user(sk)) if (!sock_owned_by_user(sk))
do_redirect(icmp_skb, sk); do_redirect(skb, sk);
goto out; goto out;
case ICMP_SOURCE_QUENCH: case ICMP_SOURCE_QUENCH:
/* Just silently ignore these. */ /* Just silently ignore these. */
...@@ -578,7 +578,7 @@ int tcp_v4_err(struct sk_buff *icmp_skb, u32 info) ...@@ -578,7 +578,7 @@ int tcp_v4_err(struct sk_buff *icmp_skb, u32 info)
if (fastopen && !fastopen->sk) if (fastopen && !fastopen->sk)
break; break;
ip_icmp_error(sk, icmp_skb, err, th->dest, info, (u8 *)th); ip_icmp_error(sk, skb, err, th->dest, info, (u8 *)th);
if (!sock_owned_by_user(sk)) { if (!sock_owned_by_user(sk)) {
sk->sk_err = err; sk->sk_err = err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment