[SCSI] iscsi_tcp: don't fire conn error if pdu init fails
authorMike Christie <michaelc@cs.wisc.edu>
Tue, 21 Apr 2009 20:32:31 +0000 (15:32 -0500)
committerJames Bottomley <James.Bottomley@HansenPartnership.com>
Mon, 27 Apr 2009 15:09:51 +0000 (10:09 -0500)
commit9a6510eb3f030cedba32664498a610dc6d084d46
tree694b56e08f2a89000a9e312ce4d6f83a50878263
parent70932935b61ee3dcc5a419ec4c367feb2ff808e4
[SCSI] iscsi_tcp: don't fire conn error if pdu init fails

If a command's scsi cmd pdu setup fails then we can just fail
the IO to the scsi layer. If a DATA_OUT for a R2T fails then
we will want to drop the session, because it means we got a
bad request from the target (iscsi protocol error).

This patch has us propogate the error upwards so libiscsi_tcp
or libiscsi can decide what the best action is to take. It
also fixes a bug where we could try to grab the session lock
while holding it, because if iscsi_tcp drops the session in the
pdu setup callout the session lock is held when setting up the
scsi cmd pdu.

Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
drivers/scsi/iscsi_tcp.c
drivers/scsi/libiscsi_tcp.c