Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

libibverbs: correct access range bits flag name #1510

Merged
merged 1 commit into from
Nov 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions libibverbs/verbs.h
Original file line number Diff line number Diff line change
Expand Up @@ -2568,9 +2568,9 @@ static inline int ibv_close_xrcd(struct ibv_xrcd *xrcd)
* ibv_reg_mr_iova2 - Register memory region with a virtual offset address
*
* This version will be called if ibv_reg_mr or ibv_reg_mr_iova were called
* with at least one potential access flag from the IBV_OPTIONAL_ACCESS_RANGE
* flags range The optional access flags will be masked if running over kernel
* that does not support passing them.
* with at least one optional access flag from the IBV_ACCESS_OPTIONAL_RANGE
* bits flag range. The optional access flags will be masked if running over
* kernel that does not support passing them.
*/
struct ibv_mr *ibv_reg_mr_iova2(struct ibv_pd *pd, void *addr, size_t length,
uint64_t iova, unsigned int access);
Expand Down