[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20160905170002.18792-1-colin.king@canonical.com>
Date: Mon, 5 Sep 2016 18:00:02 +0100
From: Colin King <colin.king@...onical.com>
To: "David S . Miller" <davem@...emloft.net>,
David Howells <dhowells@...hat.com>, netdev@...r.kernel.org
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] rxrpc: initialize sched to false to ensure it is not a garbage value
From: Colin Ian King <colin.king@...onical.com>
sched will be uninitialized (and contain a garbage value) in the case
where call->state >= RXRPC_CALL_DEAD; fix this by initializing sched
to false to avoid an inadvertent call to rxrpc_queue_call.
Signed-off-by: Colin Ian King <colin.king@...onical.com>
---
net/rxrpc/call_object.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/rxrpc/call_object.c b/net/rxrpc/call_object.c
index 516d8ea..57e00fc 100644
--- a/net/rxrpc/call_object.c
+++ b/net/rxrpc/call_object.c
@@ -586,7 +586,7 @@ static void rxrpc_dead_call_expired(unsigned long _call)
*/
static void rxrpc_mark_call_released(struct rxrpc_call *call)
{
- bool sched;
+ bool sched = false;
rxrpc_see_call(call);
write_lock(&call->state_lock);
--
2.9.3
Powered by blists - more mailing lists