X-Git-Url: https://git.stricted.de/?a=blobdiff_plain;f=security%2Fsecurity.c;h=d6ab2d2b363dace7394b060a2a64646762dc0d1f;hb=4a2455f795a889c7c76c55abe4ce50bdd5175e5f;hp=a3dce87d1aeffccb92181631ef2687baec41d36c;hpb=f755407dd19072b7d20719bc5454caed9ab41cc1;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git diff --git a/security/security.c b/security/security.c index a3dce87d1aef..d6ab2d2b363d 100644 --- a/security/security.c +++ b/security/security.c @@ -134,6 +134,26 @@ int __init register_security(struct security_operations *ops) /* Security operations */ +int security_binder_set_context_mgr(struct task_struct *mgr) +{ + return security_ops->binder_set_context_mgr(mgr); +} + +int security_binder_transaction(struct task_struct *from, struct task_struct *to) +{ + return security_ops->binder_transaction(from, to); +} + +int security_binder_transfer_binder(struct task_struct *from, struct task_struct *to) +{ + return security_ops->binder_transfer_binder(from, to); +} + +int security_binder_transfer_file(struct task_struct *from, struct task_struct *to, struct file *file) +{ + return security_ops->binder_transfer_file(from, to, file); +} + int security_ptrace_access_check(struct task_struct *child, unsigned int mode) { #ifdef CONFIG_SECURITY_YAMA_STACKED