Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 Oct 2012 14:25:33 +0000 (UTC)
From:      Gleb Smirnoff <glebius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r241689 - head/sys/dev/nvme
Message-ID:  <201210181425.q9IEPX6o056176@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)



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