Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d2242a38 authored by K. Y. Srinivasan's avatar K. Y. Srinivasan Committed by Greg Kroah-Hartman
Browse files

Drivers: hv: Fix a bug in get_vp_index()



Linux' notion of cpuid is different from the Host's notion of CPUID. In the
call to bind the channel interrupts, we should use the host's notion of
CPU Ids. Fix this bug.

Signed-off-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Cc: Stable <stable@vger.kernel.org> (V3.9)
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 46e0cd87
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -329,7 +329,7 @@ static u32 get_vp_index(uuid_le *type_guid)
		return 0;
	}
	cur_cpu = (++next_vp % max_cpus);
	return cur_cpu;
	return hv_context.vp_index[cur_cpu];
}

/*