From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51861) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ehdE9-0003wc-DR for qemu-devel@nongnu.org; Fri, 02 Feb 2018 10:27:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ehdD5-0003J1-By for qemu-devel@nongnu.org; Fri, 02 Feb 2018 10:26:09 -0500 Date: Fri, 2 Feb 2018 11:35:13 +0100 From: Cornelia Huck Message-ID: <20180202113513.15c37b32.cohuck@redhat.com> In-Reply-To: <20180202113301.0522c7bc.cohuck@redhat.com> References: <20180202094241.59537-1-borntraeger@de.ibm.com> <8d3af693-3dd8-20b7-c7c1-38d7c6cce65d@de.ibm.com> <20180202113301.0522c7bc.cohuck@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] s390x/sclp: fix event mask handling List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Christian Borntraeger Cc: qemu-s390x@nongnu.org, qemu-devel@nongnu.org, Halil Pasic , Claudio Imbrenda , Cornelia Huck , "Jason J. Herne" , qemu-stable@nongnu.org On Fri, 2 Feb 2018 11:33:01 +0100 Cornelia Huck wrote: > On Fri, 2 Feb 2018 10:43:18 +0100 > Christian Borntraeger wrote: > > > On 02/02/2018 10:42 AM, Christian Borntraeger wrote: > > > commit 67915de9f038 ("s390x/event-facility: variable-length event > > > masks") switches the sclp receive/send mask. This broke the sclp > > > lm console. > > Hum. Probably should add sclp-lm to my test setup. > > > > > > > Signed-off-by: Christian Borntraeger > > > Fixes: commit 67915de9f038 ("s390x/event-facility: variable-length event masks") > > > Cc: Cornelia Huck > > > > opps. Please fixup yourself Conny :-) > > Well, you did cc: the original author :) > > > > > > Cc: Jason J. Herne > > > Cc: qemu-stable@nongnu.org > > > --- > > > hw/s390x/event-facility.c | 4 ++-- > > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > > > diff --git a/hw/s390x/event-facility.c b/hw/s390x/event-facility.c > > > index b0f71f4554..155a69467b 100644 > > > --- a/hw/s390x/event-facility.c > > > +++ b/hw/s390x/event-facility.c > > > @@ -293,10 +293,10 @@ static void write_event_mask(SCLPEventFacility *ef, SCCB *sccb) > > > ef->receive_mask = be32_to_cpu(tmp_mask); > > > > > > /* return the SCLP's capability masks to the guest */ > > > - tmp_mask = cpu_to_be32(get_host_send_mask(ef)); > > > + tmp_mask = cpu_to_be32(get_host_receive_mask(ef)); > > > copy_mask(WEM_RECEIVE_MASK(we_mask, mask_length), (uint8_t *)&tmp_mask, > > > mask_length, sizeof(tmp_mask)); > > > - tmp_mask = cpu_to_be32(get_host_receive_mask(ef)); > > > + tmp_mask = cpu_to_be32(get_host_send_mask(ef)); > > > copy_mask(WEM_SEND_MASK(we_mask, mask_length), (uint8_t *)&tmp_mask, > > > mask_length, sizeof(tmp_mask)); > > > > > > > Thanks, applied. Oh, and as always, I still take R-bs until I prepare a pull req.