[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1386975369-30837-1-git-send-email-khoroshilov@ispras.ru>
Date: Sat, 14 Dec 2013 02:56:09 +0400
From: Alexey Khoroshilov <khoroshilov@...ras.ru>
To: "David S. Miller" <davem@...emloft.net>,
David Howells <dhowells@...hat.com>
Cc: Alexey Khoroshilov <khoroshilov@...ras.ru>, netdev@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] [RXRPC]: do not unlock unheld spinlock in rxrpc_connect_exclusive()
If rx->conn is not NULL, rxrpc_connect_exclusive() does not
acquire the transport's client lock, but it still releases it.
The patch adds locking of the spinlock to this path.
Found by Linux Driver Verification project (linuxtesting.org).
Signed-off-by: Alexey Khoroshilov <khoroshilov@...ras.ru>
---
net/rxrpc/ar-connection.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/net/rxrpc/ar-connection.c b/net/rxrpc/ar-connection.c
index 4106ca95ec86..4790140a1722 100644
--- a/net/rxrpc/ar-connection.c
+++ b/net/rxrpc/ar-connection.c
@@ -381,6 +381,11 @@ static int rxrpc_connect_exclusive(struct rxrpc_sock *rx,
rxrpc_assign_connection_id(conn);
rx->conn = conn;
+ } else {
+ spin_lock(&trans->client_lock);
+
+ _net("CONNECT EXCL old %d on TRANS %d",
+ conn->debug_id, conn->trans->debug_id);
}
/* we've got a connection with a free channel and we can now attach the
--
1.8.3.2
--
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
Powered by blists - more mailing lists