Skip to content

Commit

Permalink
xfrm: policy: use recently added helper in more places
Browse files Browse the repository at this point in the history
No logical change intended.

Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
  • Loading branch information
Florian Westphal authored and Steffen Klassert committed Aug 28, 2024
1 parent e7cd191 commit 08c2182
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions net/xfrm/xfrm_policy.c
Original file line number Diff line number Diff line change
Expand Up @@ -1276,11 +1276,7 @@ static void xfrm_hash_rebuild(struct work_struct *work)
struct xfrm_pol_inexact_bin *bin;
u8 dbits, sbits;

if (policy->walk.dead)
continue;

dir = xfrm_policy_id2dir(policy->index);
if (dir >= XFRM_POLICY_MAX)
if (xfrm_policy_is_dead_or_sk(policy))
continue;

if ((dir & XFRM_POLICY_MASK) == XFRM_POLICY_OUT) {
Expand Down Expand Up @@ -1331,13 +1327,8 @@ static void xfrm_hash_rebuild(struct work_struct *work)

/* re-insert all policies by order of creation */
list_for_each_entry_reverse(policy, &net->xfrm.policy_all, walk.all) {
if (policy->walk.dead)
continue;
dir = xfrm_policy_id2dir(policy->index);
if (dir >= XFRM_POLICY_MAX) {
/* skip socket policies */
if (xfrm_policy_is_dead_or_sk(policy))
continue;
}

hlist_del_rcu(&policy->bydst);

Expand Down

0 comments on commit 08c2182

Please sign in to comment.