All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Collin L. Walling" <walling@linux.vnet.ibm.com>
To: Christian Borntraeger <borntraeger@de.ibm.com>,
	qemu-s390x@nongnu.org, qemu-devel@nongnu.org
Cc: frankja@linux.vnet.ibm.com, thuth@redhat.com, cohuck@redhat.com,
	david@redhat.com, alifm@linux.vnet.ibm.com,
	mihajlov@linux.vnet.ibm.com
Subject: Re: [Qemu-devel] [PATCH v7 11/12] s390-ccw: set cp_receive mask only when needed and consume pending service irqs
Date: Mon, 19 Feb 2018 10:49:14 -0500	[thread overview]
Message-ID: <4de003af-c4e9-1905-247d-2d6dd5dfa919@linux.vnet.ibm.com> (raw)
In-Reply-To: <a0f0e77c-eff9-c4bf-c61c-5a78a2a8d2c9@de.ibm.com>

On 02/19/2018 09:17 AM, Christian Borntraeger wrote:
>
> On 02/19/2018 03:15 PM, Christian Borntraeger wrote:
>>
>> On 02/16/2018 11:07 PM, Collin L. Walling wrote:
>>> It is possible while waiting for multiple types of external
>>> interrupts that we might have pending irqs remaining between
>>> irq consumption and irq-type disabling. Those interrupts
>>> could potentially propagate to the guest after IPL completes
>>> and cause unwanted behavior.
>>>
>>> As it is today, the SCLP will only recognize write events that
>>> are enabled by the control program's send and receive masks. To
>>> limit the window for, and prevent further irqs from, ASCII
>>> console events (specifically keystrokes), we should only enable
>>> the control program's receive mask when we need it.
>>>
>>> As an additional measure, once we've disabled/cleared the control
>>> program's receive mask, we will print an empty string in order
>>> to consume any pending service interrupt.
>>>
>>> Signed-off-by: Collin L. Walling <walling@linux.vnet.ibm.com>
>> This should work some comments below:
>>
>>> ---
>>>   pc-bios/s390-ccw/menu.c     |  5 +++++
>>>   pc-bios/s390-ccw/s390-ccw.h |  1 +
>>>   pc-bios/s390-ccw/sclp.c     | 10 ++++------
>>>   3 files changed, 10 insertions(+), 6 deletions(-)
>>>
>>> diff --git a/pc-bios/s390-ccw/menu.c b/pc-bios/s390-ccw/menu.c
>>> index 9601043..14410a8 100644
>>> --- a/pc-bios/s390-ccw/menu.c
>>> +++ b/pc-bios/s390-ccw/menu.c
>>> @@ -11,6 +11,7 @@
>>>
>>>   #include "menu.h"
>>>   #include "s390-ccw.h"
>>> +#include "sclp.h"
>>>
>>>   #define KEYCODE_NO_INP '\0'
>>>   #define KEYCODE_ESCAPE '\033'
>>> @@ -117,8 +118,12 @@ static int get_index(void)
>>>
>>>       memset(buf, 0, sizeof(buf));
>>>
>>> +    sclp_set_write_mask(SCLP_EVENT_MASK_MSG_ASCII, SCLP_EVENT_MASK_MSG_ASCII);
>>>       len = read_prompt(buf, sizeof(buf));
>>>
>>> +    sclp_set_write_mask(0, SCLP_EVENT_MASK_MSG_ASCII);
>>> +    sclp_print(""); /* Clear any pending service int */
>>> +
>> Why cant you use consume_sclp_int from start.S and not do any printing?
>> Shouldnt sclp_set_write_mask always make an interrupt pending?
> In fact sclp_set_write_mask should already call consume_sclp_int. Have you seen spurious
> interrupts?
>
>
Correct.  We don't need that print there.  Setting the mask kills two 
birds with one stone.

