linux-mips
[Top] [All Lists]

[PATCH 1/2] MIPS: tlbex: Fix typo in r3000 tlb store handler

To: ralf@linux-mips.org, Jayachandran C <jchandra@broadcom.com>
Subject: [PATCH 1/2] MIPS: tlbex: Fix typo in r3000 tlb store handler
From: Tony Wu <tung7970@gmail.com>
Date: Wed, 17 Jul 2013 17:59:47 +0800
Cc: linux-mips@linux-mips.org
Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition:user-agent; bh=Gski+ArHpSihBb4cPMua6ET6KXkXgjSNv6qwcTzRVJY=; b=CSRjjo0DMpoCPQQHTSjPTDNIErLPFoLlcIUqwwIGP+PzICFDxpKlnQtZVoUgv9GW1Y 11cRH3fLzJZwB7rS+efamdfX5cUq5y2sjU+Sx6AevpidoQf9sq00x73Fhbl7YPxQlRaP WGr/rVjBQAv96oz4APcklkecjQJjGdF7uxgmu3m2emz2g/G4M9ywxEb/crxkNsklfD63 i0/fLIlZf45TeRxhQ3+CLN/viTQEej1KMInLWKMeCLWWX5RQAStkDmRUARF6KXGHhtov c0FSVxRPRtuxSKiDLMRTV4tdefcDNcqib88Sqpw91WU0f6JzZu5rd2ncTFEXuOzpWayu 8Avw==
List-archive: <http://www.linux-mips.org/archives/linux-mips/>
List-help: <mailto:ecartis@linux-mips.org?Subject=help>
List-id: linux-mips <linux-mips.eddie.linux-mips.org>
List-owner: <mailto:ralf@linux-mips.org>
List-post: <mailto:linux-mips@linux-mips.org>
List-software: Ecartis version 1.0.0
List-subscribe: <mailto:ecartis@linux-mips.org?subject=subscribe%20linux-mips>
List-unsubscribe: <mailto:ecartis@linux-mips.org?subject=unsubscribe%20linux-mips>
Original-recipient: rfc822;linux-mips@linux-mips.org
Sender: linux-mips-bounce@linux-mips.org
User-agent: Mutt/1.5.21 (2010-09-15)
Should test against handle_tlbs_end, not handle_tlbs.

Signed-off-by: Tony Wu <tung7970@gmail.com>
Cc: Jayachandran C <jchandra@broadcom.com>
---
 arch/mips/mm/tlbex.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/mips/mm/tlbex.c b/arch/mips/mm/tlbex.c
index 9ab0f90..605b6fc 100644
--- a/arch/mips/mm/tlbex.c
+++ b/arch/mips/mm/tlbex.c
@@ -1803,7 +1803,7 @@ static void __cpuinit build_r3000_tlb_store_handler(void)
        uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
        uasm_i_nop(&p);
 
-       if (p >= handle_tlbs)
+       if (p >= handle_tlbs_end)
                panic("TLB store handler fastpath space exceeded");
 
        uasm_resolve_relocs(relocs, labels);
-- 
1.7.10.2


<Prev in Thread] Current Thread [Next in Thread>