Skip to content

Commit

Permalink
virtio_blk: zone append in header type tweak
Browse files Browse the repository at this point in the history
virtio blk returns a 64 bit append_sector in an input buffer,
in LE format. This field is not tagged as LE correctly, so
even though the generated code is ok, we get warnings from sparse:

drivers/block/virtio_blk.c:332:33: sparse: sparse: cast to restricted __le64

Make sparse happy by using the correct type.

Message-Id: <20221220125154.564265-1-mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
  • Loading branch information
Michael S. Tsirkin committed Feb 15, 2023
1 parent 04e5421 commit 2a9c844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/block/virtio_blk.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ struct virtblk_req {
struct {
u8 status;
u8 reserved[7];
u64 append_sector;
__le64 append_sector;
} zone_append_in_hdr;
};

Expand Down

0 comments on commit 2a9c844

Please sign in to comment.