Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 19 Jan 2012 20:28:58 +0000 (UTC)
From:      Pyun YongHyeon <yongari@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r230338 - head/sys/dev/bge
Message-ID:  <201201192028.q0JKSwpr006265@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yongari
Date: Thu Jan 19 20:28:58 2012
New Revision: 230338
URL: http://svn.freebsd.org/changeset/base/230338

Log:
  Oops, fix logic error introduced in r230337.

Modified:
  head/sys/dev/bge/if_bge.c

Modified: head/sys/dev/bge/if_bge.c
==============================================================================
--- head/sys/dev/bge/if_bge.c	Thu Jan 19 20:21:59 2012	(r230337)
+++ head/sys/dev/bge/if_bge.c	Thu Jan 19 20:28:58 2012	(r230338)
@@ -2745,7 +2745,7 @@ bge_can_use_msi(struct bge_softc *sc)
 {
 	int can_use_msi = 0;
 
-	if (sc->bge_msi != 0)
+	if (sc->bge_msi == 0)
 		return (0);
 
 	/* Disable MSI for polling(4). */



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