]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
enic: Save resource counts we read from HW
authorNelson Escobar <neescoba@cisco.com>
Wed, 13 Nov 2024 23:56:35 +0000 (23:56 +0000)
committerJakub Kicinski <kuba@kernel.org>
Fri, 15 Nov 2024 23:38:41 +0000 (15:38 -0800)
Save the resources counts for wq,rq,cq, and interrupts in *_avail variables
so that we don't lose the information when adjusting the counts we are
actually using.

Report the wq_avail and rq_avail as the channel maximums in 'ethtool -l'
output.

Co-developed-by: John Daley <johndale@cisco.com>
Signed-off-by: John Daley <johndale@cisco.com>
Co-developed-by: Satish Kharat <satishkh@cisco.com>
Signed-off-by: Satish Kharat <satishkh@cisco.com>
Signed-off-by: Nelson Escobar <neescoba@cisco.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Reviewed-by: Vadim Fedorenko <vadim.fedorenko@linux.dev>
Link: https://patch.msgid.link/20241113-remove_vic_resource_limits-v4-3-a34cf8570c67@cisco.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/cisco/enic/enic.h
drivers/net/ethernet/cisco/enic/enic_ethtool.c
drivers/net/ethernet/cisco/enic/enic_res.c

index ec83a273d1ca40ae89f3c193207cf26814f6b277..98d6e0b825525a92f12776259c1c9c9730cb8a1e 100644 (file)
@@ -206,23 +206,27 @@ struct enic {
 
        /* work queue cache line section */
        ____cacheline_aligned struct enic_wq wq[ENIC_WQ_MAX];
+       unsigned int wq_avail;
        unsigned int wq_count;
        u16 loop_enable;
        u16 loop_tag;
 
        /* receive queue cache line section */
        ____cacheline_aligned struct enic_rq rq[ENIC_RQ_MAX];
+       unsigned int rq_avail;
        unsigned int rq_count;
        struct vxlan_offload vxlan;
        struct napi_struct napi[ENIC_RQ_MAX + ENIC_WQ_MAX];
 
        /* interrupt resource cache line section */
        ____cacheline_aligned struct vnic_intr intr[ENIC_INTR_MAX];
+       unsigned int intr_avail;
        unsigned int intr_count;
        u32 __iomem *legacy_pba;                /* memory-mapped */
 
        /* completion queue cache line section */
        ____cacheline_aligned struct vnic_cq cq[ENIC_CQ_MAX];
+       unsigned int cq_avail;
        unsigned int cq_count;
        struct enic_rfs_flw_tbl rfs_h;
        u32 rx_copybreak;
index de07fa9374d274e375077d35bf121c1671549542..95b071153fedab96764eb678bf6662eb844f4dfa 100644 (file)
@@ -695,8 +695,8 @@ static void enic_get_channels(struct net_device *netdev,
 
        switch (vnic_dev_get_intr_mode(enic->vdev)) {
        case VNIC_DEV_INTR_MODE_MSIX:
-               channels->max_rx = ENIC_RQ_MAX;
-               channels->max_tx = ENIC_WQ_MAX;
+               channels->max_rx = min(enic->rq_avail, ENIC_RQ_MAX);
+               channels->max_tx = min(enic->wq_avail, ENIC_WQ_MAX);
                channels->rx_count = enic->rq_count;
                channels->tx_count = enic->wq_count;
                break;
index 72b51e9d8d1a26a2cd18df9c9d702e5b11993b70..1261251998330c8b8363c4dd2db1ccc25847476c 100644 (file)
@@ -187,16 +187,21 @@ void enic_free_vnic_resources(struct enic *enic)
 
 void enic_get_res_counts(struct enic *enic)
 {
-       enic->wq_count = vnic_dev_get_res_count(enic->vdev, RES_TYPE_WQ);
-       enic->rq_count = vnic_dev_get_res_count(enic->vdev, RES_TYPE_RQ);
-       enic->cq_count = vnic_dev_get_res_count(enic->vdev, RES_TYPE_CQ);
-       enic->intr_count = vnic_dev_get_res_count(enic->vdev,
-               RES_TYPE_INTR_CTRL);
+       enic->wq_avail = vnic_dev_get_res_count(enic->vdev, RES_TYPE_WQ);
+       enic->rq_avail = vnic_dev_get_res_count(enic->vdev, RES_TYPE_RQ);
+       enic->cq_avail = vnic_dev_get_res_count(enic->vdev, RES_TYPE_CQ);
+       enic->intr_avail = vnic_dev_get_res_count(enic->vdev,
+                                                 RES_TYPE_INTR_CTRL);
+
+       enic->wq_count = enic->wq_avail;
+       enic->rq_count = enic->rq_avail;
+       enic->cq_count = enic->cq_avail;
+       enic->intr_count = enic->intr_avail;
 
        dev_info(enic_get_dev(enic),
                "vNIC resources avail: wq %d rq %d cq %d intr %d\n",
-               enic->wq_count, enic->rq_count,
-               enic->cq_count, enic->intr_count);
+               enic->wq_avail, enic->rq_avail,
+               enic->cq_avail, enic->intr_avail);
 }
 
 void enic_init_vnic_resources(struct enic *enic)