The code in question is executing __HYPERVISOR_multicall which is 2-parameter
hypercall, which means that args 3-6 are preserved (as opposed to the
arguments in the multicall_entry_t list, which are clobbered).
GCC 4.4 in CentOS 6 can't cope with the ebp clobber.
Reported-by: Glenn Enright <glenn@rimuhosting.com>
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
"b" (multi), "c" (nr)
#else
"D" (multi), "S" (nr)
-#endif
- :
-#ifdef __i386__
- "edx", "esi", "edi", "ebp"
-#else
- "rdx", "r10", "r8", "r9"
#endif
);