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

types: add struct nvme_id_ctrl_nvm ver and lbamqf member variables #899

Merged
merged 1 commit into from
Oct 28, 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
8 changes: 6 additions & 2 deletions src/nvme/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -2870,7 +2870,9 @@ struct nvme_ns_list {
* @dmsl: Dataset Management Size Limit
* @rsvd16: Reserved
* @aocs: Admin Optional Command Support
* @rsvd20: Reserved
* @ver: Version
* @lbamqf: LBA Migration Queue Format
* @rsvd25: Reserved
*/
struct nvme_id_ctrl_nvm {
__u8 vsl;
Expand All @@ -2881,7 +2883,9 @@ struct nvme_id_ctrl_nvm {
__le64 dmsl;
__u8 rsvd16[2];
__le16 aocs;
__u8 rsvd20[4076];
__le32 ver;
__u8 lbamqf;
__u8 rsvd25[4071];
};

/**
Expand Down