svn commit: r257654 - head/sys/dev/cxgbe

Navdeep Parhar np at FreeBSD.org
Mon Nov 4 21:06:22 UTC 2013


Author: np
Date: Mon Nov  4 21:06:21 2013
New Revision: 257654
URL: http://svnweb.freebsd.org/changeset/base/257654

Log:
  cxgbe(4): Exclude MPS_RPLC_MAP_CTL (0x11114) from the register dump.  Turns
  out it's a write-only register with strange side effects on read.
  
  Submitted by:	gnn
  MFC after:	3 days

Modified:
  head/sys/dev/cxgbe/t4_main.c

Modified: head/sys/dev/cxgbe/t4_main.c
==============================================================================
--- head/sys/dev/cxgbe/t4_main.c	Mon Nov  4 20:38:32 2013	(r257653)
+++ head/sys/dev/cxgbe/t4_main.c	Mon Nov  4 21:06:21 2013	(r257654)
@@ -3401,7 +3401,8 @@ t4_get_regs(struct adapter *sc, struct t
 		0xd004, 0xd03c,
 		0xdfc0, 0xdfe0,
 		0xe000, 0xea7c,
-		0xf000, 0x11190,
+		0xf000, 0x11110,
+		0x11118, 0x11190,
 		0x19040, 0x1906c,
 		0x19078, 0x19080,
 		0x1908c, 0x19124,
@@ -3607,7 +3608,8 @@ t4_get_regs(struct adapter *sc, struct t
 		0xd004, 0xd03c,
 		0xdfc0, 0xdfe0,
 		0xe000, 0x11088,
-		0x1109c, 0x1117c,
+		0x1109c, 0x11110,
+		0x11118, 0x1117c,
 		0x11190, 0x11204,
 		0x19040, 0x1906c,
 		0x19078, 0x19080,


More information about the svn-src-all mailing list