Lines Matching defs:pvscsi_softc
193 struct pvscsi_softc { struct
194 device_t dev;
195 struct lock lock;
196 struct cam_sim *sim;
197 struct cam_path *bus_path;
198 int frozen;
199 struct pvscsi_rings_state *rings_state;
200 struct pvscsi_ring_req_desc *req_ring;
201 struct pvscsi_ring_cmp_desc *cmp_ring;
202 struct pvscsi_ring_msg_desc *msg_ring;
203 uint32_t hcb_cnt;
204 struct pvscsi_hcb *hcbs;
206 bus_dma_tag_t parent_dmat;
207 bus_dma_tag_t buffer_dmat;
209 bool use_msg;
210 uint32_t max_targets;
211 int mm_rid;
212 struct resource *mm_res;
213 int irq_id;
237 static int pvscsi_get_tunable(struct pvscsi_softc *sc, char *name, int value) in pvscsi_get_tunable() argument