Lines Matching refs:sma
3994 int security_sem_alloc(struct kern_ipc_perm *sma) in security_sem_alloc() argument
3996 int rc = lsm_ipc_alloc(sma); in security_sem_alloc()
4000 rc = call_int_hook(sem_alloc_security, sma); in security_sem_alloc()
4002 security_sem_free(sma); in security_sem_alloc()
4012 void security_sem_free(struct kern_ipc_perm *sma) in security_sem_free() argument
4014 call_void_hook(sem_free_security, sma); in security_sem_free()
4015 kfree(sma->security); in security_sem_free()
4016 sma->security = NULL; in security_sem_free()
4030 int security_sem_associate(struct kern_ipc_perm *sma, int semflg) in security_sem_associate() argument
4032 return call_int_hook(sem_associate, sma, semflg); in security_sem_associate()
4045 int security_sem_semctl(struct kern_ipc_perm *sma, int cmd) in security_sem_semctl() argument
4047 return call_int_hook(sem_semctl, sma, cmd); in security_sem_semctl()
4062 int security_sem_semop(struct kern_ipc_perm *sma, struct sembuf *sops, in security_sem_semop() argument
4065 return call_int_hook(sem_semop, sma, sops, nsops, alter); in security_sem_semop()