From 15f472c41e9adaaeecf8d897e3875b85808c1428 Mon Sep 17 00:00:00 2001 From: Jianfeng Tan Date: Wed, 29 Jun 2016 03:20:06 +0000 Subject: [PATCH 1/1] net/virtio-user: fix missing default config value With current config structure, all configuration parameters put into common_base with a default value, and overwritten in environment file if required, CONFIG_RTE_VIRTIO_USER is missing in common_base. This fix is simple, by adding CONFIG_RTE_VIRTIO_USER=n as the default macro value. Fixes: ce2eabdd43ec ("net/virtio-user: add virtual device") Reported-by: Ferruh Yigit Signed-off-by: Jianfeng Tan Acked-by: Yuanhan Liu --- config/common_base | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/common_base b/config/common_base index cfee8257e5..78305356fd 100644 --- a/config/common_base +++ b/config/common_base @@ -281,6 +281,11 @@ CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_TX=n CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_DRIVER=n CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_DUMP=n +# +# Compile virtio device emulation inside virtio PMD driver +# +CONFIG_RTE_VIRTIO_USER=n + # # Compile burst-oriented VMXNET3 PMD driver # -- 2.20.1