summaryrefslogtreecommitdiff
path: root/security/security.c
diff options
context:
space:
mode:
authorBen Brewer <benbrewer@codethink.co.uk>2012-11-19 17:54:24 +0000
committerBen Brewer <benbrewer@codethink.co.uk>2012-11-19 17:54:24 +0000
commitda53d55583196c05e470c3dd8e24b24e22c3b741 (patch)
treeedafcd2f7858a668bb9c07fcee46cc2341fa4988 /security/security.c
parent5edf3233eb6a511a33d15dde7a97a069e8a47498 (diff)
downloadlinux-da53d55583196c05e470c3dd8e24b24e22c3b741.tar.gz
Applied AF_DBUS patch to kernelbaserock/genivi/af_dbus
Diffstat (limited to 'security/security.c')
-rw-r--r--security/security.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/security/security.c b/security/security.c
index 860aeb349cb3..efacf0292b51 100644
--- a/security/security.c
+++ b/security/security.c
@@ -1060,6 +1060,13 @@ int security_unix_may_send(struct socket *sock, struct socket *other)
}
EXPORT_SYMBOL(security_unix_may_send);
+int security_bus_connect(struct sock *sock, struct sock *other,
+ struct sock *newsk)
+{
+ return security_ops->bus_connect(sock, other, newsk);
+}
+EXPORT_SYMBOL(security_bus_connect);
+
int security_socket_create(int family, int type, int protocol, int kern)
{
return security_ops->socket_create(family, type, protocol, kern);