Searched defs:option (Results 1 - 4 of 4) sorted by relevance

/security/yama/
H A Dyama_lsm.c145 * @option: operation
152 * does not handle the given option.
154 int yama_task_prctl(int option, unsigned long arg2, unsigned long arg3, argument
160 rc = cap_task_prctl(option, arg2, arg3, arg4, arg5);
164 switch (option) {
/security/
H A Dcommoncap.c6 * (at your option) any later version.
701 * Keeping uid 0 is not an option because uid 0 owns too many vital
857 * @option: The process control function requested
867 int cap_task_prctl(int option, unsigned long arg2, unsigned long arg3, argument
873 switch (option) {
H A Dsecurity.c11 * (at your option) any later version.
968 int security_task_prctl(int option, unsigned long arg2, unsigned long arg3, argument
973 rc = yama_task_prctl(option, arg2, arg3, arg4, arg5);
977 return security_ops->task_prctl(option, arg2, arg3, arg4, arg5);
/security/selinux/
H A Dhooks.c807 printk(KERN_WARNING "SELinux: defcontext option is "
997 printk(KERN_WARNING "SELinux: unknown mount option\n");
1104 /* we need a comma before each option */
2480 static inline int match_prefix(char *prefix, int plen, char *option, int olen) argument
2485 return !memcmp(prefix, option, plen);
2488 static inline int selinux_option(char *option, int len) argument
2490 return (match_prefix(CONTEXT_STR, sizeof(CONTEXT_STR)-1, option, len) ||
2491 match_prefix(FSCONTEXT_STR, sizeof(FSCONTEXT_STR)-1, option, len) ||
2492 match_prefix(DEFCONTEXT_STR, sizeof(DEFCONTEXT_STR)-1, option, len) ||
2493 match_prefix(ROOTCONTEXT_STR, sizeof(ROOTCONTEXT_STR)-1, option, le
[all...]

Completed in 75 milliseconds