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

Commit 3d39e9d0 authored by Jeremy Fitzhardinge's avatar Jeremy Fitzhardinge Committed by Ingo Molnar
Browse files

x86, xen: degrade BUG to WARN when multicall fails



If one of the components of a multicall fails, WARN rather than BUG,
to help with debugging.

Signed-off-by: default avatarJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent b93d51dc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -179,7 +179,7 @@ void xen_mc_flush(void)
	}
	b->cbidx = 0;

	BUG_ON(ret);
	WARN_ON(ret);
}

struct multicall_space __xen_mc_entry(size_t args)