diff options
author | scottl <scottl@FreeBSD.org> | 2008-12-22 16:58:47 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2008-12-22 16:58:47 +0000 |
commit | 1681c4addb7b643f92793b4a1f15749f6b1a7ba2 (patch) | |
tree | cbd40592606794d7ec71718f428d1f10b0677bd0 | |
parent | ed57814fd96f82561e2396450653743fdce0740b (diff) | |
download | FreeBSD-src-1681c4addb7b643f92793b4a1f15749f6b1a7ba2.zip FreeBSD-src-1681c4addb7b643f92793b4a1f15749f6b1a7ba2.tar.gz |
Fix a comment to reflect what really happens.
-rw-r--r-- | sys/cam/cam_sim.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/cam/cam_sim.h b/sys/cam/cam_sim.h index f37c5d5..0b55f6e 100644 --- a/sys/cam/cam_sim.h +++ b/sys/cam/cam_sim.h @@ -109,7 +109,7 @@ struct cam_sim { struct cam_devq *devq; /* Device Queue to use for this SIM */ int refcount; /* References to the SIM. */ - /* "Pool" of inactive ccbs managed by xpt_alloc_ccb and xpt_free_ccb */ + /* "Pool" of inactive ccbs managed by xpt_get_ccb and xpt_release_ccb */ SLIST_HEAD(,ccb_hdr) ccb_freeq; /* * Maximum size of ccb pool. Modified as devices are added/removed |