Skip to content

Commit

Permalink
l2tp: avoid duplicated code in l2tp_tunnel_closeall
Browse files Browse the repository at this point in the history
l2tp_tunnel_closeall is called as a part of tunnel shutdown in order to
close all the sessions held by the tunnel.  The code it uses to close a
session duplicates what l2tp_session_delete does.

Rather than duplicating the code, have l2tp_tunnel_closeall call
l2tp_session_delete instead.

This involves a very minor change to locking in l2tp_tunnel_closeall.
Previously, l2tp_tunnel_closeall checked the session "dead" flag while
holding tunnel->hlist_lock.  This allowed for the code to step to the
next session in the list without releasing the lock if the current
session happened to be in the process of closing already.

By calling l2tp_session_delete instead, l2tp_tunnel_closeall must now
drop and regain the hlist lock for each session in the tunnel list.
Given that the likelihood of a session being in the process of closing
when the tunnel is closed, it seems worth this very minor potential
loss of efficiency to avoid duplication of the session delete code.

Signed-off-by: Tom Parkin <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
tomparkin authored and davem330 committed Sep 3, 2020
1 parent 45faeff commit 9d319a8
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions net/l2tp/l2tp_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1191,22 +1191,10 @@ static void l2tp_tunnel_closeall(struct l2tp_tunnel *tunnel)
again:
hlist_for_each_safe(walk, tmp, &tunnel->session_hlist[hash]) {
session = hlist_entry(walk, struct l2tp_session, hlist);

hlist_del_init(&session->hlist);

if (test_and_set_bit(0, &session->dead))
goto again;

write_unlock_bh(&tunnel->hlist_lock);

l2tp_session_unhash(session);
l2tp_session_queue_purge(session);

if (session->session_close)
(*session->session_close)(session);

l2tp_session_dec_refcount(session);

l2tp_session_delete(session);
write_lock_bh(&tunnel->hlist_lock);

/* Now restart from the beginning of this hash
Expand Down

0 comments on commit 9d319a8

Please sign in to comment.