diff options
Diffstat (limited to 'drivers/s390/scsi/zfcp_dbf.c')
| -rw-r--r-- | drivers/s390/scsi/zfcp_dbf.c | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/s390/scsi/zfcp_dbf.c b/drivers/s390/scsi/zfcp_dbf.c index 075852f6968..a86117b0d6e 100644 --- a/drivers/s390/scsi/zfcp_dbf.c +++ b/drivers/s390/scsi/zfcp_dbf.c @@ -155,6 +155,8 @@ void _zfcp_dbf_hba_fsf_response(const char *tag2, int level,  		if (scsi_cmnd) {  			response->u.fcp.cmnd = (unsigned long)scsi_cmnd;  			response->u.fcp.serial = scsi_cmnd->serial_number; +			response->u.fcp.data_dir = +				qtcb->bottom.io.data_direction;  		}  		break; @@ -326,6 +328,7 @@ static void zfcp_dbf_hba_view_response(char **p,  	case FSF_QTCB_FCP_CMND:  		if (r->fsf_req_status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT)  			break; +		zfcp_dbf_out(p, "data_direction", "0x%04x", r->u.fcp.data_dir);  		zfcp_dbf_out(p, "scsi_cmnd", "0x%0Lx", r->u.fcp.cmnd);  		zfcp_dbf_out(p, "scsi_serial", "0x%016Lx", r->u.fcp.serial);  		*p += sprintf(*p, "\n"); @@ -1005,7 +1008,7 @@ int zfcp_dbf_adapter_register(struct zfcp_adapter *adapter)  	char dbf_name[DEBUG_MAX_NAME_LEN];  	struct zfcp_dbf *dbf; -	dbf = kmalloc(sizeof(struct zfcp_dbf), GFP_KERNEL); +	dbf = kzalloc(sizeof(struct zfcp_dbf), GFP_KERNEL);  	if (!dbf)  		return -ENOMEM;  |