All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/6] final s390x patches for -rc0
@ 2018-11-05 16:43 Cornelia Huck
  2018-11-05 16:43 ` [Qemu-devel] [PULL 1/6] s390x/vfio-ap: report correct error Cornelia Huck
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Cornelia Huck @ 2018-11-05 16:43 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Christian Borntraeger, Alexander Graf, Richard Henderson,
	David Hildenbrand, Thomas Huth, Collin Walling, Eric Farman,
	Farhan Ali, Halil Pasic, qemu-s390x, qemu-devel, Cornelia Huck

The following changes since commit 7d56239f159afc2e7bd42623947e56ba48f37836:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20181102' into staging (2018-11-02 17:17:12 +0000)

are available in the Git repository at:

  https://github.com/cohuck/qemu tags/s390x-20181105

for you to fetch changes up to 8e4eb4279fce9a736131b94b6f5f09f0503e4ab3:

  MAINTAINERS: s390/boot: the ipl code and the bios belong together (2018-11-05 09:55:29 +0100)

----------------------------------------------------------------
- some changes in s390x maintainership
- bugfix in vfio-ap

----------------------------------------------------------------

Alexander Graf (1):
  MAINTAINERS: s390: Remove myself

Christian Borntraeger (4):
  MAINTAINERS: s390: more maintainers for vfio-ccw
  MAINTAINERS: s390/virtio-ccw: drop Christian, add Halil
  MAINTAINERS: s390/pci: add Collin Walling as maintainer for zpci
  MAINTAINERS: s390/boot: the ipl code and the bios belong together

Cornelia Huck (1):
  s390x/vfio-ap: report correct error

 MAINTAINERS  | 17 +++++++++++------
 hw/vfio/ap.c |  2 +-
 2 files changed, 12 insertions(+), 7 deletions(-)

-- 
2.14.5

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Qemu-devel] [PULL 1/6] s390x/vfio-ap: report correct error
  2018-11-05 16:43 [Qemu-devel] [PULL 0/6] final s390x patches for -rc0 Cornelia Huck
@ 2018-11-05 16:43 ` Cornelia Huck
  2018-11-05 16:43 ` [Qemu-devel] [PULL 2/6] MAINTAINERS: s390: more maintainers for vfio-ccw Cornelia Huck
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Cornelia Huck @ 2018-11-05 16:43 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Christian Borntraeger, Alexander Graf, Richard Henderson,
	David Hildenbrand, Thomas Huth, Collin Walling, Eric Farman,
	Farhan Ali, Halil Pasic, qemu-s390x, qemu-devel, Cornelia Huck

If ioctl(..., VFIO_DEVICE_RESET) fails, we want to report errno
instead of ret (which is always -1 on error).

Fixes Coverity issue CID 1396176.

Reported-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Tony Krowiak <akrowiak@linux.ibm.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
---
 hw/vfio/ap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/vfio/ap.c b/hw/vfio/ap.c
index 3962bb74e5..65de952f44 100644
--- a/hw/vfio/ap.c
+++ b/hw/vfio/ap.c
@@ -142,7 +142,7 @@ static void vfio_ap_reset(DeviceState *dev)
     ret = ioctl(vapdev->vdev.fd, VFIO_DEVICE_RESET);
     if (ret) {
         error_report("%s: failed to reset %s device: %s", __func__,
-                     vapdev->vdev.name, strerror(ret));
+                     vapdev->vdev.name, strerror(errno));
     }
 }
 
-- 
2.14.5

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [Qemu-devel] [PULL 2/6] MAINTAINERS: s390: more maintainers for vfio-ccw
  2018-11-05 16:43 [Qemu-devel] [PULL 0/6] final s390x patches for -rc0 Cornelia Huck
  2018-11-05 16:43 ` [Qemu-devel] [PULL 1/6] s390x/vfio-ap: report correct error Cornelia Huck
@ 2018-11-05 16:43 ` Cornelia Huck
  2018-11-05 16:43 ` [Qemu-devel] [PULL 3/6] MAINTAINERS: s390/virtio-ccw: drop Christian, add Halil Cornelia Huck
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Cornelia Huck @ 2018-11-05 16:43 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Christian Borntraeger, Alexander Graf, Richard Henderson,
	David Hildenbrand, Thomas Huth, Collin Walling, Eric Farman,
	Farhan Ali, Halil Pasic, qemu-s390x, qemu-devel, Cornelia Huck

From: Christian Borntraeger <borntraeger@de.ibm.com>

Eric and Farhan will help with maintaining vfio-ccw.

Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Message-Id: <1540827745-20795-2-git-send-email-borntraeger@de.ibm.com>
Acked-by: Eric Farman <farman@linux.ibm.com>
Acked-by: Farhan Ali <alifm@linux.ibm.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
---
 MAINTAINERS | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 98a1856afc..2909cd05b3 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1205,6 +1205,8 @@ F: include/hw/vfio/
 
 vfio-ccw
 M: Cornelia Huck <cohuck@redhat.com>
+M: Eric Farman <farman@linux.ibm.com>
+M: Farhan Ali <alifm@linux.ibm.com>
 S: Supported
 F: hw/vfio/ccw.c
 F: hw/s390x/s390-ccw.c
-- 
2.14.5

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [Qemu-devel] [PULL 3/6] MAINTAINERS: s390/virtio-ccw: drop Christian, add Halil
  2018-11-05 16:43 [Qemu-devel] [PULL 0/6] final s390x patches for -rc0 Cornelia Huck
  2018-11-05 16:43 ` [Qemu-devel] [PULL 1/6] s390x/vfio-ap: report correct error Cornelia Huck
  2018-11-05 16:43 ` [Qemu-devel] [PULL 2/6] MAINTAINERS: s390: more maintainers for vfio-ccw Cornelia Huck
@ 2018-11-05 16:43 ` Cornelia Huck
  2018-11-05 16:43 ` [Qemu-devel] [PULL 4/6] MAINTAINERS: s390/pci: add Collin Walling as maintainer for zpci Cornelia Huck
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Cornelia Huck @ 2018-11-05 16:43 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Christian Borntraeger, Alexander Graf, Richard Henderson,
	David Hildenbrand, Thomas Huth, Collin Walling, Eric Farman,
	Farhan Ali, Halil Pasic, qemu-s390x, qemu-devel, Cornelia Huck

From: Christian Borntraeger <borntraeger@de.ibm.com>

Halil does all the work anyway.

Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Message-Id: <1540827745-20795-3-git-send-email-borntraeger@de.ibm.com>
Acked-by: Halil Pasic <pasic@linux.ibm.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
---
 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 2909cd05b3..5b6f4a2f3f 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1263,7 +1263,7 @@ T: git git://github.com/stefanha/qemu.git block
 
 virtio-ccw
 M: Cornelia Huck <cohuck@redhat.com>
-M: Christian Borntraeger <borntraeger@de.ibm.com>
+M: Halil Pasic <pasic@linux.ibm.com>
 S: Supported
 F: hw/s390x/virtio-ccw*.[hc]
 F: hw/s390x/vhost-vsock-ccw.c
-- 
2.14.5

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [Qemu-devel] [PULL 4/6] MAINTAINERS: s390/pci: add Collin Walling as maintainer for zpci
  2018-11-05 16:43 [Qemu-devel] [PULL 0/6] final s390x patches for -rc0 Cornelia Huck
                   ` (2 preceding siblings ...)
  2018-11-05 16:43 ` [Qemu-devel] [PULL 3/6] MAINTAINERS: s390/virtio-ccw: drop Christian, add Halil Cornelia Huck
@ 2018-11-05 16:43 ` Cornelia Huck
  2018-11-05 16:43 ` [Qemu-devel] [PULL 5/6] MAINTAINERS: s390: Remove myself Cornelia Huck
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Cornelia Huck @ 2018-11-05 16:43 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Christian Borntraeger, Alexander Graf, Richard Henderson,
	David Hildenbrand, Thomas Huth, Collin Walling, Eric Farman,
	Farhan Ali, Halil Pasic, qemu-s390x, qemu-devel, Cornelia Huck

From: Christian Borntraeger <borntraeger@de.ibm.com>

Collin will take over the maintainership from Yi Min. Let us add a
separate s390 pci section.

Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Message-Id: <1540827745-20795-4-git-send-email-borntraeger@de.ibm.com>
Acked-by: Collin Walling <walling@linux.ibm.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
---
 MAINTAINERS | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 5b6f4a2f3f..15709e099b 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -956,6 +956,12 @@ F: pc-bios/s390-ccw.img
 T: git git://github.com/borntraeger/qemu.git s390-next
 L: qemu-s390x@nongnu.org
 
+S390 PCI
+M: Collin Walling <walling@linux.ibm.com>
+S: Supported
+F: hw/s390x/s390-pci*
+L: qemu-s390x@nongnu.org
+
 UniCore32 Machines
 -------------
 PKUnity-3 SoC initramfs-with-busybox
-- 
2.14.5

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [Qemu-devel] [PULL 5/6] MAINTAINERS: s390: Remove myself
  2018-11-05 16:43 [Qemu-devel] [PULL 0/6] final s390x patches for -rc0 Cornelia Huck
                   ` (3 preceding siblings ...)
  2018-11-05 16:43 ` [Qemu-devel] [PULL 4/6] MAINTAINERS: s390/pci: add Collin Walling as maintainer for zpci Cornelia Huck
@ 2018-11-05 16:43 ` Cornelia Huck
  2018-11-05 16:43 ` [Qemu-devel] [PULL 6/6] MAINTAINERS: s390/boot: the ipl code and the bios belong together Cornelia Huck
  2018-11-06 10:51 ` [Qemu-devel] [PULL 0/6] final s390x patches for -rc0 Peter Maydell
  6 siblings, 0 replies; 8+ messages in thread
From: Cornelia Huck @ 2018-11-05 16:43 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Christian Borntraeger, Alexander Graf, Richard Henderson,
	David Hildenbrand, Thomas Huth, Collin Walling, Eric Farman,
	Farhan Ali, Halil Pasic, qemu-s390x, qemu-devel, Cornelia Huck

From: Alexander Graf <agraf@suse.de>

I haven't realistically maintained s390 related parts for quite a while
now, so let's remove my name from the MAINTAINERS file to reflect reality.

Signed-off-by: Alexander Graf <agraf@suse.de>
Message-Id: <20181030093715.18793-1-agraf@suse.de>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
---
 MAINTAINERS | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 15709e099b..e0e8b5fb9e 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -253,7 +253,6 @@ F: disas/riscv.c
 
 S390
 M: Richard Henderson <rth@twiddle.net>
-M: Alexander Graf <agraf@suse.de>
 M: David Hildenbrand <david@redhat.com>
 S: Maintained
 F: target/s390x/
@@ -349,7 +348,6 @@ F: target/ppc/kvm.c
 S390
 M: Christian Borntraeger <borntraeger@de.ibm.com>
 M: Cornelia Huck <cohuck@redhat.com>
-M: Alexander Graf <agraf@suse.de>
 S: Maintained
 F: target/s390x/kvm.c
 F: target/s390x/kvm_s390x.h
@@ -934,7 +932,6 @@ S390 Machines
 S390 Virtio-ccw
 M: Cornelia Huck <cohuck@redhat.com>
 M: Christian Borntraeger <borntraeger@de.ibm.com>
-M: Alexander Graf <agraf@suse.de>
 S: Supported
 F: hw/char/sclp*.[hc]
 F: hw/char/terminal3270.c
@@ -1998,7 +1995,6 @@ F: tcg/ppc/
 F: disas/ppc.c
 
 S390 target
-M: Alexander Graf <agraf@suse.de>
 M: Richard Henderson <rth@twiddle.net>
 S: Maintained
 F: tcg/s390/
-- 
2.14.5

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [Qemu-devel] [PULL 6/6] MAINTAINERS: s390/boot: the ipl code and the bios belong together
  2018-11-05 16:43 [Qemu-devel] [PULL 0/6] final s390x patches for -rc0 Cornelia Huck
                   ` (4 preceding siblings ...)
  2018-11-05 16:43 ` [Qemu-devel] [PULL 5/6] MAINTAINERS: s390: Remove myself Cornelia Huck
@ 2018-11-05 16:43 ` Cornelia Huck
  2018-11-06 10:51 ` [Qemu-devel] [PULL 0/6] final s390x patches for -rc0 Peter Maydell
  6 siblings, 0 replies; 8+ messages in thread
From: Cornelia Huck @ 2018-11-05 16:43 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Christian Borntraeger, Alexander Graf, Richard Henderson,
	David Hildenbrand, Thomas Huth, Collin Walling, Eric Farman,
	Farhan Ali, Halil Pasic, qemu-s390x, qemu-devel, Cornelia Huck

From: Christian Borntraeger <borntraeger@de.ibm.com>

The s390-ccw bios and the ipl code do work in lock-step. Let us merge
them in the maintainer file.

Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Message-Id: <1540827745-20795-5-git-send-email-borntraeger@de.ibm.com>
Acked-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
---
 MAINTAINERS | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index e0e8b5fb9e..8ec2281a7e 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -944,10 +944,11 @@ T: git git://github.com/cohuck/qemu.git s390-next
 T: git git://github.com/borntraeger/qemu.git s390-next
 L: qemu-s390x@nongnu.org
 
-S390-ccw Bios
+S390-ccw boot
 M: Christian Borntraeger <borntraeger@de.ibm.com>
 M: Thomas Huth <thuth@redhat.com>
 S: Supported
+F: hw/s390x/ipl.*
 F: pc-bios/s390-ccw/
 F: pc-bios/s390-ccw.img
 T: git git://github.com/borntraeger/qemu.git s390-next
-- 
2.14.5

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [Qemu-devel] [PULL 0/6] final s390x patches for -rc0
  2018-11-05 16:43 [Qemu-devel] [PULL 0/6] final s390x patches for -rc0 Cornelia Huck
                   ` (5 preceding siblings ...)
  2018-11-05 16:43 ` [Qemu-devel] [PULL 6/6] MAINTAINERS: s390/boot: the ipl code and the bios belong together Cornelia Huck
@ 2018-11-06 10:51 ` Peter Maydell
  6 siblings, 0 replies; 8+ messages in thread
