Reformat the comments for cam_hdr so that they can be read.

This commit is contained in:
scottl 2004-06-07 19:12:44 +00:00
parent 00c753c659
commit fa6e1c3882

View File

@ -265,21 +265,20 @@ struct ccb_hdr {
camq_entry sim_links; /* For chaining in the SIM layer */
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;
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 */