summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVenkatesh Vivekanandan <venkatesh.vivekanandan@linaro.org>2015-03-08 00:46:27 +0530
committerMike Holmes <mike.holmes@linaro.org>2015-03-07 22:07:47 -0500
commit2eb87dec0cee6346c5c7162ecc005121b42b835d (patch)
treec6179f8ab78759749a445fc6e5c484e5ddc57ded
parentb85f56238ad50c15caf27725d7902c13afeb1b56 (diff)
1.0.0: compilation fix for odp_crypto.c
Signed-off-by: Venkatesh Vivekanandan <venkatesh.vivekanandan@linaro.org>
-rw-r--r--platform/linux-dpdk/include/odp_buffer_internal.h8
-rw-r--r--platform/linux-dpdk/include/odp_packet_internal.h2
2 files changed, 10 insertions, 0 deletions
diff --git a/platform/linux-dpdk/include/odp_buffer_internal.h b/platform/linux-dpdk/include/odp_buffer_internal.h
index c062a37..75c9bc5 100644
--- a/platform/linux-dpdk/include/odp_buffer_internal.h
+++ b/platform/linux-dpdk/include/odp_buffer_internal.h
@@ -154,6 +154,14 @@ int odp_buffer_snprint(char *str, uint32_t n, odp_buffer_t buf);
*/
int _odp_buffer_type(odp_buffer_t buf);
+/*
+ * Buffer type set
+ *
+ * @param buf Buffer handle
+ * @param type New type value
+ *
+ */
+void _odp_buffer_type_set(odp_buffer_t buf, int type);
#ifdef __cplusplus
}
diff --git a/platform/linux-dpdk/include/odp_packet_internal.h b/platform/linux-dpdk/include/odp_packet_internal.h
index 8a7b211..42bdecf 100644
--- a/platform/linux-dpdk/include/odp_packet_internal.h
+++ b/platform/linux-dpdk/include/odp_packet_internal.h
@@ -141,6 +141,8 @@ static inline int _odp_packet_copy_to_packet(odp_packet_t srcpkt ODP_UNUSED, uin
return 0;
}
+void _odp_packet_copy_md_to_packet(odp_packet_t srcpkt, odp_packet_t dstpkt);
+
static inline int _odp_packet_parse(odp_packet_t pkt ODP_UNUSED) {
ODP_UNIMPLEMENTED();
ODP_ABORT("");