From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f52.google.com (mail-pa0-f52.google.com [209.85.220.52]) by dpdk.org (Postfix) with ESMTP id 94F8B8E96 for ; Thu, 14 Jan 2016 14:28:53 +0100 (CET) Received: by mail-pa0-f52.google.com with SMTP id yy13so284416702pab.3 for ; Thu, 14 Jan 2016 05:28:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mvista-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=BhVPeE0pa9n/aZZGygobmpLIxuGp1XP5dItQG6Fpt/Q=; b=2BbfAI/4C4UYaRSCxQFXgP50ITlLTYFa3DsfNB1AgN4QwXgIiCCwT/apDuyggxyijN P9+n8d2C+xUimp5smEoGDC+5XitlW3bDuzCOwHmjQz8QfmtTs2cFgOtSH6rP3FMoZn57 3gWqHLFAeeyqLQqMTUxiVKhPBeKvI7KYQkCXEjHml54JYi2aCsxgIVYkBN5TxqlslLpt aA59MqtBiRI+igbHUFbelw/7CruNVsjIB5nghjzvOlSc8VxCZCIXltlQ96P37iRXrb0G d4eQ4m04dVmV91RNSIiJyYCooD7YF+SQVEtjdTFvyZUrEtHKHne7/kwtLLhoLZ2JjVyf F2KA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=BhVPeE0pa9n/aZZGygobmpLIxuGp1XP5dItQG6Fpt/Q=; b=ek1W1zYcQXposnzacJKD89zM82k3UztDWslfF6VozgJnwFz6yovVSNknoNbk/SPlRA DfsIN2oaC8mYASfgIQoJ1v3PRSjz6zSYoBL1yQb4Kiv3CbaMiWWRYLN0PyoQ2v32cFDg 9x0DeRlAg2a7bgapC6XfzeJQfyMNeKrK4Tt3jqhmE4W5EL9JobYBKpVO3Mk8O5+QMR++ Vw3dY62nLIn9R7Je3hJTHFUdHGcB/Na/39S8P5WzaZ1NiTt2d+pUJm0dRGpTxaMCdT6A qW5qQMc6erh/Yj5Mm0TEsoXi6GFdaz+dlCvvT7gEFxyJhNM0R9ZZN0aFQXHPRG6t4P7T 0qng== X-Gm-Message-State: ALoCoQkQeefDf7YJ1HRT+mAjRBRcjGueG+nwvCxJXI8FjL9Bgd3aKXQrBu64HN6dcv7uO4xf0euNhJprUR5y+YcbnAbmUc+F6Q== X-Received: by 10.67.6.195 with SMTP id cw3mr5895747pad.88.1452778132883; Thu, 14 Jan 2016 05:28:52 -0800 (PST) Received: from santosh-Latitude-E5530-non-vPro.mvista.com ([111.93.218.67]) by smtp.gmail.com with ESMTPSA id v71sm9438472pfi.91.2016.01.14.05.28.50 (version=TLS1_1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 14 Jan 2016 05:28:52 -0800 (PST) From: Santosh Shukla To: dev@dpdk.org Date: Thu, 14 Jan 2016 18:58:25 +0530 Message-Id: <1452778117-30178-3-git-send-email-sshukla@mvista.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1452778117-30178-1-git-send-email-sshukla@mvista.com> References: <1452778117-30178-1-git-send-email-sshukla@mvista.com> Subject: [dpdk-dev] [PATCH v4 02/14] config: i686: set RTE_VIRTIO_INC_VECTOR=n X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jan 2016 13:28:54 -0000 i686 target config example: config/defconfig_i686-native-linuxapp-gcc says "Vectorized PMD is not supported on 32-bit". So setting RTE_VIRTIO_INC_VECTOR to 'n'. Signed-off-by: Santosh Shukla --- config/defconfig_i686-native-linuxapp-gcc | 1 + config/defconfig_i686-native-linuxapp-icc | 1 + 2 files changed, 2 insertions(+) diff --git a/config/defconfig_i686-native-linuxapp-gcc b/config/defconfig_i686-native-linuxapp-gcc index a90de9b..a4b1c49 100644 --- a/config/defconfig_i686-native-linuxapp-gcc +++ b/config/defconfig_i686-native-linuxapp-gcc @@ -49,3 +49,4 @@ CONFIG_RTE_LIBRTE_KNI=n # Vectorized PMD is not supported on 32-bit # CONFIG_RTE_IXGBE_INC_VECTOR=n +CONFIG_RTE_VIRTIO_INC_VECTOR=n diff --git a/config/defconfig_i686-native-linuxapp-icc b/config/defconfig_i686-native-linuxapp-icc index c021321..f8eb6ad 100644 --- a/config/defconfig_i686-native-linuxapp-icc +++ b/config/defconfig_i686-native-linuxapp-icc @@ -49,3 +49,4 @@ CONFIG_RTE_LIBRTE_KNI=n # Vectorized PMD is not supported on 32-bit # CONFIG_RTE_IXGBE_INC_VECTOR=n +CONFIG_RTE_VIRTIO_INC_VECTOR=n -- 1.7.9.5