From: "Michael S. Tsirkin" <mst@redhat.com>
To: Stefan Hajnoczi <stefanha@redhat.com>
Cc: qemu-devel@nongnu.org, Hanna Reitz <hreitz@redhat.com>,
qemu-block@nongnu.org, Kevin Wolf <kwolf@redhat.com>
Subject: Re: [PATCH] virtio-blk: do not use C99 mixed declarations
Date: Tue, 6 Feb 2024 10:57:37 -0500 [thread overview]
Message-ID: <20240206105722-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <20240206140410.65650-1-stefanha@redhat.com>
On Tue, Feb 06, 2024 at 09:04:09AM -0500, Stefan Hajnoczi wrote:
> QEMU's coding style generally forbids C99 mixed declarations.
>
> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
or maybe it's time we moved on?
> ---
> hw/block/virtio-blk.c | 25 ++++++++++++++-----------
> 1 file changed, 14 insertions(+), 11 deletions(-)
>
> diff --git a/hw/block/virtio-blk.c b/hw/block/virtio-blk.c
> index 227d83569f..f6009cd9b3 100644
> --- a/hw/block/virtio-blk.c
> +++ b/hw/block/virtio-blk.c
> @@ -661,16 +661,16 @@ static void virtio_blk_zone_report_complete(void *opaque, int ret)
> int64_t zrp_size, n, j = 0;
> int64_t nz = data->zone_report_data.nr_zones;
> int8_t err_status = VIRTIO_BLK_S_OK;
> -
> - trace_virtio_blk_zone_report_complete(vdev, req, nz, ret);
> - if (ret) {
> - err_status = VIRTIO_BLK_S_ZONE_INVALID_CMD;
> - goto out;
> - }
> -
> struct virtio_blk_zone_report zrp_hdr = (struct virtio_blk_zone_report) {
> .nr_zones = cpu_to_le64(nz),
> };
> +
> + trace_virtio_blk_zone_report_complete(vdev, req, nz, ret);
> + if (ret) {
> + err_status = VIRTIO_BLK_S_ZONE_INVALID_CMD;
> + goto out;
> + }
> +
> zrp_size = sizeof(struct virtio_blk_zone_report)
> + sizeof(struct virtio_blk_zone_descriptor) * nz;
> n = iov_from_buf(in_iov, in_num, 0, &zrp_hdr, sizeof(zrp_hdr));
> @@ -898,13 +898,14 @@ static int virtio_blk_handle_zone_append(VirtIOBlockReq *req,
>
> int64_t offset = virtio_ldq_p(vdev, &req->out.sector) << BDRV_SECTOR_BITS;
> int64_t len = iov_size(out_iov, out_num);
> + ZoneCmdData *data;
>
> trace_virtio_blk_handle_zone_append(vdev, req, offset >> BDRV_SECTOR_BITS);
> if (!check_zoned_request(s, offset, len, true, &err_status)) {
> goto out;
> }
>
> - ZoneCmdData *data = g_malloc(sizeof(ZoneCmdData));
> + data = g_malloc(sizeof(ZoneCmdData));
> data->req = req;
> data->in_iov = in_iov;
> data->in_num = in_num;
> @@ -1191,14 +1192,15 @@ static void virtio_blk_dma_restart_cb(void *opaque, bool running,
> {
> VirtIOBlock *s = opaque;
> uint16_t num_queues = s->conf.num_queues;
> + g_autofree VirtIOBlockReq **vq_rq = NULL;
> + VirtIOBlockReq *rq;
>
> if (!running) {
> return;
> }
>
> /* Split the device-wide s->rq request list into per-vq request lists */
> - g_autofree VirtIOBlockReq **vq_rq = g_new0(VirtIOBlockReq *, num_queues);
> - VirtIOBlockReq *rq;
> + vq_rq = g_new0(VirtIOBlockReq *, num_queues);
>
> WITH_QEMU_LOCK_GUARD(&s->rq_lock) {
> rq = s->rq;
> @@ -1924,6 +1926,7 @@ static void virtio_blk_device_realize(DeviceState *dev, Error **errp)
> VirtIODevice *vdev = VIRTIO_DEVICE(dev);
> VirtIOBlock *s = VIRTIO_BLK(dev);
> VirtIOBlkConf *conf = &s->conf;
> + BlockDriverState *bs;
> Error *err = NULL;
> unsigned i;
>
> @@ -1969,7 +1972,7 @@ static void virtio_blk_device_realize(DeviceState *dev, Error **errp)
> return;
> }
>
> - BlockDriverState *bs = blk_bs(conf->conf.blk);
> + bs = blk_bs(conf->conf.blk);
> if (bs->bl.zoned != BLK_Z_NONE) {
> virtio_add_feature(&s->host_features, VIRTIO_BLK_F_ZONED);
> if (bs->bl.zoned == BLK_Z_HM) {
> --
> 2.43.0
next prev parent reply other threads:[~2024-02-06 15:58 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-06 14:04 [PATCH] virtio-blk: do not use C99 mixed declarations Stefan Hajnoczi
2024-02-06 15:14 ` Hanna Czenczek
2024-02-06 15:57 ` Michael S. Tsirkin [this message]
2024-02-06 18:52 ` Stefan Hajnoczi
2024-02-07 14:09 ` Kevin Wolf
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240206105722-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=hreitz@redhat.com \
--cc=kwolf@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).