All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dan Carpenter <dan.carpenter@oracle.com>
To: elic@nvidia.com
Cc: virtualization@lists.linux-foundation.org
Subject: [bug report] vdpa/mlx5: Support different address spaces for control and data
Date: Thu, 11 Aug 2022 13:39:37 +0300	[thread overview]
Message-ID: <YvTcabeJrDkd7/MP@kili> (raw)

Hello Eli Cohen,

The patch d5358cd0e369: "vdpa/mlx5: Support different address spaces
for control and data" from Jul 14, 2022, leads to the following
Smatch static checker warning:

	drivers/vdpa/mlx5/net/mlx5_vnet.c:2676 mlx5_vdpa_set_map()
	error: uninitialized symbol 'err'.

drivers/vdpa/mlx5/net/mlx5_vnet.c
    2657 static int mlx5_vdpa_set_map(struct vdpa_device *vdev, unsigned int asid,
    2658                              struct vhost_iotlb *iotlb)
    2659 {
    2660         struct mlx5_vdpa_dev *mvdev = to_mvdev(vdev);
    2661         struct mlx5_vdpa_net *ndev = to_mlx5_vdpa_ndev(mvdev);
    2662         int err;
    2663 
    2664         down_write(&ndev->reslock);
    2665         if (mvdev->group2asid[MLX5_VDPA_DATAVQ_GROUP] == asid) {
    2666                 err = set_map_data(mvdev, iotlb);
    2667                 if (err)
    2668                         goto out;
    2669         }
    2670 
    2671         if (mvdev->group2asid[MLX5_VDPA_CVQ_GROUP] == asid)
    2672                 err = set_map_control(mvdev, iotlb);

err not initialized on else path.  My guess is that one or both of these
conditions has to be true and this is a false positive but I don't know
the code well enough to be sure.

    2673 
    2674 out:
    2675         up_write(&ndev->reslock);
--> 2676         return err;
    2677 }

regards,
dan carpenter
_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

             reply	other threads:[~2022-08-11 10:40 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-11 10:39 Dan Carpenter [this message]
     [not found] ` <DM8PR12MB54007865AC6BC6FCEC9911FCAB649@DM8PR12MB5400.namprd12.prod.outlook.com>
2022-08-11 13:05   ` [bug report] vdpa/mlx5: Support different address spaces for control and data Michael S. Tsirkin
2022-08-11 13:09   ` Michael S. Tsirkin
     [not found]     ` <DM8PR12MB54007F39684505DC60ACB92CAB649@DM8PR12MB5400.namprd12.prod.outlook.com>
2022-08-11 13:21       ` Michael S. Tsirkin

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=YvTcabeJrDkd7/MP@kili \
    --to=dan.carpenter@oracle.com \
    --cc=elic@nvidia.com \
    --cc=virtualization@lists.linux-foundation.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.