[SCSI] tgt: stop zero'ing scsi_cmnd

The scsi midlayer allocates scsi_cmnd->sense_buffer dynamically so we
can't initialize scsi_cmnd (the midlyaer does for us).

Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>

authored by FUJITA Tomonori and committed by James Bottomley 36802e99 b560665c

-1
-1
drivers/scsi/scsi_tgt_lib.c
··· 103 103 if (!cmd) 104 104 goto release_rq; 105 105 106 - memset(cmd, 0, sizeof(*cmd)); 107 106 cmd->sc_data_direction = data_dir; 108 107 cmd->jiffies_at_alloc = jiffies; 109 108 cmd->request = rq;