Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.13 21 lines 784 B view raw
1#ifndef _SCSI_SCSI_DBG_H 2#define _SCSI_SCSI_DBG_H 3 4struct scsi_cmnd; 5struct scsi_request; 6 7extern void scsi_print_command(struct scsi_cmnd *); 8extern void __scsi_print_command(unsigned char *); 9extern void scsi_print_sense(const char *, struct scsi_cmnd *); 10extern void scsi_print_req_sense(const char *, struct scsi_request *); 11extern void __scsi_print_sense(const char *name, 12 const unsigned char *sense_buffer, 13 int sense_len); 14extern void scsi_print_driverbyte(int); 15extern void scsi_print_hostbyte(int); 16extern void scsi_print_status(unsigned char); 17extern int scsi_print_msg(const unsigned char *); 18extern const char *scsi_sense_key_string(unsigned char); 19extern const char *scsi_extd_sense_format(unsigned char, unsigned char); 20 21#endif /* _SCSI_SCSI_DBG_H */