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

Commit beb58427 authored by David S. Miller's avatar David S. Miller
Browse files

Merge branch 'mac80211'



Phoebe Buckheister says:

====================
mac802154: llsec oversights

Fixes an unlock operation not matching a previous lock operation in an
unlikely error path and removes a redundant check.
====================

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents 68bc74fe 62e9c117
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -773,10 +773,10 @@ int mac802154_llsec_encrypt(struct mac802154_llsec *sec, struct sk_buff *skb)
	rc = llsec_do_encrypt(skb, sec, &hdr, key);
	llsec_key_put(key);

	return rc < 0 ? rc : 0;
	return rc;

fail_read:
	read_unlock(&sec->lock);
	read_unlock_bh(&sec->lock);
fail:
	rcu_read_unlock();
	return rc;