diff options
-rw-r--r-- | net/ipv6/ip6_output.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c index b4c4beba0ede..efa3e72cfcfa 100644 --- a/net/ipv6/ip6_output.c +++ b/net/ipv6/ip6_output.c | |||
@@ -226,6 +226,8 @@ int ip6_xmit(struct sock *sk, struct sk_buff *skb, struct flowi *fl, | |||
226 | ipv6_addr_copy(&hdr->saddr, &fl->fl6_src); | 226 | ipv6_addr_copy(&hdr->saddr, &fl->fl6_src); |
227 | ipv6_addr_copy(&hdr->daddr, first_hop); | 227 | ipv6_addr_copy(&hdr->daddr, first_hop); |
228 | 228 | ||
229 | skb->priority = sk->sk_priority; | ||
230 | |||
229 | mtu = dst_mtu(dst); | 231 | mtu = dst_mtu(dst); |
230 | if ((skb->len <= mtu) || ipfragok) { | 232 | if ((skb->len <= mtu) || ipfragok) { |
231 | IP6_INC_STATS(IPSTATS_MIB_OUTREQUESTS); | 233 | IP6_INC_STATS(IPSTATS_MIB_OUTREQUESTS); |
@@ -1182,6 +1184,8 @@ int ip6_push_pending_frames(struct sock *sk) | |||
1182 | ipv6_addr_copy(&hdr->saddr, &fl->fl6_src); | 1184 | ipv6_addr_copy(&hdr->saddr, &fl->fl6_src); |
1183 | ipv6_addr_copy(&hdr->daddr, final_dst); | 1185 | ipv6_addr_copy(&hdr->daddr, final_dst); |
1184 | 1186 | ||
1187 | skb->priority = sk->sk_priority; | ||
1188 | |||
1185 | skb->dst = dst_clone(&rt->u.dst); | 1189 | skb->dst = dst_clone(&rt->u.dst); |
1186 | IP6_INC_STATS(IPSTATS_MIB_OUTREQUESTS); | 1190 | IP6_INC_STATS(IPSTATS_MIB_OUTREQUESTS); |
1187 | err = NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, skb, NULL, skb->dst->dev, dst_output); | 1191 | err = NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, skb, NULL, skb->dst->dev, dst_output); |