-- 
- Collin L Walling

  reply	other threads:[~2018-02-19 15:49 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-16 22:07 [Qemu-devel] [PATCH v7 00/12] Interactive Boot Menu for DASD and SCSI Guests on s390x Collin L. Walling
2018-02-16 22:07 ` [Qemu-devel] [PATCH v7 01/12] s390-ccw: refactor boot map table code Collin L. Walling
2018-02-17  7:20   ` Thomas Huth
2018-02-16 22:07 ` [Qemu-devel] [PATCH v7 02/12] s390-ccw: refactor eckd_block_num to use CHS Collin L. Walling
2018-02-16 22:07 ` [Qemu-devel] [PATCH v7 03/12] s390-ccw: refactor IPL structs Collin L. Walling
2018-02-16 22:07 ` [Qemu-devel] [PATCH v7 04/12] s390-ccw: update libc Collin L. Walling
2018-02-17  7:48   ` [Qemu-devel] [qemu-s390x] " Thomas Huth
2018-02-19 15:40     ` Collin L. Walling
2018-02-19 16:00       ` Thomas Huth
2018-02-19 16:19         ` Collin L. Walling
2018-02-19 17:17           ` Collin L. Walling
2018-02-19 17:54             ` Eric Blake
2018-02-19 18:07             ` Thomas Huth
2018-02-16 22:07 ` [Qemu-devel] [PATCH v7 05/12] s390-ccw: move auxiliary IPL data to separate location Collin L. Walling
2018-02-17  8:11   ` [Qemu-devel] [qemu-s390x] " Thomas Huth
2018-02-19  8:50     ` Viktor Mihajlovski
2018-02-19 12:15       ` Viktor Mihajlovski
2018-02-19 14:14         ` Thomas Huth
2018-02-19 16:07   ` [Qemu-devel] " Viktor Mihajlovski
2018-02-16 22:07 ` [Qemu-devel] [PATCH v7 06/12] s390-ccw: parse and set boot menu options Collin L. Walling
2018-02-17  8:26   ` [Qemu-devel] [qemu-s390x] " Thomas Huth
2018-02-19 12:39     ` Viktor Mihajlovski
2018-02-19 15:52   ` [Qemu-devel] " Viktor Mihajlovski
2018-02-19 20:39     ` Collin L. Walling
2018-02-20  9:55       ` Viktor Mihajlovski
2018-02-16 22:07 ` [Qemu-devel] [PATCH v7 07/12] s390-ccw: set up interactive boot menu parameters Collin L. Walling
2018-02-16 22:07 ` [Qemu-devel] [PATCH v7 08/12] s390-ccw: read stage2 boot loader data to find menu Collin L. Walling
2018-02-16 22:07 ` [Qemu-devel] [PATCH v7 09/12] s390-ccw: print zipl boot menu Collin L. Walling
2018-02-16 22:07 ` [Qemu-devel] [PATCH v7 10/12] s390-ccw: read user input for boot index via the SCLP console Collin L. Walling
2018-02-16 22:07 ` [Qemu-devel] [PATCH v7 11/12] s390-ccw: set cp_receive mask only when needed and consume pending service irqs Collin L. Walling
2018-02-19 14:15   ` Christian Borntraeger
2018-02-19 14:17     ` Christian Borntraeger
2018-02-19 15:49       ` Collin L. Walling [this message]
2018-02-19 15:48     ` Collin L. Walling
2018-02-16 22:07 ` [Qemu-devel] [PATCH v7 12/12] s390-ccw: interactive boot menu for scsi Collin L. Walling

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=4de003af-c4e9-1905-247d-2d6dd5dfa919@linux.vnet.ibm.com \
    --to=walling@linux.vnet.ibm.com \
    --cc=alifm@linux.vnet.ibm.com \
    --cc=borntraeger@de.ibm.com \
    --cc=cohuck@redhat.com \
    --cc=david@redhat.com \
    --cc=frankja@linux.vnet.ibm.com \
    --cc=mihajlov@linux.vnet.ibm.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-s390x@nongnu.org \
    --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 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.