lkml.org 
[lkml]   [2021]   [Aug]   [6]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: [PATCH v7 1/2] mm: introduce process_mrelease system call
On Thu, Aug 5, 2021 at 11:40 PM Michal Hocko <mhocko@suse.com> wrote:
>
[...]
> I think you really want something like this:
>
> if (flags)
> return -EINVAL;
>
> pid = pidfd_get_pid(fd, &f_flags);
> if (IS_ERR(pid))
> return PTR_ERR(pid);
> task = get_pid_task(pid, PIDTYPE_PID);
> if (!task) {
> ret = -ESRCH;
> goto put_pid;
> }
>
> /*
> * Make sure to chose a thread which still has a reference to mm
> * during the group exit
> */
> p = find_lock_task_mm(task);
> if (!p) {
> ret = -ESRCH;
> goto put_task;
> }
>
> mm = task->mm;

mm = p->mm;

> mmgrab(mm);
> reap = true;
> /* If the work has been done already, just exit with success */
> if (test_bit(MMF_OOM_SKIP, &mm->flags)) {
> reap = false;
> } else if (!task_will_free_mem(p)) {
> reap = false;
> ret = -EINVAL;
> }
> task_unlock(p);
>
> if (!reap)
> goto dropmm;;
>
> /* Do the work*/
>
>
> dropmm:
> mmdrop(mm);
> put_task:
> put_task(task);
> put_pid:
> put_pid(pid);
>
> return ret;
>
> --
> Michal Hocko
> SUSE Labs

\
 
 \ /
  Last update: 2021-08-06 11:25    [W:0.156 / U:0.028 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site