summaryrefslogtreecommitdiffstats
path: root/sys/cam
diff options
context:
space:
mode:
authorscottl <scottl@FreeBSD.org>2004-06-07 19:12:44 +0000
committerscottl <scottl@FreeBSD.org>2004-06-07 19:12:44 +0000
commita866680c8a37a0e9c181f04f7874672fb7ef69a3 (patch)
tree51d88390d3ee6dbbbd2d1581fc2377f1e9d649d3 /sys/cam
parent769daa5d1da4742e8e4c46e9293891f6efb93fc7 (diff)
downloadFreeBSD-src-a866680c8a37a0e9c181f04f7874672fb7ef69a3.zip
FreeBSD-src-a866680c8a37a0e9c181f04f7874672fb7ef69a3.tar.gz
Reformat the comments for cam_hdr so that they can be read.
Diffstat (limited to 'sys/cam')
-rw-r--r--sys/cam/cam_ccb.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/sys/cam/cam_ccb.h b/sys/cam/cam_ccb.h
index 025493f..01995b3 100644
--- a/sys/cam/cam_ccb.h
+++ b/sys/cam/cam_ccb.h
@@ -260,26 +260,25 @@ typedef union {
} ccb_spriv_area;
struct ccb_hdr {
- cam_pinfo pinfo; /* Info for priority scheduling */
+ cam_pinfo pinfo; /* Info for priority scheduling */
camq_entry xpt_links; /* For chaining in the XPT layer */
camq_entry sim_links; /* For chaining in the SIM layer */
- camq_entry periph_links;/* For chaining in the type driver */
+ camq_entry periph_links; /* For chaining in the type driver */
u_int32_t retry_count;
- /* Callback on completion function */
void (*cbfcnp)(struct cam_periph *, union ccb *);
+ /* Callback on completion function */
xpt_opcode func_code; /* XPT function code */
- u_int32_t status; /* Status returned by CAM subsystem */
- /* Compiled path for this ccb */
- struct cam_path *path;
+ u_int32_t status; /* Status returned by CAM subsystem */
+ struct cam_path *path; /* Compiled path for this ccb */
path_id_t path_id; /* Path ID for the request */
target_id_t target_id; /* Target device ID */
lun_id_t target_lun; /* Target LUN number */
- u_int32_t flags;
+ u_int32_t flags; /* ccb_flags */
ccb_ppriv_area periph_priv;
ccb_spriv_area sim_priv;
u_int32_t timeout; /* Timeout value */
- /* Callout handle used for timeouts */
struct callout_handle timeout_ch;
+ /* Callout handle used for timeouts */
};
/* Get Device Information CCB */
OpenPOWER on IntegriCloud