netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] davinci: da850/omap-l138: Add Carrier Link OK check in Davinci RX Handler
@ 2011-02-25  9:56 Hegde, Vinay
  2011-02-25 11:55 ` Sergei Shtylyov
  2011-02-25 13:16 ` Cyril Chemparathy
  0 siblings, 2 replies; 3+ messages in thread
From: Hegde, Vinay @ 2011-02-25  9:56 UTC (permalink / raw)
  To: netdev; +Cc: khilman, davinci-linux-open-source, linux-arm-kernel,
	Hegde, Vinay

This patch adds an additional check in the Davinci EMAC RX Handler,
which tests the __LINK_STATE_NOCARRIER flag along with the
__LINK_STATE_START flag as part EMAC shutting down procedure.

This avoids
WARNING: at drivers/net/davinci_emac.c:1040 emac_rx_handler+0xf8/0x120()
during rtcwake used to suspend the target for a specified duration.

Signed-off-by: Hegde, Vinay <vinay.hegde@ti.com>
---
 drivers/net/davinci_emac.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/davinci_emac.c b/drivers/net/davinci_emac.c
index 2a628d1..7018bfe 100644
--- a/drivers/net/davinci_emac.c
+++ b/drivers/net/davinci_emac.c
@@ -1008,7 +1008,7 @@ static void emac_rx_handler(void *token, int len, int status)
 	int			ret;
 
 	/* free and bail if we are shutting down */
-	if (unlikely(!netif_running(ndev))) {
+	if (unlikely(!netif_running(ndev) || !netif_carrier_ok(ndev))) {
 		dev_kfree_skb_any(skb);
 		return;
 	}
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-02-25 13:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-25  9:56 [PATCH] davinci: da850/omap-l138: Add Carrier Link OK check in Davinci RX Handler Hegde, Vinay
2011-02-25 11:55 ` Sergei Shtylyov
2011-02-25 13:16 ` Cyril Chemparathy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).