On 13.08.2021 13:02, Jane Malalane wrote: > --- a/xen/arch/x86/pv/dom0_build.c > +++ b/xen/arch/x86/pv/dom0_build.c > @@ -379,8 +379,7 @@ int __init dom0_construct_pv(struct domain *d, > } > #else > printk("Found 32-bit PV kernel, but CONFIG_PV32 missing\n"); > - rc = -ENODEV; > - goto out; > + return -ENODEV; > #endif > }
Afaict here you're fixing up your own earlier patch, which hasn't gone in yet. I did expect you to alter that patch and resubmit, to then omit this hunk here (again in a resubmission). With that the patch here Reviewed-by: Jan Beulich <jbeul...@suse.com> Note that generally when a patch depends on another one which hasn't been committed yet, you'd point out this fact in a post-commit-message remark, so that reviewers (and possibly committer) are aware. Jan