From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755100Ab3FPHlf (ORCPT ); Sun, 16 Jun 2013 03:41:35 -0400 Received: from perches-mx.perches.com ([206.117.179.246]:35731 "EHLO labridge.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1754991Ab3FPHle (ORCPT ); Sun, 16 Jun 2013 03:41:34 -0400 Message-ID: <1371368491.2116.0.camel@joe-AO722> Subject: Re: [PATCH v4] ethernet/arc/arc_emac - Add new driver From: Joe Perches To: Alexey Brodkin Cc: "netdev@vger.kernel.org" , Andy Shevchenko , Francois Romieu , Vineet Gupta , Mischa Jonker , Arnd Bergmann , Grant Likely , Rob Herring , Paul Gortmaker , "David S. Miller" , "linux-kernel@vger.kernel.org" , "devicetree-discuss@lists.ozlabs.org" Date: Sun, 16 Jun 2013 00:41:31 -0700 In-Reply-To: <4881796E12491D4BB15146FE0209CE643F5E7779@DE02WEMBXB.internal.synopsys.com> References: <1371327652-9368-1-git-send-email-abrodkin@synopsys.com> <1371328671.2117.6.camel@joe-AO722> <4881796E12491D4BB15146FE0209CE643F5E7779@DE02WEMBXB.internal.synopsys.com> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.6.4-0ubuntu1 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, 2013-06-15 at 20:47 +0000, Alexey Brodkin wrote: > On 06/16/2013 12:37 AM, Joe Perches wrote: > > On Sun, 2013-06-16 at 00:20 +0400, Alexey Brodkin wrote: [] > >> +static int arc_emac_rx(struct net_device *ndev, int budget) > > [] > >> + /* Prepare the BD for next cycle */ > >> + rx_buff->skb = netdev_alloc_skb_ip_align(ndev, buflen); > >> + if (unlikely(!rx_buff->skb)) { > >> + if (net_ratelimit()) > >> + netdev_err(ndev, "cannot allocate skb\n"); > > > > Unnecessary OOM message, might as well remove it. > > rx_dropped gives the same info. > > With all those error messages I wanted to make life easier (especially > for me) if errors appear. User will immediately know where problem > happened. Indeed "rx_dropped" (when it is used only once in driver) may > show where issue happened, but if later at some point "rx_dropped" will > be incremented in other locations then user won't understand immediately > where error happened. Alloc errors emit a dump_stack() already so this is redundant.