diff options
author | 2015-02-19 03:19:11 +0000 | |
---|---|---|
committer | 2015-02-19 03:19:11 +0000 | |
commit | f625614a315aac6ddc15fa8098c9afbdc2dd5817 (patch) | |
tree | 85baaef99e053e234811fc0897bbaca34ca16b10 | |
parent | Remove a lie from a comment that ratholed me for an evening. (diff) | |
download | wireguard-openbsd-f625614a315aac6ddc15fa8098c9afbdc2dd5817.tar.xz wireguard-openbsd-f625614a315aac6ddc15fa8098c9afbdc2dd5817.zip |
remove unused struct and #define
ok tedu
-rw-r--r-- | sys/arch/amd64/include/pmap.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/sys/arch/amd64/include/pmap.h b/sys/arch/amd64/include/pmap.h index 3d056db5bfa..e1567b57dcb 100644 --- a/sys/arch/amd64/include/pmap.h +++ b/sys/arch/amd64/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.53 2015/02/15 21:34:33 miod Exp $ */ +/* $OpenBSD: pmap.h,v 1.54 2015/02/19 03:19:11 mlarkin Exp $ */ /* $NetBSD: pmap.h,v 1.1 2003/04/26 18:39:46 fvdl Exp $ */ /* @@ -332,18 +332,6 @@ struct pv_entry { /* locked by its list's pvh_lock */ }; /* - * pmap_remove_record: a record of VAs that have been unmapped, used to - * flush TLB. if we have more than PMAP_RR_MAX then we stop recording. - */ - -#define PMAP_RR_MAX 16 /* max of 16 pages (64K) */ - -struct pmap_remove_record { - int prr_npages; - vaddr_t prr_vas[PMAP_RR_MAX]; -}; - -/* * global kernel variables */ |