From: Peter Maydell @ 2018-11-06 10:51 UTC (permalink / raw)
  To: Cornelia Huck
  Cc: Christian Borntraeger, Alexander Graf, Richard Henderson,
	David Hildenbrand, Thomas Huth, Collin Walling, Eric Farman,
	Farhan Ali, Halil Pasic, qemu-s390x, QEMU Developers

On 5 November 2018 at 16:43, Cornelia Huck <cohuck@redhat.com> wrote:
> The following changes since commit 7d56239f159afc2e7bd42623947e56ba48f37836:
>
>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20181102' into staging (2018-11-02 17:17:12 +0000)
>
> are available in the Git repository at:
>
>   https://github.com/cohuck/qemu tags/s390x-20181105
>
> for you to fetch changes up to 8e4eb4279fce9a736131b94b6f5f09f0503e4ab3:
>
>   MAINTAINERS: s390/boot: the ipl code and the bios belong together (2018-11-05 09:55:29 +0100)
>
> ----------------------------------------------------------------
> - some changes in s390x maintainership
> - bugfix in vfio-ap
>
> ----------------------------------------------------------------
Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2018-11-06 10:52 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-05 16:43 [Qemu-devel] [PULL 0/6] final s390x patches for -rc0 Cornelia Huck
2018-11-05 16:43 ` [Qemu-devel] [PULL 1/6] s390x/vfio-ap: report correct error Cornelia Huck
2018-11-05 16:43 ` [Qemu-devel] [PULL 2/6] MAINTAINERS: s390: more maintainers for vfio-ccw Cornelia Huck
2018-11-05 16:43 ` [Qemu-devel] [PULL 3/6] MAINTAINERS: s390/virtio-ccw: drop Christian, add Halil Cornelia Huck
2018-11-05 16:43 ` [Qemu-devel] [PULL 4/6] MAINTAINERS: s390/pci: add Collin Walling as maintainer for zpci Cornelia Huck
2018-11-05 16:43 ` [Qemu-devel] [PULL 5/6] MAINTAINERS: s390: Remove myself Cornelia Huck
2018-11-05 16:43 ` [Qemu-devel] [PULL 6/6] MAINTAINERS: s390/boot: the ipl code and the bios belong together Cornelia Huck
2018-11-06 10:51 ` [Qemu-devel] [PULL 0/6] final s390x patches for -rc0 Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.