linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Qian Cai <cai@lca.pw>
To: Dan Williams <dan.j.williams@intel.com>
Cc: "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Oscar Salvador <osalvador@suse.de>, Linux MM <linux-mm@kvack.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH -next] mm/hotplug: skip bad PFNs from pfn_to_online_page()
Date: Sun, 16 Jun 2019 22:25:24 -0400	[thread overview]
Message-ID: <642FC723-2FCB-415D-8EE0-AE013D5AAF10@lca.pw> (raw)
In-Reply-To: <CAPcyv4hyQsAhw35hc4S7hJ2Mh7qwu6ANuh9Bs174okWZZwujgg@mail.gmail.com>



> On Jun 16, 2019, at 11:42 AM, Dan Williams <dan.j.williams@intel.com> wrote:
> 
> On Fri, Jun 14, 2019 at 1:43 PM Qian Cai <cai@lca.pw> wrote:
>> 
>> On Fri, 2019-06-14 at 12:48 -0700, Dan Williams wrote:
>>> On Fri, Jun 14, 2019 at 12:40 PM Qian Cai <cai@lca.pw> wrote:
>>>> 
>>>> On Fri, 2019-06-14 at 11:57 -0700, Dan Williams wrote:
>>>>> On Fri, Jun 14, 2019 at 11:03 AM Dan Williams <dan.j.williams@intel.com>
>>>>> wrote:
>>>>>> 
>>>>>> On Fri, Jun 14, 2019 at 7:59 AM Qian Cai <cai@lca.pw> wrote:
>>>>>>> 
>>>>>>> On Fri, 2019-06-14 at 14:28 +0530, Aneesh Kumar K.V wrote:
>>>>>>>> Qian Cai <cai@lca.pw> writes:
>>>>>>>> 
>>>>>>>> 
>>>>>>>>> 1) offline is busted [1]. It looks like test_pages_in_a_zone()
>>>>>>>>> missed
>>>>>>>>> the
>>>>>>>>> same
>>>>>>>>> pfn_section_valid() check.
>>>>>>>>> 
>>>>>>>>> 2) powerpc booting is generating endless warnings [2]. In
>>>>>>>>> vmemmap_populated() at
>>>>>>>>> arch/powerpc/mm/init_64.c, I tried to change PAGES_PER_SECTION to
>>>>>>>>> PAGES_PER_SUBSECTION, but it alone seems not enough.
>>>>>>>>> 
>>>>>>>> 
>>>>>>>> Can you check with this change on ppc64.  I haven't reviewed this
>>>>>>>> series
>>>>>>>> yet.
>>>>>>>> I did limited testing with change . Before merging this I need to go
>>>>>>>> through the full series again. The vmemmap poplulate on ppc64 needs
>>>>>>>> to
>>>>>>>> handle two translation mode (hash and radix). With respect to vmemap
>>>>>>>> hash doesn't setup a translation in the linux page table. Hence we
>>>>>>>> need
>>>>>>>> to make sure we don't try to setup a mapping for a range which is
>>>>>>>> arleady convered by an existing mapping.
>>>>>>> 
>>>>>>> It works fine.
>>>>>> 
>>>>>> Strange... it would only change behavior if valid_section() is true
>>>>>> when pfn_valid() is not or vice versa. They "should" be identical
>>>>>> because subsection-size == section-size on PowerPC, at least with the
>>>>>> current definition of SUBSECTION_SHIFT. I suspect maybe
>>>>>> free_area_init_nodes() is too late to call subsection_map_init() for
>>>>>> PowerPC.
>>>>> 
>>>>> Can you give the attached incremental patch a try? This will break
>>>>> support for doing sub-section hot-add in a section that was only
>>>>> partially populated early at init, but that can be repaired later in
>>>>> the series. First things first, don't regress.
>>>>> 
>>>>> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
>>>>> index 874eb22d22e4..520c83aa0fec 100644
>>>>> --- a/mm/page_alloc.c
>>>>> +++ b/mm/page_alloc.c
>>>>> @@ -7286,12 +7286,10 @@ void __init free_area_init_nodes(unsigned long
>>>>> *max_zone_pfn)
>>>>> 
>>>>>        /* Print out the early node map */
>>>>>        pr_info("Early memory node ranges\n");
>>>>> -       for_each_mem_pfn_range(i, MAX_NUMNODES, &start_pfn, &end_pfn,
>>>>> &nid) {
>>>>> +       for_each_mem_pfn_range(i, MAX_NUMNODES, &start_pfn, &end_pfn,
>>>>> &nid)
>>>>>                pr_info("  node %3d: [mem %#018Lx-%#018Lx]\n", nid,
>>>>>                        (u64)start_pfn << PAGE_SHIFT,
>>>>>                        ((u64)end_pfn << PAGE_SHIFT) - 1);
>>>>> -               subsection_map_init(start_pfn, end_pfn - start_pfn);
>>>>> -       }
>>>>> 
>>>>>        /* Initialise every node */
>>>>>        mminit_verify_pageflags_layout();
>>>>> diff --git a/mm/sparse.c b/mm/sparse.c
>>>>> index 0baa2e55cfdd..bca8e6fa72d2 100644
>>>>> --- a/mm/sparse.c
>>>>> +++ b/mm/sparse.c
>>>>> @@ -533,6 +533,7 @@ static void __init sparse_init_nid(int nid,
>>>>> unsigned long pnum_begin,
>>>>>                }
>>>>>                check_usemap_section_nr(nid, usage);
>>>>>                sparse_init_one_section(__nr_to_section(pnum), pnum,
>>>>> map, usage);
>>>>> +               subsection_map_init(section_nr_to_pfn(pnum),
>>>>> PAGES_PER_SECTION);
>>>>>                usage = (void *) usage + mem_section_usage_size();
>>>>>        }
>>>>>        sparse_buffer_fini();
>>>> 
>>>> It works fine except it starts to trigger slab debugging errors during boot.
>>>> Not
>>>> sure if it is related yet.
>>> 
>>> If you want you can give this branch a try if you suspect something
>>> else in -next is triggering the slab warning.
>>> 
>>> https://git.kernel.org/pub/scm/linux/kernel/git/djbw/nvdimm.git/log/?h=subsect
>>> ion-v9
>>> 
>>> It's the original v9 patchset + dependencies backported to v5.2-rc4.
>>> 
>>> I otherwise don't see how subsections would effect slab caches.
>> 
>> It works fine there.
> 
> Much appreciated Qian!
> 
> Does this change modulate the x86 failures?

