[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v6 7/8] vpci/msi: Free MSI resources when init_msi() fails


  • To: Jan Beulich <jbeulich@xxxxxxxx>
  • From: "Chen, Jiqian" <Jiqian.Chen@xxxxxxx>
  • Date: Tue, 24 Jun 2025 09:49:45 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=amd.com; dmarc=pass action=none header.from=amd.com; dkim=pass header.d=amd.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=BFy317j9jXVo9OnIQPKhKoki6BfP54zlWeEffymTP0g=; b=KqZJCo+2ojD7VcwDncj0tH9ktthakcv4NYuMVDxZVyIsLAhGUOM9VdcHFMkL+7fmQNJTskZqljW0FB0xLYddOYyW8h15jeBPjPHbIrX8u4Cxz0HttolPkCxN5i5ukZBFSh2oG8iD2EOgiJubEfNQhS+ebjl/FbkqT/myt2O97oacxWS7T5Ap5TVNVGaMaFuvh3/75rzV5u0yBgzCm+ypXFvwLACccP/sQEBQ9W4qJZhvhuIHylSIZ6gm2QfZuoR4Pn2ON4n8z0Nr3ClhNSVtlNHJLBgVeGFEy9gsF3SC1+UMXwtjZpgIdCgrxjh8/fRNrtldgFOBPXqErhXu6a0Nlw==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=yb3+4o5A6EqwTJ9o0JnzvPNtHVFbaRhkpCiyH9PYui/2pNhGFPtL7dGHHaqcE0NKkU8RDhSeUpl+3WBEalfe05e1SuOzt88lt7A+8VA77SynIGZaAozjyJNEKfO6ule5SYWu/Fo2oX/QnprzKcBA/YgDyiC+XRxn5SsamBDErSvVlFxWdtG1Xt+tV8QbYoplGN5SFDvjPS/6qiPoTObUH90Y38JRZPBq1LRODxOJs1GPtjKQMWuNTuuGSmRnlwiMgHWOfNwCS79299/Dde+JseQin9/rvZ5cxbUnhXGZlG7dGFNLZ1dCKKqx5om2dVavOjH/Dh8KixhP6GUOJzH3cQ==
  • Authentication-results: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=amd.com;
  • Cc: "Huang, Ray" <Ray.Huang@xxxxxxx>, Roger Pau Monné <roger.pau@xxxxxxxxxx>, "xen-devel@xxxxxxxxxxxxxxxxxxxx" <xen-devel@xxxxxxxxxxxxxxxxxxxx>, "Chen, Jiqian" <Jiqian.Chen@xxxxxxx>
  • Delivery-date: Tue, 24 Jun 2025 09:49:53 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
  • Thread-index: AQHb23yeMT8YFCMR3kaLDqQP1+DTK7QJCD4AgAme+gA=
  • Thread-topic: [PATCH v6 7/8] vpci/msi: Free MSI resources when init_msi() fails

On 2025/6/18 22:45, Jan Beulich wrote:
> On 12.06.2025 11:29, Jiqian Chen wrote:
>> --- a/xen/drivers/vpci/msi.c
>> +++ b/xen/drivers/vpci/msi.c
>> @@ -193,6 +193,33 @@ static void cf_check mask_write(
>>      msi->mask = val;
>>  }
>>  
>> +static int cf_check cleanup_msi(struct pci_dev *pdev)
>> +{
>> +    int rc;
>> +    unsigned int end, size;
>> +    struct vpci *vpci = pdev->vpci;
>> +    const unsigned int msi_pos = pdev->msi_pos;
>> +    const unsigned int ctrl = msi_control_reg(msi_pos);
>> +
>> +    if ( !msi_pos || !vpci->msi )
>> +        return 0;
>> +
>> +    if ( vpci->msi->masking )
>> +        end = msi_pending_bits_reg(msi_pos, vpci->msi->address64);
>> +    else
>> +        end = msi_mask_bits_reg(msi_pos, vpci->msi->address64) - 2;
>> +
>> +    size = end - ctrl;
>> +
>> +    rc = vpci_remove_registers(vpci, ctrl, size);
>> +    if ( rc )
>> +        return rc;
> 
> This is a difficult one: It's not a good idea to simply return here, yet
> at the same time the handling of the register we're unable to remove may
> still require e.g. ...
> 
>> +    XFREE(vpci->msi);
> 
> ... this. There may therefore be more work required, such that in the
> end we're able to ...
> 
>> +    return vpci_add_register(pdev->vpci, vpci_hw_read16, NULL, ctrl, 2, 
>> NULL);
> 
> ... try this at least on a best effort basis.
> 
> More generally: I don't think failure here (or in other .cleanup hook
> functions) may go entirely silently.
Does below meet your modification expectations?

    rc = vpci_remove_registers(vpci, ctrl, size);
    if ( rc )
        printk(XENLOG_ERR "%pd %pp: remove msi handlers fail rc=%d\n",
               pdev->domain, &pdev->sbdf, rc);

    XFREE(vpci->msi);

    /*
     * The driver may not traverse the capability list and think device
     * supports MSI by default. So here let the control register of MSI
     * be Read-Only is to ensure MSI disabled.
     */
    rc = vpci_add_register(vpci, vpci_hw_read16, NULL, ctrl, 2, NULL);
    if ( rc )
        printk(XENLOG_ERR "%pd %pp: add dummy msi ctrl handler fail rc=%d\n",
               pdev->domain, &pdev->sbdf, rc);

    return rc;

> 
> Jan

-- 
Best regards,
Jiqian Chen.

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.