hw/nvme: remove useless type cast
authorYao Xingtao <yaoxt.fnst@fujitsu.com>
Mon, 22 Jul 2024 09:17:28 +0000 (05:17 -0400)
committerKlaus Jensen <k.jensen@samsung.com>
Mon, 22 Jul 2024 12:43:17 +0000 (14:43 +0200)
The type of req->cmd is NvmeCmd, cast the pointer of this type to
NvmeCmd* is useless.

Signed-off-by: Yao Xingtao <yaoxt.fnst@fujitsu.com>
Reviewed-by: Klaus Jensen <k.jensen@samsung.com>
Signed-off-by: Klaus Jensen <k.jensen@samsung.com>
hw/nvme/ctrl.c

index 39782ddb2e7692175c428b7cfbdb0ee5e7c36629..8d25174d257b96d04356949b341713b4bf8567ff 100644 (file)
@@ -4340,7 +4340,7 @@ static bool nvme_zone_matches_filter(uint32_t zafs, NvmeZone *zl)
 
 static uint16_t nvme_zone_mgmt_recv(NvmeCtrl *n, NvmeRequest *req)
 {
-    NvmeCmd *cmd = (NvmeCmd *)&req->cmd;
+    NvmeCmd *cmd = &req->cmd;
     NvmeNamespace *ns = req->ns;
     /* cdw12 is zero-based number of dwords to return. Convert to bytes */
     uint32_t data_size = (le32_to_cpu(cmd->cdw12) + 1) << 2;