qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Cc: pbonzini@redhat.com, Cao jin <caoj.fnst@cn.fujitsu.com>,
	qemu-devel@nongnu.org, tiejun.chen@intel.com
Subject: Re: [Qemu-devel] [PATCH v3] bugfix: passing reference instead of value
Date: Thu, 7 Jan 2016 12:28:26 +0200	[thread overview]
Message-ID: <20160107122507-mutt-send-email-mst@redhat.com> (raw)
In-Reply-To: <alpine.DEB.2.02.1601041357230.19710@kaball.uk.xensource.com>

On Mon, Jan 04, 2016 at 02:14:48PM +0000, Stefano Stabellini wrote:
> On Sat, 2 Jan 2016, Michael S. Tsirkin wrote:
> > On Sat, Jan 02, 2016 at 04:02:20PM +0800, Cao jin wrote:
> > > Fix the bug introduced by 595a4f07: function host_pci_config_read() should be
> > > pass-by-reference, not value.
> > > 
> > > Signed-off-by: Cao jin <caoj.fnst@cn.fujitsu.com>
> > > ---
> > > v3 changelog:
> > > 1. Remove cpu_to_le32() since the code only runs on X86.
> > 
> > It really should be le32_to_cpu and a separate patch,
> > but I think it's preferable to have it there
> > since people tend to copy code around.
> > 
> > But in any case, before merging any patches in this function I'd like to
> > hear a response from someone explaining why is this function necessary
> > at all, since it provably never did anything useful.
> 
> If Tiejun's email address bounces, then we are unlikely to get a reply.
> 
> I think that the pass-by-value bug was introduced in one of the
> rebase/resend versions, as the series is very old and originally looked
> very different. I would take the patch as is to fix the obvious bug.

Yes but with this bug in place, we know no one is using this
device. And if no one can be bothered to test it,
maybe we should rip out the code and be done with it.

OTOH Gerd has apparently been looking at making it
work for kvm, maybe this will bring in testers/users.

I'll apply the fix for now.


> This is how the original code looks like:
> 
> http://xenbits.xen.org/gitweb/?p=qemu-xen-traditional.git;a=blob_plain;f=hw/pt-graphics.c;hb=HEAD
> 
> See the function named igd_pci_read.
> 
> 
> 
> 
> 
> > > 
> > >  hw/pci-host/piix.c | 8 +++++---
> > >  1 file changed, 5 insertions(+), 3 deletions(-)
> > > 
> > > diff --git a/hw/pci-host/piix.c b/hw/pci-host/piix.c
> > > index 715208b..924f0fa 100644
> > > --- a/hw/pci-host/piix.c
> > > +++ b/hw/pci-host/piix.c
> > > @@ -761,7 +761,7 @@ static const IGDHostInfo igd_host_bridge_infos[] = {
> > >      {0xa8, 4},  /* SNB: base of GTT stolen memory */
> > >  };
> > >  
> > > -static int host_pci_config_read(int pos, int len, uint32_t val)
> > > +static int host_pci_config_read(int pos, int len, uint32_t *val)
> > >  {
> > >      char path[PATH_MAX];
> > >      int config_fd;
> > > @@ -784,12 +784,14 @@ static int host_pci_config_read(int pos, int len, uint32_t val)
> > >          ret = -errno;
> > >          goto out;
> > >      }
> > > +
> > >      do {
> > > -        rc = read(config_fd, (uint8_t *)&val, len);
> > > +        rc = read(config_fd, (uint8_t *)val, len);
> > >      } while (rc < 0 && (errno == EINTR || errno == EAGAIN));
> > >      if (rc != len) {
> > >          ret = -errno;
> > >      }
> > > +
> > >  out:
> > >      close(config_fd);
> > >      return ret;
> > > @@ -805,7 +807,7 @@ static int igd_pt_i440fx_initfn(struct PCIDevice *pci_dev)
> > >      for (i = 0; i < num; i++) {
> > >          pos = igd_host_bridge_infos[i].offset;
> > >          len = igd_host_bridge_infos[i].len;
> > > -        rc = host_pci_config_read(pos, len, val);
> > > +        rc = host_pci_config_read(pos, len, &val);
> > >          if (rc) {
> > >              return -ENODEV;
> > >          }
> > > -- 
> > > 2.1.0
> > > 
> > > 
> > 

      reply	other threads:[~2016-01-07 10:28 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-02  8:02 [Qemu-devel] [PATCH v3] bugfix: passing reference instead of value Cao jin
2016-01-02  9:06 ` Stefan Weil
2016-01-02 10:13   ` Cao jin
2016-01-02 12:14   ` Paolo Bonzini
2016-01-02 21:37   ` Michael S. Tsirkin
2016-01-02 21:41 ` Michael S. Tsirkin
2016-01-04 14:14   ` Stefano Stabellini
2016-01-07 10:28     ` Michael S. Tsirkin [this message]

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=20160107122507-mutt-send-email-mst@redhat.com \
    --to=mst@redhat.com \
    --cc=caoj.fnst@cn.fujitsu.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=stefano.stabellini@eu.citrix.com \
    --cc=tiejun.chen@intel.com \
    /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).