numam-dpdk/drivers/net/memif/meson.build
Jakub Grajciar c41a04958b net/memif: support multi-process
Multi-process support for memif PMD.
Primary process handles connection establishment.
Secondary process queries for memory regions.

Signed-off-by: Jakub Grajciar <jgrajcia@cisco.com>
Acked-by: Anatoly Burakov <anatoly.burakov@intel.com>
2019-06-28 20:32:18 +02:00

19 lines
405 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
# - rte_mp_action_register
# - rte_mp_reply
# - rte_mp_request_sync
deps += ['hash']