Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752009AbdHHGI2 (ORCPT ); Tue, 8 Aug 2017 02:08:28 -0400 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:41218 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750818AbdHHGIY (ORCPT ); Tue, 8 Aug 2017 02:08:24 -0400 Date: Tue, 8 Aug 2017 09:08:17 +0300 From: Mike Rapoport To: Andrew Morton Cc: linux-mm , lkml , Andrea Arcangeli , "Dr. David Alan Gilbert" , Pavel Emelyanov , Mike Kravetz , Michal Hocko Subject: Re: [PATCH] userfaultfd: replace ENOSPC with ESRCH in case mm has gone during copy/zeropage References: <1502111545-32305-1-git-send-email-rppt@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1502111545-32305-1-git-send-email-rppt@linux.vnet.ibm.com> User-Agent: Mutt/1.5.24 (2015-08-30) X-TM-AS-GCONF: 00 x-cbid: 17080806-0016-0000-0000-000004E135D9 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 17080806-0017-0000-0000-000028196032 Message-Id: <20170808060816.GA31648@rapoport-lnx> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-08-08_01:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 spamscore=0 suspectscore=0 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1706020000 definitions=main-1708080099 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1549 Lines: 50 (adding Michal) On Mon, Aug 07, 2017 at 04:12:25PM +0300, Mike Rapoport wrote: > When the process exit races with outstanding mcopy_atomic, it would be > better to return ESRCH error. When such race occurs the process and it's mm > are going away and returning "no such process" to the uffd monitor seems > better fit than ENOSPC. > > Suggested-by: Michal Hocko > Cc: Andrea Arcangeli > Cc: "Dr. David Alan Gilbert" > Cc: Pavel Emelyanov > Cc: Mike Kravetz > Signed-off-by: Mike Rapoport > --- > The man-pages update is ready and I'll send it out once the patch is > merged. > > fs/userfaultfd.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/fs/userfaultfd.c b/fs/userfaultfd.c > index 06ea26b8c996..b0d5897bc4e6 100644 > --- a/fs/userfaultfd.c > +++ b/fs/userfaultfd.c > @@ -1600,7 +1600,7 @@ static int userfaultfd_copy(struct userfaultfd_ctx *ctx, > uffdio_copy.len); > mmput(ctx->mm); > } else { > - return -ENOSPC; > + return -ESRCH; > } > if (unlikely(put_user(ret, &user_uffdio_copy->copy))) > return -EFAULT; > @@ -1647,7 +1647,7 @@ static int userfaultfd_zeropage(struct userfaultfd_ctx *ctx, > uffdio_zeropage.range.len); > mmput(ctx->mm); > } else { > - return -ENOSPC; > + return -ESRCH; > } > if (unlikely(put_user(ret, &user_uffdio_zeropage->zeropage))) > return -EFAULT; > -- > 2.7.4 > -- Sincerely yours, Mike.