From: "Aneesh Kumar K.V" <aneeshkumar.opensource@gmail.com>
To: linuxppc-dev@lists.ozlabs.org, Nicholas Piggin <npiggin@gmail.com>
Subject: Re: [PATCH] powerpc/64s/radix: fix preempt imbalance in TLB flush
Date: Tue, 10 Oct 2017 19:09:54 +0530 [thread overview]
Message-ID: <49391eb8-6f85-7c37-b779-5e8c6a5bd6b4@gmail.com> (raw)
In-Reply-To: <20171010203256.3cb6701f@roar.ozlabs.ibm.com>
On 10/10/2017 04:02 PM, Nicholas Piggin wrote:
> On Tue, 10 Oct 2017 15:52:02 +0530
> "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com> wrote:
>
>> On 10/10/2017 03:46 PM, Nicholas Piggin wrote:
>>> Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
>>> ---
>>> arch/powerpc/mm/tlb-radix.c | 3 ++-
>>> 1 file changed, 2 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/arch/powerpc/mm/tlb-radix.c b/arch/powerpc/mm/tlb-radix.c
>>> index b3e849c4886e..de414460287a 100644
>>> --- a/arch/powerpc/mm/tlb-radix.c
>>> +++ b/arch/powerpc/mm/tlb-radix.c
>>> @@ -358,7 +358,7 @@ void radix__flush_tlb_collapsed_pmd(struct mm_struct *mm, unsigned long addr)
>>> unsigned long ap = mmu_get_ap(mmu_virtual_psize);
>>> unsigned long pid, end;
>>>
>>> -
>>> + preempt_disable();
>>> pid = mm ? mm->context.id : 0;
>>> if (unlikely(pid == MMU_NO_CONTEXT))
>>> goto no_context;
>>> @@ -366,6 +366,7 @@ void radix__flush_tlb_collapsed_pmd(struct mm_struct *mm, unsigned long addr)
>>> /* 4k page size, just blow the world */
>>> if (PAGE_SIZE == 0x1000) {
>>> radix__flush_all_mm(mm);
>>> + preempt_enable();
>>> return;
>>> }
>>>
>> Can't we do a preempt_disable before the if (local) check?. That way we
>> don't need that prempt_enable in that PAGE_SIZE==0x1000 path.We already
>> do disable/enable correctly in radix__flush_all_mm(mm)
> Well this is just to fix the imbalance. Nested preempt doesn't matter
> much, and these are all no-ops for !preempt kernel, unless you turn on
> debugging.
But this patch is still doing the mm_is_thread_local() test outside
preempt_disable() right?
> I already proposed another patch to bring those local tests under
> preempt disable but no response yet
>
> https://patchwork.ozlabs.org/patch/811061/
>
That is a much better patch?
-aneesh
next prev parent reply other threads:[~2017-10-10 13:40 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-10 10:16 [PATCH] powerpc/64s/radix: fix preempt imbalance in TLB flush Nicholas Piggin
2017-10-10 10:22 ` Aneesh Kumar K.V
2017-10-10 10:32 ` Nicholas Piggin
2017-10-10 13:39 ` Aneesh Kumar K.V [this message]
2017-10-10 14:09 ` Nicholas Piggin
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=49391eb8-6f85-7c37-b779-5e8c6a5bd6b4@gmail.com \
--to=aneeshkumar.opensource@gmail.com \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=npiggin@gmail.com \
/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).