Lines Matching defs:scsi_target
298 struct scsi_target { struct
299 struct scsi_device *starget_sdev_user;
300 struct list_head siblings;
301 struct list_head devices;
302 struct device dev;
303 struct kref reap_ref; /* last put renders target invisible */
304 unsigned int channel;
305 unsigned int id; /* target id ... replace
307 unsigned int create:1; /* signal that it needs to be added */
331 enum scsi_target_state state; argument
337 #define to_scsi_target(d) container_of(d, struct scsi_target, dev) argument
338 static inline struct scsi_target *scsi_target(struct scsi_device *sdev) in scsi_target() function