net/iavf: fix mbuf leak
[dpdk.git] / drivers / net / memif / meson.build
index 287a30e..680bc86 100644 (file)
@@ -1,15 +1,14 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright 2018-2019 Cisco Systems, Inc.  All rights reserved.
 
-if host_machine.system() != 'linux'
-        build = false
+if not is_linux
+    build = false
+    reason = 'only supported on Linux'
 endif
 
-sources = files('rte_eth_memif.c',
-               'memif_socket.c')
-
-allow_experimental_apis = true
-# Experimantal APIs:
-# - rte_intr_callback_unregister_pending
+sources = files(
+        'memif_socket.c',
+        'rte_eth_memif.c',
+)
 
 deps += ['hash']