Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Nov 2011 20:12:59 +0000 (UTC)
From:      Xin LI <delphij@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r227406 - projects/head_mfi/sys/dev/mfi
Message-ID:  <201111092012.pA9KCxZJ098123@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: delphij
Date: Wed Nov  9 20:12:59 2011
New Revision: 227406
URL: http://svn.freebsd.org/changeset/base/227406

Log:
  Incorporate Scott Long's patch for mfi(4) that fixes mfi(4) timeouts for
  our hardware:
  
  mfi0@pci0:2:0:0:        class=0x010400 card=0x100a1000 chip=0x00601000 rev=0x04 hdr=0x00
      vendor     = 'LSI Logic / Symbios Logic'
      device     = 'MegaRAID SAS 1078'

Modified:
  projects/head_mfi/sys/dev/mfi/mfi.c

Modified: projects/head_mfi/sys/dev/mfi/mfi.c
==============================================================================
--- projects/head_mfi/sys/dev/mfi/mfi.c	Wed Nov  9 19:09:03 2011	(r227405)
+++ projects/head_mfi/sys/dev/mfi/mfi.c	Wed Nov  9 20:12:59 2011	(r227406)
@@ -1239,6 +1239,12 @@ mfi_intr(void *arg)
 	if (sc->mfi_check_clear_intr(sc))
 		return;
 
+	/*
+	 * Do a dummy read to flush the interrupt ACK that we just performed,
+	 * ensuring that everything is really, truly consistent.
+	 */
+	(void)sc->mfi_read_fw_status(sc);
+
 	pi = sc->mfi_comms->hw_pi;
 	ci = sc->mfi_comms->hw_ci;
 	mtx_lock(&sc->mfi_io_lock);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201111092012.pA9KCxZJ098123>