From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f41.google.com (mail-pa0-f41.google.com [209.85.220.41]) by dpdk.org (Postfix) with ESMTP id A3D8C9A91 for ; Thu, 7 Jan 2016 17:34:14 +0100 (CET) Received: by mail-pa0-f41.google.com with SMTP id cy9so262467986pac.0 for ; Thu, 07 Jan 2016 08:34:14 -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=PPMOL7HnnmhHpsNwphjdIcYFgWMr5cAaliizNqxnpp/5dFdGZbTHh+Xp1lKODP+4MK gekml5V8UyrkXVTtId1HY9OBvWhpUc47NuDD64x7geBJRLwGtX4KZfiTZ5w0WMZAI8Ay un6L/QlOkUfMXWVkOtH2Uugj7+JzQq1MXa6QVfdWSbXOgG7CTqotpmh3ROeDLbqOQ1+0 hC843okaVeDxgN04emID5lKV9jrRMn4I7oJN0UQzpsCCVA3VcVbgp8is5sU2s/2x+lw/ WYLp7urokpSfpudHwJp5FdUpW1w/JL+Egb/fy4EG11y3JEEhkDZO2eJrO1Muma+/6a/E kAYA== 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=JXoPnyK2Bh95pdgdkDHI/G+Ty+na1fkdg4Zogzn6ZU3Opn7acMZEY5WQsZ9s8BjDde Vz2NC3INCfsMnGniCEGhhqStGtL1ZnOmQIz0doSOwEjepZqi/nDWc+6FmDgRCbq/PIzt wqlebZHl2chV9TxYoid3ViLebnSz5X9UGLRaOs5LScNUwaq4ba9QN1pp5D8MOoRwSVFJ oDwZM+CoEJNoelj9AaPxRX+GcrrBOLfEP1AIdsxo7QyPcpZ16faSZMoaTP+m2jCI3iq+ eqb9DD5B14K2Jrq4voO/9YW9OCkqVKCGylrUDUYUtQj3rpR2UXWK9ablwffY6vRtah7a 2hGg== X-Gm-Message-State: ALoCoQkyx/7bpU4lINQQd64LBl4rOS1nzE5Y8umnbfccqghgEThTdW16TyqTlqVl61ZCMl/8LvSLGXKXR5KPsJSSCGBzTKnEeQ== X-Received: by 10.66.140.14 with SMTP id rc14mr110957770pab.65.1452184454068; Thu, 07 Jan 2016 08:34:14 -0800 (PST) Received: from santosh-Latitude-E5530-non-vPro.mvista.com ([111.93.218.67]) by smtp.gmail.com with ESMTPSA id yn8sm159454163pac.32.2016.01.07.08.34.11 (version=TLS1_1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 07 Jan 2016 08:34:13 -0800 (PST) From: Santosh Shukla To: dev@dpdk.org Date: Thu, 7 Jan 2016 22:02:59 +0530 Message-Id: <1452184390-5994-3-git-send-email-sshukla@mvista.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1452184390-5994-1-git-send-email-sshukla@mvista.com> References: <1452184390-5994-1-git-send-email-sshukla@mvista.com> Subject: [dpdk-dev] [PATCH v3 02/12] 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, 07 Jan 2016 16:34:15 -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