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

nvme-wrap: fix get_log_reachability_associations parameters order #2715

Merged
merged 1 commit into from
Feb 17, 2025
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
2 changes: 1 addition & 1 deletion nvme-wrap.c
Original file line number Diff line number Diff line change
Expand Up @@ -467,5 +467,5 @@ int nvme_cli_get_log_reachability_groups(struct nvme_dev *dev, bool rgo, bool ra
int nvme_cli_get_log_reachability_associations(struct nvme_dev *dev, bool rao, bool rae, __u32 len,
struct nvme_reachability_associations_log *log)
{
return do_admin_op(get_log_reachability_associations, dev, len, rao, rae, log);
return do_admin_op(get_log_reachability_associations, dev, rao, rae, len, log);
}