diff options
author | Himanshu Jha <himanshujha199640@gmail.com> | 2017-08-25 21:41:02 +0530 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-08-28 19:12:25 -0400 |
commit | 2d72d6c4ec1e3761e8cfc69d58d498b2dbe46341 (patch) | |
tree | 41c9e2d66879f196db4dfb861a33ac5755e42334 /drivers/infiniband/hw/bnxt_re/ib_verbs.c | |
parent | d518a44d317d92f4c297ea26a308b1ac1a980d33 (diff) | |
download | blackbird-op-linux-2d72d6c4ec1e3761e8cfc69d58d498b2dbe46341.tar.gz blackbird-op-linux-2d72d6c4ec1e3761e8cfc69d58d498b2dbe46341.zip |
RDMA/bnxt_re: remove unnecessary call to memset
call to memset to assign 0 value immediately after allocating
memory with kzalloc is unnecesaary as kzalloc allocates the memory
filled with 0 value.
Signed-off-by: Himanshu Jha <himanshujha199640@gmail.com>
Reviewed-by: Yuval Shaia <yuval.shaia@oracle.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/hw/bnxt_re/ib_verbs.c')
-rw-r--r-- | drivers/infiniband/hw/bnxt_re/ib_verbs.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/infiniband/hw/bnxt_re/ib_verbs.c b/drivers/infiniband/hw/bnxt_re/ib_verbs.c index 43b3dee4b6ba..01eee15bbd65 100644 --- a/drivers/infiniband/hw/bnxt_re/ib_verbs.c +++ b/drivers/infiniband/hw/bnxt_re/ib_verbs.c @@ -911,7 +911,6 @@ static struct bnxt_re_ah *bnxt_re_create_shadow_qp_ah if (!ah) return NULL; - memset(ah, 0, sizeof(*ah)); ah->rdev = rdev; ah->qplib_ah.pd = &pd->qplib_pd; @@ -958,7 +957,6 @@ static struct bnxt_re_qp *bnxt_re_create_shadow_qp if (!qp) return NULL; - memset(qp, 0, sizeof(*qp)); qp->rdev = rdev; /* Initialize the shadow QP structure from the QP1 values */ |