mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 06:00:53 +07:00
ef61329db7
Open-code scsi_print_result in sd.c, and cleanup logging to not print duplicate informations. Also remove the call to scsi_show_result() in ufshcd.c to be consistent with other callers of scsi_execute(). With that we can remove scsi_show_result in constants.c Signed-off-by: Hannes Reinecke <hare@suse.de> Reviewed-by: Robert Elliott <elliott@hp.com> Signed-off-by: Christoph Hellwig <hch@lst.de>
28 lines
1.1 KiB
C
28 lines
1.1 KiB
C
#ifndef _SCSI_SCSI_DBG_H
|
|
#define _SCSI_SCSI_DBG_H
|
|
|
|
struct scsi_cmnd;
|
|
struct scsi_device;
|
|
struct scsi_sense_hdr;
|
|
|
|
extern void scsi_print_command(struct scsi_cmnd *);
|
|
extern void __scsi_print_command(const unsigned char *, size_t);
|
|
extern void scsi_show_extd_sense(const struct scsi_device *, const char *,
|
|
unsigned char, unsigned char);
|
|
extern void scsi_show_sense_hdr(const struct scsi_device *, const char *,
|
|
const struct scsi_sense_hdr *);
|
|
extern void scsi_print_sense_hdr(const struct scsi_device *, const char *,
|
|
const struct scsi_sense_hdr *);
|
|
extern void scsi_print_sense(const struct scsi_cmnd *);
|
|
extern void __scsi_print_sense(const struct scsi_device *, const char *name,
|
|
const unsigned char *sense_buffer,
|
|
int sense_len);
|
|
extern void scsi_print_result(struct scsi_cmnd *);
|
|
extern const char *scsi_hostbyte_string(int);
|
|
extern const char *scsi_driverbyte_string(int);
|
|
extern const char *scsi_sense_key_string(unsigned char);
|
|
extern const char *scsi_extd_sense_format(unsigned char, unsigned char,
|
|
const char **);
|
|
|
|
#endif /* _SCSI_SCSI_DBG_H */
|