Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 737b94eb authored by Roland Dreier's avatar Roland Dreier
Browse files

IB/srp: Fix integer -> pointer cast warnings



Fix

    drivers/infiniband/ulp/srp/ib_srp.c: In function 'srp_handle_recv':
    drivers/infiniband/ulp/srp/ib_srp.c:1150: warning: cast to pointer from integer of different size
    drivers/infiniband/ulp/srp/ib_srp.c: In function 'srp_send_completion':
    drivers/infiniband/ulp/srp/ib_srp.c:1234: warning: cast to pointer from integer of different size

by adding an intermediate cast to uintptr_t.

Signed-off-by: default avatarRoland Dreier <roland@purestorage.com>
Acked-by: default avatarDavid Dillow <dillowda@ornl.gov>
parent 257313b2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1147,7 +1147,7 @@ static void srp_process_aer_req(struct srp_target_port *target,
static void srp_handle_recv(struct srp_target_port *target, struct ib_wc *wc)
{
	struct ib_device *dev = target->srp_host->srp_dev->dev;
	struct srp_iu *iu = (struct srp_iu *) wc->wr_id;
	struct srp_iu *iu = (struct srp_iu *) (uintptr_t) wc->wr_id;
	int res;
	u8 opcode;

@@ -1231,7 +1231,7 @@ static void srp_send_completion(struct ib_cq *cq, void *target_ptr)
			break;
		}

		iu = (struct srp_iu *) wc.wr_id;
		iu = (struct srp_iu *) (uintptr_t) wc.wr_id;
		list_add(&iu->list, &target->free_tx);
	}
}