[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20130322183314.GA23163@longonot.mountain>
Date: Fri, 22 Mar 2013 21:33:15 +0300
From: Dan Carpenter <dan.carpenter@...cle.com>
To: "David S. Miller" <davem@...emloft.net>
Cc: James Chapman <jchapman@...alix.com>,
Tom Parkin <tparkin@...alix.com>,
Eric Dumazet <edumazet@...gle.com>, netdev@...r.kernel.org,
kernel-janitors@...r.kernel.org, kbuild@...org
Subject: [patch -next] l2tp: calling the ref() instead of deref()
This is a cut and paste typo. We call ->ref() a second time instead
of ->deref().
Signed-off-by: Dan Carpenter <dan.carpenter@...cle.com>
---
Only needed in linux-next.
diff --git a/net/l2tp/l2tp_core.c b/net/l2tp/l2tp_core.c
index 8aecf5d..6984c3a 100644
--- a/net/l2tp/l2tp_core.c
+++ b/net/l2tp/l2tp_core.c
@@ -1777,7 +1777,7 @@ int l2tp_session_delete(struct l2tp_session *session)
if (session->session_close != NULL)
(*session->session_close)(session);
if (session->deref)
- (*session->ref)(session);
+ (*session->deref)(session);
l2tp_session_dec_refcount(session);
return 0;
}
--
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