From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758106AbbCCXYg (ORCPT ); Tue, 3 Mar 2015 18:24:36 -0500 Received: from mail-ie0-f169.google.com ([209.85.223.169]:45763 "EHLO mail-ie0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758080AbbCCXYe (ORCPT ); Tue, 3 Mar 2015 18:24:34 -0500 Message-ID: <54F642AE.1020802@gmail.com> Date: Tue, 03 Mar 2015 15:24:30 -0800 From: David Daney User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130625 Thunderbird/17.0.7 MIME-Version: 1.0 To: Ben Hutchings CC: linux-kernel@vger.kernel.org, stable@vger.kernel.org, akpm@linux-foundation.org, linux-mips@linux-mips.org, Leonid Yegoshin , David Daney , Ralf Baechle Subject: Re: [PATCH 3.2 12/24] MIPS: Fix C0_Pagegrain[IEC] support. References: In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 03/03/2015 02:11 PM, Ben Hutchings wrote: > 3.2.68-rc1 review patch. If anyone has any objections, please let me know. > I object! Because ... > ------------------ > > From: David Daney > > commit 9ead8632bbf454cfc709b6205dc9cd8582fb0d64 upstream. > > The following commits: > > 5890f70f15c52d (MIPS: Use dedicated exception handler if CPU supports RI/XI exceptions) > 6575b1d4173eae (MIPS: kernel: cpu-probe: Detect unique RI/XI exceptions) > > break the kernel for *all* existing MIPS CPUs that implement the > CP0_PageGrain[IEC] bit. They cause the TLB exception handlers to be > generated without the legacy execute-inhibit handling, but never set > the CP0_PageGrain[IEC] bit to activate the use of dedicated exception > vectors for execute-inhibit exceptions. The result is that upon > detection of an execute-inhibit violation, we loop forever in the TLB > exception handlers instead of sending SIGSEGV to the task. > > If we are generating TLB exception handlers expecting separate > vectors, we must also enable the CP0_PageGrain[IEC] feature. > > The bug was introduced in kernel version 3.17. ... I don't think the patch should be applied to versions prior to 3.17 David Daney > > Signed-off-by: David Daney > Cc: Leonid Yegoshin > Cc: linux-mips@linux-mips.org > Patchwork: http://patchwork.linux-mips.org/patch/8880/ > Signed-off-by: Ralf Baechle > Signed-off-by: Ben Hutchings > --- > arch/mips/mm/tlb-r4k.c | 2 ++ > 1 file changed, 2 insertions(+) > > --- a/arch/mips/mm/tlb-r4k.c > +++ b/arch/mips/mm/tlb-r4k.c > @@ -447,6 +447,8 @@ void __cpuinit tlb_init(void) > #ifdef CONFIG_64BIT > pg |= PG_ELPA; > #endif > + if (cpu_has_rixiex) > + pg |= PG_IEC; > write_c0_pagegrain(pg); > } > > > > >