From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Hemminger Subject: Re: [PATCH] ethdev: add support for device offload capabilities Date: Thu, 25 Aug 2016 17:34:33 -0700 Message-ID: <20160825173433.44c2b2cb@xeon-e3> References: <1366116153-19785-1-git-send-email-ivan.boule@6wind.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org To: Ivan Boule Return-path: Received: from mail-pf0-f176.google.com (mail-pf0-f176.google.com [209.85.192.176]) by dpdk.org (Postfix) with ESMTP id 714855689 for ; Fri, 26 Aug 2016 02:34:21 +0200 (CEST) Received: by mail-pf0-f176.google.com with SMTP id x72so22581785pfd.2 for ; Thu, 25 Aug 2016 17:34:21 -0700 (PDT) In-Reply-To: <1366116153-19785-1-git-send-email-ivan.boule@6wind.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Tue, 16 Apr 2013 14:42:33 +0200 Ivan Boule wrote: > + /* Default device offload capabilities to zero */ > + dev_info->rx_offload_capa = 0; > + dev_info->tx_offload_capa = 0; dev_info is already memset to 0 about 3 lines before this so this is unnecessary.