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

Pull crypto fix from Herbert Xu:
"This adds missing SELinux labeling to AF_ALG sockets which apparently
causes SELinux (or at least the SELinux people) to misbehave :)"

* git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6:
crypto: af_alg - properly label AF_ALG socket

+2
+2
crypto/af_alg.c
··· 21 21 #include <linux/module.h> 22 22 #include <linux/net.h> 23 23 #include <linux/rwsem.h> 24 + #include <linux/security.h> 24 25 25 26 struct alg_type_list { 26 27 const struct af_alg_type *type; ··· 244 243 245 244 sock_init_data(newsock, sk2); 246 245 sock_graft(sk2, newsock); 246 + security_sk_clone(sk, sk2); 247 247 248 248 err = type->accept(ask->private, sk2); 249 249 if (err) {