RE: [PATCH v2 2/4] xen-pcifront: Align address of flags to size of unsigned long

From: David Laight
Date: Tue Nov 26 2019 - 04:53:48 EST


From: Fenghua Yu <fenghua.yu@xxxxxxxxx>
> Sent: 25 November 2019 19:43
> The address of "flags" is passed to atomic bitops which require the
> address is aligned to size of unsigned long.
>
> Signed-off-by: Fenghua Yu <fenghua.yu@xxxxxxxxx>
> ---
> include/xen/interface/io/pciif.h | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/include/xen/interface/io/pciif.h b/include/xen/interface/io/pciif.h
> index d9922ae36eb5..639d5fb484a3 100644
> --- a/include/xen/interface/io/pciif.h
> +++ b/include/xen/interface/io/pciif.h
> @@ -103,8 +103,11 @@ struct xen_pcie_aer_op {
> uint32_t devfn;
> };
> struct xen_pci_sharedinfo {
> - /* flags - XEN_PCIF_* */
> - uint32_t flags;
> + /* flags - XEN_PCIF_*. Force alignment for atomic bit operations. */
> + union {
> + uint32_t flags;
> + unsigned long flags_alignment;
> + };

This is papering over the cracks.....
Changing flags to be 'unsigned long' and removing the casts is correct.
Either that or change to code to use simple assignments on the single 'flags' variable
instead of the relatively expensive function calls that are designed for large arrays
of bits.

David.

-
Registered Address Lakeside, Bramley Road, Mount Farm, Milton Keynes, MK1 1PT, UK
Registration No: 1397386 (Wales)