My v7.3 pull request for keyrings has just a single bug fix.
 
 BR, Jarkko
 -----BEGIN PGP SIGNATURE-----
 
 iHUEABYKAB0WIQRE6pSOnaBC00OEHEIaerohdGur0gUCaopfmQAKCRAaerohdGur
 0j2FAP9b+9qHmkAomhpDKy2aSPu95s4/Fq8EAt9UKghdI4RrUwEAjP/nMnImt60K
 +nQwwu+Y1gBaSwcYw9IRL9dyn/bNAwo=
 =xk5R
 -----END PGP SIGNATURE-----

Merge tag 'for-next-keys-v7.3' of git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd

Pull TPM update from Jarkko Sakkinen:
 "Just a single bug fix"

* tag 'for-next-keys-v7.3' of git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd:
  KEYS: trusted: Fix TPM teardown ordering
This commit is contained in:
Linus Torvalds 2026-08-23 08:29:33 -07:00
commit 8552019d09

View File

@ -987,9 +987,9 @@ static int __init trusted_tpm_init(void)
static void trusted_tpm_exit(void)
{
if (chip) {
unregister_key_type(&key_type_trusted);
put_device(&chip->dev);
kfree(digests);
unregister_key_type(&key_type_trusted);
}
}