lkml.org 
[lkml]   [2022]   [Jan]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [PATCH] mm/hwpoison: Fix error page recovered but reported "not recovered"
Date
On Wed, Jan 12, 2022 at 06:00:51PM -0800, Luck, Tony wrote:
> On Wed, Jan 12, 2022 at 09:11:45PM +0900, Naoya Horiguchi wrote:
> > On Fri, Jan 07, 2022 at 11:44:50AM -0800, Tony Luck wrote:
> > > From: Youquan Song <youquan.song@intel.com>
>
> > diff --git a/mm/memory-failure.c b/mm/memory-failure.c
> > index 14ae5c18e776..4c9bd1d37301 100644
> > --- a/mm/memory-failure.c
> > +++ b/mm/memory-failure.c
> > @@ -707,8 +707,10 @@ static int kill_accessing_process(struct task_struct *p, unsigned long pfn,
> > (void *)&priv);
> > if (ret == 1 && priv.tk.addr)
> > kill_proc(&priv.tk, pfn, flags);
> > + else
> > + ret = 0;
> > mmap_read_unlock(p->mm);
> > - return ret ? -EFAULT : -EHWPOISON;
> > + return ret > 0 ? -EHWPOISON : -EFAULT;
> > }
> >
> > static const char *action_name[] = {
>
> Yes. This fixes the problem (and your explanation helped
> me understand this code better).
>

Thank you for confirming. I just sent v2.

> Fell free to take any words you need from the original patch
> comment and switch to:
>
> Reported-by: Youquan Song <youquan.song@intel.com>
>
> Thanks for looking (and fixing!)

Your welcome :)

- Naoya
\
 
 \ /
  Last update: 2022-01-13 07:53    [W:0.855 / U:0.272 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site