summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpluknet <pluknet@FreeBSD.org>2013-06-14 10:26:38 +0000
committerpluknet <pluknet@FreeBSD.org>2013-06-14 10:26:38 +0000
commit672cd692ff61fe009e242dc8d4f6f63222e69ced (patch)
treeaef85287f3f2a02584dc5a94f7aa2e094fc4cd99
parentaf7074003320c49b980299629439a943e21b072c (diff)
downloadFreeBSD-src-672cd692ff61fe009e242dc8d4f6f63222e69ced.zip
FreeBSD-src-672cd692ff61fe009e242dc8d4f6f63222e69ced.tar.gz
Replace cpusetffs_obj with CPU_FFS, missed in r251703.
Reported by: bdrewery, O. Hartmann
-rw-r--r--sys/amd64/vmm/io/vlapic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/amd64/vmm/io/vlapic.c b/sys/amd64/vmm/io/vlapic.c
index b6d2a3a..5f3dff0 100644
--- a/sys/amd64/vmm/io/vlapic.c
+++ b/sys/amd64/vmm/io/vlapic.c
@@ -465,7 +465,7 @@ lapic_process_icr(struct vlapic *vlapic, uint64_t icrval)
break;
}
- while ((i = cpusetobj_ffs(&dmask)) != 0) {
+ while ((i = CPU_FFS(&dmask)) != 0) {
i--;
CPU_CLR(i, &dmask);
if (mode == APIC_DELMODE_FIXED) {
OpenPOWER on IntegriCloud