From bab7c15c47e6546d5c1598b61fc18b229024ed66 Mon Sep 17 00:00:00 2001 From: Peter Avalos Date: Wed, 28 Nov 2007 21:20:25 +0000 Subject: [PATCH] Whitespace to make comments more legible. Obtained-from: FreeBSD --- sys/bus/cam/cam_ccb.h | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/sys/bus/cam/cam_ccb.h b/sys/bus/cam/cam_ccb.h index ed9694feec..d773a5f1fa 100644 --- a/sys/bus/cam/cam_ccb.h +++ b/sys/bus/cam/cam_ccb.h @@ -26,7 +26,7 @@ * SUCH DAMAGE. * * $FreeBSD: src/sys/cam/cam_ccb.h,v 1.15.2.3 2003/07/29 04:00:34 njl Exp $ - * $DragonFly: src/sys/bus/cam/cam_ccb.h,v 1.12 2007/11/21 20:07:31 pavalos Exp $ + * $DragonFly: src/sys/bus/cam/cam_ccb.h,v 1.13 2007/11/28 21:20:25 pavalos Exp $ */ #ifndef _CAM_CAM_CCB_H @@ -259,26 +259,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 timeout_ch; + /* Callout handle used for timeouts */ }; /* Get Device Information CCB */ -- 2.41.0