scsi_driver.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _SCSI_SCSI_DRIVER_H
  3. #define _SCSI_SCSI_DRIVER_H
  4. #include <linux/blk_types.h>
  5. #include <linux/device.h>
  6. #include <scsi/scsi_cmnd.h>
  7. struct module;
  8. struct request;
  9. struct scsi_driver {
  10. struct device_driver gendrv;
  11. void (*rescan)(struct device *);
  12. blk_status_t (*init_command)(struct scsi_cmnd *);
  13. void (*uninit_command)(struct scsi_cmnd *);
  14. int (*done)(struct scsi_cmnd *);
  15. int (*eh_action)(struct scsi_cmnd *, int);
  16. void (*eh_reset)(struct scsi_cmnd *);
  17. };
  18. #define to_scsi_driver(drv) \
  19. container_of((drv), struct scsi_driver, gendrv)
  20. extern int scsi_register_driver(struct device_driver *);
  21. #define scsi_unregister_driver(drv) \
  22. driver_unregister(drv);
  23. extern int scsi_register_interface(struct class_interface *);
  24. #define scsi_unregister_interface(intf) \
  25. class_interface_unregister(intf)
  26. /* make sure not to use it with passthrough commands */
  27. static inline struct scsi_driver *scsi_cmd_to_driver(struct scsi_cmnd *cmd)
  28. {
  29. return to_scsi_driver(cmd->device->sdev_gendev.driver);
  30. }
  31. #endif /* _SCSI_SCSI_DRIVER_H */