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>
This commit is contained in:
Xiao Yang 2021-09-30 17:48:11 +08:00 committed by Jason Gunthorpe
parent 1cf2ce8272
commit 609bb8c3a3
2 changed files with 2 additions and 3 deletions

View File

@ -77,8 +77,7 @@ int rxe_cq_from_init(struct rxe_dev *rxe, struct rxe_cq *cq, int cqe,
return err;
}
if (uresp)
cq->is_user = 1;
cq->is_user = uresp;
cq->is_dying = false;

View File

@ -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;
};