Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-8]: src/sys/arch/mips/mips Pull up following revision(s) (request...



details:   https://anonhg.NetBSD.org/src/rev/5a0667ce0d07
branches:  netbsd-8
changeset: 851441:5a0667ce0d07
user:      martin <martin%NetBSD.org@localhost>
date:      Tue Mar 06 09:27:27 2018 +0000

description:
Pull up following revision(s) (requested by flxd in ticket #601):
        sys/arch/mips/mips/cache.c: revision 1.59
Add missing call to mips_dcache_compute_align() affecting "modern" MIPS
(MIPS32{,R2}/MIPS64{,R2}). Thanks jmcneill@; OK skrll@.

diffstat:

 sys/arch/mips/mips/cache.c |  6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r d2c0d22435b2 -r 5a0667ce0d07 sys/arch/mips/mips/cache.c
--- a/sys/arch/mips/mips/cache.c        Tue Mar 06 09:21:35 2018 +0000
+++ b/sys/arch/mips/mips/cache.c        Tue Mar 06 09:27:27 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cache.c,v 1.58 2017/05/14 09:37:13 skrll Exp $ */
+/*     $NetBSD: cache.c,v 1.58.2.1 2018/03/06 09:27:27 martin Exp $    */
 
 /*
  * Copyright 2001, 2002 Wasabi Systems, Inc.
@@ -68,7 +68,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cache.c,v 1.58 2017/05/14 09:37:13 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cache.c,v 1.58.2.1 2018/03/06 09:27:27 martin Exp $");
 
 #include "opt_cputype.h"
 #include "opt_mips_cache.h"
@@ -1455,5 +1455,7 @@
                mco->mco_intern_pdcache_sync_range_index = no_cache_op_range_index;
                mco->mco_intern_pdcache_sync_range = no_cache_op_range;
        }
+
+       mips_dcache_compute_align();
 }
 #endif /* MIPS32 + MIPS32R2 + MIPS64 + MIPS64R2 > 0 */



Home | Main Index | Thread Index | Old Index