3.19-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Markos Chandras <markos.chand...@imgtec.com>

commit 461d1597ffad7a826f8aaa63ab0727c37b632e34 upstream.

When we use htw_{start,stop}() outside of htw_reset(), we need
to ensure that c0 changes have been propagated properly before
we attempt to continue with subsequence memory operations.

Signed-off-by: Markos Chandras <markos.chand...@imgtec.com>
Cc: linux-m...@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/9114/
Signed-off-by: Ralf Baechle <r...@linux-mips.org>
Signed-off-by: Greg Kroah-Hartman <gre...@linuxfoundation.org>

---
 arch/mips/include/asm/pgtable.h |   10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

--- a/arch/mips/include/asm/pgtable.h
+++ b/arch/mips/include/asm/pgtable.h
@@ -99,16 +99,20 @@ extern void paging_init(void);
 
 #define htw_stop()                                                     \
 do {                                                                   \
-       if (cpu_has_htw)                                                \
+       if (cpu_has_htw) {                                              \
                write_c0_pwctl(read_c0_pwctl() &                        \
                               ~(1 << MIPS_PWCTL_PWEN_SHIFT));          \
+               back_to_back_c0_hazard();                               \
+       }                                                               \
 } while(0)
 
 #define htw_start()                                                    \
 do {                                                                   \
-       if (cpu_has_htw)                                                \
+       if (cpu_has_htw) {                                              \
                write_c0_pwctl(read_c0_pwctl() |                        \
                               (1 << MIPS_PWCTL_PWEN_SHIFT));           \
+               back_to_back_c0_hazard();                               \
+       }                                                               \
 } while(0)
 
 
@@ -116,9 +120,7 @@ do {                                                        
                \
 do {                                                                   \
        if (cpu_has_htw) {                                              \
                htw_stop();                                             \
-               back_to_back_c0_hazard();                               \
                htw_start();                                            \
-               back_to_back_c0_hazard();                               \
        }                                                               \
 } while(0)
 


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to