[PATCH 0/2] xen: have a more generic unaligned.h header

2023-12-05 Thread Juergen Gross
Update Xen's unaligned.h header to support all architectures, allowing to remove the architecture specific variants (x86 only until now). Juergen Gross (2): xen: make include/xen/unaligned.h usable on all architectures xen: remove asm/unaligned.h xen/arch/x86/include/asm/unaligned.h | 6 --

[PATCH 0/2] xen: have a more generic unaligned.h header (take 2)

2023-12-12 Thread Juergen Gross
Second try for the generic unaligned.h approach. This time including a fix for building stubdom with libxenguest, which is using a cruel hack to reuse the hypervisor's decompressing code. Juergen Gross (2): xen: make include/xen/unaligned.h usable on all architectures xen: remove asm/unaligne

Re: [PATCH 0/2] xen: have a more generic unaligned.h header (take 2)

2023-12-21 Thread Juergen Gross
On 12.12.23 17:27, Juergen Gross wrote: Second try for the generic unaligned.h approach. This time including a fix for building stubdom with libxenguest, which is using a cruel hack to reuse the hypervisor's decompressing code. Juergen Gross (2): xen: make include/xen/unaligned.h usable on a

Re: [PATCH 0/2] xen: have a more generic unaligned.h header (take 2)

2023-12-21 Thread Andrew Cooper
On 21/12/2023 9:37 am, Juergen Gross wrote: > On 12.12.23 17:27, Juergen Gross wrote: >> Second try for the generic unaligned.h approach. >> >> This time including a fix for building stubdom with libxenguest, >> which is using a cruel hack to reuse the hypervisor's decompressing >> code. >> >> Juer