lkml.org 
[lkml]   [2022]   [Jun]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[Patch v4 03/12] net: mana: Handle vport sharing between devices
    Date
    From: Long Li <longli@microsoft.com>

    For outgoing packets, the PF requires the VF to configure the vport with
    corresponding protection domain and doorbell ID for the kernel or user
    context. The vport can't be shared between different contexts.

    Implement the logic to exclusively take over the vport by either the
    Ethernet device or RDMA device.

    Signed-off-by: Long Li <longli@microsoft.com>
    ---
    Change log:
    v2: use refcount instead of directly using atomic variables
    v4: change to mutex to avoid possible race with refcount

    drivers/net/ethernet/microsoft/mana/mana.h | 7 ++++
    drivers/net/ethernet/microsoft/mana/mana_en.c | 40 ++++++++++++++++++-
    2 files changed, 45 insertions(+), 2 deletions(-)

    diff --git a/drivers/net/ethernet/microsoft/mana/mana.h b/drivers/net/ethernet/microsoft/mana/mana.h
    index 51bff91b63ee..8e58abdce906 100644
    --- a/drivers/net/ethernet/microsoft/mana/mana.h
    +++ b/drivers/net/ethernet/microsoft/mana/mana.h
    @@ -376,6 +376,10 @@ struct mana_port_context {

    mana_handle_t port_handle;

    + /* Mutex for sharing access to vport_use_count */
    + struct mutex vport_mutex;
    + int vport_use_count;
    +
    u16 port_idx;

    bool port_is_up;
    @@ -567,4 +571,7 @@ struct mana_adev {
    struct gdma_dev *mdev;
    };

    +int mana_cfg_vport(struct mana_port_context *apc, u32 protection_dom_id,
    + u32 doorbell_pg_id);
    +void mana_uncfg_vport(struct mana_port_context *apc);
    #endif /* _MANA_H */
    diff --git a/drivers/net/ethernet/microsoft/mana/mana_en.c b/drivers/net/ethernet/microsoft/mana/mana_en.c
    index 745a9783dd70..23e7e423a544 100644
    --- a/drivers/net/ethernet/microsoft/mana/mana_en.c
    +++ b/drivers/net/ethernet/microsoft/mana/mana_en.c
    @@ -530,13 +530,31 @@ static int mana_query_vport_cfg(struct mana_port_context *apc, u32 vport_index,
    return 0;
    }

    -static int mana_cfg_vport(struct mana_port_context *apc, u32 protection_dom_id,
    - u32 doorbell_pg_id)
    +void mana_uncfg_vport(struct mana_port_context *apc)
    +{
    + mutex_lock(&apc->vport_mutex);
    + apc->vport_use_count--;
    + WARN_ON(apc->vport_use_count < 0);
    + mutex_unlock(&apc->vport_mutex);
    +}
    +EXPORT_SYMBOL_GPL(mana_uncfg_vport);
    +
    +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;

    + /* Ethernet driver and IB driver can't take the port at the same time */
    + mutex_lock(&apc->vport_mutex);
    + if (apc->vport_use_count > 0) {
    + mutex_unlock(&apc->vport_mutex);
    + return -ENODEV;
    + }
    + 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;
    @@ -563,9 +581,19 @@ 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) {
    + mutex_lock(&apc->vport_mutex);
    + apc->vport_use_count--;
    + mutex_unlock(&apc->vport_mutex);
    + }
    +
    return err;
    }
    +EXPORT_SYMBOL_GPL(mana_cfg_vport);

    static int mana_cfg_vport_steering(struct mana_port_context *apc,
    enum TRI_STATE rx,
    @@ -626,6 +654,9 @@ static int mana_cfg_vport_steering(struct mana_port_context *apc,
    resp.hdr.status);
    err = -EPROTO;
    }
    +
    + netdev_info(ndev, "Configured steering vPort %llu entries %u\n",
    + apc->port_handle, num_entries);
    out:
    kfree(req);
    return err;
    @@ -1678,6 +1709,8 @@ static void mana_destroy_vport(struct mana_port_context *apc)
    }

    mana_destroy_txq(apc);
    +
    + mana_uncfg_vport(apc);
    }

    static int mana_create_vport(struct mana_port_context *apc,
    @@ -1929,6 +1962,9 @@ static int mana_probe_port(struct mana_context *ac, int port_idx,
    apc->port_handle = INVALID_MANA_HANDLE;
    apc->port_idx = port_idx;

    + mutex_init(&apc->vport_mutex);
    + apc->vport_use_count = 0;
    +
    ndev->netdev_ops = &mana_devops;
    ndev->ethtool_ops = &mana_ethtool_ops;
    ndev->mtu = ETH_DATA_LEN;
    --
    2.17.1
    \
     
     \ /
      Last update: 2022-06-16 04:09    [W:3.039 / U:0.548 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site