From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: Getting issue while bringin Bond with VMXNET3 (DPDK 17.11) Date: Tue, 9 Oct 2018 08:59:04 +0100 Message-ID: <114cf36c-af37-809f-0b96-5e06f62367d4@intel.com> References: <48d92b8e-a2fd-0818-e65d-e38560d5f5c0@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org, Yong Wang To: chetan bhasin , 3chas3@gmail.com Return-path: Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id CBD9A5A6E for ; Tue, 9 Oct 2018 10:05:13 +0200 (CEST) In-Reply-To: Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 10/9/2018 5:35 AM, chetan bhasin wrote: > Thanks for your reply . > > The issue coming in function "vmxnet3_dev_tx_queue_setup" > > below if condition is true because "tx_conf->txq_flags is coming as 0" > > if ((tx_conf->txq_flags & ETH_TXQ_FLAGS_NOXSUMSCTP) != > ETH_TXQ_FLAGS_NOXSUMSCTP) { > PMD_INIT_LOG(ERR, "SCTP checksum offload not supported"); > return -EINVAL; > } Hi Chetan, In v17.11, all Tx offloads are enabled by default and can be disabled via tx_conf->txq_flags. Above code says PMD is not supporting SCTP checksum offload but you are requesting it, by passing "txq_flags == 0", and PMD fails. You need to pass at least "txq_flags = ETH_TXQ_FLAGS_NOXSUMSCTP" to be able to use vmxnet3. +cc vmxnet3 maintainer > > Regards, > Chetan Bhasin > > On Tue, Oct 9, 2018 at 7:11 AM Chas Williams <3chas3@gmail.com> wrote: > >> Any other error messages? There's really only one path out of >> slave_configure() that doesn't emit another error message and >> that's slave_configure_slow_queue. You need to set dedicated_queues to >> be enabled to see that happen. >> >> On 10/07/18 01:12, chetan bhasin wrote: >>> Can anybody suggest? Stuck right now! >>> >>> On Sat, Oct 6, 2018, 17:02 chetan bhasin >> wrote: >>> >>>> Hi Dpdk Champs, >>>> >>>> I am facing an issue while bringing bonding on VM having vmxnet3 >>>> interfaces. >>>> >>>> Below error is coming in the log - >>>> >>>> PMD: bond_ethdev_start(1959) - bonded port (2) failed to reconfigure >> slave >>>> device (0). >>>> >>>> Please suggest. >>>> >>>> Thanks, >>>> Chetan Bhasin >>>> >>