Message ID | e0bf8689422066f5fcdf9e063717f6c748ea3af7.1708962629.git.oleksii.kurochko@gmail.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | Enable build of full Xen for RISC-V | expand |
On 26.02.2024 18:38, Oleksii Kurochko wrote: > The following headers end up the same as asm-generic's version: > * altp2m.h > * device.h > * div64.h > * hardirq.h > * hypercall.h > * iocap.h > * paging.h > * percpu.h > * random.h > * softirq.h > * vm_event.h > > RISC-V should utilize the asm-generic's version of the mentioned > headers instead of introducing them in the arch-specific folder. > > Signed-off-by: Oleksii Kurochko <oleksii.kurochko@gmail.com> > Acked-by: Jan Beulich <jbeulich@suse.com> > --- > Changes in V5: > - Nothing changed. Only rebase. > - update the commit message. > - drop the message above revision log as there is no depenency for this patch > from other patch series. Please can you make sure you submit patches against a sufficiently up-to- date version of the staging branch? I committed v4 of this patch a couple of days ago already, upon your own confirmation that it was okay to go in ahead of others. Jan
diff --git a/xen/arch/riscv/include/asm/Makefile b/xen/arch/riscv/include/asm/Makefile new file mode 100644 index 0000000000..ced02e26ed --- /dev/null +++ b/xen/arch/riscv/include/asm/Makefile @@ -0,0 +1,12 @@ +# SPDX-License-Identifier: GPL-2.0-only +generic-y += altp2m.h +generic-y += device.h +generic-y += div64.h +generic-y += hardirq.h +generic-y += hypercall.h +generic-y += iocap.h +generic-y += paging.h +generic-y += percpu.h +generic-y += random.h +generic-y += softirq.h +generic-y += vm_event.h