Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1625133
| From | Vlastimil Babka <vbabka@suse.cz> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH -v2 0/9] mm: make movable onlining suck less |
| Date | 2017-04-18 10:30 +0200 |
| Message-ID | <txwGm-3Te-13@gated-at.bofh.it> (permalink) |
| References | <tuFmO-8iD-7@gated-at.bofh.it> <tuIum-1Rg-23@gated-at.bofh.it> <tuK39-2W1-59@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 04/10/2017 06:02 PM, Michal Hocko wrote:
> On Mon 10-04-17 16:27:49, Igor Mammedov wrote:
> [...]
>> #issue3:
>> removable flag flipped to non-removable state
>>
>> // before series at commit ef0b577b6:
>> memory32:offline removable: 0 zones: Normal Movable
>> memory33:offline removable: 0 zones: Normal Movable
>> memory34:offline removable: 0 zones: Normal Movable
>> memory35:offline removable: 0 zones: Normal Movable
>
> did you mean _after_ the series because the bellow looks like
> the original behavior (at least valid_zones).
>
>> // after series at commit 6a010434
>> memory32:offline removable: 1 zones: Normal
>> memory33:offline removable: 1 zones: Normal
>> memory34:offline removable: 1 zones: Normal
>> memory35:offline removable: 1 zones: Normal Movable
>>
>> also looking at #issue1 removable flag state doesn't
>> seem to be consistent between state changes but maybe that's
>> been broken before
>
> Well, the file has a very questionable semantic. It doesn't provide
> a stable information. Anyway put that aside.
> is_pageblock_removable_nolock relies on having zone association
> which we do not have yet if the memblock is offline. So we need
> the following. I will queue this as a preparatory patch.
> ---
> From 4f3ebc02f4d552d3fe114787ca8a38cc68702208 Mon Sep 17 00:00:00 2001
> From: Michal Hocko <mhocko@suse.com>
> Date: Mon, 10 Apr 2017 17:59:03 +0200
> Subject: [PATCH] mm, memory_hotplug: consider offline memblocks removable
>
> is_pageblock_removable_nolock relies on having zone association to
> examine all the page blocks to check whether they are movable or free.
> This is just wasting of cycles when the memblock is offline. Later patch
> in the series will also change the time when the page is associated with
> a zone so we let's bail out early if the memblock is offline.
>
> Reported-by: Igor Mammedov <imammedo@redhat.com>
> Signed-off-by: Michal Hocko <mhocko@suse.com>
Acked-by: Vlastimil Babka <vbabka@suse.cz>
> ---
> drivers/base/memory.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/drivers/base/memory.c b/drivers/base/memory.c
> index 9677b6b711b0..0c29ec5598ea 100644
> --- a/drivers/base/memory.c
> +++ b/drivers/base/memory.c
> @@ -128,6 +128,9 @@ static ssize_t show_mem_removable(struct device *dev,
> int ret = 1;
> struct memory_block *mem = to_memory_block(dev);
>
> + if (mem->stat != MEM_ONLINE)
> + goto out;
> +
> for (i = 0; i < sections_per_block; i++) {
> if (!present_section_nr(mem->start_section_nr + i))
> continue;
> @@ -135,6 +138,7 @@ static ssize_t show_mem_removable(struct device *dev,
> ret &= is_mem_section_removable(pfn, PAGES_PER_SECTION);
> }
>
> +out:
> return sprintf(buf, "%d\n", ret);
> }
>
>
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
Re: [PATCH -v2 0/9] mm: make movable onlining suck less Michal Hocko <mhocko@kernel.org> - 2017-04-10 18:10 +0200 Re: [PATCH -v2 0/9] mm: make movable onlining suck less Vlastimil Babka <vbabka@suse.cz> - 2017-04-18 10:30 +0200
csiph-web