 311b581e1d
			
		
	
	
	311b581e1d
	
	
	
		
			
			Because scsi_print_sense_hdr prefixes with KERN_INFO, the output from scsi_io_completion looks like: sd 0:0:0:0: [sdb] Device not ready: <6>: Sense Key : 0x2 [current] : ASC=0x4 ASCQ=0x3 By using scsi_show_sense_hdr, we can get the much more appealing output: sd 0:0:0:0: [sdb] Device not ready: Sense Key : 0x2 [current] sd 0:0:0:0: [sdb] Device not ready: ASC=0x4 ASCQ=0x3 Acked-by: Matthew Wilcox <willy@linux.intel.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			968 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			968 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef _SCSI_SCSI_DBG_H
 | |
| #define _SCSI_SCSI_DBG_H
 | |
| 
 | |
| struct scsi_cmnd;
 | |
| struct scsi_sense_hdr;
 | |
| 
 | |
| extern void scsi_print_command(struct scsi_cmnd *);
 | |
| extern void __scsi_print_command(unsigned char *);
 | |
| extern void scsi_show_extd_sense(unsigned char, unsigned char);
 | |
| extern void scsi_show_sense_hdr(struct scsi_sense_hdr *);
 | |
| extern void scsi_print_sense_hdr(const char *, struct scsi_sense_hdr *);
 | |
| extern void scsi_cmd_print_sense_hdr(struct scsi_cmnd *, const char *,
 | |
| 				     struct scsi_sense_hdr *);
 | |
| extern void scsi_print_sense(char *, struct scsi_cmnd *);
 | |
| extern void __scsi_print_sense(const char *name,
 | |
| 			       const unsigned char *sense_buffer,
 | |
| 			       int sense_len);
 | |
| extern void scsi_show_result(int);
 | |
| extern void scsi_print_result(struct scsi_cmnd *);
 | |
| extern void scsi_print_status(unsigned char);
 | |
| extern const char *scsi_sense_key_string(unsigned char);
 | |
| extern const char *scsi_extd_sense_format(unsigned char, unsigned char);
 | |
| 
 | |
| #endif /* _SCSI_SCSI_DBG_H */
 |