From: Anderson Choi Date: Thu, 20 Mar 2025 11:55:12 +0000 (+0100) Subject: xen/arinc653: call xfree() with local IRQ enabled X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=c1badde6011ca8b626d64ccc61ce33f062468cb3;p=xen.git xen/arinc653: call xfree() with local IRQ enabled xen panic is observed with the following configuration. 1. Debug xen build (CONFIG_DEBUG=y) 2. dom1 of an ARINC653 domain 3. shutdown dom1 with xl command $ xl shutdown (XEN) **************************************** (XEN) Panic on CPU 2: (XEN) Assertion '!in_irq() && (local_irq_is_enabled() || num_online_cpus() <= 1)' failed at common/xmalloc_tlsf.c:714 (XEN) **************************************** panic was triggered since xfree() was called with local IRQ disabled and therefore assertion failed. Fix this by calling xfree() after local IRQ is enabled. Fixes: 19049f8d796a sched: fix locking in a653sched_free_vdata() Signed-off-by: Anderson Choi Reviewed-by: Juergen Gross Acked-by: Nathan Studer master commit: 3ee55c9543fcf0b35593f030b53f56f3222046b7 master date: 2025-03-19 16:44:00 +0000 --- diff --git a/xen/common/sched/arinc653.c b/xen/common/sched/arinc653.c index 9ebae6d7ae..930361fa5c 100644 --- a/xen/common/sched/arinc653.c +++ b/xen/common/sched/arinc653.c @@ -463,10 +463,11 @@ a653sched_free_udata(const struct scheduler *ops, void *priv) if ( !is_idle_unit(av->unit) ) list_del(&av->list); - xfree(av); update_schedule_units(ops); spin_unlock_irqrestore(&sched_priv->lock, flags); + + xfree(av); } /**