Skip to content

Commit

Permalink
x86, xen: degrade BUG to WARN when multicall fails
Browse files Browse the repository at this point in the history
If one of the components of a multicall fails, WARN rather than BUG,
to help with debugging.

Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Jeremy Fitzhardinge authored and Ingo Molnar committed Feb 16, 2009
1 parent b93d51d commit 3d39e9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/xen/multicalls.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 3d39e9d

Please sign in to comment.