From: a.ryabinin@samsung.com (Andrey Ryabinin)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] arm: get rid of hardcoded assumptions about kernel stack size
Date: Wed, 18 Jun 2014 19:27:20 +0400 [thread overview]
Message-ID: <53A1AFD8.1080808@samsung.com> (raw)
In-Reply-To: <alpine.LFD.2.11.1406181039310.16842@knanqh.ubzr>
On 06/18/14 18:40, Nicolas Pitre wrote:
> On Wed, 18 Jun 2014, Andrey Ryabinin wrote:
>
>> Changing kernel stack size on arm is not as simple as it should be:
>> 1) THRED_SIZE macro doen't respect PAGE_SIZE and THREAD_SIZE_ORDER
>> 2) stack size is hardcoded in get_thread_info macro
>>
>> This patch fixes it by caculating THREAD_SIZE and thread_info address
>> taking into account PAGE_SIZE and THREAD_SIZE_ORDER.
>>
>> Now changing stack size becomes simply changing THREAD_SIZE_ORDER.
>>
>> Signed-off-by: Andrey Ryabinin <a.ryabinin@samsung.com>
>
> Acked-by: Nicolas Pitre <nico@linaro.org>
>
>
Thanks. Patch with fixes in commit message pushed to Russel's patch tracking system, #8078/1.
http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=8078/1
>> ---
>> arch/arm/include/asm/assembler.h | 8 +++++---
>> arch/arm/include/asm/thread_info.h | 3 ++-
>> 2 files changed, 7 insertions(+), 4 deletions(-)
>>
>> diff --git a/arch/arm/include/asm/assembler.h b/arch/arm/include/asm/assembler.h
>> index 57f0584..906703a 100644
>> --- a/arch/arm/include/asm/assembler.h
>> +++ b/arch/arm/include/asm/assembler.h
>> @@ -24,6 +24,8 @@
>> #include <asm/domain.h>
>> #include <asm/opcodes-virt.h>
>> #include <asm/asm-offsets.h>
>> +#include <asm/page.h>
>> +#include <asm/thread_info.h>
>>
>> #define IOMEM(x) (x)
>>
>> @@ -179,10 +181,10 @@
>> * Get current thread_info.
>> */
>> .macro get_thread_info, rd
>> - ARM( mov \rd, sp, lsr #13 )
>> + ARM( mov \rd, sp, lsr #THREAD_SIZE_ORDER + PAGE_SHIFT )
>> THUMB( mov \rd, sp )
>> - THUMB( lsr \rd, \rd, #13 )
>> - mov \rd, \rd, lsl #13
>> + THUMB( lsr \rd, \rd, #THREAD_SIZE_ORDER + PAGE_SHIFT )
>> + mov \rd, \rd, lsl #THREAD_SIZE_ORDER + PAGE_SHIFT
>> .endm
>>
>> /*
>> diff --git a/arch/arm/include/asm/thread_info.h b/arch/arm/include/asm/thread_info.h
>> index f989d7c..f85d2b0 100644
>> --- a/arch/arm/include/asm/thread_info.h
>> +++ b/arch/arm/include/asm/thread_info.h
>> @@ -14,9 +14,10 @@
>>
>> #include <linux/compiler.h>
>> #include <asm/fpstate.h>
>> +#include <asm/page.h>
>>
>> #define THREAD_SIZE_ORDER 1
>> -#define THREAD_SIZE 8192
>> +#define THREAD_SIZE (PAGE_SIZE << THREAD_SIZE_ORDER)
>> #define THREAD_START_SP (THREAD_SIZE - 8)
>>
>> #ifndef __ASSEMBLY__
>> --
>> 1.8.5.5
>>
>
WARNING: multiple messages have this Message-ID (diff)
From: Andrey Ryabinin <a.ryabinin@samsung.com>
To: Nicolas Pitre <nicolas.pitre@linaro.org>
Cc: Russell King <linux@arm.linux.org.uk>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will.deacon@arm.com>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] arm: get rid of hardcoded assumptions about kernel stack size
Date: Wed, 18 Jun 2014 19:27:20 +0400 [thread overview]
Message-ID: <53A1AFD8.1080808@samsung.com> (raw)
In-Reply-To: <alpine.LFD.2.11.1406181039310.16842@knanqh.ubzr>
On 06/18/14 18:40, Nicolas Pitre wrote:
> On Wed, 18 Jun 2014, Andrey Ryabinin wrote:
>
>> Changing kernel stack size on arm is not as simple as it should be:
>> 1) THRED_SIZE macro doen't respect PAGE_SIZE and THREAD_SIZE_ORDER
>> 2) stack size is hardcoded in get_thread_info macro
>>
>> This patch fixes it by caculating THREAD_SIZE and thread_info address
>> taking into account PAGE_SIZE and THREAD_SIZE_ORDER.
>>
>> Now changing stack size becomes simply changing THREAD_SIZE_ORDER.
>>
>> Signed-off-by: Andrey Ryabinin <a.ryabinin@samsung.com>
>
> Acked-by: Nicolas Pitre <nico@linaro.org>
>
>
Thanks. Patch with fixes in commit message pushed to Russel's patch tracking system, #8078/1.
http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=8078/1
>> ---
>> arch/arm/include/asm/assembler.h | 8 +++++---
>> arch/arm/include/asm/thread_info.h | 3 ++-
>> 2 files changed, 7 insertions(+), 4 deletions(-)
>>
>> diff --git a/arch/arm/include/asm/assembler.h b/arch/arm/include/asm/assembler.h
>> index 57f0584..906703a 100644
>> --- a/arch/arm/include/asm/assembler.h
>> +++ b/arch/arm/include/asm/assembler.h
>> @@ -24,6 +24,8 @@
>> #include <asm/domain.h>
>> #include <asm/opcodes-virt.h>
>> #include <asm/asm-offsets.h>
>> +#include <asm/page.h>
>> +#include <asm/thread_info.h>
>>
>> #define IOMEM(x) (x)
>>
>> @@ -179,10 +181,10 @@
>> * Get current thread_info.
>> */
>> .macro get_thread_info, rd
>> - ARM( mov \rd, sp, lsr #13 )
>> + ARM( mov \rd, sp, lsr #THREAD_SIZE_ORDER + PAGE_SHIFT )
>> THUMB( mov \rd, sp )
>> - THUMB( lsr \rd, \rd, #13 )
>> - mov \rd, \rd, lsl #13
>> + THUMB( lsr \rd, \rd, #THREAD_SIZE_ORDER + PAGE_SHIFT )
>> + mov \rd, \rd, lsl #THREAD_SIZE_ORDER + PAGE_SHIFT
>> .endm
>>
>> /*
>> diff --git a/arch/arm/include/asm/thread_info.h b/arch/arm/include/asm/thread_info.h
>> index f989d7c..f85d2b0 100644
>> --- a/arch/arm/include/asm/thread_info.h
>> +++ b/arch/arm/include/asm/thread_info.h
>> @@ -14,9 +14,10 @@
>>
>> #include <linux/compiler.h>
>> #include <asm/fpstate.h>
>> +#include <asm/page.h>
>>
>> #define THREAD_SIZE_ORDER 1
>> -#define THREAD_SIZE 8192
>> +#define THREAD_SIZE (PAGE_SIZE << THREAD_SIZE_ORDER)
>> #define THREAD_START_SP (THREAD_SIZE - 8)
>>
>> #ifndef __ASSEMBLY__
>> --
>> 1.8.5.5
>>
>
next prev parent reply other threads:[~2014-06-18 15:27 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-18 13:50 [PATCH] arm: get rid of hardcoded assumptions about kernel stack size Andrey Ryabinin
2014-06-18 13:50 ` Andrey Ryabinin
2014-06-18 14:31 ` Will Deacon
2014-06-18 14:31 ` Will Deacon
2014-06-18 14:49 ` Andrey Ryabinin
2014-06-18 14:49 ` Andrey Ryabinin
2014-06-18 14:40 ` Nicolas Pitre
2014-06-18 14:40 ` Nicolas Pitre
2014-06-18 15:27 ` Andrey Ryabinin [this message]
2014-06-18 15:27 ` Andrey Ryabinin
2014-07-03 20:24 ` Arnd Bergmann
2014-07-03 20:24 ` Arnd Bergmann
2014-07-04 7:13 ` Andrey Ryabinin
2014-07-04 7:13 ` Andrey Ryabinin
2014-07-04 10:27 ` Arnd Bergmann
2014-07-04 10:27 ` Arnd Bergmann
2014-07-04 13:38 ` Andrey Ryabinin
2014-07-04 13:38 ` Andrey Ryabinin
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=53A1AFD8.1080808@samsung.com \
--to=a.ryabinin@samsung.com \
--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.