From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f175.google.com (mail-wi0-f175.google.com [209.85.212.175]) by dpdk.org (Postfix) with ESMTP id 2E08411F5 for ; Thu, 2 Jul 2015 11:04:20 +0200 (CEST) Received: by wiwl6 with SMTP id l6so189873801wiw.0 for ; Thu, 02 Jul 2015 02:04:20 -0700 (PDT) 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:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=sseADiEq5Gxf1bSfsT8aL3zLXflv+pEuvpK6TUeTvGY=; b=cC/uCzb5Jn8nqZfQCQMRXZPUw0t/7RbqpgmVRmT3s6VcyNhCdpmZljtjC8KW6C9MNT 3/ycUaNpSl94VtuAOfPMi26CWjYGdS3LafEMtx7es9BH4+h/R2sAGR4dhcaTIN5jeahf h3Kn94Y5cvKKLUCsWvfVtiptekeyKfWSYU6/Tw2gWnZOFX8ReShTdGTbEjRrag+f/I/H B2uWNO1mHU8y3DB728RJ1v3D0bAc19JHMrG6Qr+ki1i/Woc5hFWEcTEH7xUp4Hlc/RU+ B5YK5zvGYfCF0sG2mcUHUGyKfdQqLbxQVDacOXg+9jRkktAu4Ln5Mo+xpnSIEW1bWg6Z pIQQ== X-Gm-Message-State: ALoCoQmjo3g4I/zbs5/c5GEV94M+dXBcMhSCYsu1OIAUATqzvoHLPhnpXdfh8Cjd/pjpf/YNUNTA X-Received: by 10.194.243.230 with SMTP id xb6mr57088736wjc.13.1435827860038; Thu, 02 Jul 2015 02:04:20 -0700 (PDT) Received: from xps13.localnet (6wind.net2.nerim.net. [213.41.151.210]) by mx.google.com with ESMTPSA id q4sm6995578wju.14.2015.07.02.02.04.18 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 02 Jul 2015 02:04:19 -0700 (PDT) From: Thomas Monjalon To: Helin Zhang Date: Thu, 02 Jul 2015 11:03:12 +0200 Message-ID: <2278949.vAGEnvExkx@xps13> Organization: 6WIND User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; ) In-Reply-To: <1435024235-19483-2-git-send-email-helin.zhang@intel.com> References: <1434701661-9943-1-git-send-email-helin.zhang@intel.com> <1435024235-19483-1-git-send-email-helin.zhang@intel.com> <1435024235-19483-2-git-send-email-helin.zhang@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v8 01/18] mbuf: redefine packet_type in rte_mbuf 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, 02 Jul 2015 09:04:20 -0000 2015-06-23 09:50, Helin Zhang: > In order to unify the packet type, the field of 'packet_type' in > 'struct rte_mbuf' needs to be extended from 16 to 32 bits. > Accordingly, some fields in 'struct rte_mbuf' are re-organized to > support this change for Vector PMD. As 'struct rte_kni_mbuf' for > KNI should be right mapped to 'struct rte_mbuf', it should be > modified accordingly. In addition, Vector PMD of ixgbe is disabled > by default, as 'struct rte_mbuf' changed. [...] > -CONFIG_RTE_IXGBE_INC_VECTOR=y > +CONFIG_RTE_IXGBE_INC_VECTOR=n It is the default configuration. Disabling it do not prevent from build break during a "git bisect". Please merge the changes for vector ixgbe in this patch.