From mboxrd@z Thu Jan 1 00:00:00 1970 From: error27@gmail.com (Dan Carpenter) Date: Tue, 17 Aug 2010 20:35:52 +0200 Subject: [PATCH] ether3: Use net_device_stats from struct net_device In-Reply-To: <1282061733-19700-1-git-send-email-tklauser@distanz.ch> References: <1282061733-19700-1-git-send-email-tklauser@distanz.ch> Message-ID: <20100817183551.GI645@bicker> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Tue, Aug 17, 2010 at 06:15:33PM +0200, Tobias Klauser wrote: > struct net_device has its own struct net_device_stats member, so use > this one instead of a private copy in the ether1_priv struct. > Two were missed, one from ether3_init_for_open() memset(&priv(dev)->stats, 0, sizeof(struct net_device_stats)); and another from ether3_rx(). struct net_device_stats *stats = &priv(dev)->stats; regards, dan carpenter