ARM: domains: Possible regression in v7-M
Ariel D'Alessandro
ariel at vanguardiasur.com.ar
Wed Sep 9 11:25:41 PDT 2015
Russell,
El 09/09/15 a las 14:52, Russell King - ARM Linux escribió:
> On Wed, Sep 09, 2015 at 02:28:53PM -0300, Ariel D'Alessandro wrote:
>> Doing a bisect I've observed that regression appears to be caused by:
>>
>> commit 1eef5d2f1b461c120bcd82077edee5ec706ac53b
>> Author: Russell King <rmk+kernel at arm.linux.org.uk>
>> Date: Wed Aug 19 21:23:48 2015 +0100
>>
>> ARM: domains: switch to keeping domain value in register
>>
>>
>> Stacktrace paste below.
>>
>> [ 0.171071] Unhandled exception: IPSR = 00000006 LR = fffffff1
>
> This looks to be ARMv7M, which is nommu... I guess what's causing this
> is this change in arch/arm/kernel/process.c:
>
> + /*
> + * Copy the initial value of the domain access control register
> + * from the current thread: thread->addr_limit will have been
> + * copied from the current thread via setup_thread_stack() in
> + * kernel/fork.c
> + */
> + thread->cpu_domain = get_domain();
> +
>
> which probably needs to be #ifdef'd out for !MMU. Can you try adding:
>
> #ifndef CONFIG_MMU
I think you meant #ifdef CONFIG_MMU.
> ...
> #endif
>
> around that please? Thanks.
>
Yeah, that works!
Added:
#ifdef CONFIG_MMU
...
#endif
around that code block and it booted.
Thanks,
--
Ariel D'Alessandro, VanguardiaSur
www.vanguardiasur.com.ar
More information about the linux-arm-kernel
mailing list