Shared memory packet interface (memif) PMD allows for DPDK and any other client using memif (DPDK, VPP, libmemif) to communicate using shared memory. The created device transmits packets in a raw format. It can be used with Ethernet mode, IP mode, or Punt/Inject. At this moment, only Ethernet mode is supported in DPDK memif implementation. Memif is Linux only. Signed-off-by: Jakub Grajciar <jgrajcia@cisco.com> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
16 lines
337 B
Meson
16 lines
337 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright 2018-2019 Cisco Systems, Inc. All rights reserved.
|
|
|
|
if host_machine.system() != 'linux'
|
|
build = false
|
|
endif
|
|
|
|
sources = files('rte_eth_memif.c',
|
|
'memif_socket.c')
|
|
|
|
allow_experimental_apis = true
|
|
# Experimantal APIs:
|
|
# - rte_intr_callback_unregister_pending
|
|
|
|
deps += ['hash']
|