public inbox for virtualization@lists.linux-foundation.org
 help / color / mirror / Atom feed
From: Dan Carpenter <dan.carpenter@oracle.com>
To: lingshan.zhu@intel.com
Cc: virtualization@lists.linux-foundation.org
Subject: [bug report] vDPA/ifcvf: implement shared IRQ feature
Date: Fri, 11 Mar 2022 12:00:13 +0300	[thread overview]
Message-ID: <20220311090013.GA7547@kili> (raw)

Hello Zhu Lingshan,

The patch 79333575b8bd: "vDPA/ifcvf: implement shared IRQ feature"
from Feb 22, 2022, leads to the following Smatch static checker
warning:

	drivers/vdpa/ifcvf/ifcvf_main.c:306 ifcvf_request_config_irq()
	error: uninitialized symbol 'config_vector'.

drivers/vdpa/ifcvf/ifcvf_main.c
    287 static int ifcvf_request_config_irq(struct ifcvf_adapter *adapter)
    288 {
    289         struct pci_dev *pdev = adapter->pdev;
    290         struct ifcvf_hw *vf = &adapter->vf;
    291         int config_vector, ret;
    292 
    293         if (vf->msix_vector_status == MSIX_VECTOR_DEV_SHARED)
    294                 return 0;
    295 
    296         if (vf->msix_vector_status == MSIX_VECTOR_PER_VQ_AND_CONFIG)
    297                 /* vector 0 ~ vf->nr_vring for vqs, num vf->nr_vring vector for config interrupt */
    298                 config_vector = vf->nr_vring;

Set here.

    299 
    300         if (vf->msix_vector_status ==  MSIX_VECTOR_SHARED_VQ_AND_CONFIG)
    301                 /* vector 0 for vqs and 1 for config interrupt */
    302                 config_vector = 1;

And here.  But no else path.

    303 
    304         snprintf(vf->config_msix_name, 256, "ifcvf[%s]-config\n",
    305                  pci_name(pdev));
--> 306         vf->config_irq = pci_irq_vector(pdev, config_vector);
    307         ret = devm_request_irq(&pdev->dev, vf->config_irq,
    308                                ifcvf_config_changed, 0,
    309                                vf->config_msix_name, vf);
    310         if (ret) {
    311                 IFCVF_ERR(pdev, "Failed to request config irq\n");
    312                 goto err;
    313         }
    314 
    315         ret = ifcvf_set_config_vector(vf, config_vector);
    316         if (ret == VIRTIO_MSI_NO_VECTOR) {
    317                 IFCVF_ERR(pdev, "No msix vector for device config\n");
    318                 goto err;
    319         }
    320 
    321         return 0;
    322 err:
    323         ifcvf_free_irq(adapter);
    324 
    325         return -EFAULT;
    326 }

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

             reply	other threads:[~2022-03-11  9:00 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-11  9:00 Dan Carpenter [this message]
     [not found] ` <b4a33fa9-02f5-aa9d-8a62-868a1121debe@intel.com>
2022-03-14 10:37   ` [bug report] vDPA/ifcvf: implement shared IRQ feature Dan Carpenter
     [not found]     ` <5a0462a2-8361-4b08-19b3-d4771e177764@intel.com>
2022-03-15  8:54       ` Dan Carpenter
     [not found]         ` <c62f12e0-f8e2-c490-c77e-3503d68bd8e0@intel.com>
2022-03-15  9:21           ` Dan Carpenter

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=20220311090013.GA7547@kili \
    --to=dan.carpenter@oracle.com \
    --cc=lingshan.zhu@intel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox