Displaying 20 results from an estimated 3000 matches similar to: "[PATCH] virtio_ccw: remove unsued variable"
2014 Oct 28
2
[PATCH] virtio_ccw: remove unsued variable
On Mon, 20 Oct 2014, Michael S. Tsirkin wrote:
> On Mon, Oct 20, 2014 at 12:48:18PM +0200, Sebastian Ott wrote:
> > Hi,
> >
> > 016c98c6f virtio: unify config_changed handling
> >
> > introduced a warning in virtio_ccw which is fixed by the following patch.
> >
> > Regards,
> > Sebastian
> > ---
> > virtio_ccw: remove unsued
2014 Oct 28
2
[PATCH] virtio_ccw: remove unsued variable
On Mon, 20 Oct 2014, Michael S. Tsirkin wrote:
> On Mon, Oct 20, 2014 at 12:48:18PM +0200, Sebastian Ott wrote:
> > Hi,
> >
> > 016c98c6f virtio: unify config_changed handling
> >
> > introduced a warning in virtio_ccw which is fixed by the following patch.
> >
> > Regards,
> > Sebastian
> > ---
> > virtio_ccw: remove unsued
2014 Oct 30
2
[PATCH] virtio_ccw: remove unsued variable
On Tue, 28 Oct 2014 19:37:58 +0200
"Michael S. Tsirkin" <mst at redhat.com> wrote:
> On Tue, Oct 28, 2014 at 04:39:12PM +0100, Sebastian Ott wrote:
> > virtio_ccw: remove unused variable
> >
> > Fix this warning:
> > drivers/s390/kvm/virtio_ccw.c: In function ?virtio_ccw_int_handler?:
> > drivers/s390/kvm/virtio_ccw.c:891:24: warning: unused
2014 Oct 30
2
[PATCH] virtio_ccw: remove unsued variable
On Tue, 28 Oct 2014 19:37:58 +0200
"Michael S. Tsirkin" <mst at redhat.com> wrote:
> On Tue, Oct 28, 2014 at 04:39:12PM +0100, Sebastian Ott wrote:
> > virtio_ccw: remove unused variable
> >
> > Fix this warning:
> > drivers/s390/kvm/virtio_ccw.c: In function ?virtio_ccw_int_handler?:
> > drivers/s390/kvm/virtio_ccw.c:891:24: warning: unused
2014 Oct 28
0
[PATCH] virtio_ccw: remove unsued variable
On Tue, Oct 28, 2014 at 04:39:12PM +0100, Sebastian Ott wrote:
> On Mon, 20 Oct 2014, Michael S. Tsirkin wrote:
> > On Mon, Oct 20, 2014 at 12:48:18PM +0200, Sebastian Ott wrote:
> > > Hi,
> > >
> > > 016c98c6f virtio: unify config_changed handling
> > >
> > > introduced a warning in virtio_ccw which is fixed by the following patch.
> >
2014 Oct 20
0
[PATCH] virtio_ccw: remove unsued variable
On Mon, Oct 20, 2014 at 12:48:18PM +0200, Sebastian Ott wrote:
> Hi,
>
> 016c98c6f virtio: unify config_changed handling
>
> introduced a warning in virtio_ccw which is fixed by the following patch.
>
> Regards,
> Sebastian
> ---
> virtio_ccw: remove unsued variable
s/unsued/unused/
>
> Fix this warning:
> drivers/s390/kvm/virtio_ccw.c: In function
2014 Oct 31
0
[PATCH] virtio_ccw: remove unsued variable
Cornelia Huck <cornelia.huck at de.ibm.com> writes:
> On Tue, 28 Oct 2014 19:37:58 +0200
> "Michael S. Tsirkin" <mst at redhat.com> wrote:
>
>> On Tue, Oct 28, 2014 at 04:39:12PM +0100, Sebastian Ott wrote:
>
>> > virtio_ccw: remove unused variable
>> >
>> > Fix this warning:
>> > drivers/s390/kvm/virtio_ccw.c: In
2014 Oct 20
0
[PATCH] virtio_ccw: remove unsued variable
On Mon, 20 Oct 2014 12:48:18 +0200 (CEST)
Sebastian Ott <sebott at linux.vnet.ibm.com> wrote:
> Hi,
>
> 016c98c6f virtio: unify config_changed handling
>
> introduced a warning in virtio_ccw which is fixed by the following patch.
>
> Regards,
> Sebastian
> ---
> virtio_ccw: remove unsued variable
>
> Fix this warning:
>
2015 Sep 11
1
[PATCH RFC 0/1] virtio_ccw: new status accessor in driver
This patch (on top of "virtio/s390: handle failures of READ_VQ_CONF ccw")
implements the guest side of the new status ccw.
Pierre Morel (1):
virtio/s390: support READ_STATUS command for virtio-ccw
drivers/s390/virtio/virtio_ccw.c | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
--
2.3.8
2015 Sep 11
1
[PATCH RFC 0/1] virtio_ccw: new status accessor in driver
This patch (on top of "virtio/s390: handle failures of READ_VQ_CONF ccw")
implements the guest side of the new status ccw.
Pierre Morel (1):
virtio/s390: support READ_STATUS command for virtio-ccw
drivers/s390/virtio/virtio_ccw.c | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
--
2.3.8
2014 Sep 22
1
[PATCH] virtio: unify config_changed handling
Replace duplicated code in all transports with a single wrapper in
virtio.c.
The only functional change is in virtio_mmio.c: if a buggy device sends
us an interrupt before driver is set, we previously returned IRQ_NONE,
now we return IRQ_HANDLED.
As this must not happen in practice, this does not look like a big deal.
See also commit 3fff0179e33cd7d0a688dab65700c46ad089e934
virtio-pci: do not
2014 Sep 22
1
[PATCH] virtio: unify config_changed handling
Replace duplicated code in all transports with a single wrapper in
virtio.c.
The only functional change is in virtio_mmio.c: if a buggy device sends
us an interrupt before driver is set, we previously returned IRQ_NONE,
now we return IRQ_HANDLED.
As this must not happen in practice, this does not look like a big deal.
See also commit 3fff0179e33cd7d0a688dab65700c46ad089e934
virtio-pci: do not
2015 Dec 03
3
[PATCH 0/1] virtio/s390: one fix
Michael,
here's one fix for the virtio-ccw driver.
Patch is against master, as your git branches on mst/vhost.git seem
to be quite old. Is there some branch I can base my own branch on,
or do you prefer to take patches directly anyway?
Cornelia Huck (1):
virtio/s390: handle error values in irb
drivers/s390/virtio/virtio_ccw.c | 62 ++++++++++++++++++++++++----------------
1 file
2015 Dec 03
3
[PATCH 0/1] virtio/s390: one fix
Michael,
here's one fix for the virtio-ccw driver.
Patch is against master, as your git branches on mst/vhost.git seem
to be quite old. Is there some branch I can base my own branch on,
or do you prefer to take patches directly anyway?
Cornelia Huck (1):
virtio/s390: handle error values in irb
drivers/s390/virtio/virtio_ccw.c | 62 ++++++++++++++++++++++++----------------
1 file
2013 Jul 09
3
[RFC PATCH v2 0/2] KVM: s390: virtio-ccw adapter interrupts.
Hi,
next version of the guest exploitation of virtio-ccw adapter interrupts.
Changes from the last version:
- adapt to latest kvm-next
- changed housekeeping for indicator locations: we now use cacheline-sized
and aligned areas
- minor tweaks
Cornelia Huck (2):
KVM: s390: virtio-ccw: Handle command rejects.
KVM: s390: virtio-ccw adapter interrupt support.
arch/s390/include/asm/irq.h
2013 Jul 09
3
[RFC PATCH v2 0/2] KVM: s390: virtio-ccw adapter interrupts.
Hi,
next version of the guest exploitation of virtio-ccw adapter interrupts.
Changes from the last version:
- adapt to latest kvm-next
- changed housekeeping for indicator locations: we now use cacheline-sized
and aligned areas
- minor tweaks
Cornelia Huck (2):
KVM: s390: virtio-ccw: Handle command rejects.
KVM: s390: virtio-ccw adapter interrupt support.
arch/s390/include/asm/irq.h
2013 Jun 07
2
[PATCH RFC 0/2] KVM: s390: virtio-ccw adapter interrupts.
Hi,
here's the guest driver support for adapter interrupts in virtio-ccw.
We use one summary indicator per page of indicators. For each device,
we try to find a space in an indicator where all of its virtqueues fit.
Locking probably needs some more love, but it seems to work fine so far.
Cornelia Huck (2):
KVM: s390: virtio-ccw: Handle command rejects.
KVM: s390: virtio-ccw adapter
2013 Jun 07
2
[PATCH RFC 0/2] KVM: s390: virtio-ccw adapter interrupts.
Hi,
here's the guest driver support for adapter interrupts in virtio-ccw.
We use one summary indicator per page of indicators. For each device,
we try to find a space in an indicator where all of its virtqueues fit.
Locking probably needs some more love, but it seems to work fine so far.
Cornelia Huck (2):
KVM: s390: virtio-ccw: Handle command rejects.
KVM: s390: virtio-ccw adapter
2019 May 29
16
[PATCH v3 0/8] s390: virtio: support protected virtualization
Enhanced virtualization protection technology may require the use of
bounce buffers for I/O. While support for this was built into the virtio
core, virtio-ccw wasn't changed accordingly.
Some background on technology (not part of this series) and the
terminology used.
* Protected Virtualization (PV):
Protected Virtualization guarantees, that non-shared memory of a guest
that operates in PV
2019 May 08
2
[PATCH 08/10] virtio/s390: add indirection to indicators access
On 26/04/2019 20:32, Halil Pasic wrote:
> This will come in handy soon when we pull out the indicators from
> virtio_ccw_device to a memory area that is shared with the hypervisor
> (in particular for protected virtualization guests).
>
> Signed-off-by: Halil Pasic <pasic at linux.ibm.com>
> ---
> drivers/s390/virtio/virtio_ccw.c | 40