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

Configure Feed

Select the types of activity you want to include in your feed.

Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6

* git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6:
[CRYPTO] skcipher: Fix section mismatches

+2 -6
+1 -3
crypto/chainiv.c
··· 318 318 { 319 319 return crypto_register_template(&chainiv_tmpl); 320 320 } 321 - EXPORT_SYMBOL_GPL(chainiv_module_init); 322 321 323 - void __exit chainiv_module_exit(void) 322 + void chainiv_module_exit(void) 324 323 { 325 324 crypto_unregister_template(&chainiv_tmpl); 326 325 } 327 - EXPORT_SYMBOL_GPL(chainiv_module_exit);
-2
crypto/eseqiv.c
··· 251 251 { 252 252 return crypto_register_template(&eseqiv_tmpl); 253 253 } 254 - EXPORT_SYMBOL_GPL(eseqiv_module_init); 255 254 256 255 void __exit eseqiv_module_exit(void) 257 256 { 258 257 crypto_unregister_template(&eseqiv_tmpl); 259 258 } 260 - EXPORT_SYMBOL_GPL(eseqiv_module_exit);
+1 -1
include/crypto/internal/skcipher.h
··· 68 68 int __init eseqiv_module_init(void); 69 69 void __exit eseqiv_module_exit(void); 70 70 int __init chainiv_module_init(void); 71 - void __exit chainiv_module_exit(void); 71 + void chainiv_module_exit(void); 72 72 73 73 static inline struct crypto_ablkcipher *skcipher_geniv_cipher( 74 74 struct crypto_ablkcipher *geniv)