aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/odp_pool_mem_src_ops.c
blob: d9b810a6a186c6b8ce237e76e61f140b9ba4c184 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Copyright (c) 2022, Nokia
 * All rights reserved.
 *
 * SPDX-License-Identifier:     BSD-3-Clause
 */

#include <odp/autoheader_internal.h>
#include <odp_pool_internal.h>

extern const _odp_pool_mem_src_ops_t _odp_pool_dpdk_mem_src_ops;

/* List of available ODP packet pool memory source operations. Array must be NULL terminated */
const _odp_pool_mem_src_ops_t * const _odp_pool_mem_src_ops[] = {
#ifdef _ODP_PKTIO_DPDK
	&_odp_pool_dpdk_mem_src_ops,
#endif
	NULL
};