Displaying 2 results from an estimated 2 matches for "deassign_device_out".
2012 Jul 18
0
[PATCH] xsm deassign hook fix
...tl.c
+++ b/xen/arch/x86/domctl.c
@@ -873,7 +873,7 @@ long arch_do_domctl(
break;
}
- ret = xsm_assign_device(d, domctl->u.assign_device.machine_bdf);
+ ret = xsm_deassign_device(d, domctl->u.assign_device.machine_bdf);
if ( ret )
goto deassign_device_out;
2012 Dec 12
2
[PATCH v7 1/2] xen: unify domain locking in domctl code
These two patches were originally part of the XSM series that I have
posted, and remain prerequisites for that series. However, they are
independent of the XSM changes and are a useful simplification
regardless of the use of XSM.
The Acked-bys on these patches were provided before rebasing them over
the copyback changes in 26268:1b72138bddda, which had minor conflicts
that I resolved.
[PATCH