diff options
author | Xiao Yang <yangx.jy@fujitsu.com> | 2021-09-30 17:48:11 +0800 |
---|---|---|
committer | Jason Gunthorpe <jgg@nvidia.com> | 2021-10-06 19:45:30 -0300 |
commit | 609bb8c3a3f5652d5fb66373c6e539ae6bd6be2f (patch) | |
tree | 3c5c703580c62f6f817b43e554a4d7dca533c484 /drivers/infiniband/sw/rxe/rxe_verbs.h | |
parent | 1cf2ce8272802e677398fab47a73713bc6e1fd5c (diff) |
RDMA/rxe: Change the is_user member of struct rxe_cq to bool
Make the is_user members of struct rxe_qp/rxe_cq has the same type.
Link: https://lore.kernel.org/r/20210930094813.226888-3-yangx.jy@fujitsu.com
Signed-off-by: Xiao Yang <yangx.jy@fujitsu.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Diffstat (limited to 'drivers/infiniband/sw/rxe/rxe_verbs.h')
-rw-r--r-- | drivers/infiniband/sw/rxe/rxe_verbs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/sw/rxe/rxe_verbs.h b/drivers/infiniband/sw/rxe/rxe_verbs.h index 962bb2481a28..098fde693dbd 100644 --- a/drivers/infiniband/sw/rxe/rxe_verbs.h +++ b/drivers/infiniband/sw/rxe/rxe_verbs.h @@ -64,7 +64,7 @@ struct rxe_cq { spinlock_t cq_lock; u8 notify; bool is_dying; - int is_user; + bool is_user; struct tasklet_struct comp_task; }; |