[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH] x86/pv-shim: fix grant table operations for 32-bit guests
From: David Woodhouse <dwmw@xxxxxxxxxxxx> When switching to call the shim functions from the normal handlers, the compat_grant_table_op() function was omitted, leaving it calling the real grant table operations. This leaves a 32-bit shim guest failing to set up its real grant table with the parent hypervisor. Fixes: e7db635f4428 ("x86/pv-shim: Don't modify the hypercall table") Signed-off-by: David Woodhouse <dwmw@xxxxxxxxxxxx> --- xen/common/compat/grant_table.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/xen/common/compat/grant_table.c b/xen/common/compat/grant_table.c index e00bc24a34..af98eade17 100644 --- a/xen/common/compat/grant_table.c +++ b/xen/common/compat/grant_table.c @@ -63,6 +63,11 @@ int compat_grant_table_op( unsigned int i, cmd_op; XEN_GUEST_HANDLE_PARAM(void) cnt_uop; +#ifdef CONFIG_PV_SHIM + if ( unlikely(pv_shim) ) + return pv_shim_grant_table_op(cmd, uop, count); +#endif + set_xen_guest_handle(cnt_uop, NULL); cmd_op = cmd & GNTTABOP_CMD_MASK; if ( cmd_op != GNTTABOP_cache_flush ) -- 2.34.1 Attachment:
smime.p7s
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |