From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id 5426E1B297 for ; Thu, 18 Jan 2018 11:30:17 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id B624C20BE5; Thu, 18 Jan 2018 05:30:16 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Thu, 18 Jan 2018 05:30:16 -0500 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=qrMzcdBZgSyrk4l3pS3diFebTc +Z0cK/8DQ+w5jM3iw=; b=FgfRpUtVx3YR6o3IOi98FHB9GRK+j+KF02niunDqWo o1lskuY/P+KPA6FQyUrBryWrKoP8/p/PR6Au5s3hTWiXM2KiLR1YqMZJyKZcxwG6 OiArzhNulV5jLr13D+KqUDY+vPaCHmI0Ml+H3WCbcoKmzLANKx8zqoNcx45cap0S 0= 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=fm1; bh=qrMzcd BZgSyrk4l3pS3diFebTc+Z0cK/8DQ+w5jM3iw=; b=DeB4w9S0Ejndctg9S8QrR4 piePFSdS8R3EcxcNOZu5ncDH6ZjMftgQDzSfZILi0m6HGwQzUDXTeZrMBG8Mn7VU 1qONmkBVt9F1ceCBtSwo2ifYN9PN1txs3WT8j7MZMkYPe1vi4/pD/4RRItim1zsD hObXzZBySr/4yuMu8lj54vQm6/fkzvMEb+rrBDpAQLzmzUgn7GnFSKi+/ICaQCC5 AQWSSN7hllVCp3TSeHbxfh+UIS2yWDnLEkuF4bU+tT3qJjUQfeKuAiBlByXO+HcW fgc2FbVEJOFhnN8pzBMBI17pbA26JT3eRInEa5K/cDC+EQN6Xz47mZaJR4qA3IZw == 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 670287E34D; Thu, 18 Jan 2018 05:30:16 -0500 (EST) From: Thomas Monjalon To: Andrew Rybchenko Cc: dev@dpdk.org, Ivan Malov , Ferruh Yigit , Shahaf Shuler Date: Thu, 18 Jan 2018 11:29:42 +0100 Message-ID: <1858503.KEvBiRWZHE@xps> In-Reply-To: <1516268671-29894-2-git-send-email-arybchenko@solarflare.com> References: <1515658359-1041-1-git-send-email-arybchenko@solarflare.com> <1516268671-29894-1-git-send-email-arybchenko@solarflare.com> <1516268671-29894-2-git-send-email-arybchenko@solarflare.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v4 1/6] ethdev: add a function to look up Rx offload names 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: Thu, 18 Jan 2018 10:30:17 -0000 18/01/2018 10:44, Andrew Rybchenko: > From: Ivan Malov > > Commonly, drivers converted to the new offload API > may need to log unsupported offloads as a response > to wrong settings. From this perspective, it would > be convenient to have generic functions to look up > offload names. The patch adds such a helper for Rx. > > Signed-off-by: Ivan Malov > Signed-off-by: Andrew Rybchenko > Reviewed-by: Ferruh Yigit Acked-by: Thomas Monjalon