diff options
author | David Ahern <dsa@cumulusnetworks.com> | 2015-09-30 05:07:10 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-09-30 05:40:32 +0200 |
commit | 007979eaf94d1c888d8c7cf8a5250c2c6c9bd98e (patch) | |
tree | 9e3bcaa3104caa24e17c3e2bac8f1d4e4415c996 /net/ipv4/udp.c | |
parent | Merge branch 'listener-refactoring-preparations' (diff) | |
download | linux-007979eaf94d1c888d8c7cf8a5250c2c6c9bd98e.tar.xz linux-007979eaf94d1c888d8c7cf8a5250c2c6c9bd98e.zip |
net: Rename IFF_VRF_MASTER to IFF_L3MDEV_MASTER
Rename IFF_VRF_MASTER to IFF_L3MDEV_MASTER and update the name of the
netif_is_vrf and netif_index_is_vrf macros.
Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/udp.c')
-rw-r--r-- | net/ipv4/udp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c index f7d1d5e19e95..156ba75b6000 100644 --- a/net/ipv4/udp.c +++ b/net/ipv4/udp.c @@ -1021,7 +1021,7 @@ int udp_sendmsg(struct sock *sk, struct msghdr *msg, size_t len) * device lookup source address from VRF table. This mimics * behavior of ip_route_connect{_init}. */ - if (netif_index_is_vrf(net, ipc.oif)) { + if (netif_index_is_l3_master(net, ipc.oif)) { flowi4_init_output(fl4, ipc.oif, sk->sk_mark, tos, RT_SCOPE_UNIVERSE, sk->sk_protocol, (flow_flags | FLOWI_FLAG_VRFSRC | |