projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b67d801
)
qeth: fix race condition during device startup
author
Frank Blaschka
<frank.blaschka@de.ibm.com>
Mon, 8 Nov 2010 03:03:49 +0000
(
03:03
+0000)
committer
David S. Miller
<davem@davemloft.net>
Mon, 8 Nov 2010 20:17:08 +0000
(12:17 -0800)
QDIO is running independent from netdevice state. We are not
allowed to schedule NAPI in case the netdevice is not open.
Signed-off-by: Frank Blaschka <frank.blaschka@de.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/s390/net/qeth_core_main.c
patch
|
blob
|
history
diff --git
a/drivers/s390/net/qeth_core_main.c
b/drivers/s390/net/qeth_core_main.c
index 09ab6a2d3e495e2b4777abb616602b871785b6da..e6b2df0e73f56a4b143365be8302875c600c49bc 100644
(file)
--- a/
drivers/s390/net/qeth_core_main.c
+++ b/
drivers/s390/net/qeth_core_main.c
@@
-2903,7
+2903,7
@@
void qeth_qdio_start_poll(struct ccw_device *ccwdev, int queue,
{
struct qeth_card *card = (struct qeth_card *)card_ptr;
- if (card->dev)
+ if (card->dev
&& (card->dev->flags & IFF_UP)
)
napi_schedule(&card->napi);
}
EXPORT_SYMBOL_GPL(qeth_qdio_start_poll);