|
@@ -1679,9 +1679,7 @@ int security_quotactl(int cmds, int type, int id, struct super_block *sb);
|
|
|
int security_quota_on(struct dentry *dentry);
|
|
|
int security_syslog(int type);
|
|
|
int security_settime(const struct timespec *ts, const struct timezone *tz);
|
|
|
-int security_vm_enough_memory(long pages);
|
|
|
int security_vm_enough_memory_mm(struct mm_struct *mm, long pages);
|
|
|
-int security_vm_enough_memory_kern(long pages);
|
|
|
int security_bprm_set_creds(struct linux_binprm *bprm);
|
|
|
int security_bprm_check(struct linux_binprm *bprm);
|
|
|
void security_bprm_committing_creds(struct linux_binprm *bprm);
|
|
@@ -1902,25 +1900,11 @@ static inline int security_settime(const struct timespec *ts,
|
|
|
return cap_settime(ts, tz);
|
|
|
}
|
|
|
|
|
|
-static inline int security_vm_enough_memory(long pages)
|
|
|
-{
|
|
|
- WARN_ON(current->mm == NULL);
|
|
|
- return cap_vm_enough_memory(current->mm, pages);
|
|
|
-}
|
|
|
-
|
|
|
static inline int security_vm_enough_memory_mm(struct mm_struct *mm, long pages)
|
|
|
{
|
|
|
- WARN_ON(mm == NULL);
|
|
|
return cap_vm_enough_memory(mm, pages);
|
|
|
}
|
|
|
|
|
|
-static inline int security_vm_enough_memory_kern(long pages)
|
|
|
-{
|
|
|
- /* If current->mm is a kernel thread then we will pass NULL,
|
|
|
- for this specific case that is fine */
|
|
|
- return cap_vm_enough_memory(current->mm, pages);
|
|
|
-}
|
|
|
-
|
|
|
static inline int security_bprm_set_creds(struct linux_binprm *bprm)
|
|
|
{
|
|
|
return cap_bprm_set_creds(bprm);
|