[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20160229181623.GH3615@redhat.com>
Date: Mon, 29 Feb 2016 19:16:24 +0100
From: Oleg Nesterov <oleg@...hat.com>
To: Michal Hocko <mhocko@...nel.org>
Cc: LKML <linux-kernel@...r.kernel.org>,
Andrew Morton <akpm@...ux-foundation.org>, linux-mm@...ck.org,
Michal Hocko <mhocko@...e.com>,
Petr Cermak <petrcermak@...omium.org>
Subject: Re: [PATCH] mm, proc: make clear_refs killable
On 02/29, Michal Hocko wrote:
>
> --- a/fs/proc/task_mmu.c
> +++ b/fs/proc/task_mmu.c
> @@ -1027,11 +1027,15 @@ static ssize_t clear_refs_write(struct file *file, const char __user *buf,
> };
>
> if (type == CLEAR_REFS_MM_HIWATER_RSS) {
> + if (down_write_killable(&mm->mmap_sem)) {
> + count = -EINTR;
> + goto out_mm;
> + }
> +
We do not even need to change count, userspace won't see it anyway. But I agree
it look more clean this way.
I believe the patch is fine.
Oleg.
Powered by blists - more mailing lists