diff options
author | James Chapman <jchapman@katalix.com> | 2024-08-07 07:54:50 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2024-08-11 04:38:50 +0100 |
commit | abe7a1a7d0b69e63b1bca5f9531023a52336784f (patch) | |
tree | 1d491c6b824af17f97ef97824f5f61c8126a351d /net/l2tp/l2tp_core.h | |
parent | 1f4c3dce9112d23145b4f8bbfd3793a1c4c517ab (diff) | |
download | linux-abe7a1a7d0b69e63b1bca5f9531023a52336784f.tar.gz linux-abe7a1a7d0b69e63b1bca5f9531023a52336784f.tar.bz2 linux-abe7a1a7d0b69e63b1bca5f9531023a52336784f.zip |
l2tp: improve tunnel/session refcount helpers
l2tp_tunnel_inc_refcount and l2tp_session_inc_refcount wrap
refcount_inc. They add no value so just use the refcount APIs directly
and drop l2tp's helpers. l2tp already uses refcount_inc_not_zero
anyway.
Rename l2tp_tunnel_dec_refcount and l2tp_session_dec_refcount to
l2tp_tunnel_put and l2tp_session_put to better match their use pairing
various _get getters.
Signed-off-by: James Chapman <jchapman@katalix.com>
Signed-off-by: Tom Parkin <tparkin@katalix.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/l2tp/l2tp_core.h')
-rw-r--r-- | net/l2tp/l2tp_core.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/net/l2tp/l2tp_core.h b/net/l2tp/l2tp_core.h index 0fabacffc3f3..ffd8ced3a51f 100644 --- a/net/l2tp/l2tp_core.h +++ b/net/l2tp/l2tp_core.h @@ -209,10 +209,8 @@ static inline void *l2tp_session_priv(struct l2tp_session *session) } /* Tunnel and session refcounts */ -void l2tp_tunnel_inc_refcount(struct l2tp_tunnel *tunnel); -void l2tp_tunnel_dec_refcount(struct l2tp_tunnel *tunnel); -void l2tp_session_inc_refcount(struct l2tp_session *session); -void l2tp_session_dec_refcount(struct l2tp_session *session); +void l2tp_tunnel_put(struct l2tp_tunnel *tunnel); +void l2tp_session_put(struct l2tp_session *session); /* Tunnel and session lookup. * These functions take a reference on the instances they return, so |