linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: mbohan@codeaurora.org (Michael Bohan)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ARM: mm: Align bank start to MAX_ORDER_NR_PAGES
Date: Tue, 04 Oct 2011 12:51:03 -0700	[thread overview]
Message-ID: <4E8B63A7.3030607@codeaurora.org> (raw)
In-Reply-To: <1317198748-17705-1-git-send-email-johan.palsson@stericsson.com>

On 9/28/2011 1:32 AM, Johan Palsson wrote:
> The VM subsystem assumes that there are valid memmap entries from
> the bank start aligned to MAX_ORDER_NR_PAGES.
>
> Cc: stable at kernel.org
> Cc: Russell King<rmk+kernel@arm.linux.org.uk>
> Cc: Michael Bohan<mbohan@codeaurora.org>
> Cc: Nicolas Pitre<nico@fluxnic.net>
> Signed-off-by: Johan Palsson<johan.palsson@stericsson.com>
> Signed-off-by: Rabin Vincent<rabin.vincent@stericsson.com>
> Signed-off-by: Linus Walleij<linus.walleij@linaro.org>
> ---
>   arch/arm/mm/init.c |    7 +++++++
>   1 files changed, 7 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/mm/init.c b/arch/arm/mm/init.c
> index cc7e2d8..f8037ba 100644
> --- a/arch/arm/mm/init.c
> +++ b/arch/arm/mm/init.c
> @@ -496,6 +496,13 @@ static void __init free_unused_memmap(struct meminfo *mi)
>   		 */
>   		bank_start = min(bank_start,
>   				 ALIGN(prev_bank_end, PAGES_PER_SECTION));
> +#else
> +		/*
> +		 * Align down here since the VM subsystem insists that the

Can we change this to say 'Round down here' instead of 'Align down 
here'? For consistency, we should probably change the comment and code 
for the prev_bank_end case below to say 'Round up' and use round_up 
instead of ALIGN().

> +		 * memmap entries are valid from the bank start aligned to
> +		 * MAX_ORDER_NR_PAGES.
> +		 */
> +		bank_start = round_down(bank_start, MAX_ORDER_NR_PAGES);
>   #endif

We ran into this bug on 2.6.38 and I had similar fix. Are you sure this 
doesn't apply SPARSEMEM configurations? At first glance, it seems like 
there could be an issue there as well.

Thanks,
Mike

-- 
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum

      parent reply	other threads:[~2011-10-04 19:51 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-28  8:32 [PATCH] ARM: mm: Align bank start to MAX_ORDER_NR_PAGES Johan Palsson
2011-09-29  8:31 ` Linus Walleij
2011-10-04 19:51 ` Michael Bohan [this message]

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=4E8B63A7.3030607@codeaurora.org \
    --to=mbohan@codeaurora.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    /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).