summaryrefslogtreecommitdiffstats
path: root/sys/i386
diff options
context:
space:
mode:
authormav <mav@FreeBSD.org>2010-07-02 17:22:15 +0000
committermav <mav@FreeBSD.org>2010-07-02 17:22:15 +0000
commit395ada53131ac8579226ebb90984f8f4dda713e2 (patch)
tree10e2c87a9d684818f16f63d3f3f510e23a7d843a /sys/i386
parentafd002fb75eb03982efae57271fe29bcf1677e85 (diff)
downloadFreeBSD-src-395ada53131ac8579226ebb90984f8f4dda713e2.zip
FreeBSD-src-395ada53131ac8579226ebb90984f8f4dda713e2.tar.gz
Revert r209638. After commit, there appeared to be more people who liked
previous name of stray interrupt counters, then responded to the list.
Diffstat (limited to 'sys/i386')
-rw-r--r--sys/i386/i386/intr_machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/i386/intr_machdep.c b/sys/i386/i386/intr_machdep.c
index 4e30df8..35179fa 100644
--- a/sys/i386/i386/intr_machdep.c
+++ b/sys/i386/i386/intr_machdep.c
@@ -334,8 +334,8 @@ intrcnt_register(struct intsrc *is)
mtx_lock_spin(&intrcnt_lock);
is->is_index = intrcnt_index;
intrcnt_index += 2;
- snprintf(straystr, MAXCOMLEN + 1, "%s stray",
- is->is_event->ie_name);
+ snprintf(straystr, MAXCOMLEN + 1, "stray irq%d",
+ is->is_pic->pic_vector(is));
intrcnt_updatename(is);
is->is_count = &intrcnt[is->is_index];
intrcnt_setname(straystr, is->is_index + 1);
OpenPOWER on IntegriCloud