From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id 433BE200 for ; Tue, 1 May 2018 16:01:45 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 705B8227E5; Tue, 1 May 2018 10:01:44 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Tue, 01 May 2018 10:01:44 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=GrWlVqKZqcFKvrXdwDTWDP+dUA +S8OzyT6viP1OFkW0=; b=kCvTx0f4miizZRrLOUc6dPuTptBh7VBqCWgNMlESMJ cJNdofnNfXLFgJBAZMxaCfJgYnQjy+KiF94O2T1LODLqIL645BitUhCo0RF+Cd4B dGP6LhlutHwgXsDhs1bZT5s58eJMFLG6OaGaoX7cE4IDZBiVigyDgg+37LQYYPEq A= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=GrWlVq KZqcFKvrXdwDTWDP+dUA+S8OzyT6viP1OFkW0=; b=MSEhP/lGs94F/cZDpW36D/ kHKrQ3gNhxyl/7X9JwUVH6W9l0jkmQ3b38IqG0WyqE6koEfmPTzED8WJrxLSEqAZ nGK6jRON+UpP9zwOX9tqhRfHufhgrclLiaIexbN6niPFtbuQFYUSHyC3oTDDqjs6 VLbDfJ9BhjnHJlBZD3kJFnQRsoDJsc5gx6sGzGYNOPphx0Mv8qR61139DvfG4PX9 Q1LM/i7wbRpZAfOb0zWsQZMRpQdWW04OYgHs26e1JbEXQRAopI18kr9P4fcDBSqq 1QwS9LU2eQwG1f9jYy8mdDjDZaJCK7OGVnKFvM4tFU4dIvzBB2kIlr4qTFS7UoVQ == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id A31A1E4812; Tue, 1 May 2018 10:01:43 -0400 (EDT) From: Thomas Monjalon To: Ferruh Yigit , xuemingl@mellanox.com Cc: dev@dpdk.org Date: Tue, 01 May 2018 16:01:42 +0200 Message-ID: <14979049.G4nOY0bchV@xps> In-Reply-To: <20180501133343.125260-1-ferruh.yigit@intel.com> References: <20180501133343.125260-1-ferruh.yigit@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] ethdev: fix applications failure on configure X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 May 2018 14:01:45 -0000 01/05/2018 15:33, Ferruh Yigit: > Many sample applications fail because of > dev_info.flow_type_rss_offloads check in rte_eth_dev_configure() We need to define the API behaviour in doxygen. > The sample applications need to be fixed/updated before returning error > on rte_eth_dev_configure() > > This patch keeps the error log but removes returning error. If the doc is updated in 18.05, we can have a deprecation notice to insert the error return in 18.08. > Fixes: 8863a1fbfc66 ("ethdev: add supported hash function check") > Cc: xuemingl@mellanox.com > > Signed-off-by: Ferruh Yigit