From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas@monjalon.net>
Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com
 [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id 51B6B29AC
 for <dev@dpdk.org>; Tue,  1 May 2018 17:30:34 +0200 (CEST)
Received: from compute1.internal (compute1.nyi.internal [10.202.2.41])
 by mailout.nyi.internal (Postfix) with ESMTP id C0CF622451;
 Tue,  1 May 2018 11:30:33 -0400 (EDT)
Received: from mailfrontend1 ([10.202.2.162])
 by compute1.internal (MEProxy); Tue, 01 May 2018 11:30:33 -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=L1rwF66xydc9qqugnH4nH/SaPK
 tcPvlxdMbSQe68i1o=; b=ZiQEOS00YV+9cMT50H6h+H91LZEYYOd2qIAaIJ4bBR
 UbkwFpB0+iSmIjniBoox3Z4e7wGcxU3ljtUt4LimTf3Y/WAsWZ6TFoG78xEGvxs9
 Y4uTklE3489tgQNsVOalJAqm3qcKp6GNvzue882oS1qQNKPz3Ec+SmQJUOm+NTGs
 8=
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=L1rwF6
 6xydc9qqugnH4nH/SaPKtcPvlxdMbSQe68i1o=; b=ftQG5XuOUAyZeawGn/f20i
 GMtrO4dR+X6N6ilakqsa6PW/uHMtDAweyveZnqs7EDso1x/c0pxP00t9UrJojYHd
 d3yLYi/iykJXy3B30LdkShUd6TFlVNt1royumRWjx2Gy3Anr6l+L4HJqYh8p/uS3
 HN6itCbeIDA32C8qhM5kTd8BcGz0Z1fs9RmWpBEX3SLhpWy3VvlBwILJsz9anVTC
 knR1t15j0oPlQsg+ZVdvc8BV19YMnWLdznA5y1l+Np3lLgDteDhjYPas9W2PCjiI
 uAXX3t6kpKzmg3ip7zfFEsV58WiVTNQ/ZtqBlWY3oCI1knXEYuoAYijcbZYRSPKw
 ==
X-ME-Sender: <xms:GYjoWqgFCup3jf5JFm5ZRsHL-nhbNBYqZCasSvXEMAW8j3awvLEMig>
Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184])
 by mail.messagingengine.com (Postfix) with ESMTPA id 0465EE4E8F;
 Tue,  1 May 2018 11:30:32 -0400 (EDT)
From: Thomas Monjalon <thomas@monjalon.net>
To: Ferruh Yigit <ferruh.yigit@intel.com>
Cc: dev@dpdk.org, xuemingl@mellanox.com
Date: Tue, 01 May 2018 17:30:31 +0200
Message-ID: <5512562.2HDlAgTDzM@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 <dev.dpdk.org>
List-Unsubscribe: <https://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Tue, 01 May 2018 15:30:34 -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()
> 
> 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.
> 
> Fixes: 8863a1fbfc66 ("ethdev: add supported hash function check")
> Cc: xuemingl@mellanox.com
> 
> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>

Applied, thanks

We'll decide later whether we need to return an error in 18.08 or not.