qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Cornelia Huck <cohuck@redhat.com>
To: Fam Zheng <famz@redhat.com>
Cc: "open list:virtio-ccw" <qemu-s390x@nongnu.org>,
	renxiaof@linux.ibm.com, Thomas Huth <thuth@redhat.com>,
	david@redhat.com, libvir-list@redhat.com,
	Alexander Graf <agraf@suse.de>,
	QEMU Developers <qemu-devel@nongnu.org>,
	pasic@linux.ibm.com,
	Christian Borntraeger <borntraeger@de.ibm.com>,
	rth@twiddle.net
Subject: Re: [Qemu-devel] [PATCH for-3.1] s390x: remove 's390-squash-mcss' option
Date: Thu, 2 Aug 2018 09:44:44 +0200	[thread overview]
Message-ID: <20180802094444.04817a83.cohuck@redhat.com> (raw)
In-Reply-To: <20180802093348.69325fac.cohuck@redhat.com>

On Thu, 2 Aug 2018 09:33:48 +0200
Cornelia Huck <cohuck@redhat.com> wrote:

> On Thu, 2 Aug 2018 09:15:24 +0200
> Cornelia Huck <cohuck@redhat.com> wrote:
> 
> > On Thu, 2 Aug 2018 09:34:37 +0800
> > Fam Zheng <famz@redhat.com> wrote:
> >   
> > > On Wed, Aug 1, 2018 at 9:18 PM Cornelia Huck <cohuck@redhat.com> wrote:    
> > > >
> > > > On Wed, 1 Aug 2018 15:11:23 +0200
> > > > Cornelia Huck <cohuck@redhat.com> wrote:
> > > >      
> > > > > On Wed, 1 Aug 2018 14:54:51 +0200
> > > > > Cornelia Huck <cohuck@redhat.com> wrote:
> > > > >      
> > > > > > On Wed, 1 Aug 2018 18:21:27 +0800
> > > > > > Fam Zheng <famz@redhat.com> wrote:
> > > > > >      
> > > > > > > On Tue, 07/24 11:24, Cornelia Huck wrote:      
> > > > > > > > diff --git a/hw/s390x/css-bridge.c b/hw/s390x/css-bridge.c
> > > > > > > > index a02d708239..1bd6c8b458 100644
> > > > > > > > --- a/hw/s390x/css-bridge.c
> > > > > > > > +++ b/hw/s390x/css-bridge.c
> > > > > > > > @@ -106,7 +106,6 @@ VirtualCssBus *virtual_css_bus_init(void)
> > > > > > > >      /* Create bus on bridge device */
> > > > > > > >      bus = qbus_create(TYPE_VIRTUAL_CSS_BUS, dev, "virtual-css");
> > > > > > > >      cbus = VIRTUAL_CSS_BUS(bus);      
> > > > > > >
> > > > > > > Not used now?
> > > > > > >
> > > > > > > Fam      
> > > > > >
> > > > > > Indeed, we can ditch the cbus variable.      
> > > > >
> > > > > ...or not :) We still need it for the return value, which is processed
> > > > > in ccw_init(). We could change the return code of the function to
> > > > > BusState, but I'm not sure it is worth the hassle.      
> > > >
> > > > ...but we can indeed get rid of the cbus and qbus variables in
> > > > s390_ccw_realize().      
> > > 
> > > I got this from a patchew.org test (make docker-test-clang@ubuntu):
> > > 
> > > /tmp/qemu-test/src/hw/s390x/3270-ccw.c:103:20: error: unused variable
> > > 'cbus' [-Werror,-Wunused-variable]
> > >     VirtualCssBus *cbus = VIRTUAL_CSS_BUS(qbus);
> > >                    ^
> > > 1 error generated.
> > > /tmp/qemu-test/src/rules.mak:69: recipe for target 'hw/s390x/3270-ccw.o' failed    
> > 
> > Odd, why didn't I see that...
> > 
> > ...oh wait. Why do I have -disable-werror set? I'll send a patch.  
> 
> On second thought, I'll just merge in the following:
> 
> diff --git a/hw/s390x/3270-ccw.c b/hw/s390x/3270-ccw.c
> index cf58b81fc0..2c8d16ccf7 100644
> --- a/hw/s390x/3270-ccw.c
> +++ b/hw/s390x/3270-ccw.c
> @@ -98,9 +98,6 @@ static void emulated_ccw_3270_realize(DeviceState *ds, Error **errp)
>      EmulatedCcw3270Class *ck = EMULATED_CCW_3270_GET_CLASS(dev);
>      CcwDevice *cdev = CCW_DEVICE(ds);
>      CCWDeviceClass *cdk = CCW_DEVICE_GET_CLASS(cdev);
> -    DeviceState *parent = DEVICE(cdev);
> -    BusState *qbus = qdev_get_parent_bus(parent);
> -    VirtualCssBus *cbus = VIRTUAL_CSS_BUS(qbus);
>      SubchDev *sch;
>      Error *err = NULL;
>  
> diff --git a/hw/s390x/s390-ccw.c b/hw/s390x/s390-ccw.c
> index d1280bf631..cad91ee626 100644
> --- a/hw/s390x/s390-ccw.c
> +++ b/hw/s390x/s390-ccw.c
> @@ -67,8 +67,6 @@ static void s390_ccw_realize(S390CCWDevice *cdev, char *sysfsdev, Error **errp)
>      CcwDevice *ccw_dev = CCW_DEVICE(cdev);
>      CCWDeviceClass *ck = CCW_DEVICE_GET_CLASS(ccw_dev);
>      DeviceState *parent = DEVICE(ccw_dev);
> -    BusState *qbus = qdev_get_parent_bus(parent);
> -    VirtualCssBus *cbus = VIRTUAL_CSS_BUS(qbus);
>      SubchDev *sch;
>      int ret;
>      Error *err = NULL;
> 

...and the one in virtio-ccw.c as well. I swear I'm not trying to break
some kind of reply-to-myself record here :)

      reply	other threads:[~2018-08-02  7:44 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-24  9:24 [Qemu-devel] [PATCH for-3.1] s390x: remove 's390-squash-mcss' option Cornelia Huck
2018-07-24 11:03 ` Christian Borntraeger
2018-07-24 11:15 ` [Qemu-devel] [libvirt] " Peter Krempa
2018-07-24 11:23   ` Cornelia Huck
2018-07-24 11:48 ` [Qemu-devel] " Thomas Huth
2018-07-30 13:25 ` Halil Pasic
2018-07-30 13:43 ` Cornelia Huck
2018-08-01 10:21 ` Fam Zheng
2018-08-01 12:54   ` Cornelia Huck
2018-08-01 13:11     ` Cornelia Huck
2018-08-01 13:18       ` Cornelia Huck
2018-08-02  1:34         ` Fam Zheng
2018-08-02  7:15           ` Cornelia Huck
2018-08-02  7:33             ` Cornelia Huck
2018-08-02  7:44               ` Cornelia Huck [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=20180802094444.04817a83.cohuck@redhat.com \
    --to=cohuck@redhat.com \
    --cc=agraf@suse.de \
    --cc=borntraeger@de.ibm.com \
    --cc=david@redhat.com \
    --cc=famz@redhat.com \
    --cc=libvir-list@redhat.com \
    --cc=pasic@linux.ibm.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-s390x@nongnu.org \
    --cc=renxiaof@linux.ibm.com \
    --cc=rth@twiddle.net \
    --cc=thuth@redhat.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).