svn commit: r247828 - in stable: 8/sys/dev/mfi 9/sys/dev/mfi

Xin LI delphij at FreeBSD.org
Tue Mar 5 06:43:55 UTC 2013


Author: delphij
Date: Tue Mar  5 06:43:54 2013
New Revision: 247828
URL: http://svnweb.freebsd.org/changeset/base/247828

Log:
  MFC r247594:
  
  Fix a typo in mfi_stp_cmd() that would give wrong assignment.
  
  Submitted by:	Sascha Wildner <saw online de>
  Obtained from:	DragonFly rev 0dc98fff2206d7bb78ce5e07ac34d6954e4bd96a

Modified:
  stable/8/sys/dev/mfi/mfi.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/dev/   (props changed)
  stable/8/sys/dev/mfi/   (props changed)

Changes in other areas also in this revision:
Modified:
  stable/9/sys/dev/mfi/mfi.c
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/dev/   (props changed)

Modified: stable/8/sys/dev/mfi/mfi.c
==============================================================================
--- stable/8/sys/dev/mfi/mfi.c	Tue Mar  5 06:41:39 2013	(r247827)
+++ stable/8/sys/dev/mfi/mfi.c	Tue Mar  5 06:43:54 2013	(r247828)
@@ -2904,7 +2904,7 @@ mfi_stp_cmd(struct mfi_softc *sc, struct
 			cm->cm_frame->stp.sgl.sg64[i].len =
 			    ioc->mfi_sgl[i].iov_len;
 		} else {
-			cm->cm_frame->stp.sgl.sg32[i].len =
+			cm->cm_frame->stp.sgl.sg32[i].addr =
 			    kern_sge[i].phys_addr;
 			cm->cm_frame->stp.sgl.sg32[i].len =
 			    ioc->mfi_sgl[i].iov_len;


More information about the svn-src-stable-8 mailing list