Signed-off-by: Jiri Benc <[email protected]>
---
 drivers/net/vxlan.c | 13 +++++++------
 include/net/vxlan.h |  7 +++++++
 2 files changed, 14 insertions(+), 6 deletions(-)

diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c
index 48341ae49012..97549b8ee705 100644
--- a/drivers/net/vxlan.c
+++ b/drivers/net/vxlan.c
@@ -1668,12 +1668,12 @@ static void vxlan_build_gbp_hdr(struct vxlanhdr *vxh, 
u32 vxflags,
 }
 
 #if IS_ENABLED(CONFIG_IPV6)
-static int vxlan6_xmit_skb(struct dst_entry *dst, struct sock *sk,
-                          struct sk_buff *skb,
-                          struct net_device *dev, struct in6_addr *saddr,
-                          struct in6_addr *daddr, __u8 prio, __u8 ttl,
-                          __be16 src_port, __be16 dst_port,
-                          struct vxlan_metadata *md, bool xnet, u32 vxflags)
+int vxlan6_xmit_skb(struct dst_entry *dst, struct sock *sk,
+                   struct sk_buff *skb,
+                   struct net_device *dev, struct in6_addr *saddr,
+                   struct in6_addr *daddr, __u8 prio, __u8 ttl,
+                   __be16 src_port, __be16 dst_port,
+                   struct vxlan_metadata *md, bool xnet, u32 vxflags)
 {
        struct vxlanhdr *vxh;
        int min_headroom;
@@ -1753,6 +1753,7 @@ err:
        dst_release(dst);
        return err;
 }
+EXPORT_SYMBOL_GPL(vxlan6_xmit_skb);
 #endif
 
 int vxlan_xmit_skb(struct rtable *rt, struct sock *sk, struct sk_buff *skb,
diff --git a/include/net/vxlan.h b/include/net/vxlan.h
index 0082b5d33d7d..a4ed7241c56a 100644
--- a/include/net/vxlan.h
+++ b/include/net/vxlan.h
@@ -150,6 +150,13 @@ int vxlan_xmit_skb(struct rtable *rt, struct sock *sk, 
struct sk_buff *skb,
                   __be16 src_port, __be16 dst_port, struct vxlan_metadata *md,
                   bool xnet, u32 vxflags);
 
+int vxlan6_xmit_skb(struct dst_entry *dst, struct sock *sk,
+                   struct sk_buff *skb,
+                   struct net_device *dev, struct in6_addr *saddr,
+                   struct in6_addr *daddr, __u8 prio, __u8 ttl,
+                   __be16 src_port, __be16 dst_port,
+                   struct vxlan_metadata *md, bool xnet, u32 vxflags);
+
 static inline netdev_features_t vxlan_features_check(struct sk_buff *skb,
                                                     netdev_features_t features)
 {
-- 
1.8.3.1

_______________________________________________
dev mailing list
[email protected]
http://openvswitch.org/mailman/listinfo/dev

Reply via email to