From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Perches Subject: Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH Date: Thu, 26 Aug 2010 10:02:05 -0700 Message-ID: <1282842125.1875.124.camel@Joe-Laptop> References: <4C763A67.5040107@dsn.okisemi.com> <20100826090504.30ce58e5@nehalam> <1282839372.1875.78.camel@Joe-Laptop> <20100826092929.72b61549@nehalam> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Cc: Masayuki Ohtake , LKML , ML netdev , Greg Rose , Maxime Bizon , Kristoffer Glembo , Ralf Baechle , John Linn , Randy Dunlap , "David S. Miller" , MeeGo , "Wang, Qi" , "Wang, Yong Y" , Andrew , Intel OTC , "Foster, Margie" , Toshiharu Okada , Tomoya Morinaga , Takahiro Shimizu To: Stephen Hemminger Return-path: In-Reply-To: <20100826092929.72b61549@nehalam> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On Thu, 2010-08-26 at 09:29 -0700, Stephen Hemminger wrote: > On Thu, 26 Aug 2010 09:16:12 -0700 > Joe Perches wrote: > > My message logging order preference: > > if there's a netif_msg_ and a struct net_device > > netif_ (struct private *, netif_msg_, > > struct net_device *, fmt, args...) > > if there's a struct net_device > > netdev_ (struct net_device *, fmt, args...) > > if there's a struct device > > dev_ (struct device *, fmt, args...) > > otherwise > > pr_ (fmt, args...) > At this point in process, netdevice isn't registered so it > doesn't have a ethX name. so dev_info would be best. Yes, likely true. Ideally netdev_ is used after register_netdev. The default "eth%d" is printed after alloc_netdev but before register_netdev. Before commmit 256df2f3879efdb2e9808bdb1b54b16fbb11fa38 when netdev_s were converted to functions, they would also dereference a NULL pointer if used before register_netdev.