linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Yinghai Lu <yinghai@kernel.org>
To: Philipp Hachtmann <phacht@linux.vnet.ibm.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Linux MM <linux-mm@kvack.org>, Xishi Qiu <qiuxishi@huawei.com>,
	David Howells <dhowells@redhat.com>,
	daeseok.youn@gmail.com, Jiang Liu <liuj97@gmail.com>,
	Zhang Yanfei <zhangyanfei@cn.fujitsu.com>,
	Santosh Shilimkar <santosh.shilimkar@ti.com>,
	grygorii.strashko@ti.com, Tang Chen <tangchen@cn.fujitsu.com>,
	Martin Schwidefsky <schwidefsky@de.ibm.com>
Subject: Re: [PATCH 1/2] mm/nobootmem: free_all_bootmem again
Date: Tue, 14 Jan 2014 11:22:28 -0800	[thread overview]
Message-ID: <CAE9FiQUwAr1naCF1wBQN1xKYkb_BwS7w3bmpt8ugB=bQhOGL+Q@mail.gmail.com> (raw)
In-Reply-To: <1389613034-35196-2-git-send-email-phacht@linux.vnet.ibm.com>

On Mon, Jan 13, 2014 at 3:37 AM, Philipp Hachtmann
<phacht@linux.vnet.ibm.com> wrote:
> get_allocated_memblock_reserved_regions_info() should work if it is
> compiled in. Extended the ifdef around
> get_allocated_memblock_memory_regions_info() to include
> get_allocated_memblock_reserved_regions_info() as well.
> Similar changes in nobootmem.c/free_low_memory_core_early() where
> the two functions are called.
>
> Signed-off-by: Philipp Hachtmann <phacht@linux.vnet.ibm.com>

Acked-by: Yinghai Lu <yinghai@kernel.org>

> ---
>  mm/memblock.c  | 17 ++---------------
>  mm/nobootmem.c |  4 ++--
>  2 files changed, 4 insertions(+), 17 deletions(-)
>
> diff --git a/mm/memblock.c b/mm/memblock.c
> index 64ed243..9c0aeef 100644
> --- a/mm/memblock.c
> +++ b/mm/memblock.c
> @@ -266,33 +266,20 @@ static void __init_memblock memblock_remove_region(struct memblock_type *type, u
>         }
>  }
>
> +#ifdef CONFIG_ARCH_DISCARD_MEMBLOCK
> +
>  phys_addr_t __init_memblock get_allocated_memblock_reserved_regions_info(
>                                         phys_addr_t *addr)
>  {
>         if (memblock.reserved.regions == memblock_reserved_init_regions)
>                 return 0;
>
> -       /*
> -        * Don't allow nobootmem allocator to free reserved memory regions
> -        * array if
> -        *  - CONFIG_DEBUG_FS is enabled;
> -        *  - CONFIG_ARCH_DISCARD_MEMBLOCK is not enabled;
> -        *  - reserved memory regions array have been resized during boot.
> -        * Otherwise debug_fs entry "sys/kernel/debug/memblock/reserved"
> -        * will show garbage instead of state of memory reservations.
> -        */
> -       if (IS_ENABLED(CONFIG_DEBUG_FS) &&
> -           !IS_ENABLED(CONFIG_ARCH_DISCARD_MEMBLOCK))
> -               return 0;
> -
>         *addr = __pa(memblock.reserved.regions);
>
>         return PAGE_ALIGN(sizeof(struct memblock_region) *
>                           memblock.reserved.max);
>  }
>
> -#ifdef CONFIG_ARCH_DISCARD_MEMBLOCK
> -
>  phys_addr_t __init_memblock get_allocated_memblock_memory_regions_info(
>                                         phys_addr_t *addr)
>  {
> diff --git a/mm/nobootmem.c b/mm/nobootmem.c
> index 17c8902..e2906a5 100644
> --- a/mm/nobootmem.c
> +++ b/mm/nobootmem.c
> @@ -122,13 +122,13 @@ static unsigned long __init free_low_memory_core_early(void)
>         for_each_free_mem_range(i, NUMA_NO_NODE, &start, &end, NULL)
>                 count += __free_memory_core(start, end);
>
> +#ifdef CONFIG_ARCH_DISCARD_MEMBLOCK
> +
>         /* Free memblock.reserved array if it was allocated */
>         size = get_allocated_memblock_reserved_regions_info(&start);
>         if (size)
>                 count += __free_memory_core(start, start + size);
>
> -#ifdef CONFIG_ARCH_DISCARD_MEMBLOCK
> -
>         /* Free memblock.memory array if it was allocated */
>         size = get_allocated_memblock_memory_regions_info(&start);
>         if (size)
> --
> 1.8.4.5
>

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2014-01-14 19:22 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-13 11:37 [PATCH 0/2] mm/memblock: Excluded memory, free_all_bootmem Philipp Hachtmann
2014-01-13 11:37 ` [PATCH 1/2] mm/nobootmem: free_all_bootmem again Philipp Hachtmann
2014-01-14 19:22   ` Yinghai Lu [this message]
2014-01-13 11:37 ` [PATCH 2/2] mm/memblock: Add support for excluded memory areas Philipp Hachtmann

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='CAE9FiQUwAr1naCF1wBQN1xKYkb_BwS7w3bmpt8ugB=bQhOGL+Q@mail.gmail.com' \
    --to=yinghai@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=daeseok.youn@gmail.com \
    --cc=dhowells@redhat.com \
    --cc=grygorii.strashko@ti.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=liuj97@gmail.com \
    --cc=phacht@linux.vnet.ibm.com \
    --cc=qiuxishi@huawei.com \
    --cc=santosh.shilimkar@ti.com \
    --cc=schwidefsky@de.ibm.com \
    --cc=tangchen@cn.fujitsu.com \
    --cc=zhangyanfei@cn.fujitsu.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