From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH] doc: notify Rx errors not counting missed packets anymore Date: Tue, 22 Mar 2016 17:58:09 +0100 Message-ID: <12497659.FGO5KZWxLm@xps13> References: <1A27633A6DA49C4A92FCD5D4312DBF536B10163B@IRSMSX106.ger.corp.intel.com> <1458662263-16724-1-git-send-email-thomas.monjalon@6wind.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org To: maryam.tahhan@intel.com Return-path: Received: from mail-wm0-f46.google.com (mail-wm0-f46.google.com [74.125.82.46]) by dpdk.org (Postfix) with ESMTP id D94A029C6 for ; Tue, 22 Mar 2016 17:59:49 +0100 (CET) Received: by mail-wm0-f46.google.com with SMTP id p65so201358856wmp.1 for ; Tue, 22 Mar 2016 09:59:49 -0700 (PDT) In-Reply-To: <1458662263-16724-1-git-send-email-thomas.monjalon@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" 2016-03-22 16:57, Thomas Monjalon: > Fixes: 86057c9992f5 ("ethdev: remove missed packets from error counter") > > Suggested-by: Maryam Tahhan > Signed-off-by: Thomas Monjalon [...] > +* The ethdev statistics counter imissed is considered exclusive with ierrors. > + Every drivers are now counting the missed packets only once, and not > + incrementing ierrors anymore for not received packets. > + Applied with this rewording: * The ethdev statistics counter imissed is considered to be independent of ierrors. All drivers are now counting the missed packets only once, i.e. drivers will not increment ierrors anymore for missed packets. Thanks Maryam for suggesting