|
@@ -1818,17 +1818,21 @@ static inline int security_settime(struct timespec *ts, struct timezone *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_kern(long pages)
|
|
|
+static inline int security_vm_enough_memory_mm(struct mm_struct *mm, long pages)
|
|
|
{
|
|
|
- return cap_vm_enough_memory(current->mm, pages);
|
|
|
+ WARN_ON(mm == NULL);
|
|
|
+ return cap_vm_enough_memory(mm, pages);
|
|
|
}
|
|
|
|
|
|
-static inline int security_vm_enough_memory_mm(struct mm_struct *mm, long pages)
|
|
|
+static inline int security_vm_enough_memory_kern(long pages)
|
|
|
{
|
|
|
- return cap_vm_enough_memory(mm, 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_alloc(struct linux_binprm *bprm)
|