Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'v6.16-p4' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6

Pull crypto fix from Herbert Xu:
"Fix a broken self-test in hkdf (new regression)"

* tag 'v6.16-p4' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6:
crypto: hkdf - move to late_initcall

+1 -1
+1 -1
crypto/hkdf.c
··· 566 566 567 567 static void __exit crypto_hkdf_module_exit(void) {} 568 568 569 - module_init(crypto_hkdf_module_init); 569 + late_initcall(crypto_hkdf_module_init); 570 570 module_exit(crypto_hkdf_module_exit); 571 571 572 572 MODULE_LICENSE("GPL");