aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv6')
-rw-r--r--net/ipv6/inet6_connection_sock.c2
-rw-r--r--net/ipv6/ip6_output.c4
-rw-r--r--net/ipv6/tcp_ipv6.c5
3 files changed, 5 insertions, 6 deletions
diff --git a/net/ipv6/inet6_connection_sock.c b/net/ipv6/inet6_connection_sock.c
index 532c3ef282c5..798a0950e9a6 100644
--- a/net/ipv6/inet6_connection_sock.c
+++ b/net/ipv6/inet6_connection_sock.c
@@ -173,7 +173,7 @@ int inet6_csk_xmit(struct sock *sk, struct sk_buff *skb, struct flowi *fl_unused
173 /* Restore final destination back after routing done */ 173 /* Restore final destination back after routing done */
174 fl6.daddr = sk->sk_v6_daddr; 174 fl6.daddr = sk->sk_v6_daddr;
175 175
176 res = ip6_xmit(sk, skb, &fl6, rcu_dereference(np->opt), 176 res = ip6_xmit(sk, skb, &fl6, sk->sk_mark, rcu_dereference(np->opt),
177 np->tclass); 177 np->tclass);
178 rcu_read_unlock(); 178 rcu_read_unlock();
179 return res; 179 return res;
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c
index 59eb4ed99ce8..9a87bfb2ec16 100644
--- a/net/ipv6/ip6_output.c
+++ b/net/ipv6/ip6_output.c
@@ -163,7 +163,7 @@ int ip6_output(struct net *net, struct sock *sk, struct sk_buff *skb)
163 * which are using proper atomic operations or spinlocks. 163 * which are using proper atomic operations or spinlocks.
164 */ 164 */
165int ip6_xmit(const struct sock *sk, struct sk_buff *skb, struct flowi6 *fl6, 165int ip6_xmit(const struct sock *sk, struct sk_buff *skb, struct flowi6 *fl6,
166 struct ipv6_txoptions *opt, int tclass) 166 __u32 mark, struct ipv6_txoptions *opt, int tclass)
167{ 167{
168 struct net *net = sock_net(sk); 168 struct net *net = sock_net(sk);
169 const struct ipv6_pinfo *np = inet6_sk(sk); 169 const struct ipv6_pinfo *np = inet6_sk(sk);
@@ -230,7 +230,7 @@ int ip6_xmit(const struct sock *sk, struct sk_buff *skb, struct flowi6 *fl6,
230 230
231 skb->protocol = htons(ETH_P_IPV6); 231 skb->protocol = htons(ETH_P_IPV6);
232 skb->priority = sk->sk_priority; 232 skb->priority = sk->sk_priority;
233 skb->mark = sk->sk_mark; 233 skb->mark = mark;
234 234
235 mtu = dst_mtu(dst); 235 mtu = dst_mtu(dst);
236 if ((skb->len <= mtu) || skb->ignore_df || skb_is_gso(skb)) { 236 if ((skb->len <= mtu) || skb->ignore_df || skb_is_gso(skb)) {
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c
index 5200c676fc72..667396536feb 100644
--- a/net/ipv6/tcp_ipv6.c
+++ b/net/ipv6/tcp_ipv6.c
@@ -467,7 +467,7 @@ static int tcp_v6_send_synack(const struct sock *sk, struct dst_entry *dst,
467 opt = ireq->ipv6_opt; 467 opt = ireq->ipv6_opt;
468 if (!opt) 468 if (!opt)
469 opt = rcu_dereference(np->opt); 469 opt = rcu_dereference(np->opt);
470 err = ip6_xmit(sk, skb, fl6, opt, np->tclass); 470 err = ip6_xmit(sk, skb, fl6, sk->sk_mark, opt, np->tclass);
471 rcu_read_unlock(); 471 rcu_read_unlock();
472 err = net_xmit_eval(err); 472 err = net_xmit_eval(err);
473 } 473 }
@@ -837,8 +837,7 @@ static void tcp_v6_send_response(const struct sock *sk, struct sk_buff *skb, u32
837 dst = ip6_dst_lookup_flow(ctl_sk, &fl6, NULL); 837 dst = ip6_dst_lookup_flow(ctl_sk, &fl6, NULL);
838 if (!IS_ERR(dst)) { 838 if (!IS_ERR(dst)) {
839 skb_dst_set(buff, dst); 839 skb_dst_set(buff, dst);
840 ctl_sk->sk_mark = fl6.flowi6_mark; 840 ip6_xmit(ctl_sk, buff, &fl6, fl6.flowi6_mark, NULL, tclass);
841 ip6_xmit(ctl_sk, buff, &fl6, NULL, tclass);
842 TCP_INC_STATS(net, TCP_MIB_OUTSEGS); 841 TCP_INC_STATS(net, TCP_MIB_OUTSEGS);
843 if (rst) 842 if (rst)
844 TCP_INC_STATS(net, TCP_MIB_OUTRSTS); 843 TCP_INC_STATS(net, TCP_MIB_OUTRSTS);