From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dan Carpenter Date: Sat, 14 Jan 2017 06:55:29 +0000 Subject: Re: [patch v2 linux-next] userfaultfd: hugetlbfs: unmap the correct pointer Message-Id: <20170114065529.GE15314@mwanda> List-Id: References: <20170113082608.GA3548@mwanda> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Hugh Dickins Cc: Andrew Morton , Mike Kravetz , "Kirill A. Shutemov" , Jan Kara , Ross Zwisler , Michal Hocko , Lorenzo Stoakes , Dan Williams , "Aneesh Kumar K.V" , linux-mm@kvack.org, kernel-janitors@vger.kernel.org On Fri, Jan 13, 2017 at 04:02:37PM -0800, Hugh Dickins wrote: > On Fri, 13 Jan 2017, Dan Carpenter wrote: > > > kunmap_atomic() and kunmap() take different pointers. People often get > > these mixed up. > > > > Fixes: 16374db2e9a0 ("userfaultfd: hugetlbfs: fix __mcopy_atomic_hugetlb retry/error processing") > > Signed-off-by: Dan Carpenter > > --- > > v2: I was also unmapping the wrong pointer because I had a typo. > > > > diff --git a/mm/memory.c b/mm/memory.c > > index 6012a05..aca8ef6 100644 > > --- a/mm/memory.c > > +++ b/mm/memory.c > > @@ -4172,7 +4172,7 @@ long copy_huge_page_from_user(struct page *dst_page, > > (const void __user *)(src + i * PAGE_SIZE), > > PAGE_SIZE); > > if (allow_pagefault) > > - kunmap(page_kaddr); > > + kunmap(page_kaddr + i); > > else > > kunmap_atomic(page_kaddr); > > I think you need to look at that again. Oh wow... What absolute heck! I can't believe how badly I'm messing up on this. regards, dan carpenter