Skip to content

Commit a4c3dbc

Browse files
ikegami-tigaw
authored andcommitted
nvme-wrap: fix get_log_reachability_associations parameters order
Since the len parameter should be moved before the log parameter. Signed-off-by: Tokunori Ikegami <[email protected]>
1 parent c785a0a commit a4c3dbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nvme-wrap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,5 +467,5 @@ int nvme_cli_get_log_reachability_groups(struct nvme_dev *dev, bool rgo, bool ra
467467
int nvme_cli_get_log_reachability_associations(struct nvme_dev *dev, bool rao, bool rae, __u32 len,
468468
struct nvme_reachability_associations_log *log)
469469
{
470-
return do_admin_op(get_log_reachability_associations, dev, len, rao, rae, log);
470+
return do_admin_op(get_log_reachability_associations, dev, rao, rae, len, log);
471471
}

0 commit comments

Comments
 (0)