Lines Matching defs:scsi_target
335 struct scsi_target { struct
336 struct scsi_device *starget_sdev_user;
337 struct list_head siblings;
338 struct list_head devices;
339 struct device dev;
340 struct kref reap_ref; /* last put renders target invisible */
341 unsigned int channel;
342 unsigned int id; /* target id ... replace
344 unsigned int create:1; /* signal that it needs to be added */
368 enum scsi_target_state state; argument
374 #define to_scsi_target(d) container_of(d, struct scsi_target, dev) argument
375 static inline struct scsi_target *scsi_target(struct scsi_device *sdev) in scsi_target() function