Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753829Ab3IEOcl (ORCPT ); Thu, 5 Sep 2013 10:32:41 -0400 Received: from mail-la0-f44.google.com ([209.85.215.44]:54734 "EHLO mail-la0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753279Ab3IEOcj (ORCPT ); Thu, 5 Sep 2013 10:32:39 -0400 Message-ID: <52289604.50202@cogentembedded.com> Date: Thu, 05 Sep 2013 18:32:36 +0400 From: Sergei Shtylyov Organization: Cogent Embedded User-Agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130801 Thunderbird/17.0.8 MIME-Version: 1.0 To: Alexander Gordeev CC: linux-kernel@vger.kernel.org, x86@kernel.org, linux-pci@vger.kernel.org, linux-ide@vger.kernel.org, Tejun Heo , Ingo Molnar , Joerg Roedel , Jan Beulich , Bjorn Helgaas Subject: Re: [PATCH v2 5/6] AHCI: Check MRSM bit when multiple MSIs enabled References: <4bc31d6ccf3f84399b977fe8ed4fe77aadfa1c79.1378383792.git.agordeev@redhat.com> In-Reply-To: <4bc31d6ccf3f84399b977fe8ed4fe77aadfa1c79.1378383792.git.agordeev@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1213 Lines: 39 Hello. On 09/05/2013 04:54 PM, Alexander Gordeev wrote: > Do not trust the hardware and always check if MSI > Revert to Single Message mode was enforced. Fall > back to the single MSI mode in case it did. Not > doing so might screw up the interrupt handling. > Signed-off-by: Alexander Gordeev > --- > drivers/ata/ahci.c | 16 ++++++++++++++++ > drivers/ata/ahci.h | 1 + > 2 files changed, 17 insertions(+), 0 deletions(-) > diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c > index a6bb618..af5d535 100644 > --- a/drivers/ata/ahci.c > +++ b/drivers/ata/ahci.c > @@ -1091,6 +1091,14 @@ static inline void ahci_gtf_filter_workaround(struct ata_host *host) > {} > #endif > > +static int ahci_get_mrsm(struct ahci_host_priv *hpriv) > +{ > + void __iomem *mmio = hpriv->mmio; > + u32 ctl = readl(mmio + HOST_CTL); > + > + return (ctl & HOST_MRSM); Parens not needed here, in case you'll respin this once more. WBR, Sergei -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/