diff mbox series

[ovs-dev,1/3] ip_tunnels: new IP_TUNNEL_INFO_BRIDGE flag for ip_tunnel_info mode

Message ID 20200917171414.7886-2-gvrose8192@gmail.com
State Changes Requested
Headers show
Series Add IP_TUNNEL_INFO_BRIDGE mode feature | expand

Commit Message

Gregory Rose Sept. 17, 2020, 5:14 p.m. UTC
From: Roopa Prabhu <roopa@cumulusnetworks.com>

Upstream commit:
    commit f35581d64e55fc65753a62957b3b98127d560d07
    Author: Roopa Prabhu <roopa@cumulusnetworks.com>
    Date:   Tue Jan 31 22:59:51 2017 -0800

    ip_tunnels: new IP_TUNNEL_INFO_BRIDGE flag for ip_tunnel_info mode

    New ip_tunnel_info flag to represent bridged tunnel metadata.
    Used by bridge driver later in the series to pass per vlan dst
    metadata to bridge ports.

    Signed-off-by: Roopa Prabhu <roopa@cumulusnetworks.com>
    Signed-off-by: David S. Miller <davem@davemloft.net>

Cc: Roopa Prabhu <roopa@cumulusnetworks.com>
Signed-off-by: Greg Rose <gvrose8192@gmail.com>
---
 datapath/linux/compat/include/net/ip_tunnels.h | 1 +
 1 file changed, 1 insertion(+)

Comments

0-day Robot Sept. 17, 2020, 8:14 p.m. UTC | #1
Bleep bloop.  Greetings Greg Rose, I am a robot and I have tried out your patch.
Thanks for your contribution.

I encountered some error that I wasn't expecting.  See the details below.


checkpatch:
ERROR: Author Roopa Prabhu <roopa@cumulusnetworks.com> needs to sign off.
WARNING: Unexpected sign-offs from developers who are not authors or co-authors or committers: Greg Rose <gvrose8192@gmail.com>
Lines checked: 40, Warnings: 1, Errors: 1


Please check this out.  If you feel there has been an error, please email aconole@redhat.com

Thanks,
0-day Robot
diff mbox series

Patch

diff --git a/datapath/linux/compat/include/net/ip_tunnels.h b/datapath/linux/compat/include/net/ip_tunnels.h
index 617a753c7..6f78ed4d6 100644
--- a/datapath/linux/compat/include/net/ip_tunnels.h
+++ b/datapath/linux/compat/include/net/ip_tunnels.h
@@ -165,6 +165,7 @@  struct ip_tunnel_key {
 /* Flags for ip_tunnel_info mode. */
 #define IP_TUNNEL_INFO_TX	0x01	/* represents tx tunnel parameters */
 #define IP_TUNNEL_INFO_IPV6	0x02	/* key contains IPv6 addresses */
+#define IP_TUNNEL_INFO_BRIDGE	0x04	/* represents a bridged tunnel id */
 
 struct ip_tunnel_info {
 	struct ip_tunnel_key	key;