Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3acb458c authored by Lai Jiangshan's avatar Lai Jiangshan Committed by Paul E. McKenney
Browse files

security,rcu: convert call_rcu(user_update_rcu_disposal) to kfree_rcu()



The rcu callback user_update_rcu_disposal() just calls a kfree(),
so we use kfree_rcu() instead of the call_rcu(user_update_rcu_disposal).

Signed-off-by: default avatarLai Jiangshan <laijs@cn.fujitsu.com>
Signed-off-by: default avatarPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Acked-by: default avatarDavid Howells <dhowells@redhat.com>
Reviewed-by: default avatarJosh Triplett <josh@joshtriplett.org>
parent 75ef0368
Loading
Loading
Loading
Loading
+2 −14
Original line number Diff line number Diff line
@@ -68,18 +68,6 @@ int user_instantiate(struct key *key, const void *data, size_t datalen)

EXPORT_SYMBOL_GPL(user_instantiate);

/*
 * dispose of the old data from an updated user defined key
 */
static void user_update_rcu_disposal(struct rcu_head *rcu)
{
	struct user_key_payload *upayload;

	upayload = container_of(rcu, struct user_key_payload, rcu);

	kfree(upayload);
}

/*
 * update a user defined key
 * - the key's semaphore is write-locked
@@ -114,7 +102,7 @@ int user_update(struct key *key, const void *data, size_t datalen)
		key->expiry = 0;
	}

	call_rcu(&zap->rcu, user_update_rcu_disposal);
	kfree_rcu(zap, rcu);

error:
	return ret;
@@ -145,7 +133,7 @@ void user_revoke(struct key *key)

	if (upayload) {
		rcu_assign_pointer(key->payload.data, NULL);
		call_rcu(&upayload->rcu, user_update_rcu_disposal);
		kfree_rcu(upayload, rcu);
	}
}