mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
geneve: Use skb mark and protocol to lookup route.
On packet transmit path geneve need to lookup route. Following patch improves route lookup using more parameters. Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Reviewed-by: Jesse Gross <jesse@nicira.com> Acked-by: Thomas Graf <tgraf@suug.ch> Acked-by: John W. Linville <linville@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
87cd3dcaf4
commit
980c394c53
@ -202,6 +202,9 @@ static netdev_tx_t geneve_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
memset(&fl4, 0, sizeof(fl4));
|
||||
fl4.flowi4_tos = RT_TOS(tos);
|
||||
fl4.daddr = geneve->remote.sin_addr.s_addr;
|
||||
fl4.flowi4_mark = skb->mark;
|
||||
fl4.flowi4_proto = IPPROTO_UDP;
|
||||
|
||||
rt = ip_route_output_key(geneve->net, &fl4);
|
||||
if (IS_ERR(rt)) {
|
||||
netdev_dbg(dev, "no route to %pI4\n", &fl4.daddr);
|
||||
|
Loading…
Reference in New Issue
Block a user