svn commit: r185530 - stable/6/lib/libcam
Marius Strobl
marius at FreeBSD.org
Mon Dec 1 12:33:23 PST 2008
Author: marius
Date: Mon Dec 1 20:33:22 2008
New Revision: 185530
URL: http://svn.freebsd.org/changeset/base/185530
Log:
MFC: r184379
Supply a valid Connect ID when issuing XPT_DEV_MATCH.
PR: 127605
Modified:
stable/6/lib/libcam/ (props changed)
stable/6/lib/libcam/camlib.c
Modified: stable/6/lib/libcam/camlib.c
==============================================================================
--- stable/6/lib/libcam/camlib.c Mon Dec 1 20:16:56 2008 (r185529)
+++ stable/6/lib/libcam/camlib.c Mon Dec 1 20:33:22 2008 (r185530)
@@ -346,6 +346,9 @@ cam_open_btl(path_id_t path_id, target_i
bzero(&ccb, sizeof(union ccb));
ccb.ccb_h.func_code = XPT_DEV_MATCH;
+ ccb.ccb_h.path_id = CAM_XPT_PATH_ID;
+ ccb.ccb_h.target_id = CAM_TARGET_WILDCARD;
+ ccb.ccb_h.target_lun = CAM_LUN_WILDCARD;
/* Setup the result buffer */
bufsize = sizeof(struct dev_match_result);
More information about the svn-src-stable
mailing list