Hi all, Today's linux-next merge of the net tree got a conflict in drivers/scsi/iscsi_tcp.c between commit d7d05548a62c87ee55b0c81933669177f885aa8d ("[SCSI] iscsi_tcp: fix relogin/shutdown hang") from the tree and commit aa395145165cb06a0d0885221bbe0ce4a564391d ("net: sk_sleep() helper") from the net tree. I fixed it up (see below) and can carry the fix for a while. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx diff --cc drivers/scsi/iscsi_tcp.c index cdb4fd8,9eae04a..0000000 --- a/drivers/scsi/iscsi_tcp.c +++ b/drivers/scsi/iscsi_tcp.c @@@ -601,9 -599,9 +601,9 @@@ static void iscsi_sw_tcp_conn_stop(stru set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx); write_unlock_bh(&tcp_sw_conn->sock->sk->sk_callback_lock); - if (sock->sk->sk_sleep) { - if (sk_sleep(sock->sk) && waitqueue_active(sk_sleep(sock->sk))) { ++ if (sk_sleep(sock->sk)) { sock->sk->sk_err = EIO; - wake_up_interruptible(sock->sk->sk_sleep); + wake_up_interruptible(sk_sleep(sock->sk)); } iscsi_conn_stop(cls_conn, flag); -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html