diff options
author | Leon Romanovsky <leonro@mellanox.com> | 2019-02-12 19:39:14 +0100 |
---|---|---|
committer | Jason Gunthorpe <jgg@mellanox.com> | 2019-02-16 05:39:15 +0100 |
commit | be56b07b4f3d0ab37abfb86a78f47bfcfeb6c51c (patch) | |
tree | 7422f797082adbf2a6f2e0b27efec691b090cc06 /drivers/infiniband/hw/nes/nes_verbs.h | |
parent | IB/hfi1: Fix a build warning for TID RDMA READ (diff) | |
download | linux-be56b07b4f3d0ab37abfb86a78f47bfcfeb6c51c.tar.xz linux-be56b07b4f3d0ab37abfb86a78f47bfcfeb6c51c.zip |
RDMA/nes: Remove useless usecnt variable and redundant memset
The internal design of RDMA/core ensures that there dealloc ucontext will
be called only if alloc_ucontext succeeded, hence there is no need to
manage internal variable to mark validity of ucontext.
As part of this change, remove redundant memeset too.
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/infiniband/hw/nes/nes_verbs.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/nes/nes_verbs.h b/drivers/infiniband/hw/nes/nes_verbs.h index e02a5662dc20..114a9b59fefd 100644 --- a/drivers/infiniband/hw/nes/nes_verbs.h +++ b/drivers/infiniband/hw/nes/nes_verbs.h @@ -59,7 +59,6 @@ struct nes_ucontext { struct list_head cq_reg_mem_list; struct list_head qp_reg_mem_list; u32 mcrqf; - atomic_t usecnt; }; struct nes_pd { |