From: Ratheesh Kannoth <rkannoth@marvell.com>
To: <intel-wired-lan@lists.osuosl.org>,
<linux-kernel@vger.kernel.org>, <linux-rdma@vger.kernel.org>,
<netdev@vger.kernel.org>, <oss-drivers@corigine.com>
Cc: <akiyano@amazon.com>, <andrew+netdev@lunn.ch>,
<anthony.l.nguyen@intel.com>, <arkadiusz.kubalewski@intel.com>,
<brett.creeley@amd.com>, <darinzon@amazon.com>,
<davem@davemloft.net>, <donald.hunter@gmail.com>,
<edumazet@google.com>, <horms@kernel.org>, <idosch@nvidia.com>,
<ivecera@redhat.com>, <jiri@resnulli.us>, <kuba@kernel.org>,
<leon@kernel.org>, <mbloch@nvidia.com>,
<michael.chan@broadcom.com>, <pabeni@redhat.com>,
<pavan.chebbi@broadcom.com>, <petrm@nvidia.com>,
<Prathosh.Satish@microchip.com>, <przemyslaw.kitszel@intel.com>,
<saeedm@nvidia.com>, <sgoutham@marvell.com>, <tariqt@nvidia.com>,
<vadim.fedorenko@linux.dev>
Subject: Re: [PATCH v12 net-next 9/9] octeontx2-af: npc: cn20k: Allocate npc_priv and dstats dynamically.
Date: Mon, 11 May 2026 08:56:55 +0530 [thread overview]
Message-ID: <agFMf2HnBEukJB9u@rkannoth-OptiPlex-7090> (raw)
In-Reply-To: <20260508034912.4082520-10-rkannoth@marvell.com>
On 2026-05-08 at 09:19:12, Ratheesh Kannoth (rkannoth@marvell.com) wrote:
> Replace the file-scope static npc_priv with a kcalloc'd struct filled
> from hardware bank/subbank geometry at init (num_banks is no longer a
> const compile-time constant; drop init_done and use a non-NULL
> npc_priv pointer for liveness). Thread npc_priv_get() / pointer access
> through the CN20K NPC code paths, extend teardown to kfree the root
> struct on failure and in npc_cn20k_deinit, and adjust MCAM section
> setup to use the discovered subbank count.
pw-bot: changes-requested
>> -static u64 dstats[MAX_NUM_BANKS][MAX_SUBBANK_DEPTH * MAX_NUM_SUB_BANKS] = {};
>> +static u64 (*dstats)[MAX_NUM_BANKS][MAX_SUBBANK_DEPTH * MAX_NUM_SUB_BANKS];
>[ ... ]
>> @@ -396,6 +396,10 @@ int npc_cn20k_debugfs_init(struct rvu *rvu)
>> debugfs_create_file("vidx2idx", 0444, rvu->rvu_dbg.npc,
>> npc_priv, &npc_vidx2idx_map_fops);
>>
>> + dstats = devm_kzalloc(rvu->dev, sizeof(*dstats), GFP_KERNEL);
>> + if (!dstats)
>> + return -ENOMEM;
>> +
>Since dstats is a file-scoped static pointer, will it be overwritten if
>multiple RVU PCI devices are probed on the same system?
>It looks like devm_kzalloc ties the allocation to a specific device. If that
>device is unbound, the devres framework will automatically free the memory.
>Could this leave the global pointer dangling and cause a use-after-free for
>any remaining active devices that try to access the debugfs file?
There is only one RVU AF device in the system.
>> +++ b/drivers/net/ethernet/marvell/octeontx2/af/cn20k/npc.c
>> @@ -16,9 +16,7 @@
>> #include "cn20k/reg.h"
>> #include "rvu_npc_fs.h"
>>
>> -static struct npc_priv_t npc_priv = {
>> - .num_banks = MAX_NUM_BANKS,
>> -};
>> +static struct npc_priv_t *npc_priv;
>Similarly, since npc_priv is also a file-scoped global pointer, could probing
>multiple devices cause previous allocations to be overwritten and leaked?
>Should this per-device state be stored within a device-specific context
>structure instead of a global pointer?
There is only one RVU AF device in the system.
>> - rsp->kw_type = npc_priv.kw;
>> - rsp->x4_slots = npc_priv.bank_depth;
>> + rsp->kw_type = npc_priv->kw;
>> + rsp->x4_slots = npc_priv->bank_depth;
>> return 0;
>> }
>If a Virtual Function sends a mailbox message before initialization is
>complete or after teardown, could npc_priv be NULL here? Does this handler
>need a NULL pointer check to prevent a crash?
AF is initialized first, and NPC block initialiation is part of AF initialization.
VF probe is done after that. So this won't happen.
>> - rsp->kw_type = npc_priv.kw;
>> - rsp->x4_slots = npc_priv.bank_depth;
>> + rsp->kw_type = npc_priv->kw;
>> + rsp->x4_slots = npc_priv->bank_depth;
>> return 0;
>> }
>If a Virtual Function sends a mailbox message before initialization is
>complete or after teardown, could npc_priv be NULL here? Does this handler
>need a NULL pointer check to prevent a crash?
Number of subbank is a multiple of 2.
>> + xa_destroy(&npc_priv->xa_sb_used);
>[ ... ]
>> + kfree(npc_priv);
>> + npc_priv = NULL;
>> }
>This might be a pre-existing issue, but during teardown in npc_cn20k_deinit(),
>does the defrag_lh list need to be cleared? The list appears to contain
>dynamically allocated npc_defrag_show_node structures, and they might be
>leaked if they are still present when npc_priv is freed.
ACK, this is a bug. i will post a patch post this net-next series is merged.
>> */
>> struct npc_priv_t {
>> int bank_depth;
>> - const int num_banks;
>> + int num_banks;
>> int num_subbanks;
>> int subbank_depth;
>> DECLARE_BITMAP(en_map, MAX_NUM_BANKS *
>Since num_banks and bank_depth are now dynamically read from hardware rather
>than using strict compile-time constants, is it possible for a device to
>advertise geometry larger than the static sizes used for en_map and dstats
>(MAX_NUM_BANKS, etc.)?
>Could this cause out-of-bounds reads and writes when accessing those
>structures?
ACK. This can be posted as an enhancement to net-next later.
>
> Allocate MCAM debugfs dstats via devm_kzalloc instead of a static matrix,
> and use the allocated backing store consistently when computing deltas
> (including the counter rollover compare).
>
> Signed-off-by: Ratheesh Kannoth <rkannoth@marvell.com>
> ---
> .../marvell/octeontx2/af/cn20k/debugfs.c | 18 +-
> .../ethernet/marvell/octeontx2/af/cn20k/npc.c | 407 +++++++++---------
> .../ethernet/marvell/octeontx2/af/cn20k/npc.h | 3 +-
> 3 files changed, 220 insertions(+), 208 deletions(-)
>
> diff --git a/drivers/net/ethernet/marvell/octeontx2/af/cn20k/debugfs.c b/drivers/net/ethernet/marvell/octeontx2/af/cn20k/debugfs.c
> index 9a4c2ea5b19e..15af7b0ccea6 100644
> --- a/drivers/net/ethernet/marvell/octeontx2/af/cn20k/debugfs.c
> +++ b/drivers/net/ethernet/marvell/octeontx2/af/cn20k/debugfs.c
> @@ -172,7 +172,7 @@ __OCTEONTX2_DEBUGFS_ATTRIBUTE_FOPS(__name)
>
> static DEFINE_MUTEX(stats_lock);
>
> -static u64 dstats[MAX_NUM_BANKS][MAX_SUBBANK_DEPTH * MAX_NUM_SUB_BANKS] = {};
> +static u64 (*dstats)[MAX_NUM_BANKS][MAX_SUBBANK_DEPTH * MAX_NUM_SUB_BANKS];
> static int npc_mcam_dstats_show(struct seq_file *s, void *unused)
> {
> struct npc_priv_t *npc_priv;
> @@ -206,19 +206,19 @@ static int npc_mcam_dstats_show(struct seq_file *s, void *unused)
> NPC_AF_CN20K_MCAMEX_BANKX_STAT_EXT(idx, bank));
> if (!stats)
> continue;
> - if (stats == dstats[bank][idx])
> + if (stats == dstats[0][bank][idx])
> continue;
>
> - if (stats < dstats[bank][idx])
> - dstats[bank][idx] = 0;
> + if (stats < dstats[0][bank][idx])
> + dstats[0][bank][idx] = 0;
>
> pf = 0xFFFF;
> map = xa_load(&npc_priv->xa_idx2pf_map, mcam_idx);
> if (map)
> pf = xa_to_value(map);
>
> - if (stats > dstats[bank][idx])
> - delta = stats - dstats[bank][idx];
> + if (stats > dstats[0][bank][idx])
> + delta = stats - dstats[0][bank][idx];
> else
> delta = stats;
>
> @@ -226,7 +226,7 @@ static int npc_mcam_dstats_show(struct seq_file *s, void *unused)
> mcam_idx, pf, delta);
> seq_puts(s, buff);
>
> - dstats[bank][idx] = stats;
> + dstats[0][bank][idx] = stats;
> }
> }
>
> @@ -396,6 +396,10 @@ int npc_cn20k_debugfs_init(struct rvu *rvu)
> debugfs_create_file("vidx2idx", 0444, rvu->rvu_dbg.npc,
> npc_priv, &npc_vidx2idx_map_fops);
>
> + dstats = devm_kzalloc(rvu->dev, sizeof(*dstats), GFP_KERNEL);
> + if (!dstats)
> + return -ENOMEM;
> +
> debugfs_create_file("dstats", 0444, rvu->rvu_dbg.npc, rvu,
> &npc_mcam_dstats_fops);
>
> diff --git a/drivers/net/ethernet/marvell/octeontx2/af/cn20k/npc.c b/drivers/net/ethernet/marvell/octeontx2/af/cn20k/npc.c
> index 15b3f29d60ee..ea8fc43df090 100644
> --- a/drivers/net/ethernet/marvell/octeontx2/af/cn20k/npc.c
> +++ b/drivers/net/ethernet/marvell/octeontx2/af/cn20k/npc.c
> @@ -16,9 +16,7 @@
> #include "cn20k/reg.h"
> #include "rvu_npc_fs.h"
>
> -static struct npc_priv_t npc_priv = {
> - .num_banks = MAX_NUM_BANKS,
> -};
> +static struct npc_priv_t *npc_priv;
>
> static const char *npc_kw_name[NPC_MCAM_KEY_MAX] = {
> [NPC_MCAM_KEY_DYN] = "DYNAMIC",
> @@ -226,7 +224,7 @@ static u16 npc_idx2vidx(u16 idx)
> vidx = idx;
> index = idx;
>
> - map = xa_load(&npc_priv.xa_idx2vidx_map, index);
> + map = xa_load(&npc_priv->xa_idx2vidx_map, index);
> if (!map)
> goto done;
>
> @@ -242,7 +240,7 @@ static u16 npc_idx2vidx(u16 idx)
>
> static bool npc_is_vidx(u16 vidx)
> {
> - return vidx >= npc_priv.bank_depth * 2;
> + return vidx >= npc_priv->bank_depth * 2;
> }
>
> static u16 npc_vidx2idx(u16 vidx)
> @@ -256,7 +254,7 @@ static u16 npc_vidx2idx(u16 vidx)
> idx = vidx;
> index = vidx;
>
> - map = xa_load(&npc_priv.xa_vidx2idx_map, index);
> + map = xa_load(&npc_priv->xa_vidx2idx_map, index);
> if (!map)
> goto done;
>
> @@ -272,7 +270,7 @@ static u16 npc_vidx2idx(u16 vidx)
>
> u16 npc_cn20k_vidx2idx(u16 idx)
> {
> - if (!npc_priv.init_done)
> + if (!npc_priv)
> return idx;
>
> if (!npc_is_vidx(idx))
> @@ -283,7 +281,7 @@ u16 npc_cn20k_vidx2idx(u16 idx)
>
> u16 npc_cn20k_idx2vidx(u16 idx)
> {
> - if (!npc_priv.init_done)
> + if (!npc_priv)
> return idx;
>
> if (npc_is_vidx(idx))
> @@ -306,7 +304,7 @@ static int npc_vidx_maps_del_entry(struct rvu *rvu, u16 vidx, u16 *old_midx)
>
> mcam_idx = npc_vidx2idx(vidx);
>
> - map = xa_erase(&npc_priv.xa_vidx2idx_map, vidx);
> + map = xa_erase(&npc_priv->xa_vidx2idx_map, vidx);
> if (!map) {
> dev_err(rvu->dev,
> "%s: vidx(%u) does not map to proper mcam idx\n",
> @@ -314,7 +312,7 @@ static int npc_vidx_maps_del_entry(struct rvu *rvu, u16 vidx, u16 *old_midx)
> return -ESRCH;
> }
>
> - map = xa_erase(&npc_priv.xa_idx2vidx_map, mcam_idx);
> + map = xa_erase(&npc_priv->xa_idx2vidx_map, mcam_idx);
> if (!map) {
> dev_err(rvu->dev,
> "%s: vidx(%u) is not valid\n",
> @@ -341,7 +339,7 @@ static int npc_vidx_maps_modify(struct rvu *rvu, u16 vidx, u16 new_midx)
> return -ESRCH;
> }
>
> - map = xa_erase(&npc_priv.xa_vidx2idx_map, vidx);
> + map = xa_erase(&npc_priv->xa_vidx2idx_map, vidx);
> if (!map) {
> dev_err(rvu->dev,
> "%s: vidx(%u) could not be deleted from vidx2idx map\n",
> @@ -351,7 +349,7 @@ static int npc_vidx_maps_modify(struct rvu *rvu, u16 vidx, u16 new_midx)
>
> old_midx = xa_to_value(map);
>
> - rc = xa_insert(&npc_priv.xa_vidx2idx_map, vidx,
> + rc = xa_insert(&npc_priv->xa_vidx2idx_map, vidx,
> xa_mk_value(new_midx), GFP_KERNEL);
> if (rc) {
> dev_err(rvu->dev,
> @@ -360,7 +358,7 @@ static int npc_vidx_maps_modify(struct rvu *rvu, u16 vidx, u16 new_midx)
> goto fail1;
> }
>
> - map = xa_erase(&npc_priv.xa_idx2vidx_map, old_midx);
> + map = xa_erase(&npc_priv->xa_idx2vidx_map, old_midx);
> if (!map) {
> dev_err(rvu->dev,
> "%s: old_midx(%u, vidx(%u)) cannot be added to idx2vidx map\n",
> @@ -369,7 +367,7 @@ static int npc_vidx_maps_modify(struct rvu *rvu, u16 vidx, u16 new_midx)
> goto fail2;
> }
>
> - rc = xa_insert(&npc_priv.xa_idx2vidx_map, new_midx,
> + rc = xa_insert(&npc_priv->xa_idx2vidx_map, new_midx,
> xa_mk_value(vidx), GFP_KERNEL);
> if (rc) {
> dev_err(rvu->dev,
> @@ -382,21 +380,21 @@ static int npc_vidx_maps_modify(struct rvu *rvu, u16 vidx, u16 new_midx)
>
> fail3:
> /* Restore vidx at old_midx location */
> - if (xa_insert(&npc_priv.xa_idx2vidx_map, old_midx,
> + if (xa_insert(&npc_priv->xa_idx2vidx_map, old_midx,
> xa_mk_value(vidx), GFP_KERNEL))
> dev_err(rvu->dev,
> "%s: Error to roll back idx2vidx old_midx=%u vidx=%u\n",
> __func__, old_midx, vidx);
> fail2:
> /* Erase new_midx inserted at vidx */
> - if (!xa_erase(&npc_priv.xa_vidx2idx_map, vidx))
> + if (!xa_erase(&npc_priv->xa_vidx2idx_map, vidx))
> dev_err(rvu->dev,
> "%s: Failed to roll back vidx2idx vidx=%u\n",
> __func__, vidx);
>
> fail1:
> /* Restore old_midx at vidx location */
> - if (xa_insert(&npc_priv.xa_vidx2idx_map, vidx,
> + if (xa_insert(&npc_priv->xa_vidx2idx_map, vidx,
> xa_mk_value(old_midx), GFP_KERNEL))
> dev_err(rvu->dev,
> "%s: Failed to roll back vidx2idx to old_midx=%u, vidx=%u\n",
> @@ -412,10 +410,10 @@ static int npc_vidx_maps_add_entry(struct rvu *rvu, u16 mcam_idx, int pcifunc,
> u32 id;
>
> /* Virtual index start from maximum mcam index + 1 */
> - max = npc_priv.bank_depth * 2 * 2 - 1;
> - min = npc_priv.bank_depth * 2;
> + max = npc_priv->bank_depth * 2 * 2 - 1;
> + min = npc_priv->bank_depth * 2;
>
> - rc = xa_alloc(&npc_priv.xa_vidx2idx_map, &id,
> + rc = xa_alloc(&npc_priv->xa_vidx2idx_map, &id,
> xa_mk_value(mcam_idx),
> XA_LIMIT(min, max), GFP_KERNEL);
> if (rc) {
> @@ -425,7 +423,7 @@ static int npc_vidx_maps_add_entry(struct rvu *rvu, u16 mcam_idx, int pcifunc,
> goto fail1;
> }
>
> - rc = xa_insert(&npc_priv.xa_idx2vidx_map, mcam_idx,
> + rc = xa_insert(&npc_priv->xa_idx2vidx_map, mcam_idx,
> xa_mk_value(id), GFP_KERNEL);
> if (rc) {
> dev_err(rvu->dev,
> @@ -440,7 +438,7 @@ static int npc_vidx_maps_add_entry(struct rvu *rvu, u16 mcam_idx, int pcifunc,
> return 0;
>
> fail2:
> - xa_erase(&npc_priv.xa_vidx2idx_map, id);
> + xa_erase(&npc_priv->xa_vidx2idx_map, id);
> fail1:
> return rc;
> }
> @@ -691,7 +689,7 @@ void npc_cn20k_parser_profile_init(struct rvu *rvu, int blkaddr)
>
> struct npc_priv_t *npc_priv_get(void)
> {
> - return &npc_priv;
> + return npc_priv;
> }
>
> static void npc_program_mkex_rx(struct rvu *rvu, int blkaddr,
> @@ -860,9 +858,9 @@ npc_cn20k_enable_mcam_entry(struct rvu *rvu, int blkaddr,
>
> update_en_map:
> if (enable)
> - set_bit(index, npc_priv.en_map);
> + set_bit(index, npc_priv->en_map);
> else
> - clear_bit(index, npc_priv.en_map);
> + clear_bit(index, npc_priv->en_map);
>
> return 0;
> }
> @@ -1751,28 +1749,28 @@ int npc_mcam_idx_2_key_type(struct rvu *rvu, u16 mcam_idx, u8 *key_type)
> int bank_off, sb_id;
>
> /* mcam_idx should be less than (2 * bank depth) */
> - if (mcam_idx >= npc_priv.bank_depth * 2) {
> + if (mcam_idx >= npc_priv->bank_depth * 2) {
> dev_err(rvu->dev, "%s: bad params\n",
> __func__);
> return -EINVAL;
> }
>
> /* find mcam offset per bank */
> - bank_off = mcam_idx & (npc_priv.bank_depth - 1);
> + bank_off = mcam_idx & (npc_priv->bank_depth - 1);
>
> /* Find subbank id */
> - sb_id = bank_off / npc_priv.subbank_depth;
> + sb_id = bank_off / npc_priv->subbank_depth;
>
> /* Check if subbank id is more than maximum
> * number of subbanks available
> */
> - if (sb_id >= npc_priv.num_subbanks) {
> + if (sb_id >= npc_priv->num_subbanks) {
> dev_err(rvu->dev, "%s: invalid subbank %d\n",
> __func__, sb_id);
> return -EINVAL;
> }
>
> - sb = &npc_priv.sb[sb_id];
> + sb = &npc_priv->sb[sb_id];
>
> *key_type = sb->key_type;
>
> @@ -1788,7 +1786,7 @@ static int npc_subbank_idx_2_mcam_idx(struct rvu *rvu, struct npc_subbank *sb,
> * subsection depth - 1
> */
> if (sb->key_type == NPC_MCAM_KEY_X4 &&
> - sub_off >= npc_priv.subbank_depth) {
> + sub_off >= npc_priv->subbank_depth) {
> dev_err(rvu->dev,
> "%s: Failed to get mcam idx (x4) sb->idx=%u sub_off=%u",
> __func__, sb->idx, sub_off);
> @@ -1799,7 +1797,7 @@ static int npc_subbank_idx_2_mcam_idx(struct rvu *rvu, struct npc_subbank *sb,
> * 2 * subsection depth - 1
> */
> if (sb->key_type == NPC_MCAM_KEY_X2 &&
> - sub_off >= npc_priv.subbank_depth * 2) {
> + sub_off >= npc_priv->subbank_depth * 2) {
> dev_err(rvu->dev,
> "%s: Failed to get mcam idx (x2) sb->idx=%u sub_off=%u",
> __func__, sb->idx, sub_off);
> @@ -1807,12 +1805,12 @@ static int npc_subbank_idx_2_mcam_idx(struct rvu *rvu, struct npc_subbank *sb,
> }
>
> /* Find subbank offset from respective subbank (w.r.t bank) */
> - off = sub_off & (npc_priv.subbank_depth - 1);
> + off = sub_off & (npc_priv->subbank_depth - 1);
>
> /* if subsection idx is in bank1, add bank depth,
> * which is part of sb->b1b
> */
> - bot = sub_off >= npc_priv.subbank_depth ? sb->b1b : sb->b0b;
> + bot = sub_off >= npc_priv->subbank_depth ? sb->b1b : sb->b0b;
>
> *mcam_idx = bot + off;
> return 0;
> @@ -1825,37 +1823,37 @@ int npc_mcam_idx_2_subbank_idx(struct rvu *rvu, u16 mcam_idx,
> int bank_off, sb_id;
>
> /* mcam_idx should be less than (2 * bank depth) */
> - if (mcam_idx >= npc_priv.bank_depth * 2) {
> + if (mcam_idx >= npc_priv->bank_depth * 2) {
> dev_err(rvu->dev, "%s: Invalid mcam idx %u\n",
> __func__, mcam_idx);
> return -EINVAL;
> }
>
> /* find mcam offset per bank */
> - bank_off = mcam_idx & (npc_priv.bank_depth - 1);
> + bank_off = mcam_idx & (npc_priv->bank_depth - 1);
>
> /* Find subbank id */
> - sb_id = bank_off / npc_priv.subbank_depth;
> + sb_id = bank_off / npc_priv->subbank_depth;
>
> /* Check if subbank id is more than maximum
> * number of subbanks available
> */
> - if (sb_id >= npc_priv.num_subbanks) {
> + if (sb_id >= npc_priv->num_subbanks) {
> dev_err(rvu->dev, "%s: invalid subbank %d\n",
> __func__, sb_id);
> return -EINVAL;
> }
>
> - *sb = &npc_priv.sb[sb_id];
> + *sb = &npc_priv->sb[sb_id];
>
> /* Subbank offset per bank */
> - *sb_off = bank_off % npc_priv.subbank_depth;
> + *sb_off = bank_off % npc_priv->subbank_depth;
>
> /* Index in a subbank should add subbank depth
> * if it is in bank1
> */
> - if (mcam_idx >= npc_priv.bank_depth)
> - *sb_off += npc_priv.subbank_depth;
> + if (mcam_idx >= npc_priv->bank_depth)
> + *sb_off += npc_priv->subbank_depth;
>
> return 0;
> }
> @@ -1871,9 +1869,9 @@ static int __npc_subbank_contig_alloc(struct rvu *rvu,
> int k, offset, delta = 0;
> int cnt = 0, sbd;
>
> - sbd = npc_priv.subbank_depth;
> + sbd = npc_priv->subbank_depth;
>
> - if (sidx >= npc_priv.bank_depth)
> + if (sidx >= npc_priv->bank_depth)
> delta = sbd;
>
> switch (prio) {
> @@ -1940,8 +1938,8 @@ static int __npc_subbank_non_contig_alloc(struct rvu *rvu,
> int cnt = 0, delta;
> int k, sbd;
>
> - sbd = npc_priv.subbank_depth;
> - delta = sidx >= npc_priv.bank_depth ? sbd : 0;
> + sbd = npc_priv->subbank_depth;
> + delta = sidx >= npc_priv->bank_depth ? sbd : 0;
>
> switch (prio) {
> /* Find an area of size 'count' from sidx to eidx */
> @@ -2002,7 +2000,7 @@ static void __npc_subbank_sboff_2_off(struct rvu *rvu, struct npc_subbank *sb,
> {
> int sbd;
>
> - sbd = npc_priv.subbank_depth;
> + sbd = npc_priv->subbank_depth;
>
> *off = sb_off & (sbd - 1);
> *bmap = (sb_off >= sbd) ? sb->b1map : sb->b0map;
> @@ -2051,20 +2049,20 @@ static int __npc_subbank_mark_free(struct rvu *rvu, struct npc_subbank *sb)
> sb->flags = NPC_SUBBANK_FLAG_FREE;
> sb->key_type = 0;
>
> - bitmap_clear(sb->b0map, 0, npc_priv.subbank_depth);
> - bitmap_clear(sb->b1map, 0, npc_priv.subbank_depth);
> + bitmap_clear(sb->b0map, 0, npc_priv->subbank_depth);
> + bitmap_clear(sb->b1map, 0, npc_priv->subbank_depth);
>
> - if (!xa_erase(&npc_priv.xa_sb_used, sb->arr_idx)) {
> + if (!xa_erase(&npc_priv->xa_sb_used, sb->arr_idx)) {
> dev_err(rvu->dev,
> "%s: Error to delete from xa_sb_used array\n",
> __func__);
> return -EFAULT;
> }
>
> - rc = xa_insert(&npc_priv.xa_sb_free, sb->arr_idx,
> + rc = xa_insert(&npc_priv->xa_sb_free, sb->arr_idx,
> xa_mk_value(sb->idx), GFP_KERNEL);
> if (rc) {
> - rc = xa_insert(&npc_priv.xa_sb_used, sb->arr_idx,
> + rc = xa_insert(&npc_priv->xa_sb_used, sb->arr_idx,
> xa_mk_value(sb->idx), GFP_KERNEL);
> if (rc)
> dev_err(rvu->dev,
> @@ -2093,21 +2091,21 @@ static int __npc_subbank_mark_used(struct rvu *rvu, struct npc_subbank *sb,
> sb->flags = NPC_SUBBANK_FLAG_USED;
> sb->key_type = key_type;
> if (key_type == NPC_MCAM_KEY_X4)
> - sb->free_cnt = npc_priv.subbank_depth;
> + sb->free_cnt = npc_priv->subbank_depth;
> else
> - sb->free_cnt = 2 * npc_priv.subbank_depth;
> + sb->free_cnt = 2 * npc_priv->subbank_depth;
>
> - bitmap_clear(sb->b0map, 0, npc_priv.subbank_depth);
> - bitmap_clear(sb->b1map, 0, npc_priv.subbank_depth);
> + bitmap_clear(sb->b0map, 0, npc_priv->subbank_depth);
> + bitmap_clear(sb->b1map, 0, npc_priv->subbank_depth);
>
> - if (!xa_erase(&npc_priv.xa_sb_free, sb->arr_idx)) {
> + if (!xa_erase(&npc_priv->xa_sb_free, sb->arr_idx)) {
> dev_err(rvu->dev,
> "%s: Error to delete from xa_sb_free array\n",
> __func__);
> return -EFAULT;
> }
>
> - rc = xa_insert(&npc_priv.xa_sb_used, sb->arr_idx,
> + rc = xa_insert(&npc_priv->xa_sb_used, sb->arr_idx,
> xa_mk_value(sb->idx), GFP_KERNEL);
> if (rc)
> dev_err(rvu->dev,
> @@ -2131,10 +2129,10 @@ static bool __npc_subbank_free(struct rvu *rvu, struct npc_subbank *sb,
>
> /* Check whether we can mark whole subbank as free */
> if (sb->key_type == NPC_MCAM_KEY_X4) {
> - if (sb->free_cnt < npc_priv.subbank_depth)
> + if (sb->free_cnt < npc_priv->subbank_depth)
> goto done;
> } else {
> - if (sb->free_cnt < 2 * npc_priv.subbank_depth)
> + if (sb->free_cnt < 2 * npc_priv->subbank_depth)
> goto done;
> }
>
> @@ -2213,7 +2211,7 @@ static int __npc_subbank_alloc(struct rvu *rvu, struct npc_subbank *sb,
>
> /* x4 indexes are from 0 to bank size as it combines two x2 banks */
> if (key_type == NPC_MCAM_KEY_X4 &&
> - (ref >= npc_priv.bank_depth || limit >= npc_priv.bank_depth)) {
> + (ref >= npc_priv->bank_depth || limit >= npc_priv->bank_depth)) {
> dev_err(rvu->dev,
> "%s: Wrong ref_enty(%d) or limit(%d) for x4\n",
> __func__, ref, limit);
> @@ -2223,8 +2221,8 @@ static int __npc_subbank_alloc(struct rvu *rvu, struct npc_subbank *sb,
> /* This function is called either bank0 or bank1 portion of a subbank.
> * so ref and limit should be on same bank.
> */
> - diffbank = !!((ref & npc_priv.bank_depth) ^
> - (limit & npc_priv.bank_depth));
> + diffbank = !!((ref & npc_priv->bank_depth) ^
> + (limit & npc_priv->bank_depth));
> if (diffbank) {
> dev_err(rvu->dev,
> "%s: request ref and limit should be from same bank\n",
> @@ -2248,7 +2246,7 @@ static int __npc_subbank_alloc(struct rvu *rvu, struct npc_subbank *sb,
> * or equal to mcam entries available in the subbank if contig.
> */
> if (sb->flags & NPC_SUBBANK_FLAG_FREE) {
> - if (contig && count > npc_priv.subbank_depth) {
> + if (contig && count > npc_priv->subbank_depth) {
> dev_err(rvu->dev, "%s: Less number of entries\n",
> __func__);
> return -ENOSPC;
> @@ -2271,10 +2269,10 @@ static int __npc_subbank_alloc(struct rvu *rvu, struct npc_subbank *sb,
> }
>
> process:
> - /* if ref or limit >= npc_priv.bank_depth, index are in bank1.
> + /* if ref or limit >= npc_priv->bank_depth, index are in bank1.
> * else bank0.
> */
> - if (ref >= npc_priv.bank_depth) {
> + if (ref >= npc_priv->bank_depth) {
> bmap = sb->b1map;
> t = sb->b1t;
> b = sb->b1b;
> @@ -2285,8 +2283,8 @@ static int __npc_subbank_alloc(struct rvu *rvu, struct npc_subbank *sb,
> }
>
> /* Calculate free slots */
> - bw = bitmap_weight(bmap, npc_priv.subbank_depth);
> - bfree = npc_priv.subbank_depth - bw;
> + bw = bitmap_weight(bmap, npc_priv->subbank_depth);
> + bfree = npc_priv->subbank_depth - bw;
>
> if (!bfree) {
> dev_dbg(rvu->dev, "%s: subbank is full\n", __func__);
> @@ -2415,7 +2413,7 @@ npc_del_from_pf_maps(struct rvu *rvu, u16 mcam_idx)
> int pcifunc, idx;
> void *map;
>
> - map = xa_erase(&npc_priv.xa_idx2pf_map, mcam_idx);
> + map = xa_erase(&npc_priv->xa_idx2pf_map, mcam_idx);
> if (!map) {
> dev_err(rvu->dev,
> "%s: failed to erase mcam_idx(%u) from xa_idx2pf map\n",
> @@ -2424,7 +2422,7 @@ npc_del_from_pf_maps(struct rvu *rvu, u16 mcam_idx)
> }
>
> pcifunc = xa_to_value(map);
> - map = xa_load(&npc_priv.xa_pf_map, pcifunc);
> + map = xa_load(&npc_priv->xa_pf_map, pcifunc);
> if (!map) {
> dev_err(rvu->dev,
> "%s: failed to find entry for (%u) from xa_pf_map, mcam=%u\n",
> @@ -2434,7 +2432,7 @@ npc_del_from_pf_maps(struct rvu *rvu, u16 mcam_idx)
>
> idx = xa_to_value(map);
>
> - map = xa_erase(&npc_priv.xa_pf2idx_map[idx], mcam_idx);
> + map = xa_erase(&npc_priv->xa_pf2idx_map[idx], mcam_idx);
> if (!map) {
> dev_err(rvu->dev,
> "%s: failed to erase mcam_idx(%u) from xa_pf2idx_map map\n",
> @@ -2454,18 +2452,18 @@ npc_add_to_pf_maps(struct rvu *rvu, u16 mcam_idx, int pcifunc)
> "%s: add2maps mcam_idx(%u) to xa_idx2pf map pcifunc=%#x\n",
> __func__, mcam_idx, pcifunc);
>
> - rc = xa_insert(&npc_priv.xa_idx2pf_map, mcam_idx,
> + rc = xa_insert(&npc_priv->xa_idx2pf_map, mcam_idx,
> xa_mk_value(pcifunc), GFP_KERNEL);
>
> if (rc) {
> - map = xa_load(&npc_priv.xa_idx2pf_map, mcam_idx);
> + map = xa_load(&npc_priv->xa_idx2pf_map, mcam_idx);
> dev_err(rvu->dev,
> "%s: failed to insert mcam_idx(%u) to xa_idx2pf map, existing value=%lu\n",
> __func__, mcam_idx, xa_to_value(map));
> return -EFAULT;
> }
>
> - map = xa_load(&npc_priv.xa_pf_map, pcifunc);
> + map = xa_load(&npc_priv->xa_pf_map, pcifunc);
> if (!map) {
> dev_err(rvu->dev,
> "%s: failed to find pf map entry for pcifunc=%#x, mcam=%u\n",
> @@ -2475,12 +2473,12 @@ npc_add_to_pf_maps(struct rvu *rvu, u16 mcam_idx, int pcifunc)
>
> idx = xa_to_value(map);
>
> - rc = xa_insert(&npc_priv.xa_pf2idx_map[idx], mcam_idx,
> + rc = xa_insert(&npc_priv->xa_pf2idx_map[idx], mcam_idx,
> xa_mk_value(pcifunc), GFP_KERNEL);
>
> if (rc) {
> - map = xa_load(&npc_priv.xa_pf2idx_map[idx], mcam_idx);
> - xa_erase(&npc_priv.xa_idx2pf_map, mcam_idx);
> + map = xa_load(&npc_priv->xa_pf2idx_map[idx], mcam_idx);
> + xa_erase(&npc_priv->xa_idx2pf_map, mcam_idx);
> dev_err(rvu->dev,
> "%s: failed to insert mcam_idx(%u) to xa_pf2idx_map map, earlier value=%lu idx=%u\n",
> __func__, mcam_idx, xa_to_value(map), idx);
> @@ -2510,9 +2508,9 @@ npc_subbank_suits(struct npc_subbank *sb, int key_type)
> return false;
> }
>
> -#define SB_ALIGN_UP(val) (((val) + npc_priv.subbank_depth) & \
> - ~((npc_priv.subbank_depth) - 1))
> -#define SB_ALIGN_DOWN(val) ALIGN_DOWN((val), npc_priv.subbank_depth)
> +#define SB_ALIGN_UP(val) (((val) + npc_priv->subbank_depth) & \
> + ~((npc_priv->subbank_depth) - 1))
> +#define SB_ALIGN_DOWN(val) ALIGN_DOWN((val), npc_priv->subbank_depth)
>
> static void npc_subbank_iter_down(struct rvu *rvu,
> int ref, int limit,
> @@ -2538,7 +2536,7 @@ static void npc_subbank_iter_down(struct rvu *rvu,
> }
>
> *cur_ref = *cur_limit - 1;
> - align = *cur_ref - npc_priv.subbank_depth + 1;
> + align = *cur_ref - npc_priv->subbank_depth + 1;
> if (align <= limit) {
> *stop = true;
> *cur_limit = limit;
> @@ -2578,7 +2576,7 @@ static void npc_subbank_iter_up(struct rvu *rvu,
> }
>
> *cur_ref = *cur_limit + 1;
> - align = *cur_ref + npc_priv.subbank_depth - 1;
> + align = *cur_ref + npc_priv->subbank_depth - 1;
>
> if (align >= limit) {
> *stop = true;
> @@ -2606,17 +2604,17 @@ npc_subbank_iter(struct rvu *rvu, int key_type,
>
> /* limit and ref should < bank_depth for x4 */
> if (key_type == NPC_MCAM_KEY_X4) {
> - if (*cur_ref >= npc_priv.bank_depth)
> + if (*cur_ref >= npc_priv->bank_depth)
> return -EINVAL;
>
> - if (*cur_limit >= npc_priv.bank_depth)
> + if (*cur_limit >= npc_priv->bank_depth)
> return -EINVAL;
> }
> /* limit and ref should < 2 * bank_depth, for x2 */
> - if (*cur_ref >= 2 * npc_priv.bank_depth)
> + if (*cur_ref >= 2 * npc_priv->bank_depth)
> return -EINVAL;
>
> - if (*cur_limit >= 2 * npc_priv.bank_depth)
> + if (*cur_limit >= 2 * npc_priv->bank_depth)
> return -EINVAL;
>
> return 0;
> @@ -2651,7 +2649,7 @@ static int npc_idx_free(struct rvu *rvu, u16 *mcam_idx, int count,
> vidx = npc_idx2vidx(midx);
> }
>
> - if (midx >= npc_priv.bank_depth * npc_priv.num_banks) {
> + if (midx >= npc_priv->bank_depth * npc_priv->num_banks) {
> dev_err(rvu->dev,
> "%s: Invalid mcam_idx=%u cannot be deleted\n",
> __func__, mcam_idx[i]);
> @@ -2846,7 +2844,7 @@ static int npc_subbank_free_cnt(struct rvu *rvu, struct npc_subbank *sb,
> {
> int cnt, spd;
>
> - spd = npc_priv.subbank_depth;
> + spd = npc_priv->subbank_depth;
> mutex_lock(&sb->lock);
>
> if (sb->flags & NPC_SUBBANK_FLAG_FREE)
> @@ -3005,7 +3003,7 @@ static int npc_subbank_noref_alloc(struct rvu *rvu, int key_type, bool contig,
> max_alloc = !contig;
>
> /* Check used subbanks for free slots */
> - xa_for_each(&npc_priv.xa_sb_used, index, val) {
> + xa_for_each(&npc_priv->xa_sb_used, index, val) {
> idx = xa_to_value(val);
>
> /* Minimize allocation from restricted subbanks
> @@ -3014,7 +3012,7 @@ static int npc_subbank_noref_alloc(struct rvu *rvu, int key_type, bool contig,
> if (npc_subbank_restrict_usage(rvu, idx))
> continue;
>
> - sb = &npc_priv.sb[idx];
> + sb = &npc_priv->sb[idx];
>
> /* Skip if not suitable subbank */
> if (!npc_subbank_suits(sb, key_type))
> @@ -3071,9 +3069,9 @@ static int npc_subbank_noref_alloc(struct rvu *rvu, int key_type, bool contig,
> }
>
> /* Allocate in free subbanks */
> - xa_for_each(&npc_priv.xa_sb_free, index, val) {
> + xa_for_each(&npc_priv->xa_sb_free, index, val) {
> idx = xa_to_value(val);
> - sb = &npc_priv.sb[idx];
> + sb = &npc_priv->sb[idx];
>
> /* Minimize allocation from restricted subbanks
> * in noref allocations.
> @@ -3129,7 +3127,7 @@ static int npc_subbank_noref_alloc(struct rvu *rvu, int key_type, bool contig,
> for (i = 0; restrict_valid &&
> (i < ARRAY_SIZE(npc_subbank_restricted_idxs)); i++) {
> idx = npc_subbank_restricted_idxs[i];
> - sb = &npc_priv.sb[idx];
> + sb = &npc_priv->sb[idx];
>
> /* Skip if not suitable subbank */
> if (!npc_subbank_suits(sb, key_type))
> @@ -3209,7 +3207,7 @@ int npc_cn20k_ref_idx_alloc(struct rvu *rvu, int pcifunc, int key_type,
> bool ref_valid;
> u16 vidx;
>
> - bd = npc_priv.bank_depth;
> + bd = npc_priv->bank_depth;
>
> /* Special case: ref == 0 && limit= 0 && prio == HIGH && count == 1
> * Here user wants to allocate 0th entry
> @@ -3227,7 +3225,7 @@ int npc_cn20k_ref_idx_alloc(struct rvu *rvu, int pcifunc, int key_type,
> ref_valid = !!(limit || ref);
> defrag_candidate = !ref_valid && !contig && virt;
> if (!ref_valid) {
> - if (contig && count > npc_priv.subbank_depth)
> + if (contig && count > npc_priv->subbank_depth)
> goto try_noref_multi_subbank;
>
> rc = npc_subbank_noref_alloc(rvu, key_type, contig,
> @@ -3272,7 +3270,7 @@ int npc_cn20k_ref_idx_alloc(struct rvu *rvu, int pcifunc, int key_type,
> return -EINVAL;
> }
>
> - if (contig && count > npc_priv.subbank_depth)
> + if (contig && count > npc_priv->subbank_depth)
> goto try_ref_multi_subbank;
>
> rc = npc_subbank_ref_alloc(rvu, key_type, ref, limit,
> @@ -3334,8 +3332,8 @@ void npc_cn20k_subbank_calc_free(struct rvu *rvu, int *x2_free,
> *x4_free = 0;
> *sb_free = 0;
>
> - for (i = 0; i < npc_priv.num_subbanks; i++) {
> - sb = &npc_priv.sb[i];
> + for (i = 0; i < npc_priv->num_subbanks; i++) {
> + sb = &npc_priv->sb[i];
> mutex_lock(&sb->lock);
>
> /* Count number of free subbanks */
> @@ -3433,11 +3431,11 @@ static void npc_subbank_init(struct rvu *rvu, struct npc_subbank *sb, int idx)
> {
> mutex_init(&sb->lock);
>
> - sb->b0b = idx * npc_priv.subbank_depth;
> - sb->b0t = sb->b0b + npc_priv.subbank_depth - 1;
> + sb->b0b = idx * npc_priv->subbank_depth;
> + sb->b0t = sb->b0b + npc_priv->subbank_depth - 1;
>
> - sb->b1b = npc_priv.bank_depth + idx * npc_priv.subbank_depth;
> - sb->b1t = sb->b1b + npc_priv.subbank_depth - 1;
> + sb->b1b = npc_priv->bank_depth + idx * npc_priv->subbank_depth;
> + sb->b1t = sb->b1b + npc_priv->subbank_depth - 1;
>
> sb->flags = NPC_SUBBANK_FLAG_FREE;
> sb->idx = idx;
> @@ -3449,7 +3447,7 @@ static void npc_subbank_init(struct rvu *rvu, struct npc_subbank *sb, int idx)
> /* Keep first and last subbank at end of free array; so that
> * it will be used at last
> */
> - xa_store(&npc_priv.xa_sb_free, sb->arr_idx,
> + xa_store(&npc_priv->xa_sb_free, sb->arr_idx,
> xa_mk_value(sb->idx), GFP_KERNEL);
> }
>
> @@ -3474,7 +3472,7 @@ static int npc_pcifunc_map_create(struct rvu *rvu)
>
> pcifunc = pf << 9;
>
> - xa_store(&npc_priv.xa_pf_map, (unsigned long)pcifunc,
> + xa_store(&npc_priv->xa_pf_map, (unsigned long)pcifunc,
> xa_mk_value(cnt), GFP_KERNEL);
>
> cnt++;
> @@ -3483,7 +3481,7 @@ static int npc_pcifunc_map_create(struct rvu *rvu)
> for (vf = 0; vf < numvfs; vf++) {
> pcifunc = (pf << 9) | (vf + 1);
>
> - xa_store(&npc_priv.xa_pf_map, (unsigned long)pcifunc,
> + xa_store(&npc_priv->xa_pf_map, (unsigned long)pcifunc,
> xa_mk_value(cnt), GFP_KERNEL);
> cnt++;
> }
> @@ -3569,7 +3567,7 @@ static int npc_defrag_alloc_free_slots(struct rvu *rvu,
> int rc, sb_off, i, err;
> bool deleted;
>
> - sb = &npc_priv.sb[f->idx];
> + sb = &npc_priv->sb[f->idx];
>
> alloc_cnt1 = 0;
> alloc_cnt2 = 0;
> @@ -3639,9 +3637,9 @@ static int npc_defrag_add_2_show_list(struct rvu *rvu, u16 old_midx,
> node->vidx = vidx;
> INIT_LIST_HEAD(&node->list);
>
> - mutex_lock(&npc_priv.lock);
> - list_add_tail(&node->list, &npc_priv.defrag_lh);
> - mutex_unlock(&npc_priv.lock);
> + mutex_lock(&npc_priv->lock);
> + list_add_tail(&node->list, &npc_priv->defrag_lh);
> + mutex_unlock(&npc_priv->lock);
>
> return 0;
> }
> @@ -3745,7 +3743,7 @@ int npc_defrag_move_vdx_to_free(struct rvu *rvu,
> }
>
> /* save pcifunc */
> - map = xa_load(&npc_priv.xa_idx2pf_map, old_midx);
> + map = xa_load(&npc_priv->xa_idx2pf_map, old_midx);
> pcifunc = xa_to_value(map);
>
> /* delete from pf maps */
> @@ -3904,29 +3902,29 @@ static void npc_defrag_list_clear(void)
> {
> struct npc_defrag_show_node *node, *next;
>
> - mutex_lock(&npc_priv.lock);
> - list_for_each_entry_safe(node, next, &npc_priv.defrag_lh, list) {
> + mutex_lock(&npc_priv->lock);
> + list_for_each_entry_safe(node, next, &npc_priv->defrag_lh, list) {
> list_del_init(&node->list);
> kfree(node);
> }
>
> - mutex_unlock(&npc_priv.lock);
> + mutex_unlock(&npc_priv->lock);
> }
>
> static void npc_lock_all_subbank(void)
> {
> int i;
>
> - for (i = 0; i < npc_priv.num_subbanks; i++)
> - mutex_lock(&npc_priv.sb[i].lock);
> + for (i = 0; i < npc_priv->num_subbanks; i++)
> + mutex_lock(&npc_priv->sb[i].lock);
> }
>
> static void npc_unlock_all_subbank(void)
> {
> int i;
>
> - for (i = npc_priv.num_subbanks - 1; i >= 0; i--)
> - mutex_unlock(&npc_priv.sb[i].lock);
> + for (i = npc_priv->num_subbanks - 1; i >= 0; i--)
> + mutex_unlock(&npc_priv->sb[i].lock);
> }
>
> int npc_cn20k_search_order_set(struct rvu *rvu,
> @@ -3937,9 +3935,9 @@ int npc_cn20k_search_order_set(struct rvu *rvu,
> struct xarray *xa;
> int sb_idx, rc;
>
> - if (cnt != npc_priv.num_subbanks) {
> + if (cnt != npc_priv->num_subbanks) {
> dev_err(rvu->dev, "Number of entries(%u) != %u\n",
> - cnt, npc_priv.num_subbanks);
> + cnt, npc_priv->num_subbanks);
> return -EINVAL;
> }
>
> @@ -3948,11 +3946,11 @@ int npc_cn20k_search_order_set(struct rvu *rvu,
> restrict_valid = false;
>
> for (sb_idx = 0; sb_idx < cnt; sb_idx++) {
> - sb = &npc_priv.sb[sb_idx];
> + sb = &npc_priv->sb[sb_idx];
>
> - xa = &npc_priv.xa_sb_free;
> + xa = &npc_priv->xa_sb_free;
> if (sb->flags & NPC_SUBBANK_FLAG_USED)
> - xa = &npc_priv.xa_sb_used;
> + xa = &npc_priv->xa_sb_used;
>
> sb->arr_idx = narr[sb_idx];
>
> @@ -3975,7 +3973,7 @@ int npc_cn20k_search_order_set(struct rvu *rvu,
> const u32 *npc_cn20k_search_order_get(bool *restricted_order, u32 *sz)
> {
> *restricted_order = restrict_valid;
> - *sz = npc_priv.num_subbanks;
> + *sz = npc_priv->num_subbanks;
> return subbank_srch_order;
> }
>
> @@ -3999,7 +3997,7 @@ int npc_cn20k_defrag(struct rvu *rvu)
> INIT_LIST_HEAD(&x4lh);
> INIT_LIST_HEAD(&x2lh);
>
> - node = kcalloc(npc_priv.num_subbanks, sizeof(*node), GFP_KERNEL);
> + node = kcalloc(npc_priv->num_subbanks, sizeof(*node), GFP_KERNEL);
> if (!node)
> return -ENOMEM;
>
> @@ -4008,13 +4006,13 @@ int npc_cn20k_defrag(struct rvu *rvu)
> npc_lock_all_subbank();
>
> /* Fill in node with subbank properties */
> - for (i = 0; i < npc_priv.num_subbanks; i++) {
> - sb = &npc_priv.sb[i];
> + for (i = 0; i < npc_priv->num_subbanks; i++) {
> + sb = &npc_priv->sb[i];
>
> node[i].idx = i;
> node[i].key_type = sb->key_type;
> node[i].free_cnt = sb->free_cnt;
> - node[i].vidx = kcalloc(npc_priv.subbank_depth * 2,
> + node[i].vidx = kcalloc(npc_priv->subbank_depth * 2,
> sizeof(*node[i].vidx),
> GFP_KERNEL);
> if (!node[i].vidx) {
> @@ -4044,8 +4042,8 @@ int npc_cn20k_defrag(struct rvu *rvu)
> }
>
> /* Filling vidx[] array with all vidx in that subbank */
> - xa_for_each_start(&npc_priv.xa_vidx2idx_map, index, map,
> - npc_priv.bank_depth * 2) {
> + xa_for_each_start(&npc_priv->xa_vidx2idx_map, index, map,
> + npc_priv->bank_depth * 2) {
> midx = xa_to_value(map);
> rc = npc_mcam_idx_2_subbank_idx(rvu, midx,
> &sb, &sb_off);
> @@ -4062,14 +4060,14 @@ int npc_cn20k_defrag(struct rvu *rvu)
> }
>
> /* Mark all subbank which has ref allocation */
> - for (i = 0; i < npc_priv.num_subbanks; i++) {
> + for (i = 0; i < npc_priv->num_subbanks; i++) {
> tnode = &node[i];
>
> if (!tnode->valid)
> continue;
>
> tot = (tnode->key_type == NPC_MCAM_KEY_X2) ?
> - npc_priv.subbank_depth * 2 : npc_priv.subbank_depth;
> + npc_priv->subbank_depth * 2 : npc_priv->subbank_depth;
>
> if (node[i].vidx_cnt != tot - tnode->free_cnt)
> tnode->refs = true;
> @@ -4086,7 +4084,7 @@ int npc_cn20k_defrag(struct rvu *rvu)
> free_vidx:
> npc_unlock_all_subbank();
> mutex_unlock(&mcam->lock);
> - for (i = 0; i < npc_priv.num_subbanks; i++)
> + for (i = 0; i < npc_priv->num_subbanks; i++)
> kfree(node[i].vidx);
> kfree(node);
> return rc;
> @@ -4114,7 +4112,7 @@ int npc_cn20k_dft_rules_idx_get(struct rvu *rvu, u16 pcifunc, u16 *bcast,
> *ptr[i] = USHRT_MAX;
> }
>
> - if (!npc_priv.init_done)
> + if (!npc_priv)
> return 0;
>
> if (is_lbk_vf(rvu, pcifunc)) {
> @@ -4122,7 +4120,7 @@ int npc_cn20k_dft_rules_idx_get(struct rvu *rvu, u16 pcifunc, u16 *bcast,
> return -EINVAL;
>
> idx = NPC_DFT_RULE_ID_MK(pcifunc, NPC_DFT_RULE_PROMISC_ID);
> - val = xa_load(&npc_priv.xa_pf2dfl_rmap, idx);
> + val = xa_load(&npc_priv->xa_pf2dfl_rmap, idx);
> if (!val) {
> pr_debug("%s: Failed to find %s index for pcifunc=%#x\n",
> __func__,
> @@ -4141,7 +4139,7 @@ int npc_cn20k_dft_rules_idx_get(struct rvu *rvu, u16 pcifunc, u16 *bcast,
> return -EINVAL;
>
> idx = NPC_DFT_RULE_ID_MK(pcifunc, NPC_DFT_RULE_UCAST_ID);
> - val = xa_load(&npc_priv.xa_pf2dfl_rmap, idx);
> + val = xa_load(&npc_priv->xa_pf2dfl_rmap, idx);
> if (!val) {
> pr_debug("%s: Failed to find %s index for pcifunc=%#x\n",
> __func__,
> @@ -4161,7 +4159,7 @@ int npc_cn20k_dft_rules_idx_get(struct rvu *rvu, u16 pcifunc, u16 *bcast,
> continue;
>
> idx = NPC_DFT_RULE_ID_MK(pcifunc, i);
> - val = xa_load(&npc_priv.xa_pf2dfl_rmap, idx);
> + val = xa_load(&npc_priv->xa_pf2dfl_rmap, idx);
> if (!val) {
> pr_debug("%s: Failed to find %s index for pcifunc=%#x\n",
> __func__,
> @@ -4185,8 +4183,8 @@ int rvu_mbox_handler_npc_get_pfl_info(struct rvu *rvu, struct msg_req *req,
> return -EOPNOTSUPP;
> }
>
> - rsp->kw_type = npc_priv.kw;
> - rsp->x4_slots = npc_priv.bank_depth;
> + rsp->kw_type = npc_priv->kw;
> + rsp->x4_slots = npc_priv->bank_depth;
> return 0;
> }
>
> @@ -4276,7 +4274,7 @@ void npc_cn20k_dft_rules_free(struct rvu *rvu, u16 pcifunc)
> int blkaddr, rc, i;
> void *map;
>
> - if (!npc_priv.init_done)
> + if (!npc_priv)
> return;
>
> if (!npc_is_cgx_or_lbk(rvu, pcifunc)) {
> @@ -4294,7 +4292,7 @@ void npc_cn20k_dft_rules_free(struct rvu *rvu, u16 pcifunc)
> /* LBK */
> if (is_lbk_vf(rvu, pcifunc)) {
> index = NPC_DFT_RULE_ID_MK(pcifunc, NPC_DFT_RULE_PROMISC_ID);
> - map = xa_erase(&npc_priv.xa_pf2dfl_rmap, index);
> + map = xa_erase(&npc_priv->xa_pf2dfl_rmap, index);
> if (!map)
> dev_dbg(rvu->dev,
> "%s: Err from delete %s mcam idx from xarray (pcifunc=%#x\n",
> @@ -4308,7 +4306,7 @@ void npc_cn20k_dft_rules_free(struct rvu *rvu, u16 pcifunc)
> /* VF */
> if (is_vf(pcifunc)) {
> index = NPC_DFT_RULE_ID_MK(pcifunc, NPC_DFT_RULE_UCAST_ID);
> - map = xa_erase(&npc_priv.xa_pf2dfl_rmap, index);
> + map = xa_erase(&npc_priv->xa_pf2dfl_rmap, index);
> if (!map)
> dev_dbg(rvu->dev,
> "%s: Err from delete %s mcam idx from xarray (pcifunc=%#x\n",
> @@ -4322,7 +4320,7 @@ void npc_cn20k_dft_rules_free(struct rvu *rvu, u16 pcifunc)
> /* PF */
> for (i = NPC_DFT_RULE_START_ID; i < NPC_DFT_RULE_MAX_ID; i++) {
> index = NPC_DFT_RULE_ID_MK(pcifunc, i);
> - map = xa_erase(&npc_priv.xa_pf2dfl_rmap, index);
> + map = xa_erase(&npc_priv->xa_pf2dfl_rmap, index);
> if (!map)
> dev_dbg(rvu->dev,
> "%s: Err from delete %s mcam idx from xarray (pcifunc=%#x\n",
> @@ -4382,7 +4380,7 @@ int npc_cn20k_dft_rules_alloc(struct rvu *rvu, u16 pcifunc)
> struct msg_rsp free_rsp;
> u16 b, m, p, u;
>
> - if (!npc_priv.init_done)
> + if (!npc_priv)
> return 0;
>
> if (!npc_is_cgx_or_lbk(rvu, pcifunc)) {
> @@ -4405,7 +4403,7 @@ int npc_cn20k_dft_rules_alloc(struct rvu *rvu, u16 pcifunc)
> }
>
> /* Set ref index as lowest priority index */
> - eidx = 2 * npc_priv.bank_depth - 1;
> + eidx = 2 * npc_priv->bank_depth - 1;
>
> /* Install only UCAST for VF */
> cnt = is_vf(pcifunc) ? 1 : ARRAY_SIZE(mcam_idx);
> @@ -4471,9 +4469,9 @@ int npc_cn20k_dft_rules_alloc(struct rvu *rvu, u16 pcifunc)
> req.hdr.pcifunc = pcifunc;
> req.ref_prio = NPC_MCAM_LOWER_PRIO;
>
> - if (npc_priv.kw == NPC_MCAM_KEY_X4) {
> + if (npc_priv->kw == NPC_MCAM_KEY_X4) {
> req.kw_type = NPC_MCAM_KEY_X4;
> - req.ref_entry = eidx & (npc_priv.bank_depth - 1);
> + req.ref_entry = eidx & (npc_priv->bank_depth - 1);
> } else {
> req.kw_type = NPC_MCAM_KEY_X2;
> req.ref_entry = eidx;
> @@ -4497,7 +4495,7 @@ int npc_cn20k_dft_rules_alloc(struct rvu *rvu, u16 pcifunc)
> /* LBK */
> if (is_lbk_vf(rvu, pcifunc)) {
> index = NPC_DFT_RULE_ID_MK(pcifunc, NPC_DFT_RULE_PROMISC_ID);
> - ret = xa_insert(&npc_priv.xa_pf2dfl_rmap, index,
> + ret = xa_insert(&npc_priv->xa_pf2dfl_rmap, index,
> xa_mk_value(mcam_idx[0]), GFP_KERNEL);
> if (ret) {
> dev_err(rvu->dev,
> @@ -4514,7 +4512,7 @@ int npc_cn20k_dft_rules_alloc(struct rvu *rvu, u16 pcifunc)
> /* VF */
> if (is_vf(pcifunc)) {
> index = NPC_DFT_RULE_ID_MK(pcifunc, NPC_DFT_RULE_UCAST_ID);
> - ret = xa_insert(&npc_priv.xa_pf2dfl_rmap, index,
> + ret = xa_insert(&npc_priv->xa_pf2dfl_rmap, index,
> xa_mk_value(mcam_idx[0]), GFP_KERNEL);
> if (ret) {
> dev_err(rvu->dev,
> @@ -4532,7 +4530,7 @@ int npc_cn20k_dft_rules_alloc(struct rvu *rvu, u16 pcifunc)
> for (i = NPC_DFT_RULE_START_ID, k = 0; i < NPC_DFT_RULE_MAX_ID &&
> k < cnt; i++, k++) {
> index = NPC_DFT_RULE_ID_MK(pcifunc, i);
> - ret = xa_insert(&npc_priv.xa_pf2dfl_rmap, index,
> + ret = xa_insert(&npc_priv->xa_pf2dfl_rmap, index,
> xa_mk_value(mcam_idx[k]), GFP_KERNEL);
> if (ret) {
> dev_err(rvu->dev,
> @@ -4541,7 +4539,7 @@ int npc_cn20k_dft_rules_alloc(struct rvu *rvu, u16 pcifunc)
> pcifunc);
> for (int p = NPC_DFT_RULE_START_ID; p < i; p++) {
> index = NPC_DFT_RULE_ID_MK(pcifunc, p);
> - xa_erase(&npc_priv.xa_pf2dfl_rmap, index);
> + xa_erase(&npc_priv->xa_pf2dfl_rmap, index);
> }
> goto err;
> }
> @@ -4599,34 +4597,40 @@ static int npc_priv_init(struct rvu *rvu)
> return -EINVAL;
> }
>
> - npc_priv.num_subbanks = num_subbanks;
> + npc_priv = kcalloc(1, sizeof(*npc_priv), GFP_KERNEL);
> + if (!npc_priv)
> + return -ENOMEM;
> +
> + npc_priv->num_banks = num_banks;
> +
> + npc_priv->num_subbanks = num_subbanks;
>
> subbank_depth = bank_depth / num_subbanks;
>
> - npc_priv.bank_depth = bank_depth;
> - npc_priv.subbank_depth = subbank_depth;
> + npc_priv->bank_depth = bank_depth;
> + npc_priv->subbank_depth = subbank_depth;
>
> /* Get kex configured key size */
> cfg = rvu_read64(rvu, blkaddr, NPC_AF_INTFX_KEX_CFG(0));
> - npc_priv.kw = FIELD_GET(GENMASK_ULL(34, 32), cfg);
> + npc_priv->kw = FIELD_GET(GENMASK_ULL(34, 32), cfg);
>
> dev_info(rvu->dev,
> "banks=%u depth=%u, subbanks=%u depth=%u, key type=%s\n",
> num_banks, bank_depth, num_subbanks, subbank_depth,
> - npc_kw_name[npc_priv.kw]);
> + npc_kw_name[npc_priv->kw]);
>
> - npc_priv.sb = kcalloc(num_subbanks, sizeof(struct npc_subbank),
> - GFP_KERNEL);
> - if (!npc_priv.sb)
> + npc_priv->sb = kcalloc(num_subbanks, sizeof(struct npc_subbank),
> + GFP_KERNEL);
> + if (!npc_priv->sb)
> return -ENOMEM;
>
> - xa_init_flags(&npc_priv.xa_sb_used, XA_FLAGS_ALLOC);
> - xa_init_flags(&npc_priv.xa_sb_free, XA_FLAGS_ALLOC);
> - xa_init_flags(&npc_priv.xa_idx2pf_map, XA_FLAGS_ALLOC);
> - xa_init_flags(&npc_priv.xa_pf_map, XA_FLAGS_ALLOC);
> - xa_init_flags(&npc_priv.xa_pf2dfl_rmap, XA_FLAGS_ALLOC);
> - xa_init_flags(&npc_priv.xa_idx2vidx_map, XA_FLAGS_ALLOC);
> - xa_init_flags(&npc_priv.xa_vidx2idx_map, XA_FLAGS_ALLOC);
> + xa_init_flags(&npc_priv->xa_sb_used, XA_FLAGS_ALLOC);
> + xa_init_flags(&npc_priv->xa_sb_free, XA_FLAGS_ALLOC);
> + xa_init_flags(&npc_priv->xa_idx2pf_map, XA_FLAGS_ALLOC);
> + xa_init_flags(&npc_priv->xa_pf_map, XA_FLAGS_ALLOC);
> + xa_init_flags(&npc_priv->xa_pf2dfl_rmap, XA_FLAGS_ALLOC);
> + xa_init_flags(&npc_priv->xa_idx2vidx_map, XA_FLAGS_ALLOC);
> + xa_init_flags(&npc_priv->xa_vidx2idx_map, XA_FLAGS_ALLOC);
>
> if (npc_create_srch_order(num_subbanks))
> goto fail1;
> @@ -4634,22 +4638,22 @@ static int npc_priv_init(struct rvu *rvu)
> npc_populate_restricted_idxs(num_subbanks);
>
> /* Initialize subbanks */
> - for (i = 0, sb = npc_priv.sb; i < num_subbanks; i++, sb++)
> + for (i = 0, sb = npc_priv->sb; i < num_subbanks; i++, sb++)
> npc_subbank_init(rvu, sb, i);
>
> /* Get number of pcifuncs in the system */
> - npc_priv.pf_cnt = npc_pcifunc_map_create(rvu);
> - npc_priv.xa_pf2idx_map = kcalloc(npc_priv.pf_cnt,
> - sizeof(struct xarray),
> - GFP_KERNEL);
> - if (!npc_priv.xa_pf2idx_map)
> + npc_priv->pf_cnt = npc_pcifunc_map_create(rvu);
> + npc_priv->xa_pf2idx_map = kcalloc(npc_priv->pf_cnt,
> + sizeof(struct xarray),
> + GFP_KERNEL);
> + if (!npc_priv->xa_pf2idx_map)
> goto fail2;
>
> - for (i = 0; i < npc_priv.pf_cnt; i++)
> - xa_init_flags(&npc_priv.xa_pf2idx_map[i], XA_FLAGS_ALLOC);
> + for (i = 0; i < npc_priv->pf_cnt; i++)
> + xa_init_flags(&npc_priv->xa_pf2idx_map[i], XA_FLAGS_ALLOC);
>
> - INIT_LIST_HEAD(&npc_priv.defrag_lh);
> - mutex_init(&npc_priv.lock);
> + INIT_LIST_HEAD(&npc_priv->defrag_lh);
> + mutex_init(&npc_priv->lock);
>
> return 0;
>
> @@ -4658,15 +4662,17 @@ static int npc_priv_init(struct rvu *rvu)
> subbank_srch_order = NULL;
>
> fail1:
> - xa_destroy(&npc_priv.xa_sb_used);
> - xa_destroy(&npc_priv.xa_sb_free);
> - xa_destroy(&npc_priv.xa_idx2pf_map);
> - xa_destroy(&npc_priv.xa_pf_map);
> - xa_destroy(&npc_priv.xa_pf2dfl_rmap);
> - xa_destroy(&npc_priv.xa_idx2vidx_map);
> - xa_destroy(&npc_priv.xa_vidx2idx_map);
> - kfree(npc_priv.sb);
> - npc_priv.sb = NULL;
> + xa_destroy(&npc_priv->xa_sb_used);
> + xa_destroy(&npc_priv->xa_sb_free);
> + xa_destroy(&npc_priv->xa_idx2pf_map);
> + xa_destroy(&npc_priv->xa_pf_map);
> + xa_destroy(&npc_priv->xa_pf2dfl_rmap);
> + xa_destroy(&npc_priv->xa_idx2vidx_map);
> + xa_destroy(&npc_priv->xa_vidx2idx_map);
> + kfree(npc_priv->sb);
> + npc_priv->sb = NULL;
> + kfree(npc_priv);
> + npc_priv = NULL;
> return -ENOMEM;
> }
>
> @@ -4674,25 +4680,30 @@ void npc_cn20k_deinit(struct rvu *rvu)
> {
> int i;
>
> - xa_destroy(&npc_priv.xa_sb_used);
> - xa_destroy(&npc_priv.xa_sb_free);
> - xa_destroy(&npc_priv.xa_idx2pf_map);
> - xa_destroy(&npc_priv.xa_pf_map);
> - xa_destroy(&npc_priv.xa_pf2dfl_rmap);
> - xa_destroy(&npc_priv.xa_idx2vidx_map);
> - xa_destroy(&npc_priv.xa_vidx2idx_map);
> + if (!npc_priv)
> + return;
> +
> + xa_destroy(&npc_priv->xa_sb_used);
> + xa_destroy(&npc_priv->xa_sb_free);
> + xa_destroy(&npc_priv->xa_idx2pf_map);
> + xa_destroy(&npc_priv->xa_pf_map);
> + xa_destroy(&npc_priv->xa_pf2dfl_rmap);
> + xa_destroy(&npc_priv->xa_idx2vidx_map);
> + xa_destroy(&npc_priv->xa_vidx2idx_map);
>
> - for (i = 0; i < npc_priv.pf_cnt; i++)
> - xa_destroy(&npc_priv.xa_pf2idx_map[i]);
> + for (i = 0; i < npc_priv->pf_cnt; i++)
> + xa_destroy(&npc_priv->xa_pf2idx_map[i]);
>
> - kfree(npc_priv.xa_pf2idx_map);
> + kfree(npc_priv->xa_pf2idx_map);
> /* No need to destroy mutex lock as it is
> * part of subbank structure
> */
> - kfree(npc_priv.sb);
> + kfree(npc_priv->sb);
> kfree(subbank_srch_order);
> - bitmap_clear(npc_priv.en_map, 0, MAX_NUM_BANKS * MAX_NUM_SUB_BANKS *
> + bitmap_clear(npc_priv->en_map, 0, MAX_NUM_BANKS * MAX_NUM_SUB_BANKS *
> MAX_SUBBANK_DEPTH);
> + kfree(npc_priv);
> + npc_priv = NULL;
> }
>
> static int npc_setup_mcam_section(struct rvu *rvu, int key_type)
> @@ -4705,7 +4716,7 @@ static int npc_setup_mcam_section(struct rvu *rvu, int key_type)
> return -ENODEV;
> }
>
> - for (sec = 0; sec < npc_priv.num_subbanks; sec++)
> + for (sec = 0; sec < npc_priv->num_subbanks; sec++)
> rvu_write64(rvu, blkaddr,
> NPC_AF_MCAM_SECTIONX_CFG_EXT(sec), key_type);
>
> @@ -4730,7 +4741,5 @@ int npc_cn20k_init(struct rvu *rvu)
> return err;
> }
>
> - npc_priv.init_done = true;
> -
> return 0;
> }
> diff --git a/drivers/net/ethernet/marvell/octeontx2/af/cn20k/npc.h b/drivers/net/ethernet/marvell/octeontx2/af/cn20k/npc.h
> index bf030e40fbf9..ee0bbeba7f25 100644
> --- a/drivers/net/ethernet/marvell/octeontx2/af/cn20k/npc.h
> +++ b/drivers/net/ethernet/marvell/octeontx2/af/cn20k/npc.h
> @@ -191,7 +191,7 @@ struct npc_defrag_show_node {
> */
> struct npc_priv_t {
> int bank_depth;
> - const int num_banks;
> + int num_banks;
> int num_subbanks;
> int subbank_depth;
> DECLARE_BITMAP(en_map, MAX_NUM_BANKS *
> @@ -210,7 +210,6 @@ struct npc_priv_t {
> struct list_head defrag_lh;
> struct mutex lock; /* protect defrag nodes */
> int pf_cnt;
> - bool init_done;
> };
>
> struct npc_kpm_action0 {
> --
> 2.43.0
>
prev parent reply other threads:[~2026-05-11 3:27 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-08 3:49 [PATCH v12 net-next 0/9] octeontx2-af: npc: Enhancements Ratheesh Kannoth
2026-05-08 3:49 ` [PATCH v12 net-next 1/9] octeontx2-af: npc: cn20k: debugfs enhancements Ratheesh Kannoth
2026-05-11 2:25 ` Ratheesh Kannoth
2026-05-08 3:49 ` [PATCH v12 net-next 2/9] net/mlx5e: trim stack use in PCIe congestion threshold helper Ratheesh Kannoth
2026-05-08 9:02 ` David Laight
2026-05-08 3:49 ` [PATCH v12 net-next 3/9] devlink: pass param values by pointer Ratheesh Kannoth
2026-05-11 13:39 ` Przemek Kitszel
2026-05-08 3:49 ` [PATCH v12 net-next 4/9] devlink: Implement devlink param multi attribute nested data values Ratheesh Kannoth
2026-05-11 2:31 ` Ratheesh Kannoth
2026-05-08 3:49 ` [PATCH v12 net-next 5/9] octeontx2-af: npc: cn20k: add subbank search order control Ratheesh Kannoth
2026-05-11 2:32 ` Ratheesh Kannoth
2026-05-08 3:49 ` [PATCH v12 net-next 6/9] octeontx2: cn20k: Coordinate default rules with NIX LF lifecycle Ratheesh Kannoth
2026-05-11 2:44 ` Ratheesh Kannoth
2026-05-08 3:49 ` [PATCH v12 net-next 7/9] octeontx2-af: npc: Support for custom KPU profile from filesystem Ratheesh Kannoth
2026-05-11 3:23 ` Ratheesh Kannoth
2026-05-11 3:27 ` Ratheesh Kannoth
2026-05-11 11:55 ` [Intel-wired-lan] " Loktionov, Aleksandr
2026-05-12 2:11 ` Ratheesh Kannoth
2026-05-08 3:49 ` [PATCH v12 net-next 8/9] octeontx2: cn20k: Respect NPC MCAM X2/X4 profile in flows and DFT alloc Ratheesh Kannoth
2026-05-11 3:25 ` Ratheesh Kannoth
2026-05-08 3:49 ` [PATCH v12 net-next 9/9] octeontx2-af: npc: cn20k: Allocate npc_priv and dstats dynamically Ratheesh Kannoth
2026-05-11 3:26 ` Ratheesh Kannoth [this message]
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=agFMf2HnBEukJB9u@rkannoth-OptiPlex-7090 \
--to=rkannoth@marvell.com \
--cc=Prathosh.Satish@microchip.com \
--cc=akiyano@amazon.com \
--cc=andrew+netdev@lunn.ch \
--cc=anthony.l.nguyen@intel.com \
--cc=arkadiusz.kubalewski@intel.com \
--cc=brett.creeley@amd.com \
--cc=darinzon@amazon.com \
--cc=davem@davemloft.net \
--cc=donald.hunter@gmail.com \
--cc=edumazet@google.com \
--cc=horms@kernel.org \
--cc=idosch@nvidia.com \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=ivecera@redhat.com \
--cc=jiri@resnulli.us \
--cc=kuba@kernel.org \
--cc=leon@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=mbloch@nvidia.com \
--cc=michael.chan@broadcom.com \
--cc=netdev@vger.kernel.org \
--cc=oss-drivers@corigine.com \
--cc=pabeni@redhat.com \
--cc=pavan.chebbi@broadcom.com \
--cc=petrm@nvidia.com \
--cc=przemyslaw.kitszel@intel.com \
--cc=saeedm@nvidia.com \
--cc=sgoutham@marvell.com \
--cc=tariqt@nvidia.com \
--cc=vadim.fedorenko@linux.dev \
/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