|
|
902636 |
From 7258b1fabcd152c2ad9b61485b869a41d1bc64e2 Mon Sep 17 00:00:00 2001
|
|
|
902636 |
From: Cornelia Huck <cohuck@redhat.com>
|
|
|
902636 |
Date: Tue, 23 Jun 2020 09:25:35 -0400
|
|
|
902636 |
Subject: [PATCH 01/12] vfio-ccw: Fix error message
|
|
|
902636 |
MIME-Version: 1.0
|
|
|
902636 |
Content-Type: text/plain; charset=UTF-8
|
|
|
902636 |
Content-Transfer-Encoding: 8bit
|
|
|
902636 |
|
|
|
902636 |
RH-Author: Cornelia Huck <cohuck@redhat.com>
|
|
|
902636 |
Message-id: <20200623092543.358315-2-cohuck@redhat.com>
|
|
|
902636 |
Patchwork-id: 97693
|
|
|
902636 |
O-Subject: [RHEL-8.3.0 qemu-kvm PATCH 1/9] vfio-ccw: Fix error message
|
|
|
902636 |
Bugzilla: 1660916
|
|
|
902636 |
RH-Acked-by: Claudio Imbrenda <cimbrend@redhat.com>
|
|
|
902636 |
RH-Acked-by: David Hildenbrand <david@redhat.com>
|
|
|
902636 |
RH-Acked-by: Thomas Huth <thuth@redhat.com>
|
|
|
902636 |
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
|
|
|
902636 |
|
|
|
902636 |
From: Boris Fiuczynski <fiuczy@linux.ibm.com>
|
|
|
902636 |
|
|
|
902636 |
Signed-off-by: Boris Fiuczynski <fiuczy@linux.ibm.com>
|
|
|
902636 |
Reviewed-by: Eric Farman <farman@linux.ibm.com>
|
|
|
902636 |
Message-Id: <20191128143015.5231-1-fiuczy@linux.ibm.com>
|
|
|
902636 |
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
|
|
|
902636 |
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
|
|
|
902636 |
(cherry picked from commit 91f751dc111b270b1e81d80ac92cf479e7620fa4)
|
|
|
902636 |
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
|
|
|
902636 |
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
|
902636 |
---
|
|
|
902636 |
hw/vfio/ccw.c | 2 +-
|
|
|
902636 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
902636 |
|
|
|
902636 |
diff --git a/hw/vfio/ccw.c b/hw/vfio/ccw.c
|
|
|
902636 |
index 6863f6c69f..3b5520ae75 100644
|
|
|
902636 |
--- a/hw/vfio/ccw.c
|
|
|
902636 |
+++ b/hw/vfio/ccw.c
|
|
|
902636 |
@@ -102,7 +102,7 @@ again:
|
|
|
902636 |
if (errno == EAGAIN) {
|
|
|
902636 |
goto again;
|
|
|
902636 |
}
|
|
|
902636 |
- error_report("vfio-ccw: wirte I/O region failed with errno=%d", errno);
|
|
|
902636 |
+ error_report("vfio-ccw: write I/O region failed with errno=%d", errno);
|
|
|
902636 |
ret = -errno;
|
|
|
902636 |
} else {
|
|
|
902636 |
ret = region->ret_code;
|
|
|
902636 |
--
|
|
|
902636 |
2.27.0
|
|
|
902636 |
|