Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/mips/mips KNF police - long lines and comments.
details: https://anonhg.NetBSD.org/src/rev/cc958f7b75bc
branches: trunk
changeset: 934581:cc958f7b75bc
user: simonb <simonb%NetBSD.org@localhost>
date: Sun Jun 14 09:41:17 2020 +0000
description:
KNF police - long lines and comments.
diffstat:
sys/arch/mips/mips/cache.c | 37 +++++++++++++++++++++++--------------
1 files changed, 23 insertions(+), 14 deletions(-)
diffs (128 lines):
diff -r 7304f4bc9712 -r cc958f7b75bc sys/arch/mips/mips/cache.c
--- a/sys/arch/mips/mips/cache.c Sun Jun 14 08:43:07 2020 +0000
+++ b/sys/arch/mips/mips/cache.c Sun Jun 14 09:41:17 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: cache.c,v 1.61 2019/12/27 09:47:18 msaitoh Exp $ */
+/* $NetBSD: cache.c,v 1.62 2020/06/14 09:41:17 simonb Exp $ */
/*
* Copyright 2001, 2002 Wasabi Systems, Inc.
@@ -68,7 +68,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cache.c,v 1.61 2019/12/27 09:47:18 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cache.c,v 1.62 2020/06/14 09:41:17 simonb Exp $");
#include "opt_cputype.h"
#include "opt_mips_cache.h"
@@ -205,7 +205,7 @@
#ifdef DIAGNOSTIC
/* Check that all cache ops are set up. */
- if (mci->mci_picache_size || 1) { /* XXX- must have primary Icache */
+ if (mci->mci_picache_size || 1) { /* XXX- must have primary Icache */
if (!mco->mco_icache_sync_all)
panic("no icache_sync_all cache op");
if (!mco->mco_icache_sync_range)
@@ -213,7 +213,7 @@
if (!mco->mco_icache_sync_range_index)
panic("no icache_sync_range_index cache op");
}
- if (mci->mci_pdcache_size || 1) { /* XXX- must have primary Dcache */
+ if (mci->mci_pdcache_size || 1) { /* XXX- must have primary Dcache */
if (!mco->mco_pdcache_wbinv_all)
panic("no pdcache_wbinv_all");
if (!mco->mco_pdcache_wbinv_range)
@@ -375,7 +375,8 @@
/* change to write-through mode */
tx39_cache_config_write_through();
- uvmexp.ncolors = atop(mci->mci_pdcache_size) / mci->mci_pdcache_ways;
+ uvmexp.ncolors =
+ atop(mci->mci_pdcache_size) / mci->mci_pdcache_ways;
break;
#endif /* ENABLE_MIPS_TX3900 */
#endif /* MIPS1 */
@@ -617,7 +618,7 @@
mips3_get_cache_config(csizebase);
- mci->mci_sdcache_line_size = 32; /* don't trust config reg */
+ mci->mci_sdcache_line_size = 32; /* don't trust config reg */
if (mci->mci_picache_size / mci->mci_picache_ways > PAGE_SIZE)
mci->mci_icache_virtual_alias = true;
@@ -660,7 +661,8 @@
*/
if (mci->mci_picache_size) {
KASSERT(mci->mci_picache_ways != 0);
- mci->mci_picache_way_size = mci->mci_picache_size / mci->mci_picache_ways;
+ mci->mci_picache_way_size =
+ mci->mci_picache_size / mci->mci_picache_ways;
mci->mci_picache_way_mask = mci->mci_picache_way_size - 1;
#if (MIPS2 + MIPS3 + MIPS4) > 0
if (mci->mci_icache_virtual_alias)
@@ -670,7 +672,8 @@
}
if (mci->mci_pdcache_size) {
KASSERT(mci->mci_pdcache_ways != 0);
- mci->mci_pdcache_way_size = mci->mci_pdcache_size / mci->mci_pdcache_ways;
+ mci->mci_pdcache_way_size =
+ mci->mci_pdcache_size / mci->mci_pdcache_ways;
mci->mci_pdcache_way_mask = mci->mci_pdcache_way_size - 1;
#if (MIPS2 + MIPS3 + MIPS4) > 0
if (mci->mci_cache_virtual_alias)
@@ -777,7 +780,8 @@
default:
panic("r4k sdcache %d way line size %d",
- mci->mci_sdcache_ways, mci->mci_sdcache_line_size);
+ mci->mci_sdcache_ways,
+ mci->mci_sdcache_line_size);
}
break;
@@ -851,7 +855,8 @@
*/
if (mci->mci_sdcache_size) {
KASSERT(mci->mci_sdcache_ways != 0);
- mci->mci_sdcache_way_size = mci->mci_sdcache_size / mci->mci_sdcache_ways;
+ mci->mci_sdcache_way_size =
+ mci->mci_sdcache_size / mci->mci_sdcache_ways;
mci->mci_sdcache_way_mask = mci->mci_sdcache_way_size - 1;
}
@@ -1019,7 +1024,8 @@
mci->mci_scache_unified = true;
} else {
#ifdef CACHE_DEBUG
- printf("External cache detected, but is disabled -- WILL NOT ENABLE!\n");
+ printf("External cache detected, but is disabled -- "
+ "WILL NOT ENABLE!\n");
#endif /* CACHE_DEBUG */
}
}
@@ -1302,7 +1308,8 @@
}
mco->mco_intern_pdcache_sync_all = mco->mco_pdcache_wbinv_all;
- mco->mco_intern_pdcache_sync_range_index = mco->mco_intern_pdcache_wbinv_range_index;
+ mco->mco_intern_pdcache_sync_range_index =
+ mco->mco_intern_pdcache_wbinv_range_index;
mco->mco_intern_pdcache_sync_range = mco->mco_pdcache_wb_range;
if (MIPSNN_CFG1_M & cfg1) {
@@ -1340,8 +1347,10 @@
break;
}
- // Note we don't set up any sd cache ops because we expect that
- // the coherence checks below will overwrite them with no ops.
+ /*
+ * Note we don't set up any sd cache ops because we expect that
+ * the coherence checks below will overwrite them with no ops.
+ */
#ifdef CACHE_DEBUG
if (mci->mci_sdcache_line_size != 0) {
Home |
Main Index |
Thread Index |
Old Index