From: Yunsheng Lin <linyunsheng@huawei.com>
To: Long Li <longli@microsoft.com>, KY Srinivasan <kys@microsoft.com>,
"Haiyang Zhang" <haiyangz@microsoft.com>,
Stephen Hemminger <sthemmin@microsoft.com>,
Wei Liu <wei.liu@kernel.org>, Dexuan Cui <decui@microsoft.com>,
"David S. Miller" <davem@davemloft.net>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Jason Gunthorpe <jgg@ziepe.ca>, Leon Romanovsky <leon@kernel.org>,
"edumazet@google.com" <edumazet@google.com>,
"shiraz.saleem@intel.com" <shiraz.saleem@intel.com>,
Ajay Sharma <sharmaajay@microsoft.com>
Cc: "linux-hyperv@vger.kernel.org" <linux-hyperv@vger.kernel.org>,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-rdma@vger.kernel.org" <linux-rdma@vger.kernel.org>
Subject: Re: [Patch v9 03/12] net: mana: Handle vport sharing between devices
Date: Tue, 25 Oct 2022 09:08:34 +0800 [thread overview]
Message-ID: <38cedbd0-b719-eab5-71bd-2677462096c5@huawei.com> (raw)
In-Reply-To: <PH7PR21MB32633AC8730AFB4E6C247BABCE2E9@PH7PR21MB3263.namprd21.prod.outlook.com>
On 2022/10/25 2:45, Long Li wrote:
>>> +int mana_cfg_vport(struct mana_port_context *apc, u32
>> protection_dom_id,
>>> + u32 doorbell_pg_id)
>>> {
>>> struct mana_config_vport_resp resp = {};
>>> struct mana_config_vport_req req = {};
>>> int err;
>>>
>>> + /* This function is used to program the Ethernet port in the hardware
>>> + * table. It can be called from the Ethernet driver or the RDMA driver.
>>> + *
>>> + * For Ethernet usage, the hardware supports only one active user on
>> a
>>> + * physical port. The driver checks on the port usage before
>> programming
>>> + * the hardware when creating the RAW QP (RDMA driver) or
>> exposing the
>>> + * device to kernel NET layer (Ethernet driver).
>>> + *
>>> + * Because the RDMA driver doesn't know in advance which QP type
>> the
>>> + * user will create, it exposes the device with all its ports. The user
>>> + * may not be able to create RAW QP on a port if this port is already
>>> + * in used by the Ethernet driver from the kernel.
>>> + *
>>> + * This physical port limitation only applies to the RAW QP. For RC QP,
>>> + * the hardware doesn't have this limitation. The user can create RC
>>> + * QPs on a physical port up to the hardware limits independent of
>> the
>>> + * Ethernet usage on the same port.
>>> + */
>>> + mutex_lock(&apc->vport_mutex);
>>> + if (apc->vport_use_count > 0) {
>>> + mutex_unlock(&apc->vport_mutex);
>>> + return -EBUSY;
>>> + }
>>> + apc->vport_use_count++;
>>> + mutex_unlock(&apc->vport_mutex);
>>> +
>>> mana_gd_init_req_hdr(&req.hdr, MANA_CONFIG_VPORT_TX,
>>> sizeof(req), sizeof(resp));
>>> req.vport = apc->port_handle;
>>> @@ -679,9 +714,16 @@ static int mana_cfg_vport(struct
>>> mana_port_context *apc, u32 protection_dom_id,
>>>
>>> apc->tx_shortform_allowed = resp.short_form_allowed;
>>> apc->tx_vp_offset = resp.tx_vport_offset;
>>> +
>>> + netdev_info(apc->ndev, "Configured vPort %llu PD %u DB %u\n",
>>> + apc->port_handle, protection_dom_id, doorbell_pg_id);
>>> out:
>>> + if (err)
>>> + mana_uncfg_vport(apc);
>>
>> There seems to be a similar race between error handling here and the "apc-
>>> vport_use_count > 0" checking above as pointed out in v7.
>
> Thanks for looking into this.
>
> This is different to the locking bug in mana_ib_cfg_vport(). The vport sharing
> between Ethernet and RDMA is exclusive, not shared. If another driver tries
> to take the vport while it is being configured, it will fail immediately. It is by
Suppose the following steps:
1. Ethernet driver take the lock first and do a "apc->vport_use_count++", and
release the lock;
2. RDMA driver take the lock, do "apc->vport_use_count > 0" checking and return
-EBUSY;
3. mana_send_request() or mana_verify_resp_hdr() return error to Ethernet driver.
It seems that vport is left unused when above happens, if that is what you wanted?
> design to prevent possible deadlock.
I am not sure I understand the deadlock here.
>
next prev parent reply other threads:[~2022-10-25 1:31 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-22 0:01 [Patch v9 00/12] Introduce Microsoft Azure Network Adapter (MANA) RDMA driver longli
2022-10-22 0:01 ` [Patch v9 01/12] net: mana: Add support for auxiliary device longli
2022-10-22 0:01 ` [Patch v9 02/12] net: mana: Record the physical address for doorbell page region longli
2022-10-22 0:01 ` [Patch v9 03/12] net: mana: Handle vport sharing between devices longli
2022-10-24 1:20 ` Yunsheng Lin
2022-10-24 18:45 ` Long Li
2022-10-25 1:08 ` Yunsheng Lin [this message]
2022-10-25 1:43 ` Long Li
2022-10-22 0:01 ` [Patch v9 04/12] net: mana: Set the DMA device max segment size longli
2022-10-22 0:01 ` [Patch v9 05/12] net: mana: Export Work Queue functions for use by RDMA driver longli
2022-10-22 0:01 ` [Patch v9 06/12] net: mana: Record port number in netdev longli
2022-10-22 0:01 ` [Patch v9 07/12] net: mana: Move header files to a common location longli
2022-10-22 0:01 ` [Patch v9 08/12] net: mana: Define max values for SGL entries longli
2022-10-22 0:01 ` [Patch v9 09/12] net: mana: Define and process GDMA response code GDMA_STATUS_MORE_ENTRIES longli
2022-10-22 0:01 ` [Patch v9 10/12] net: mana: Define data structures for allocating doorbell page from GDMA longli
2022-10-22 0:01 ` [Patch v9 11/12] net: mana: Define data structures for protection domain and memory registration longli
2022-10-22 0:01 ` [Patch v9 12/12] RDMA/mana_ib: Add a driver for Microsoft Azure Network Adapter longli
2022-10-28 17:18 ` Jason Gunthorpe
2022-10-31 19:32 ` Long Li
2022-11-01 17:27 ` Jason Gunthorpe
2022-11-01 18:31 ` Long Li
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=38cedbd0-b719-eab5-71bd-2677462096c5@huawei.com \
--to=linyunsheng@huawei.com \
--cc=davem@davemloft.net \
--cc=decui@microsoft.com \
--cc=edumazet@google.com \
--cc=haiyangz@microsoft.com \
--cc=jgg@ziepe.ca \
--cc=kuba@kernel.org \
--cc=kys@microsoft.com \
--cc=leon@kernel.org \
--cc=linux-hyperv@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=longli@microsoft.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=sharmaajay@microsoft.com \
--cc=shiraz.saleem@intel.com \
--cc=sthemmin@microsoft.com \
--cc=wei.liu@kernel.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;
as well as URLs for NNTP newsgroup(s).