mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 18:53:52 +08:00
ipv4: fix for ip_options_rcv_srr() daddr update.
When opt->srr_is_hit is set skb_rtable(skb) has been updated for 'nexthop' and iph->daddr should always equals to skb_rtable->rt_dst holds, We need update iph->daddr either. Signed-off-by: Li Wei <lw@cn.fujitsu.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b7ea81a58a
commit
b12f62efb8
@ -640,6 +640,7 @@ int ip_options_rcv_srr(struct sk_buff *skb)
|
|||||||
}
|
}
|
||||||
if (srrptr <= srrspace) {
|
if (srrptr <= srrspace) {
|
||||||
opt->srr_is_hit = 1;
|
opt->srr_is_hit = 1;
|
||||||
|
iph->daddr = nexthop;
|
||||||
opt->is_changed = 1;
|
opt->is_changed = 1;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user