diff options
author | Jason Gunthorpe <[email protected]> | 2023-02-09 12:51:36 -0400 |
---|---|---|
committer | Leon Romanovsky <[email protected]> | 2023-02-12 20:25:25 +0200 |
commit | 91d088a0304941b88c915cc800617ff4068cdd39 (patch) | |
tree | 8244caf5b7ce976c765290ad28959c7400802077 | |
parent | 9cd9842c46996ef62173c36619c746f57416bcb0 (diff) |
RDMA/umem: Remove unused 'work' member from struct ib_umem
It is not used now.
Fixes: b95df5e3e459 ("drivers/IB,core: reduce scope of mmap_sem")
Signed-off-by: Jason Gunthorpe <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Reviewed-by: Devesh Sharma <[email protected]>
Signed-off-by: Leon Romanovsky <[email protected]>
-rw-r--r-- | include/rdma/ib_umem.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/rdma/ib_umem.h b/include/rdma/ib_umem.h index 92a673cd9b4f..95896472a82b 100644 --- a/include/rdma/ib_umem.h +++ b/include/rdma/ib_umem.h @@ -25,7 +25,6 @@ struct ib_umem { u32 writable : 1; u32 is_odp : 1; u32 is_dmabuf : 1; - struct work_struct work; struct sg_append_table sgt_append; }; |