[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 4/5] xen/domain: Fold xsm_free_security_domain() paths together
xsm_free_security_domain() is idempotent (both the dummy handler, and the flask handler). Move it into the shared __domain_destroy() path, and drop the INIT_xsm flag from domain_create() Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- CC: Jan Beulich <JBeulich@xxxxxxxx> CC: Wei Liu <wei.liu2@xxxxxxxxxx> CC: Roger Pau Monné <roger.pau@xxxxxxxxxx> CC: Stefano Stabellini <sstabellini@xxxxxxxxxx> CC: Julien Grall <julien.grall@xxxxxxx> CC: Daniel De Graaf <dgdegra@xxxxxxxxxxxxx> --- xen/common/domain.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/xen/common/domain.c b/xen/common/domain.c index 9f810d1..d1c1993 100644 --- a/xen/common/domain.c +++ b/xen/common/domain.c @@ -274,6 +274,8 @@ static void __domain_destroy(struct domain *d) free_cpumask_var(d->dirty_cpumask); + xsm_free_security_domain(d); + lock_profile_deregister_struct(LOCKPROF_TYPE_PERDOM, d); free_domain_struct(d); @@ -284,7 +286,7 @@ struct domain *domain_create(domid_t domid, bool is_priv) { struct domain *d, **pd, *old_hwdom = NULL; - enum { INIT_xsm = 1u<<0, INIT_watchdog = 1u<<1, INIT_rangeset = 1u<<2, + enum { INIT_watchdog = 1u<<1, INIT_rangeset = 1u<<2, INIT_evtchn = 1u<<3, INIT_gnttab = 1u<<4, INIT_arch = 1u<<5 }; int err, init_status = 0; @@ -324,7 +326,6 @@ struct domain *domain_create(domid_t domid, if ( (err = xsm_alloc_security_domain(d)) != 0 ) goto fail; - init_status |= INIT_xsm; atomic_set(&d->refcnt, 1); spin_lock_init_prof(d, domain_lock); @@ -478,8 +479,6 @@ struct domain *domain_create(domid_t domid, rangeset_domain_destroy(d); if ( init_status & INIT_watchdog ) watchdog_domain_destroy(d); - if ( init_status & INIT_xsm ) - xsm_free_security_domain(d); __domain_destroy(d); @@ -917,7 +916,6 @@ static void complete_domain_destroy(struct rcu_head *head) radix_tree_destroy(&d->pirq_tree, free_pirq_struct); - xsm_free_security_domain(d); xfree(d->vcpu); __domain_destroy(d); -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |