Remove some unused variables.

This commit is contained in:
simonb 2006-07-04 06:25:50 +00:00
parent 787fd08293
commit 78877867ee
1 changed files with 2 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.39 2005/12/24 22:45:36 perry Exp $ */
/* $NetBSD: pmap.c,v 1.40 2006/07/04 06:25:50 simonb Exp $ */
/*
* Copyright 2001 Wasabi Systems, Inc.
@ -67,7 +67,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.39 2005/12/24 22:45:36 perry Exp $");
__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.40 2006/07/04 06:25:50 simonb Exp $");
#include <sys/param.h>
#include <sys/malloc.h>
@ -112,11 +112,6 @@ volatile tlb_info_t tlb_info[NTLB];
/* We'll use a modified FIFO replacement policy cause it's cheap */
volatile int tlbnext = TLB_NRESERVED;
u_long dtlb_miss_count = 0;
u_long itlb_miss_count = 0;
u_long ktlb_miss_count = 0;
u_long utlb_miss_count = 0;
/* Event counters */
struct evcnt tlbmiss_ev = EVCNT_INITIALIZER(EVCNT_TYPE_TRAP,
NULL, "cpu", "tlbmiss");