All of lore.kernel.org
 help / color / mirror / Atom feed
From: geert@linux-m68k.org (Geert Uytterhoeven)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ARM: mm: fix size rounding-down of arm_add_memory()
Date: Thu, 27 Nov 2014 11:36:31 +0100	[thread overview]
Message-ID: <CAMuHMdXo9HCTJNi8ObutwcUZiXyfyta5+McoA9UaEhueh-6gRg@mail.gmail.com> (raw)
In-Reply-To: <CAMuHMdXjX5AJT9fVja+GCTV4Zxp==xTe8ZFT8_uf=aFDYZ9+Jw@mail.gmail.com>

Any chance we can get this fix applied?

On Wed, Aug 20, 2014 at 5:08 PM, Geert Uytterhoeven
<geert@linux-m68k.org> wrote:
> Hi Yamada-san,
>
> On Fri, Aug 1, 2014 at 2:37 PM, Masahiro Yamada
> <yamada.m@jp.panasonic.com> wrote:
>> Any comments for this patch?
>
> Thanks for your patch!
>
> I had a slightly different fix for the same issue, but apparently it got stuck
> on the freshly installed machine that didn't have email set up yet ;-(
>
> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
>
> early_init_dt_add_memory_arch() has the same bug, I'll resend my (also stuck)
> fix for that.
>
>> Thanks
>>
>> Best Regards
>> Masahiro Yamada
>>
>>
>>
>> On Fri,  6 Jun 2014 12:32:47 +0900
>> Masahiro Yamada <yamada.m@jp.panasonic.com> wrote:
>>
>>> The current rounding of "size" is wrong.
>>>
>>>     size -= start & ~PAGE_MASK;
>>>
>>> should be
>>>
>>>     size -= PAGE_SIZE - (start & ~PAGE_MASK);
>>>
>>> Or more simply
>>>
>>>     size -= aligned_start - start;
>>>
>>> Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
>>> ---
>>>  arch/arm/kernel/setup.c | 2 +-
>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c
>>> index 50e198c..84508c0 100644
>>> --- a/arch/arm/kernel/setup.c
>>> +++ b/arch/arm/kernel/setup.c
>>> @@ -641,8 +641,8 @@ int __init arm_add_memory(u64 start, u64 size)
>>>        * Ensure that start/size are aligned to a page boundary.
>>>        * Size is appropriately rounded down, start is rounded up.
>>>        */
>>> -     size -= start & ~PAGE_MASK;
>>>       aligned_start = PAGE_ALIGN(start);
>>> +     size -= aligned_start - start;
>>>
>>>  #ifndef CONFIG_ARCH_PHYS_ADDR_T_64BIT
>>>       if (aligned_start > ULONG_MAX) {
>>> --
>>> 1.9.1

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert at linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

  reply	other threads:[~2014-11-27 10:36 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-06  3:32 [PATCH] ARM: mm: fix size rounding-down of arm_add_memory() Masahiro Yamada
2014-08-01 12:37 ` Masahiro Yamada
2014-08-20 15:08   ` Geert Uytterhoeven
2014-11-27 10:36     ` Geert Uytterhoeven [this message]
2014-11-27 10:40       ` Russell King - ARM Linux
2014-11-27 10:50       ` Ard Biesheuvel
2014-11-27 11:04         ` Geert Uytterhoeven
2014-11-28 12:34           ` Masahiro Yamada

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=CAMuHMdXo9HCTJNi8ObutwcUZiXyfyta5+McoA9UaEhueh-6gRg@mail.gmail.com \
    --to=geert@linux-m68k.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.