|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging] xen/domain: Fold xsm_free_security_domain() paths together
commit 2f00299e34c79e93d1f4b74444b26320a089776f
Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
AuthorDate: Mon Sep 3 12:48:13 2018 +0100
Commit: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
CommitDate: Tue Sep 4 13:25:44 2018 +0100
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>
Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx>
Reviewed-by: Wei Liu <wei.liu2@xxxxxxxxxx>
---
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 2fcb35b082..544bbb44e3 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);
--
generated by git-patchbot for /home/xen/git/xen.git#staging
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/xen-changelog
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |