[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [PATCH] x86/pv: Fix Clang build with !CONFIG_PV32
On 05.05.2020 16:28, Andrew Cooper wrote: > @@ -753,8 +751,9 @@ void load_system_tables(void) > _set_tssldt_desc(gdt + TSS_ENTRY, (unsigned long)tss, > sizeof(*tss) - 1, SYS_DESC_tss_avail); > if ( IS_ENABLED(CONFIG_PV32) ) > - _set_tssldt_desc(compat_gdt + TSS_ENTRY, (unsigned long)tss, > - sizeof(*tss) - 1, SYS_DESC_tss_busy); > + _set_tssldt_desc( > + this_cpu(compat_gdt) - FIRST_RESERVED_GDT_ENTRY + > TSS_ENTRY, > + (unsigned long)tss, sizeof(*tss) - 1, > SYS_DESC_tss_busy); Isn't indentation here off by 4 compared to what we normally do with extremely large argument expressions? Other than this lgtm. Jan
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |