Commit 1a40f0a3 authored by Varun Prakash's avatar Varun Prakash Committed by Nicholas Bellinger

iscsi-target: fix iscsi cmd leak

If iscsi-target receives NOP OUT with ITT and TTT
set to 0xffffffff it allocates iscsi_cmd but
does not free the cmd, so free iscsi_cmd in this case.
Signed-off-by: default avatarVarun Prakash <varun@chelsio.com>
Signed-off-by: default avatarNicholas Bellinger <nab@linux-iscsi.org>
parent 3fc6a642
...@@ -1804,6 +1804,10 @@ int iscsit_process_nop_out(struct iscsi_conn *conn, struct iscsi_cmd *cmd, ...@@ -1804,6 +1804,10 @@ int iscsit_process_nop_out(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
* Otherwise, initiator is not expecting a NOPIN is response. * Otherwise, initiator is not expecting a NOPIN is response.
* Just ignore for now. * Just ignore for now.
*/ */
if (cmd)
iscsit_free_cmd(cmd, false);
return 0; return 0;
} }
EXPORT_SYMBOL(iscsit_process_nop_out); EXPORT_SYMBOL(iscsit_process_nop_out);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment