Lines Matching refs:sma
1969 int security_sem_alloc(struct kern_ipc_perm *sma)
1971 int rc = lsm_ipc_alloc(sma);
1975 rc = call_int_hook(sem_alloc_security, 0, sma);
1977 security_sem_free(sma);
1981 void security_sem_free(struct kern_ipc_perm *sma)
1983 call_void_hook(sem_free_security, sma);
1984 kfree(sma->security);
1985 sma->security = NULL;
1988 int security_sem_associate(struct kern_ipc_perm *sma, int semflg)
1990 return call_int_hook(sem_associate, 0, sma, semflg);
1993 int security_sem_semctl(struct kern_ipc_perm *sma, int cmd)
1995 return call_int_hook(sem_semctl, 0, sma, cmd);
1998 int security_sem_semop(struct kern_ipc_perm *sma, struct sembuf *sops,
2001 return call_int_hook(sem_semop, 0, sma, sops, nsops, alter);