Yes, it also fix the kmemleak_scan() and offline issues on x86.


  reply	other threads:[~2019-06-17  2:25 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-12 19:15 [PATCH -next] mm/hotplug: skip bad PFNs from pfn_to_online_page() Qian Cai
2019-06-12 19:37 ` Dan Williams
2019-06-12 19:38   ` Dan Williams
2019-06-12 21:47     ` Qian Cai
2019-06-12 21:52       ` Dan Williams
2019-06-12 23:13         ` Dan Williams
2019-06-13  0:06       ` Dan Williams
2019-06-14  8:58       ` Aneesh Kumar K.V
2019-06-14 14:59         ` Qian Cai
2019-06-14 18:03           ` Dan Williams
2019-06-14 18:57             ` Dan Williams
2019-06-14 19:40               ` Qian Cai
2019-06-14 19:48                 ` Dan Williams
2019-06-14 20:43                   ` Qian Cai
2019-06-16 15:42                     ` Dan Williams
2019-06-17  2:25                       ` Qian Cai [this message]
2019-06-14 15:35         ` Oscar Salvador
2019-06-14 16:18           ` Aneesh Kumar K.V
2019-06-14 16:22             ` Dan Williams
2019-06-14 16:26               ` Aneesh Kumar K.V
2019-06-14 16:36                 ` Dan Williams
2019-06-14 16:50                   ` Aneesh Kumar K.V
2019-06-14 16:55                   ` Aneesh Kumar K.V
2019-06-14 17:08                     ` Jeff Moyer
2019-06-14 17:14                       ` Dan Williams
2019-06-14 17:40                       ` Aneesh Kumar K.V
2019-06-16  3:49               ` Aneesh Kumar K.V
2019-06-17 17:21                 ` Dan Williams
2019-06-13 18:42   ` Qian Cai
2019-06-14  1:17     ` Dan Williams
2019-06-14  1:29       ` Qian Cai

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=642FC723-2FCB-415D-8EE0-AE013D5AAF10@lca.pw \
    --to=cai@lca.pw \
    --cc=akpm@linux-foundation.org \
    --cc=aneesh.kumar@linux.ibm.com \
    --cc=dan.j.williams@intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=osalvador@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).