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

Commit da496438 authored by Roland Dreier's avatar Roland Dreier
Browse files

RDMA/ocrdma: Fix warnings about uninitialized variables



First, fix

    drivers/infiniband/hw/ocrdma/ocrdma_verbs.c: In function 'ocrdma_alloc_pd':
    drivers/infiniband/hw/ocrdma/ocrdma_verbs.c:371:17: warning: 'dpp_page_addr' may be used uninitialized in this function [-Wuninitialized]
    drivers/infiniband/hw/ocrdma/ocrdma_verbs.c:337:6: note: 'dpp_page_addr' was declared here

which seems that it may border on a bug (the call to ocrdma_del_mmap()
might conceivably do bad things if pd->dpp_enabled is not set and
dpp_page_addr ends up with just the wrong value).

Also take care of:

    drivers/infiniband/hw/ocrdma/ocrdma_hw.c: In function 'ocrdma_init_hw':
    drivers/infiniband/hw/ocrdma/ocrdma_hw.c:2587:5: warning: 'status' may be used uninitialized in this function [-Wuninitialized]
    drivers/infiniband/hw/ocrdma/ocrdma_hw.c:2549:17: note: 'status' was declared here

which is only real if num_eq == 0, which should be impossible.

Signed-off-by: default avatarRoland Dreier <roland@purestorage.com>
parent fe2caefc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2546,7 +2546,7 @@ static int ocrdma_create_mq_eq(struct ocrdma_dev *dev)

static int ocrdma_create_qp_eqs(struct ocrdma_dev *dev)
{
	int num_eq, i, status;
	int num_eq, i, status = 0;
	int irq;
	unsigned long flags = 0;

+3 −2
Original line number Diff line number Diff line
@@ -334,7 +334,7 @@ static int ocrdma_copy_pd_uresp(struct ocrdma_pd *pd,
{
	int status;
	u64 db_page_addr;
	u64 dpp_page_addr;
	u64 dpp_page_addr = 0;
	u32 db_page_size;
	struct ocrdma_alloc_pd_uresp rsp;
	struct ocrdma_ucontext *uctx = get_ocrdma_ucontext(ib_ctx);
@@ -368,6 +368,7 @@ static int ocrdma_copy_pd_uresp(struct ocrdma_pd *pd,
	return 0;

ucopy_err:
	if (pd->dpp_enabled)
		ocrdma_del_mmap(pd->uctx, dpp_page_addr, OCRDMA_DPP_PAGE_SIZE);
dpp_map_err:
	ocrdma_del_mmap(pd->uctx, db_page_addr, db_page_size);