Fix for build failure due to iOAM plugin header file path

Change-Id: Ie5d270a01e3ca0687a407aeebc42aacc53a01ddc
Signed-off-by: Shwetha <shwethab@cisco.com>
This commit is contained in:
Shwetha
2016-06-21 05:02:32 +01:00
committed by Ole Trøan
parent 010972a95d
commit 355cf68f92
9 changed files with 23 additions and 17 deletions

View File

@ -1,11 +1,16 @@
plugins_configure_depend = \
vppinfra-install \
vlib-api-install \
vpp-api-test-install \
vnet-install \
vlib-install
plugins_CPPFLAGS = $(call installed_includes_fn, \
vppinfra \
vlib \
vnet \
svm \
vpp-api-test \
vlib-api)
plugins_LDFLAGS = $(call installed_libs_fn, \

View File

@ -35,7 +35,7 @@ ioam_pot_plugin_la_SOURCES = plugins/ioam/lib-pot/pot_util.c plugins/ioam/encap/
plugins/ioam/lib-pot/pot_util.h plugins/ioam/lib-pot/math64.h plugins/ioam/lib-pot/pot_api.c
ioam_pot_plugin_la_LDFLAGS = -module
BUILT_SOURCES = plugins/ioam/lib-pot/pot.api.h
BUILT_SOURCES += plugins/ioam/lib-pot/pot.api.h
SUFFIXES = .api.h .api
%.api.h: %.api
@ -43,7 +43,7 @@ SUFFIXES = .api.h .api
$(CC) $(CPPFLAGS) -E -P -C -x c $^ \
| vppapigen --input - --output $@ --show-name $@
nobase_include_HEADERS = \
nobase_include_HEADERS += \
plugins/ioam/lib-pot/pot_all_api_h.h \
plugins/ioam/lib-pot/pot_msg_enum.h \
plugins/ioam/lib-pot/pot.api.h \

View File

@ -25,7 +25,7 @@
#include <vppinfra/error.h>
#include <vppinfra/elog.h>
#include <lib-pot/pot_util.h>
#include <plugins/ioam/lib-pot/pot_util.h>
typedef CLIB_PACKED(struct {
ip6_hop_by_hop_option_t hdr;

View File

@ -13,4 +13,4 @@
* limitations under the License.
*/
/* Include the generated file, see BUILT_SOURCES in Makefile.am */
#include <lib-pot/pot.api.h>
#include <plugins/ioam/lib-pot/pot.api.h>

View File

@ -21,34 +21,34 @@
#include <vnet/vnet.h>
#include <vnet/plugin/plugin.h>
#include <lib-pot/pot_util.h>
#include <plugins/ioam/lib-pot/pot_util.h>
#include <vlibapi/api.h>
#include <vlibmemory/api.h>
#include <vlibsocket/api.h>
/* define message IDs */
#include <lib-pot/pot_msg_enum.h>
#include <plugins/ioam/lib-pot/pot_msg_enum.h>
/* define message structures */
#define vl_typedefs
#include <lib-pot/pot_all_api_h.h>
#include <plugins/ioam/lib-pot/pot_all_api_h.h>
#undef vl_typedefs
/* define generated endian-swappers */
#define vl_endianfun
#include <lib-pot/pot_all_api_h.h>
#include <plugins/ioam/lib-pot/pot_all_api_h.h>
#undef vl_endianfun
/* instantiate all the print functions we know about */
#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
#define vl_printfun
#include <lib-pot/pot_all_api_h.h>
#include <plugins/ioam/lib-pot/pot_all_api_h.h>
#undef vl_printfun
/* Get the API version number */
#define vl_api_version(n,v) static u32 api_version=(v);
#include <lib-pot/pot_all_api_h.h>
#include <plugins/ioam/lib-pot/pot_all_api_h.h>
#undef vl_api_version
/*

View File

@ -19,7 +19,7 @@
#define vl_msg_id(n,h) n,
typedef enum {
#include <lib-pot/pot_all_api_h.h>
#include <plugins/ioam/lib-pot/pot_all_api_h.h>
/* We'll want to know how many messages IDs we need... */
VL_MSG_FIRST_AVAILABLE,
} vl_msg_id_t;

View File

@ -25,28 +25,28 @@
#include <vppinfra/error.h>
/* Declare message IDs */
#include <lib-pot/pot_msg_enum.h>
#include <plugins/ioam/lib-pot/pot_msg_enum.h>
/* define message structures */
#define vl_typedefs
#include <lib-pot/pot_all_api_h.h>
#include <plugins/ioam/lib-pot/pot_all_api_h.h>
#undef vl_typedefs
/* declare message handlers for each api */
#define vl_endianfun /* define message structures */
#include <lib-pot/pot_all_api_h.h>
#include <plugins/ioam/lib-pot/pot_all_api_h.h>
#undef vl_endianfun
/* instantiate all the print functions we know about */
#define vl_print(handle, ...)
#define vl_printfun
#include <lib-pot/pot_all_api_h.h>
#include <plugins/ioam/lib-pot/pot_all_api_h.h>
#undef vl_printfun
/* Get the API version number. */
#define vl_api_version(n,v) static u32 api_version=(v);
#include <lib-pot/pot_all_api_h.h>
#include <plugins/ioam/lib-pot/pot_all_api_h.h>
#undef vl_api_version

View File

@ -134,7 +134,7 @@ ip4_sixrd_get_domain (u32 adj_index, ip6_address_t *addr,
u32 ai = ip6_fib_lookup_with_table(im6, 0, addr);
ip_adjacency_t *adj6 = ip_get_adjacency (lm6, ai);
if (PREDICT_TRUE(adj6->lookup_next_index == IP_LOOKUP_NEXT_SIXRD)) {
if (PREDICT_TRUE(adj6->lookup_next_index == mm->ip6_lookup_next_index)) {
uword *p = (uword *)adj6->rewrite_data;
*sixrd_domain_index = p[0];
return pool_elt_at_index(mm->domains, *sixrd_domain_index);

View File

@ -44,6 +44,7 @@
#include <vnet/ip/ip6_packet.h>
#include <vnet/ip/ip6_hop_by_hop_packet.h>
#include <vnet/ip/lookup.h>
#include <vnet/ip/ip_feature_registration.h>
#include <stdbool.h>
#include <vppinfra/bihash_24_8.h>
#include <vppinfra/bihash_template.h>