2
0
mirror of https://github.com/openvswitch/ovs synced 2025-10-17 14:28:02 +00:00

ofproto: Move bond files to ofproto

Relocating bond.[ch] to allow bond.c to make ofproto calls.
This is needed for upcoming patches that enable megaflow support
for bond ports.

Signed-off-by: Andy Zhou <azhou@nicira.com>
This commit is contained in:
Andy Zhou
2013-12-06 13:27:26 -08:00
parent d22d7ed076
commit 9a54394ac9
6 changed files with 4 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ is a concordance, indexed by the area of the source tree:
datapath/ vport ---
vswitchd/ iface port
ofproto/ port bundle
lib/bond.c slave bond
ofproto/bond.c slave bond
lib/lacp.c slave lacp
lib/netdev.c netdev ---
database Interface Port

View File

@@ -17,8 +17,6 @@ lib_libopenvswitch_a_SOURCES = \
lib/bfd.h \
lib/bitmap.c \
lib/bitmap.h \
lib/bond.c \
lib/bond.h \
lib/bundle.c \
lib/bundle.h \
lib/byte-order.h \

View File

@@ -7,6 +7,8 @@
noinst_LIBRARIES += ofproto/libofproto.a
ofproto_libofproto_a_SOURCES = \
ofproto/bond.c \
ofproto/bond.h \
ofproto/collectors.c \
ofproto/collectors.h \
ofproto/connmgr.c \

View File

@@ -21,7 +21,6 @@
#include "async-append.h"
#include "bfd.h"
#include "bitmap.h"
#include "bond.h"
#include "cfm.h"
#include "coverage.h"
#include "daemon.h"
@@ -39,6 +38,7 @@
#include "ofp-print.h"
#include "ofp-util.h"
#include "ofpbuf.h"
#include "ofproto/bond.h"
#include "ofproto/ofproto.h"
#include "poll-loop.h"
#include "sha1.h"