qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Cornelia Huck <cohuck@redhat.com>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: QEMU Developers <qemu-devel@nongnu.org>,
	"patches@linaro.org" <patches@linaro.org>,
	qemu-s390x <qemu-s390x@nongnu.org>,
	Christian Borntraeger <borntraeger@de.ibm.com>,
	Richard Henderson <rth@twiddle.net>,
	David Hildenbrand <david@redhat.com>,
	"Dr. David Alan Gilbert" <dgilbert@redhat.com>
Subject: Re: [Qemu-devel] [PATCH] hw/s390/ccw.c: Don't take address of packed members
Date: Thu, 13 Dec 2018 09:21:38 +0100	[thread overview]
Message-ID: <20181213092138.5854d0fc.cohuck@redhat.com> (raw)
In-Reply-To: <CAFEAcA8kDDbeQwUYEAswvZ05dSHLLNpeYyT3Op8JeJefAE7ujw@mail.gmail.com>

On Wed, 12 Dec 2018 21:15:29 +0000
Peter Maydell <peter.maydell@linaro.org> wrote:

> On Wed, 12 Dec 2018 at 17:34, Cornelia Huck <cohuck@redhat.com> wrote:
> >
> > On Mon, 10 Dec 2018 14:23:15 +0000
> > Peter Maydell <peter.maydell@linaro.org> wrote:
> >  
> > > On Mon, 10 Dec 2018 at 14:13, Cornelia Huck <cohuck@redhat.com> wrote:  
> > > >
> > > > On Mon, 10 Dec 2018 13:58:03 +0000
> > > > Peter Maydell <peter.maydell@linaro.org> wrote:
> > > >  
> > > > > Taking the address of a field in a packed struct is a bad idea, because
> > > > > it might not be actually aligned enough for that pointer type (and
> > > > > thus cause a crash on dereference on some host architectures). Newer
> > > > > versions of clang warn about this.
> > > > >
> > > > > Avoid the problem by using local copies of the PMCW and SCSW
> > > > > struct fields in copy_schib_from_guest() and copy_schib_to_guest().
> > > > >
> > > > > Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> > > > > ---
> > > > > This seemed like a not totally ugly and reasonably localised fix
> > > > > that satisfies clang. Oddly, this makes the generated object file
> > > > > 15K smaller (421K vs 406K), so it might even be better code...  
> > > >
> > > > Nice :)
> > > >  
> > > > >
> > > > >  hw/s390x/css.c | 20 ++++++++++++++++----
> > > > >  1 file changed, 16 insertions(+), 4 deletions(-)
> > > > >
> > > > > diff --git a/hw/s390x/css.c b/hw/s390x/css.c
> > > > > index 04ec5cc9705..ef07691e36b 100644
> > > > > --- a/hw/s390x/css.c
> > > > > +++ b/hw/s390x/css.c
> > > > > @@ -1290,9 +1290,15 @@ void copy_scsw_to_guest(SCSW *dest, const SCSW *src)
> > > > >  static void copy_schib_to_guest(SCHIB *dest, const SCHIB *src)
> > > > >  {
> > > > >      int i;
> > > > > +    PMCW srcpmcw, destpmcw;
> > > > > +    SCSW srcscsw, destscsw;  
> > > >
> > > > <bikeshed>
> > > > I would find src_pmcw etc. easier to read. Other opinions?
> > > > </bikeshed>  
> > >
> > > CODING_STYLE's "Naming" section agrees with you...  
> >
> > Do you plan to send a v2, or should I just rename and apply?  
> 
> If you want to rename and apply that would be great; I can
> send a v2 if that's easier for you.
> 
> thanks
> -- PMM

Given that Thomas also wanted a comment added, a v2 would be easier for
me.

  reply	other threads:[~2018-12-13  8:21 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-10 13:58 [Qemu-devel] [PATCH] hw/s390/ccw.c: Don't take address of packed members Peter Maydell
2018-12-10 14:13 ` Cornelia Huck
2018-12-10 14:23   ` Peter Maydell
2018-12-12 17:34     ` Cornelia Huck
2018-12-12 21:15       ` Peter Maydell
2018-12-13  8:21         ` Cornelia Huck [this message]
2018-12-10 14:58 ` Farhan Ali
2018-12-13  6:32 ` [Qemu-devel] [qemu-s390x] " Thomas Huth

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20181213092138.5854d0fc.cohuck@redhat.com \
    --to=cohuck@redhat.com \
    --cc=borntraeger@de.ibm.com \
    --cc=david@redhat.com \
    --cc=dgilbert@redhat.com \
    --cc=patches@linaro.org \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-s390x@nongnu.org \
    --cc=rth@twiddle.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).