Lines Matching defs:scsi_target
290 struct scsi_target { struct
291 struct scsi_device *starget_sdev_user;
292 struct list_head siblings;
293 struct list_head devices;
294 struct device dev;
295 struct kref reap_ref; /* last put renders target invisible */
296 unsigned int channel;
297 unsigned int id; /* target id ... replace
299 unsigned int create:1; /* signal that it needs to be added */
323 enum scsi_target_state state; argument
329 #define to_scsi_target(d) container_of(d, struct scsi_target, dev) argument
330 static inline struct scsi_target *scsi_target(struct scsi_device *sdev) in scsi_target() function