2005-04-17 06:20:36 +08:00
|
|
|
#ifndef _SCSI_SCSI_DBG_H
|
|
|
|
#define _SCSI_SCSI_DBG_H
|
|
|
|
|
|
|
|
struct scsi_cmnd;
|
2014-10-24 20:26:45 +08:00
|
|
|
struct scsi_device;
|
2005-08-29 00:33:52 +08:00
|
|
|
struct scsi_sense_hdr;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2015-01-08 14:43:44 +08:00
|
|
|
#define SCSI_LOG_BUFSIZE 128
|
|
|
|
|
|
|
|
extern bool scsi_opcode_sa_name(int, int, const char **, const char **);
|
2005-04-17 06:20:36 +08:00
|
|
|
extern void scsi_print_command(struct scsi_cmnd *);
|
2015-01-08 14:43:44 +08:00
|
|
|
extern size_t __scsi_format_command(char *, size_t,
|
|
|
|
const unsigned char *, size_t);
|
2014-10-24 20:26:45 +08:00
|
|
|
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,
|
2005-04-17 06:20:36 +08:00
|
|
|
const unsigned char *sense_buffer,
|
|
|
|
int sense_len);
|
2014-10-24 20:27:01 +08:00
|
|
|
extern void scsi_print_result(struct scsi_cmnd *, const char *, int);
|
2014-10-24 20:26:59 +08:00
|
|
|
extern const char *scsi_hostbyte_string(int);
|
|
|
|
extern const char *scsi_driverbyte_string(int);
|
2014-10-24 20:27:01 +08:00
|
|
|
extern const char *scsi_mlreturn_string(int);
|
2005-04-17 06:20:36 +08:00
|
|
|
extern const char *scsi_sense_key_string(unsigned char);
|
2014-10-24 20:26:45 +08:00
|
|
|
extern const char *scsi_extd_sense_format(unsigned char, unsigned char,
|
|
|
|
const char **);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#endif /* _SCSI_SCSI_DBG_H */
|