forked from ovn-org/ovn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
route-exchange-netlink: Use existing RTPROT_OVN.
The RTPROT_OVN value has been merged to the net-next tree [1]. Until it is available on all systems ovs forward declares this value. This allows us to drop the definition of the value from OVN. [1]: https://web.git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/commit/?id=6002850fdfe0b4343136670a9895b6ba4ee3285b Signed-off-by: Felix Huettner <felix.huettner@stackit.cloud>
- Loading branch information
1 parent
83b4802
commit 2f2ab56
Showing
4 changed files
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "ovs"] | ||
path = ovs | ||
url = https://github.com/openvswitch/ovs.git | ||
url = https://github.com/felixhuettner/ovs.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ovs
updated
31 files
+1 −1 | Documentation/howto/dpdk.rst | |
+5 −0 | Documentation/ref/ovs-ctl.8.rst | |
+9 −0 | NEWS | |
+6 −0 | acinclude.m4 | |
+1 −1 | configure.ac | |
+6 −0 | debian/changelog | |
+1 −0 | include/linux/automake.mk | |
+12 −0 | include/linux/rtnetlink.h | |
+2 −0 | lib/dpdk-unixctl.man | |
+2 −0 | lib/dpdk.c | |
+4 −3 | lib/flow.c | |
+3 −0 | lib/netdev-offload-dpdk.c | |
+52 −2 | lib/netdev-offload-tc.c | |
+6 −3 | lib/nx-match.c | |
+1 −1 | lib/ovsdb-error.c | |
+10 −0 | lib/vlog.c | |
+2 −0 | ofproto/ofproto-dpif-ipfix.c | |
+3 −3 | ofproto/ofproto-dpif-xlate.c | |
+3 −0 | ofproto/ofproto.c | |
+1 −2 | ovsdb/ovsdb-server.c | |
+15 −0 | tests/ovs-vsctl.at | |
+119 −0 | tests/system-offloads-traffic.at | |
+1 −0 | tests/test-aa.c | |
+1 −1 | tests/test-ccmap.c | |
+1 −0 | tests/test-lib-route-table.c | |
+7 −3 | tests/test-ovsdb.c | |
+1 −1 | tests/test-packets.c | |
+2 −0 | utilities/ovs-ctl.in | |
+4 −0 | utilities/ovs-lib.in | |
+20 −5 | utilities/ovs-vsctl.c | |
+1 −2 | vswitchd/bridge.c |