From: David Hildenbrand <david@redhat.com>
To: Michal Hocko <mhocko@kernel.org>
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
"Alexander Potapenko" <glider@google.com>,
"Andrew Morton" <akpm@linux-foundation.org>,
"Andrey Ryabinin" <aryabinin@virtuozzo.com>,
"Balbir Singh" <bsingharora@gmail.com>,
"Baoquan He" <bhe@redhat.com>,
"Benjamin Herrenschmidt" <benh@kernel.crashing.org>,
"Boris Ostrovsky" <boris.ostrovsky@oracle.com>,
"Dan Williams" <dan.j.williams@intel.com>,
"Dave Young" <dyoung@redhat.com>,
"Dmitry Vyukov" <dvyukov@google.com>,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
"Hari Bathini" <hbathini@linux.vnet.ibm.com>,
"Huang Ying" <ying.huang@intel.com>,
"Hugh Dickins" <hughd@google.com>,
"Ingo Molnar" <mingo@kernel.org>,
"Jaewon Kim" <jaewon31.kim@samsung.com>,
"Jan Kara" <jack@suse.cz>, "Jérôme Glisse" <jglisse@redhat.com>,
"Joonsoo Kim" <iamjoonsoo.kim@lge.com>,
"Juergen Gross" <jgross@suse.com>,
"Kate Stewart" <kstewart@linuxfoundation.org>,
"Kirill A. Shutemov" <kirill.shutemov@linux.intel.com>,
"Matthew Wilcox" <mawilcox@microsoft.com>,
"Mel Gorman" <mgorman@suse.de>,
"Michael Ellerman" <mpe@ellerman.id.au>,
"Miles Chen" <miles.chen@mediatek.com>,
"Oscar Salvador" <osalvador@techadventures.net>,
"Paul Mackerras" <paulus@samba.org>,
"Pavel Tatashin" <pasha.tatashin@oracle.com>,
"Philippe Ombredanne" <pombredanne@nexb.com>,
"Rashmica Gupta" <rashmica.g@gmail.com>,
"Reza Arbab" <arbab@linux.vnet.ibm.com>,
"Souptick Joarder" <jrdr.linux@gmail.com>,
"Tetsuo Handa" <penguin-kernel@I-love.SAKURA.ne.jp>,
"Thomas Gleixner" <tglx@linutronix.de>,
"Vlastimil Babka" <vbabka@suse.cz>
Subject: Re: [PATCH v1 00/10] mm: online/offline 4MB chunks controlled by device driver
Date: Mon, 11 Jun 2018 13:53:49 +0200 [thread overview]
Message-ID: <3748f033-f349-6d88-d189-d77c76565981@redhat.com> (raw)
In-Reply-To: <819e45c5-6ae3-1dff-3f1d-c0411b6e2e1d@redhat.com>
On 24.05.2018 23:07, David Hildenbrand wrote:
> On 24.05.2018 16:22, Michal Hocko wrote:
>> I will go over the rest of the email later I just wanted to make this
>> point clear because I suspect we are talking past each other.
>
> It sounds like we are now talking about how to solve the problem. I like
> that :)
>
Hi Michal,
did you have time to think about the details of your proposed idea?
(especially the questions I had as response below to make it work at all?)
Personally, I still think that using Pg_reserved is wrong and that your
proposal will be significantly more complicated.
Thanks!
>>
>> On Thu 24-05-18 16:04:38, David Hildenbrand wrote:
>> [...]
>>> The point I was making is: I cannot allocate 8MB/128MB using the buddy
>>> allocator. All I want to do is manage the memory a virtio-mem device
>>> provides as flexible as possible.
>>
>> I didn't mean to use the page allocator to isolate pages from it. We do
>> have other means. Have a look at the page isolation framework and have a
>> look how the current memory hotplug (ab)uses it. In short you mark the
>> desired physical memory range as isolated (nobody can allocate from it)
>> and then simply remove it from the page allocator. And you are done with
>> it. Your particular range is gone, nobody will ever use it. If you mark
>> those struct pages reserved then pfn walkers should already ignore them.
>> If you keep those pages with ref count 0 then even hotplug should work
>> seemlessly (I would have to double check).
>>
>> So all I am arguing is that whatever your driver wants to do can be
>> handled without touching the hotplug code much. You would still need
>> to add new ranges in the mem section units and manage on top of that.
>> You need to do that anyway to keep track of what parts are in use or
>> offlined anyway right? Now the mem sections. You have to do that anyway
>> for memmaps. Our sparse memory model simply works in those units. Even
>> if you make a part of that range unavailable then the section will still
>> be there.
>>
>> Do I make at least some sense or I am completely missing your point?
>>
>
> I think we're heading somewhere. I understand that you want to separate
> this "semi" offline part from the general offlining code. If so, we
> should definitely enforce segment alignment for online_pages/offline_pages.
>
> Importantly, what I need is:
>
> 1. Indicate and prepare memory sections to be used for adding memory
> chunks (right now add_memory())
> 2. Make memory chunks of a section available to the system (right now
> online_pages())
> 3. Remove memory chunks of a section from the system (right now
> offline_pages())
> 4. Remove memory sections from the system (right now remove_memory())
> 5. Hinder dumping tools from reading memory chunks that are logically
> offline (right now PageOffline())
> 6. For 3. find removable memory chunks in a certain memory range with a
> variable size.
>
> In an ideal world, 2. would never fail (in contrast to online_pages()
> right now). This might make some further developments I have in mind
> easier :) So if we can come up with an approach that can guarantee that,
> extra points.
>
> So what I think you are talking about is the following.
>
> For 1. Use add_memory() followed by online_pages(). Don't actually
> online the pages, keep them reserved (like XEN balloon). Fixup
> stats.
> For 2. Expose reserved pages to Buddy allocator. Clear reserved bit.
> Fixup stats. This can never fail. (yay)
> For 3. Isolate pages, try to move everything away (basically but not
> comletely offlining code). Set reserved flag. Fixup flags.
> For 4. offline_pages() followed by remove_memory().
> -> Q: How to distinguish reserved offline from other reserved
> pages? offline_pages() has to be able to deal with that
> For 5. I don't think we can use reserved flag here.
> -> Q: What else to use?
> For 6. Scan for movable ranges. The use
>
>
> "You need to do that anyway to keep track of what parts are in use or
> offlined anyway right?"
>
> I would manually track which chunks of a section is logically offline (I
> do that right now already).
>
> Is that what you had in mind? If not, where does your idea differ.
> How could we solve 4/5. Of course, PageOffline() is again an option.
>
> Thanks!
>
--
Thanks,
David / dhildenb
next prev parent reply other threads:[~2018-06-11 11:54 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-23 15:11 David Hildenbrand
2018-05-23 15:11 ` [PATCH v1 01/10] mm: introduce and use PageOffline() David Hildenbrand
2018-05-23 15:11 ` [PATCH v1 02/10] mm/page_ext.c: support online/offline of memory < section size David Hildenbrand
2018-05-23 15:11 ` [PATCH v1 03/10] kasan: prepare for online/offline of different start/size David Hildenbrand
2018-05-23 15:11 ` [PATCH v1 04/10] kdump: include PAGE_OFFLINE_MAPCOUNT_VALUE in VMCOREINFO David Hildenbrand
2018-05-23 15:11 ` [PATCH v1 05/10] mm/memory_hotplug: limit offline_pages() to sizes we can actually handle David Hildenbrand
2018-05-23 15:11 ` [PATCH v1 06/10] mm/memory_hotplug: onlining pages can only fail due to notifiers David Hildenbrand
2018-05-23 15:11 ` [PATCH v1 07/10] mm/memory_hotplug: print only with DEBUG_VM in online/offline_pages() David Hildenbrand
2018-05-23 15:11 ` [PATCH v1 08/10] mm/memory_hotplug: allow to control onlining/offlining of memory by a driver David Hildenbrand
2018-05-23 15:11 ` [PATCH v1 09/10] mm/memory_hotplug: teach offline_pages() to not try forever David Hildenbrand
2018-05-24 14:39 ` Michal Hocko
2018-05-24 20:36 ` David Hildenbrand
2018-05-23 15:11 ` [PATCH v1 10/10] mm/memory_hotplug: allow online/offline memory by a kernel module David Hildenbrand
2018-05-23 19:51 ` Christoph Hellwig
2018-05-24 5:59 ` David Hildenbrand
2018-05-24 7:53 ` [PATCH v1 00/10] mm: online/offline 4MB chunks controlled by device driver Michal Hocko
2018-05-24 8:31 ` David Hildenbrand
2018-05-24 8:56 ` Dave Young
2018-05-24 9:14 ` David Hildenbrand
2018-05-28 8:28 ` Dave Young
2018-05-28 10:03 ` David Hildenbrand
2018-05-24 9:31 ` Michal Hocko
2018-05-24 10:45 ` David Hildenbrand
2018-05-24 12:03 ` Michal Hocko
2018-05-24 14:04 ` David Hildenbrand
2018-05-24 14:22 ` Michal Hocko
2018-05-24 21:07 ` David Hildenbrand
2018-06-11 11:53 ` David Hildenbrand [this message]
2018-06-11 11:56 ` Michal Hocko
2018-06-11 12:33 ` David Hildenbrand
2018-07-16 19:48 ` David Hildenbrand
2018-07-16 20:05 ` Michal Hocko
2018-07-18 9:56 ` David Hildenbrand
2018-07-18 11:23 ` Michal Hocko
2018-07-18 13:19 ` Michal Hocko
2018-07-18 13:39 ` David Hildenbrand
2018-07-18 13:43 ` Michal Hocko
2018-07-18 13:47 ` David Hildenbrand
2018-07-18 13:56 ` Michal Hocko
2018-05-25 15:08 ` David Hildenbrand
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=3748f033-f349-6d88-d189-d77c76565981@redhat.com \
--to=david@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=arbab@linux.vnet.ibm.com \
--cc=aryabinin@virtuozzo.com \
--cc=benh@kernel.crashing.org \
--cc=bhe@redhat.com \
--cc=boris.ostrovsky@oracle.com \
--cc=bsingharora@gmail.com \
--cc=dan.j.williams@intel.com \
--cc=dvyukov@google.com \
--cc=dyoung@redhat.com \
--cc=glider@google.com \
--cc=gregkh@linuxfoundation.org \
--cc=hbathini@linux.vnet.ibm.com \
--cc=hughd@google.com \
--cc=iamjoonsoo.kim@lge.com \
--cc=jack@suse.cz \
--cc=jaewon31.kim@samsung.com \
--cc=jglisse@redhat.com \
--cc=jgross@suse.com \
--cc=jrdr.linux@gmail.com \
--cc=kirill.shutemov@linux.intel.com \
--cc=kstewart@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mawilcox@microsoft.com \
--cc=mgorman@suse.de \
--cc=mhocko@kernel.org \
--cc=miles.chen@mediatek.com \
--cc=mingo@kernel.org \
--cc=mpe@ellerman.id.au \
--cc=osalvador@techadventures.net \
--cc=pasha.tatashin@oracle.com \
--cc=paulus@samba.org \
--cc=penguin-kernel@I-love.SAKURA.ne.jp \
--cc=pombredanne@nexb.com \
--cc=rashmica.g@gmail.com \
--cc=tglx@linutronix.de \
--cc=vbabka@suse.cz \
--cc=ying.huang@intel.com \
/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