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

Commit ffc78767 authored by Jeremy Fitzhardinge's avatar Jeremy Fitzhardinge
Browse files

xen/multicalls: disable MC_DEBUG



It's useful - and probably should be a config - but its very heavyweight,
especially with the tracing stuff to help sort out problems.

Signed-off-by: default avatarJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
parent bc7fe1d9
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -30,7 +30,7 @@


#define MC_BATCH	32
#define MC_BATCH	32


#define MC_DEBUG	1
#define MC_DEBUG	0


#define MC_ARGS		(MC_BATCH * 16)
#define MC_ARGS		(MC_BATCH * 16)


@@ -132,7 +132,7 @@ struct multicall_space __xen_mc_entry(size_t args)
	}
	}


	ret.mc = &b->entries[b->mcidx];
	ret.mc = &b->entries[b->mcidx];
#ifdef MC_DEBUG
#if MC_DEBUG
	b->caller[b->mcidx] = __builtin_return_address(0);
	b->caller[b->mcidx] = __builtin_return_address(0);
#endif
#endif
	b->mcidx++;
	b->mcidx++;