-
Notifications
You must be signed in to change notification settings - Fork 131
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
ioctl: add nvme_get_egid_log() #936
Conversation
71bff73
to
97d333d
Compare
.len = len, | ||
.nsid = NVME_NSID_ALL, | ||
.lsp = rgo, | ||
.rae = rae, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Timeout missing?
Looks all good. Just my comment on the timeout. |
The default timeout value is zero so not needed to set as initialized the variable args timeout as zero. Should we set the default value explicitly? Thank you. |
I see. Though it would be possible to set it and then some of the commands have value 0 and the test is something else. Let's follow the existing pattern. That makes it a bit more consistent. IIRC, this is also why the other not used fields in the existing commands are excplicitly set to 0 (e.g. |
This is to use for the endurance group scope log page. Signed-off-by: Tokunori Ikegami <[email protected]>
Since added the NVMe 2.1 log page. Signed-off-by: Tokunori Ikegami <[email protected]>
Since added the NVMe 2.1 log page. Signed-off-by: Tokunori Ikegami <[email protected]>
Since added the NVMe 2.1 log page. Signed-off-by: Tokunori Ikegami <[email protected]>
Since added the NVMe 2.1 log page. Signed-off-by: Tokunori Ikegami <[email protected]>
Since added the NVMe 2.1 log page. Signed-off-by: Tokunori Ikegami <[email protected]>
Since added the NVMe 2.1 log page. Signed-off-by: Tokunori Ikegami <[email protected]>
Since added the NVMe 2.1 log page. Signed-off-by: Tokunori Ikegami <[email protected]>
Since added the NVMe 2.1 log page. Signed-off-by: Tokunori Ikegami <[email protected]>
Since added the NVMe 2.1 log page. Signed-off-by: Tokunori Ikegami <[email protected]>
8a45c61
to
30bd194
Compare
Fixed the patch to set the timeout and other values unset before. I just understood again as before you mentioned for the nvme-cli commands config values as same. Thank you. |
Thanks! |
This is to use for the endurance group scope log page.