diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1993-08-09 18:20:26 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1993-08-09 18:20:26 +0000 |
commit | f604686b2299fbd6a1a38264c9d11436927ccb86 (patch) | |
tree | b088a339532f3d036a7c4f8ad668c5531b974a34 /sys/i386/isa/vector.s | |
parent | 86c85be4529951088dfe37e55181e8d4e819c3e0 (diff) | |
download | FreeBSD-src-f604686b2299fbd6a1a38264c9d11436927ccb86.zip FreeBSD-src-f604686b2299fbd6a1a38264c9d11436927ccb86.tar.gz |
Moved _eintr{names,cnt} so that vmstat -i does not report all the debugging
stuff of the fast interrupt code.
Diffstat (limited to 'sys/i386/isa/vector.s')
-rw-r--r-- | sys/i386/isa/vector.s | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/i386/isa/vector.s b/sys/i386/isa/vector.s index 38ac79c..e56a6b5 100644 --- a/sys/i386/isa/vector.s +++ b/sys/i386/isa/vector.s @@ -284,12 +284,12 @@ _intrcnt_stray: .space 4 /* total count of stray interrupts */ _intrcnt_actv: .space NR_REAL_INT_HANDLERS * 4 /* active interrupts */ .globl _intrcnt_pend _intrcnt_pend: .space NR_REAL_INT_HANDLERS * 4 /* pending interrupts */ + .globl _eintrcnt +_eintrcnt: /* used by vmstat to calc size of table */ .globl _intrcnt_spl _intrcnt_spl: .space 32 * 4 /* XXX 32 should not be hard coded ? */ .globl _intrcnt_show _intrcnt_show: .space 8 * 4 /* XXX 16 should not be hard coded ? */ - .globl _eintrcnt -_eintrcnt: /* used by vmstat to calc size of table */ /* * Build the interrupt name table for vmstat @@ -325,6 +325,7 @@ _intrnames: .asciz "name pend" BUILD_VECTORS +_eintrnames: /* * now the spl names @@ -373,4 +374,3 @@ _intrnames: .asciz "mask6" .asciz "mask7" -_eintrnames: |