[<prev] [next>] [<thread-prev] [thread-next>] [month] [year] [list]
Date: Tue, 01 Apr 2008 10:27:00 +0200
From: frank.blaschka@...ibm.com
To: jgarzik@...ox.com
Subject: [patch 8/8] qeth: keep ip-address after LAN_OFFLINE failure
From: Ursula Braun <braunu@...ibm.com>
Problem: If setting of an ip-address fails with LAN_OFFLINE,
qeth does not save the ip-address in its internal
list of set ip-addresses. qeth recovers after a
following STARTLAN event, but cannot set the unsaved
ip-address.
Solution: save the ip-address in the qeth-maintained list of
ip-addresses after a LAN_OFFLINE failure for SETIP.
Signed-off-by: Ursula Braun <braunu@...ibm.com>
Signed-off-by: Frank Blaschka <frank.blaschka@...ibm.com>
---
drivers/s390/net/qeth_l3_main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: git_davem-2.6.26/drivers/s390/net/qeth_l3_main.c
===================================================================
--- git_davem-2.6.26.orig/drivers/s390/net/qeth_l3_main.c 2008-03-31 13:21:04.000000000 +0200
+++ git_davem-2.6.26/drivers/s390/net/qeth_l3_main.c 2008-03-31 13:21:41.000000000 +0200
@@ -461,7 +461,7 @@
spin_unlock_irqrestore(&card->ip_lock, flags);
rc = qeth_l3_register_addr_entry(card, todo);
spin_lock_irqsave(&card->ip_lock, flags);
- if (!rc)
+ if (!rc || (rc == IPA_RC_LAN_OFFLINE))
list_add_tail(&todo->entry, &card->ip_list);
else
kfree(todo);
--
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Hosted by DataForce ISP -
Powered by Openwall GNU/*/Linux