svn commit: r241689 - head/sys/dev/nvme

Gleb Smirnoff glebius at FreeBSD.org
Thu Oct 18 14:25:33 UTC 2012


Author: glebius
Date: Thu Oct 18 14:25:33 2012
New Revision: 241689
URL: http://svn.freebsd.org/changeset/base/241689

Log:
  Fix build after r241659.

Modified:
  head/sys/dev/nvme/nvme_qpair.c

Modified: head/sys/dev/nvme/nvme_qpair.c
==============================================================================
--- head/sys/dev/nvme/nvme_qpair.c	Thu Oct 18 14:08:26 2012	(r241688)
+++ head/sys/dev/nvme/nvme_qpair.c	Thu Oct 18 14:25:33 2012	(r241689)
@@ -124,7 +124,7 @@ nvme_qpair_process_completions(struct nv
 
 		qpair->act_tr[cpl->cid] = NULL;
 
-		KASSERT(cpl->cid == tr->cmd.cid,
+		KASSERT(cpl->cid == req->cmd.cid,
 		    ("cpl cid does not match cmd cid\n"));
 
 		if (req->cb_fn && !retry)


More information about the svn-src-head mailing list