Commit 47513cf4 authored by Bart Van Assche's avatar Bart Van Assche Committed by Doug Ledford
Browse files

IB/srp: Remove a superfluous check from srp_free_req_data()



The function srp_free_req_data() does not use ch->target.
Hence remove the ch->target != NULL check.

Signed-off-by: default avatarBart Van Assche <bart.vanassche@sandisk.com>
Cc: Sagi Grimberg <sagig@mellanox.com>
Cc: Sebastian Parschauer <sebastian.riemer@profitbricks.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent 33ab3e5b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -836,7 +836,7 @@ static void srp_free_req_data(struct srp_target_port *target,
	struct srp_request *req;
	int i;

	if (!ch->target || !ch->req_ring)
	if (!ch->req_ring)
		return;

	for (i = 0; i < target->req_ring_size; ++i) {