diff options
| author | Anuj Gupta <[email protected]> | 2024-08-26 16:09:43 +0530 |
|---|---|---|
| committer | Keith Busch <[email protected]> | 2024-08-26 09:51:32 -0700 |
| commit | cead0b8991713bdeb5b947758dd62287fcf8da40 (patch) | |
| tree | 319be0df3fdb988b143109068351fb0c07aa4088 /include/linux | |
| parent | 03c3d7c74371a46d967fbf41628874ec04ddda96 (diff) | |
nvme: rename apptag and appmask to lbat and lbatm
Rename apptag and appmask to lbat and lbatm so that it matches the field
names used in NVMe spec.
Signed-off-by: Anuj Gupta <[email protected]>
Signed-off-by: Kanchan Joshi <[email protected]>
Suggested-by: Christoph Hellwig <[email protected]>
Reviewed-by: Sagi Grimberg <[email protected]>
Signed-off-by: Keith Busch <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/nvme.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/nvme.h b/include/linux/nvme.h index 7b2ae2e43544..b58d9405d65e 100644 --- a/include/linux/nvme.h +++ b/include/linux/nvme.h @@ -987,8 +987,8 @@ struct nvme_rw_command { __le16 control; __le32 dsmgmt; __le32 reftag; - __le16 apptag; - __le16 appmask; + __le16 lbat; + __le16 lbatm; }; enum { @@ -1057,8 +1057,8 @@ struct nvme_write_zeroes_cmd { __le16 control; __le32 dsmgmt; __le32 reftag; - __le16 apptag; - __le16 appmask; + __le16 lbat; + __le16 lbatm; }; enum nvme_zone_mgmt_action { |