From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from e06smtp11.uk.ibm.com ([195.75.94.107]:55732 "EHLO e06smtp11.uk.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751605AbaFWKrs (ORCPT ); Mon, 23 Jun 2014 06:47:48 -0400 Received: from /spool/local by e06smtp11.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 23 Jun 2014 11:47:46 +0100 Date: Mon, 23 Jun 2014 12:47:42 +0200 (CEST) From: Sebastian Ott To: Yijing Wang cc: Bjorn Helgaas , Gerald Schaefer , Martin Schwidefsky , Heiko Carstens , linux-s390@vger.kernel.org, linux-pci@vger.kernel.org, Wuyun , Xinwei Hu Subject: Re: [PATCH 5/5] s390/MSI: Fix msi mask issue In-Reply-To: <1403166674-6836-1-git-send-email-wangyijing@huawei.com> Message-ID: References: <1403166674-6836-1-git-send-email-wangyijing@huawei.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-pci-owner@vger.kernel.org List-ID: On Thu, 19 Jun 2014, Yijing Wang wrote: > Maskbit in msi_attrib indicates MSI whether > support mask-pending bit. It is read only, > should save mask state in masked. > > Signed-off-by: Yijing Wang > --- > arch/s390/pci/pci.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/arch/s390/pci/pci.c b/arch/s390/pci/pci.c > index bdf0257..4651d6b 100644 > --- a/arch/s390/pci/pci.c > +++ b/arch/s390/pci/pci.c > @@ -263,7 +263,7 @@ static int zpci_msi_set_mask_bits(struct msi_desc *msi, u32 mask, u32 flag) > } else > return 0; > > - msi->msi_attrib.maskbit = !!flag; > + msi->masked = !!flag; > return 1; > } > > -- > 1.7.1 > > > Applied, thanks! Sebastian