On 23/10/2025 10:12 am, Teddy Astie wrote: > diff --git a/xen/drivers/passthrough/vtd/intremap.c > b/xen/drivers/passthrough/vtd/intremap.c > index 612e08bcec..a276518c52 100644 > --- a/xen/drivers/passthrough/vtd/intremap.c > +++ b/xen/drivers/passthrough/vtd/intremap.c > @@ -411,11 +411,8 @@ unsigned int cf_check io_apic_read_remap_rte( > > if ( remap_entry_to_ioapic_rte(iommu, index, &old_rte) ) > return __io_apic_read(apic, reg); > - > - if ( rte_upper ) > - return (*(((u32 *)&old_rte) + 1)); > - else > - return (*(((u32 *)&old_rte) + 0)); > + > + return rte_upper ? old_rte.high : old_rte.low; > }
This hunk introduces trailing whitespace where there was none previously. ~Andrew
