All of lore.kernel.org
 help / color / mirror / Atom feed
From: jungseoklee85@gmail.com (Jungseok Lee)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2] arm64: Introduce IRQ stack
Date: Thu, 17 Sep 2015 22:17:52 +0900	[thread overview]
Message-ID: <3C2C78B3-4669-4DBA-98DC-362EB762FD9C@gmail.com> (raw)
In-Reply-To: <20150917111735.GN25444@e104818-lin.cambridge.arm.com>

On Sep 17, 2015, at 8:17 PM, Catalin Marinas wrote:

Hi Catalin,

> On Sun, Sep 13, 2015 at 02:42:17PM +0000, Jungseok Lee wrote:
>> Currently, kernel context and interrupts are handled using a single
>> kernel stack navigated by sp_el1. This forces many systems to use
>> 16KB stack, not 8KB one. Low memory platforms naturally suffer from
>> memory pressure accompanied by performance degradation.
>> 
>> This patch addresses the issue as introducing a separate percpu IRQ
>> stack to handle both hard and soft interrupts with two ground rules:
>> 
>>  - Utilize sp_el0 in EL1 context, which is not used currently
>>  - Do not complicate current_thread_info calculation
>> 
>> It is a core concept to trace struct thread_info using sp_el0 instead
>> of sp_el1. This approach helps arm64 align with other architectures
>> regarding object_is_on_stack() without additional complexity.
> 
> I'm still trying to understand how this patch works. I initially thought
> that we would set SPSel = 0 while in kernel thread mode to make use of
> SP_EL0 but I can't find any such code. Do you still use SP_EL1 all the
> time and SP_EL0 just for temporary saving the thread stack?

Exactly.

My first approach was to set SPSel = 0 and implement EL1t Sync and IRQ.
This idea originally comes from your comment [1]. A kernel thread could
be handled easily and neatly, but it complicated current_thread_info
calculation due to a user process.

Let's assume that a kernel thread uses SP_EL0 by default. When an interrupt
comes in, a core jumps to EL1t IRQ. In case of a user process, a CPU goes
into EL1h IRQ when an interrupt raises. To handle this scenario correctly,
SPSel or spsr_el1 should be referenced. This reaches to quite big overhead
in current_thread_info function.

I always keep my mind on simplicity of the function. Thus, I've decided to
give up the approach.

[1] https://lkml.org/lkml/2015/5/25/454

Best Regards
Jungseok Lee

WARNING: multiple messages have this Message-ID (diff)
From: Jungseok Lee <jungseoklee85@gmail.com>
To: Catalin Marinas <Catalin.Marinas@arm.com>
Cc: will.deacon@arm.com, linux-arm-kernel@lists.infradead.org,
	mark.rutland@arm.com, takahiro.akashi@linaro.org,
	James Morse <james.morse@arm.com>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] arm64: Introduce IRQ stack
Date: Thu, 17 Sep 2015 22:17:52 +0900	[thread overview]
Message-ID: <3C2C78B3-4669-4DBA-98DC-362EB762FD9C@gmail.com> (raw)
In-Reply-To: <20150917111735.GN25444@e104818-lin.cambridge.arm.com>

On Sep 17, 2015, at 8:17 PM, Catalin Marinas wrote:

Hi Catalin,

> On Sun, Sep 13, 2015 at 02:42:17PM +0000, Jungseok Lee wrote:
>> Currently, kernel context and interrupts are handled using a single
>> kernel stack navigated by sp_el1. This forces many systems to use
>> 16KB stack, not 8KB one. Low memory platforms naturally suffer from
>> memory pressure accompanied by performance degradation.
>> 
>> This patch addresses the issue as introducing a separate percpu IRQ
>> stack to handle both hard and soft interrupts with two ground rules:
>> 
>>  - Utilize sp_el0 in EL1 context, which is not used currently
>>  - Do not complicate current_thread_info calculation
>> 
>> It is a core concept to trace struct thread_info using sp_el0 instead
>> of sp_el1. This approach helps arm64 align with other architectures
>> regarding object_is_on_stack() without additional complexity.
> 
> I'm still trying to understand how this patch works. I initially thought
> that we would set SPSel = 0 while in kernel thread mode to make use of
> SP_EL0 but I can't find any such code. Do you still use SP_EL1 all the
> time and SP_EL0 just for temporary saving the thread stack?

Exactly.

My first approach was to set SPSel = 0 and implement EL1t Sync and IRQ.
This idea originally comes from your comment [1]. A kernel thread could
be handled easily and neatly, but it complicated current_thread_info
calculation due to a user process.

Let's assume that a kernel thread uses SP_EL0 by default. When an interrupt
comes in, a core jumps to EL1t IRQ. In case of a user process, a CPU goes
into EL1h IRQ when an interrupt raises. To handle this scenario correctly,
SPSel or spsr_el1 should be referenced. This reaches to quite big overhead
in current_thread_info function.

I always keep my mind on simplicity of the function. Thus, I've decided to
give up the approach.

[1] https://lkml.org/lkml/2015/5/25/454

Best Regards
Jungseok Lee

  reply	other threads:[~2015-09-17 13:17 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-13 14:42 [PATCH v2] arm64: Introduce IRQ stack Jungseok Lee
2015-09-13 14:42 ` Jungseok Lee
2015-09-16 11:25 ` Will Deacon
2015-09-16 11:25   ` Will Deacon
2015-09-17 10:33   ` James Morse
2015-09-17 10:33     ` James Morse
2015-09-17 10:48     ` Catalin Marinas
2015-09-17 10:48       ` Catalin Marinas
2015-09-17 12:36     ` Jungseok Lee
2015-09-17 12:36       ` Jungseok Lee
2015-09-17 17:07       ` Catalin Marinas
2015-09-17 17:07         ` Catalin Marinas
2015-09-18 13:02         ` Jungseok Lee
2015-09-18 13:02           ` Jungseok Lee
2015-09-17 11:17 ` Catalin Marinas
2015-09-17 11:17   ` Catalin Marinas
2015-09-17 13:17   ` Jungseok Lee [this message]
2015-09-17 13:17     ` Jungseok Lee
2015-09-17 13:22     ` Jungseok Lee
2015-09-17 13:22       ` Jungseok Lee
2015-09-17 16:21       ` Catalin Marinas
2015-09-17 16:21         ` Catalin Marinas
2015-09-18 12:57         ` Jungseok Lee
2015-09-18 12:57           ` Jungseok Lee
2015-09-18 13:44           ` James Morse
2015-09-18 13:44             ` James Morse
2015-09-18 15:03           ` Catalin Marinas
2015-09-18 15:03             ` Catalin Marinas
2015-09-18 15:31             ` Catalin Marinas
2015-09-18 15:31               ` Catalin Marinas
2015-09-19  8:44               ` Jungseok Lee
2015-09-19  8:44                 ` Jungseok Lee
2015-09-21  9:25                 ` Catalin Marinas
2015-09-21  9:25                   ` Catalin Marinas
2015-09-21 12:14                   ` Jungseok Lee
2015-09-21 12:14                     ` Jungseok Lee
2015-09-18 13:46 ` James Morse
2015-09-18 13:46   ` James Morse
2015-09-19  8:20   ` Jungseok Lee
2015-09-19  8:20     ` Jungseok Lee

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=3C2C78B3-4669-4DBA-98DC-362EB762FD9C@gmail.com \
    --to=jungseoklee85@gmail.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.