summaryrefslogtreecommitdiff
path: root/sys/kern/kern_intrmap.c
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2020-06-17 03:01:27 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2020-06-17 03:01:27 +0000
commit10cb0f580c6ece66b8556124642ae5558484beb0 (patch)
tree39340c44f77f0dead18a602ffb2e6111434c129f /sys/kern/kern_intrmap.c
parente69384fa96e3cf8e8debf6a1a7a572baecbaf5a6 (diff)
make intrmap_cpu return a struct cpu_info *, not a "cpuid number" thing.
requested by kettenis@ discussed with jmatthew@
Diffstat (limited to 'sys/kern/kern_intrmap.c')
-rw-r--r--sys/kern/kern_intrmap.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/kern/kern_intrmap.c b/sys/kern/kern_intrmap.c
index 9bf2024f91f..183531e20b1 100644
--- a/sys/kern/kern_intrmap.c
+++ b/sys/kern/kern_intrmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_intrmap.c,v 1.1 2020/06/17 00:27:52 dlg Exp $ */
+/* $OpenBSD: kern_intrmap.c,v 1.2 2020/06/17 03:01:26 dlg Exp $ */
/*
* Copyright (c) 1980, 1986, 1993
@@ -47,9 +47,9 @@
#include <sys/intrmap.h>
struct intrmap_cpus {
- struct refcnt ic_refs;
- unsigned int ic_count;
- unsigned int *ic_cpumap;
+ struct refcnt ic_refs;
+ unsigned int ic_count;
+ struct cpu_info **ic_cpumap;
};
struct intrmap {
@@ -90,7 +90,7 @@ intrmap_cpus_get(void)
rw_enter_write(&intrmap_lock);
if (intrmap_ncpu != ncpus) {
unsigned int icpus = 0;
- unsigned int *cpumap;
+ struct cpu_info **cpumap;
CPU_INFO_ITERATOR cii;
struct cpu_info *ci;
@@ -107,12 +107,12 @@ intrmap_cpus_get(void)
if (ci->ci_smt_id > 0)
continue;
#endif
- cpumap[icpus++] = CPU_INFO_UNIT(ci);
+ cpumap[icpus++] = ci;
}
if (icpus < ncpus) {
/* this is mostly about free(9) needing a size */
- unsigned int *icpumap = mallocarray(icpus,
+ struct cpu_info **icpumap = mallocarray(icpus,
sizeof(*icpumap), M_DEVBUF, M_WAITOK);
memcpy(icpumap, cpumap, icpus * sizeof(*icpumap));
free(cpumap, M_DEVBUF, ncpus * sizeof(*cpumap));
@@ -334,7 +334,7 @@ intrmap_count(const struct intrmap *im)
return (im->im_count);
}
-unsigned int
+struct cpu_info *
intrmap_cpu(const struct intrmap *im, unsigned int ring)
{
const struct intrmap_cpus *ic = im->im_cpus;