summaryrefslogtreecommitdiffstats
path: root/freebsd/sys/cam/cam_sim.h
diff options
context:
space:
mode:
Diffstat (limited to 'freebsd/sys/cam/cam_sim.h')
-rw-r--r--freebsd/sys/cam/cam_sim.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/freebsd/sys/cam/cam_sim.h b/freebsd/sys/cam/cam_sim.h
index ba0ac18f..7309e97c 100644
--- a/freebsd/sys/cam/cam_sim.h
+++ b/freebsd/sys/cam/cam_sim.h
@@ -145,24 +145,10 @@ struct cam_sim {
u_int32_t flags;
#define CAM_SIM_REL_TIMEOUT_PENDING 0x01
#define CAM_SIM_MPSAFE 0x02
-#define CAM_SIM_ON_DONEQ 0x04
-#define CAM_SIM_POLLED 0x08
-#define CAM_SIM_BATCH 0x10
struct callout callout;
struct cam_devq *devq; /* Device Queue to use for this SIM */
int refcount; /* References to the SIM. */
-
- /* "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
- * or have their * opening counts changed.
- */
- u_int max_ccbs;
- /* Current count of allocated ccbs */
- u_int ccb_count;
#endif /* __rtems__ */
-
};
#define CAM_SIM_LOCK(sim) mtx_lock((sim)->mtx)