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

Commit 54da5b3d authored by Ingo Molnar's avatar Ingo Molnar
Browse files

x86: fix broken flush_tlb_others_ipi(), fix



Impact: cleanup

Use the proper type.

Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent d2287f5e
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -188,7 +188,8 @@ static void flush_tlb_others_ipi(const struct cpumask *cpumask,
	 * We have to send the IPI only to
	 * CPUs affected.
	 */
	send_IPI_mask(f->flush_cpumask, INVALIDATE_TLB_VECTOR_START + sender);
	send_IPI_mask(to_cpumask(f->flush_cpumask),
		      INVALIDATE_TLB_VECTOR_START + sender);

	while (!cpumask_empty(to_cpumask(f->flush_cpumask)))
		cpu_relax();