svn commit: r251745 - head/sys/amd64/vmm/io

Sergey Kandaurov pluknet at FreeBSD.org
Fri Jun 14 11:46:52 UTC 2013


Author: pluknet
Date: Fri Jun 14 10:26:38 2013
New Revision: 251745
URL: http://svnweb.freebsd.org/changeset/base/251745

Log:
  Replace cpusetffs_obj with CPU_FFS, missed in r251703.
  
  Reported by:	bdrewery, O. Hartmann

Modified:
  head/sys/amd64/vmm/io/vlapic.c

Modified: head/sys/amd64/vmm/io/vlapic.c
==============================================================================
--- head/sys/amd64/vmm/io/vlapic.c	Fri Jun 14 08:28:08 2013	(r251744)
+++ head/sys/amd64/vmm/io/vlapic.c	Fri Jun 14 10:26:38 2013	(r251745)
@@ -465,7 +465,7 @@ lapic_process_icr(struct vlapic *vlapic,
 			break;
 		}
 
-		while ((i = cpusetobj_ffs(&dmask)) != 0) {
+		while ((i = CPU_FFS(&dmask)) != 0) {
 			i--;
 			CPU_CLR(i, &dmask);
 			if (mode == APIC_DELMODE_FIXED) {


More information about the svn-src-head mailing list