qemu-s390x
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [qemu-s390x] [PATCH v3 2/3] hw/s390x/css: Remove QEMU_PACKED from st


From: David Hildenbrand
Subject: Re: [qemu-s390x] [PATCH v3 2/3] hw/s390x/css: Remove QEMU_PACKED from struct SenseId
Date: Thu, 27 Sep 2018 10:43:52 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.0

On 27/09/2018 10:23, Thomas Huth wrote:
> The uint16_t member cu_type of struct SenseId is not naturally aligned,
> and since the struct is marked with QEMU_PACKED, this can lead to
> unaligned memory accesses - which does not work on architectures like
> Sparc. Thus remove the QEMU_PACKED here and rather copy the struct
> byte by byte when we do copy_sense_id_to_guest().
> 
> Signed-off-by: Thomas Huth <address@hidden>
> ---
>  hw/s390x/css.c         | 38 ++++++++++++++++++++++----------------
>  include/hw/s390x/css.h |  2 +-
>  2 files changed, 23 insertions(+), 17 deletions(-)
> 
> diff --git a/hw/s390x/css.c b/hw/s390x/css.c
> index 5a9fe45..04ec5cc 100644
> --- a/hw/s390x/css.c
> +++ b/hw/s390x/css.c
> @@ -750,20 +750,25 @@ static void sch_handle_halt_func(SubchDev *sch)
>  
>  }
>  
> -static void copy_sense_id_to_guest(SenseId *dest, SenseId *src)
> +/*
> + * As the SenseId struct cannot be packed (would cause unaligned accesses), 
> we
> + * have to copy the individual fields to an unstructured area using the 
> correct
> + * layout (see SA22-7204-01 "Common I/O-Device Commands").
> + */
> +static void copy_sense_id_to_guest(uint8_t *dest, SenseId *src)
>  {
>      int i;
>  
> -    dest->reserved = src->reserved;
> -    dest->cu_type = cpu_to_be16(src->cu_type);
> -    dest->cu_model = src->cu_model;
> -    dest->dev_type = cpu_to_be16(src->dev_type);
> -    dest->dev_model = src->dev_model;
> -    dest->unused = src->unused;
> -    for (i = 0; i < ARRAY_SIZE(dest->ciw); i++) {
> -        dest->ciw[i].type = src->ciw[i].type;
> -        dest->ciw[i].command = src->ciw[i].command;
> -        dest->ciw[i].count = cpu_to_be16(src->ciw[i].count);
> +    dest[0] = src->reserved;
> +    stw_be_p(dest + 1, src->cu_type);
> +    dest[3] = src->cu_model;
> +    stw_be_p(dest + 4, src->dev_type);
> +    dest[6] = src->dev_model;
> +    dest[7] = src->unused;
> +    for (i = 0; i < ARRAY_SIZE(src->ciw); i++) {
> +        dest[8 + i * 4] = src->ciw[i].type;
> +        dest[9 + i * 4] = src->ciw[i].command;
> +        stw_be_p(dest + 10 + i * 4, src->ciw[i].count);
God this is so ugly. Anyhow

Reviewed-by: David Hildenbrand <address@hidden>


-- 

Thanks,

David / dhildenb



reply via email to

[Prev in Thread] Current Thread [Next in Thread]