netiucv: improve state checking in conn_action_txdone
authorUrsula Braun <ursula.braun@de.ibm.com>
Mon, 16 Dec 2013 08:44:51 +0000 (09:44 +0100)
committerDavid S. Miller <davem@davemloft.net>
Tue, 17 Dec 2013 22:17:13 +0000 (17:17 -0500)
state checking in conn_action_txdone() is inconsistent.
This patch makes it consistent and issues a trace message
if an unexpected state is detected for the netiucv device.

Signed-off-by: Ursula Braun <ursula.braun@de.ibm.com>
Signed-off-by: Frank Blaschka <frank.blaschka@de.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/s390/net/netiucv.c

index 9b333fcf1a4c38ea45d352f253aaa47838d78c91..ce16d1bdb20a2fb24b3cc557a62c7aba25a8ca58 100644 (file)
@@ -739,8 +739,12 @@ static void conn_action_txdone(fsm_instance *fi, int event, void *arg)
 
        IUCV_DBF_TEXT(trace, 4, __func__);
 
-       if (conn && conn->netdev)
-               privptr = netdev_priv(conn->netdev);
+       if (!conn || !conn->netdev) {
+               IUCV_DBF_TEXT(data, 2,
+                             "Send confirmation for unlinked connection\n");
+               return;
+       }
+       privptr = netdev_priv(conn->netdev);
        conn->prof.tx_pending--;
        if (single_flag) {
                if ((skb = skb_dequeue(&conn->commit_queue))) {