Skip to content

Commit

Permalink
Initial implementation of OVSDB.
Browse files Browse the repository at this point in the history
  • Loading branch information
blp committed Nov 5, 2009
1 parent f212909 commit f85f8eb
Show file tree
Hide file tree
Showing 56 changed files with 11,239 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,6 @@ include include/automake.mk
include third-party/automake.mk
include debian/automake.mk
include vswitchd/automake.mk
include ovsdb/automake.mk
include xenserver/automake.mk
include extras/ezio/automake.mk
11 changes: 11 additions & 0 deletions lib/automake.mk
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,15 @@ lib_libopenvswitch_a_SOURCES = \
lib/ofp-print.h \
lib/ofpbuf.c \
lib/ofpbuf.h \
lib/ovsdb-client.h \
lib/ovsdb-data.c \
lib/ovsdb-data.h \
lib/ovsdb-error.c \
lib/ovsdb-error.h \
lib/ovsdb-parser.c \
lib/ovsdb-parser.h \
lib/ovsdb-types.c \
lib/ovsdb-types.h \
lib/packets.c \
lib/packets.h \
lib/pcap.c \
Expand Down Expand Up @@ -104,6 +113,8 @@ lib_libopenvswitch_a_SOURCES = \
lib/signals.h \
lib/socket-util.c \
lib/socket-util.h \
lib/sort.c \
lib/sort.h \
lib/stp.c \
lib/stp.h \
lib/stream-fd.c \
Expand Down
1 change: 1 addition & 0 deletions lib/compiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@
#define ALWAYS_INLINE __attribute__((always_inline))
#define likely(x) __builtin_expect((x),1)
#define unlikely(x) __builtin_expect((x),0)
#define WARN_UNUSED_RESULT __attribute__((__warn_unused_result__))

#endif /* compiler.h */
Loading

0 comments on commit f85f8eb

Please sign in to comment.