diff options
author | David Ahern <dsa@cumulusnetworks.com> | 2016-09-10 12:09:53 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-09-10 23:12:52 -0700 |
commit | a8e3e1a9f02094145580ea7920c6a1d9aabd5539 (patch) | |
tree | 1bedde4339e71fa07c4f73d27cfc807ec9220120 /net/ipv6/raw.c | |
parent | 9ee0034b8f49aaaa7e7c2da8db1038915db99c19 (diff) | |
download | linux-stable-a8e3e1a9f02094145580ea7920c6a1d9aabd5539.tar.gz linux-stable-a8e3e1a9f02094145580ea7920c6a1d9aabd5539.tar.bz2 linux-stable-a8e3e1a9f02094145580ea7920c6a1d9aabd5539.zip |
net: l3mdev: Add hook to output path
This patch adds the infrastructure to the output path to pass an skb
to an l3mdev device if it has a hook registered. This is the Tx parallel
to l3mdev_ip{6}_rcv in the receive path and is the basis for removing
the existing hook that returns the vrf dst on the fib lookup.
Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/raw.c')
-rw-r--r-- | net/ipv6/raw.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/ipv6/raw.c b/net/ipv6/raw.c index 590dd1f7746f..54404f08efcc 100644 --- a/net/ipv6/raw.c +++ b/net/ipv6/raw.c @@ -653,6 +653,13 @@ static int rawv6_send_hdrinc(struct sock *sk, struct msghdr *msg, int length, if (err) goto error_fault; + /* if egress device is enslaved to an L3 master device pass the + * skb to its handler for processing + */ + skb = l3mdev_ip6_out(sk, skb); + if (unlikely(!skb)) + return 0; + IP6_UPD_PO_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUT, skb->len); err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, net, sk, skb, NULL, rt->dst.dev, dst_output); |