From: Kiran Kumar Kokkilagadda <kirankumark@marvell.com>
To: Satheesh Paul <psatheesh@marvell.com>,
Jerin Jacob Kollanukkaran <jerinj@marvell.com>,
Nithin Kumar Dabilpuram <ndabilpuram@marvell.com>
Cc: "stable@dpdk.org" <stable@dpdk.org>,
Satheesh Paul <psatheesh@marvell.com>
Subject: RE: [PATCH 20.11] net/octeontx2: fix flow MCAM priority management
Date: Tue, 15 Mar 2022 15:47:13 +0000 [thread overview]
Message-ID: <BYAPR18MB29657862C63E1309391E325AAC109@BYAPR18MB2965.namprd18.prod.outlook.com> (raw)
In-Reply-To: <20220315041620.2118828-1-psatheesh@marvell.com>
> -----Original Message-----
> From: psatheesh@marvell.com <psatheesh@marvell.com>
> Sent: Tuesday, March 15, 2022 9:46 AM
> To: Jerin Jacob Kollanukkaran <jerinj@marvell.com>; Nithin Kumar Dabilpuram
> <ndabilpuram@marvell.com>; Kiran Kumar Kokkilagadda
> <kirankumark@marvell.com>
> Cc: stable@dpdk.org; Satheesh Paul <psatheesh@marvell.com>
> Subject: [PATCH 20.11] net/octeontx2: fix flow MCAM priority management
>
> From: Satheesh Paul <psatheesh@marvell.com>
>
> This patch fixes issues in rearranging the MCAM entries when user is creating
> flows with priority levels.
> The MCAM preallocation scheme and the free entry cache are removed. For
> every flow created, an MCAM allocation request is made to the kernel. Each
> priority level has a list of MCAM entries. For every flow rule added, the MCAM
> entry obtained from kernel is checked if it is at the correct user specified priority.
> If not, the existing rules are moved across MCAM entries so that the user
> specified priority is maintained.
>
> Fixes: 29a2017c70 ("net/octeontx2: add flow mbox utility functions")
>
> Signed-off-by: Satheesh Paul <psatheesh@marvell.com>
Acked-by: Kiran Kumar Kokkilagadda <kirankumark@marvell.com>
> ---
> drivers/net/octeontx2/otx2_flow.c | 145 +----
> drivers/net/octeontx2/otx2_flow.h | 33 +-
> drivers/net/octeontx2/otx2_flow_utils.c | 717 ++++++++++++------------
> 3 files changed, 405 insertions(+), 490 deletions(-)
>
> diff --git a/drivers/net/octeontx2/otx2_flow.c
> b/drivers/net/octeontx2/otx2_flow.c
> index 5ff6a66abb..54dfff8f14 100644
> --- a/drivers/net/octeontx2/otx2_flow.c
> +++ b/drivers/net/octeontx2/otx2_flow.c
> @@ -13,38 +13,27 @@ otx2_flow_free_all_resources(struct otx2_eth_dev
> *hw) {
> struct otx2_npc_flow_info *npc = &hw->npc_flow;
> struct otx2_mbox *mbox = hw->mbox;
> - struct otx2_mcam_ents_info *info;
> - struct rte_bitmap *bmap;
> struct rte_flow *flow;
> - int entry_count = 0;
> int rc, idx;
>
> - for (idx = 0; idx < npc->flow_max_priority; idx++) {
> - info = &npc->flow_entry_info[idx];
> - entry_count += info->live_ent;
> - }
> -
> - if (entry_count == 0)
> - return 0;
> -
> /* Free all MCAM entries allocated */
> rc = otx2_flow_mcam_free_all_entries(mbox);
>
> /* Free any MCAM counters and delete flow list */
> for (idx = 0; idx < npc->flow_max_priority; idx++) {
> while ((flow = TAILQ_FIRST(&npc->flow_list[idx])) != NULL) {
> - if (flow->ctr_id != NPC_COUNTER_NONE)
> + if (flow->ctr_id != NPC_COUNTER_NONE) {
> + rc |= otx2_flow_mcam_clear_counter(mbox,
> + flow->ctr_id);
> rc |= otx2_flow_mcam_free_counter(mbox,
> flow->ctr_id);
> + }
> +
> + otx2_delete_prio_list_entry(npc, flow);
>
> TAILQ_REMOVE(&npc->flow_list[idx], flow, next);
> rte_free(flow);
> - bmap = npc->live_entries[flow->priority];
> - rte_bitmap_clear(bmap, flow->mcam_id);
> }
> - info = &npc->flow_entry_info[idx];
> - info->free_ent = 0;
> - info->live_ent = 0;
> }
> return rc;
> }
> @@ -661,7 +650,6 @@ otx2_flow_destroy(struct rte_eth_dev *dev,
> struct otx2_eth_dev *hw = dev->data->dev_private;
> struct otx2_npc_flow_info *npc = &hw->npc_flow;
> struct otx2_mbox *mbox = hw->mbox;
> - struct rte_bitmap *bmap;
> uint16_t match_id;
> int rc;
>
> @@ -708,8 +696,7 @@ otx2_flow_destroy(struct rte_eth_dev *dev,
>
> TAILQ_REMOVE(&npc->flow_list[flow->priority], flow, next);
>
> - bmap = npc->live_entries[flow->priority];
> - rte_bitmap_clear(bmap, flow->mcam_id);
> + otx2_delete_prio_list_entry(npc, flow);
>
> rte_free(flow);
> return 0;
> @@ -977,9 +964,9 @@ static int otx2_mcam_tot_entries(struct otx2_eth_dev
> *dev) int otx2_flow_init(struct otx2_eth_dev *hw) {
> - uint8_t *mem = NULL, *nix_mem = NULL, *npc_mem = NULL;
> struct otx2_npc_flow_info *npc = &hw->npc_flow;
> - uint32_t bmap_sz, tot_mcam_entries = 0;
> + uint32_t bmap_sz, tot_mcam_entries = 0, sz = 0;
> + uint8_t *nix_mem = NULL;
> int rc = 0, idx;
>
> rc = flow_fetch_kex_cfg(hw);
> @@ -993,60 +980,6 @@ otx2_flow_init(struct otx2_eth_dev *hw)
>
> tot_mcam_entries = otx2_mcam_tot_entries(hw);
> npc->mcam_entries = tot_mcam_entries >> npc-
> >keyw[NPC_MCAM_RX];
> - /* Free, free_rev, live and live_rev entries */
> - bmap_sz = rte_bitmap_get_memory_footprint(npc->mcam_entries);
> - mem = rte_zmalloc(NULL, 4 * bmap_sz * npc->flow_max_priority,
> - RTE_CACHE_LINE_SIZE);
> - if (mem == NULL) {
> - otx2_err("Bmap alloc failed");
> - rc = -ENOMEM;
> - return rc;
> - }
> -
> - npc->flow_entry_info = rte_zmalloc(NULL, npc->flow_max_priority
> - * sizeof(struct
> otx2_mcam_ents_info),
> - 0);
> - if (npc->flow_entry_info == NULL) {
> - otx2_err("flow_entry_info alloc failed");
> - rc = -ENOMEM;
> - goto err;
> - }
> -
> - npc->free_entries = rte_zmalloc(NULL, npc->flow_max_priority
> - * sizeof(struct rte_bitmap *),
> - 0);
> - if (npc->free_entries == NULL) {
> - otx2_err("free_entries alloc failed");
> - rc = -ENOMEM;
> - goto err;
> - }
> -
> - npc->free_entries_rev = rte_zmalloc(NULL, npc->flow_max_priority
> - * sizeof(struct rte_bitmap *),
> - 0);
> - if (npc->free_entries_rev == NULL) {
> - otx2_err("free_entries_rev alloc failed");
> - rc = -ENOMEM;
> - goto err;
> - }
> -
> - npc->live_entries = rte_zmalloc(NULL, npc->flow_max_priority
> - * sizeof(struct rte_bitmap *),
> - 0);
> - if (npc->live_entries == NULL) {
> - otx2_err("live_entries alloc failed");
> - rc = -ENOMEM;
> - goto err;
> - }
> -
> - npc->live_entries_rev = rte_zmalloc(NULL, npc->flow_max_priority
> - * sizeof(struct rte_bitmap *),
> - 0);
> - if (npc->live_entries_rev == NULL) {
> - otx2_err("live_entries_rev alloc failed");
> - rc = -ENOMEM;
> - goto err;
> - }
>
> npc->flow_list = rte_zmalloc(NULL, npc->flow_max_priority
> * sizeof(struct otx2_flow_list),
> @@ -1057,30 +990,17 @@ otx2_flow_init(struct otx2_eth_dev *hw)
> goto err;
> }
>
> - npc_mem = mem;
> + sz = npc->flow_max_priority * sizeof(struct otx2_prio_flow_list_head);
> + npc->prio_flow_list = rte_zmalloc(NULL, sz, 0);
> + if (npc->prio_flow_list == NULL) {
> + otx2_err("prio_flow_list alloc failed");
> + rc = -ENOMEM;
> + goto err;
> + }
> +
> for (idx = 0; idx < npc->flow_max_priority; idx++) {
> TAILQ_INIT(&npc->flow_list[idx]);
> -
> - npc->free_entries[idx] =
> - rte_bitmap_init(npc->mcam_entries, mem, bmap_sz);
> - mem += bmap_sz;
> -
> - npc->free_entries_rev[idx] =
> - rte_bitmap_init(npc->mcam_entries, mem, bmap_sz);
> - mem += bmap_sz;
> -
> - npc->live_entries[idx] =
> - rte_bitmap_init(npc->mcam_entries, mem, bmap_sz);
> - mem += bmap_sz;
> -
> - npc->live_entries_rev[idx] =
> - rte_bitmap_init(npc->mcam_entries, mem, bmap_sz);
> - mem += bmap_sz;
> -
> - npc->flow_entry_info[idx].free_ent = 0;
> - npc->flow_entry_info[idx].live_ent = 0;
> - npc->flow_entry_info[idx].max_id = 0;
> - npc->flow_entry_info[idx].min_id = ~(0);
> + TAILQ_INIT(&npc->prio_flow_list[idx]);
> }
>
> npc->rss_grps = NIX_RSS_GRPS;
> @@ -1105,18 +1025,8 @@ otx2_flow_init(struct otx2_eth_dev *hw)
> err:
> if (npc->flow_list)
> rte_free(npc->flow_list);
> - if (npc->live_entries_rev)
> - rte_free(npc->live_entries_rev);
> - if (npc->live_entries)
> - rte_free(npc->live_entries);
> - if (npc->free_entries_rev)
> - rte_free(npc->free_entries_rev);
> - if (npc->free_entries)
> - rte_free(npc->free_entries);
> - if (npc->flow_entry_info)
> - rte_free(npc->flow_entry_info);
> - if (npc_mem)
> - rte_free(npc_mem);
> + if (npc->prio_flow_list)
> + rte_free(npc->prio_flow_list);
> return rc;
> }
>
> @@ -1134,16 +1044,11 @@ otx2_flow_fini(struct otx2_eth_dev *hw)
>
> if (npc->flow_list)
> rte_free(npc->flow_list);
> - if (npc->live_entries_rev)
> - rte_free(npc->live_entries_rev);
> - if (npc->live_entries)
> - rte_free(npc->live_entries);
> - if (npc->free_entries_rev)
> - rte_free(npc->free_entries_rev);
> - if (npc->free_entries)
> - rte_free(npc->free_entries);
> - if (npc->flow_entry_info)
> - rte_free(npc->flow_entry_info);
> +
> + if (npc->prio_flow_list) {
> + rte_free(npc->prio_flow_list);
> + npc->prio_flow_list = NULL;
> + }
>
> return 0;
> }
> diff --git a/drivers/net/octeontx2/otx2_flow.h
> b/drivers/net/octeontx2/otx2_flow.h
> index efc9bd1a56..7a62f4469f 100644
> --- a/drivers/net/octeontx2/otx2_flow.h
> +++ b/drivers/net/octeontx2/otx2_flow.h
> @@ -140,14 +140,6 @@ struct npc_get_datax_cfg {
> struct npc_xtract_info flag_xtract[NPC_MAX_LD][NPC_MAX_LT];
> };
>
> -struct otx2_mcam_ents_info {
> - /* Current max & min values of mcam index */
> - uint32_t max_id;
> - uint32_t min_id;
> - uint32_t free_ent;
> - uint32_t live_ent;
> -};
> -
> struct rte_flow {
> uint8_t nix_intf;
> uint32_t mcam_id;
> @@ -163,6 +155,13 @@ struct rte_flow {
>
> TAILQ_HEAD(otx2_flow_list, rte_flow);
>
> +struct otx2_prio_flow_entry {
> + struct rte_flow *flow;
> + TAILQ_ENTRY(otx2_prio_flow_entry) next; };
> +
> +TAILQ_HEAD(otx2_prio_flow_list_head, otx2_prio_flow_entry);
> +
> /* Accessed from ethdev private - otx2_eth_dev */ struct otx2_npc_flow_info {
> rte_atomic32_t mark_actions;
> @@ -175,22 +174,9 @@ struct otx2_npc_flow_info {
> otx2_dxcfg_t prx_dxcfg; /* intf, lid, lt, extract */
> otx2_fxcfg_t prx_fxcfg; /* Flag extract */
> otx2_ld_flags_t prx_lfcfg; /* KEX LD_Flags CFG */
> - /* mcam entry info per priority level: both free & in-use */
> - struct otx2_mcam_ents_info *flow_entry_info;
> - /* Bitmap of free preallocated entries in ascending index &
> - * descending priority
> - */
> - struct rte_bitmap **free_entries;
> - /* Bitmap of free preallocated entries in descending index &
> - * ascending priority
> - */
> - struct rte_bitmap **free_entries_rev;
> - /* Bitmap of live entries in ascending index & descending priority */
> - struct rte_bitmap **live_entries;
> - /* Bitmap of live entries in descending index & ascending priority */
> - struct rte_bitmap **live_entries_rev;
> /* Priority bucket wise tail queue of all rte_flow resources */
> struct otx2_flow_list *flow_list;
> + struct otx2_prio_flow_list_head *prio_flow_list;
> uint32_t rss_grps; /* rss groups supported */
> struct rte_bitmap *rss_grp_entries;
> uint16_t channel; /*rx channel */
> @@ -400,4 +386,7 @@ int otx2_flow_parse_actions(struct rte_eth_dev *dev,
> int otx2_flow_free_all_resources(struct otx2_eth_dev *hw);
>
> int otx2_flow_parse_mpls(struct otx2_parse_state *pst, int lid);
> +
> +void otx2_delete_prio_list_entry(struct otx2_npc_flow_info *flow_info,
> + struct rte_flow *flow);
> #endif /* __OTX2_FLOW_H__ */
> diff --git a/drivers/net/octeontx2/otx2_flow_utils.c
> b/drivers/net/octeontx2/otx2_flow_utils.c
> index 31277adcb4..4f4be7d69f 100644
> --- a/drivers/net/octeontx2/otx2_flow_utils.c
> +++ b/drivers/net/octeontx2/otx2_flow_utils.c
> @@ -451,435 +451,455 @@ otx2_flow_keyx_compress(uint64_t *data,
> uint32_t nibble_mask) }
>
> static int
> -flow_first_set_bit(uint64_t slab)
> +otx2_initialise_mcam_entry(struct otx2_mbox *mbox,
> + struct otx2_npc_flow_info *flow_info,
> + struct rte_flow *flow, int mcam_id)
> {
> - int num = 0;
> + struct npc_mcam_write_entry_req *req;
> + struct npc_mcam_write_entry_rsq *rsp;
> + int rc = 0, idx;
>
> - if ((slab & 0xffffffff) == 0) {
> - num += 32;
> - slab >>= 32;
> - }
> - if ((slab & 0xffff) == 0) {
> - num += 16;
> - slab >>= 16;
> - }
> - if ((slab & 0xff) == 0) {
> - num += 8;
> - slab >>= 8;
> - }
> - if ((slab & 0xf) == 0) {
> - num += 4;
> - slab >>= 4;
> + req = otx2_mbox_alloc_msg_npc_mcam_write_entry(mbox);
> + if (req == NULL)
> + return -ENOSPC;
> + req->set_cntr = 0;
> + req->cntr = 0;
> + req->entry = mcam_id;
> +
> + req->intf = (flow->nix_intf == NIX_INTF_RX) ? NPC_MCAM_RX :
> NPC_MCAM_TX;
> + req->enable_entry = 1;
> + req->entry_data.action = flow->npc_action;
> + req->entry_data.vtag_action = flow->vtag_action;
> +
> + for (idx = 0; idx < OTX2_MAX_MCAM_WIDTH_DWORDS; idx++) {
> + req->entry_data.kw[idx] = 0x0;
> + req->entry_data.kw_mask[idx] = 0x0;
> }
> - if ((slab & 0x3) == 0) {
> - num += 2;
> - slab >>= 2;
> +
> + if (flow->nix_intf == NIX_INTF_RX) {
> + req->entry_data.kw[0] |= (uint64_t)flow_info->channel;
> + req->entry_data.kw_mask[0] |= (BIT_ULL(12) - 1);
> + } else {
> + uint16_t pf_func = (flow->npc_action >> 4) & 0xffff;
> +
> + pf_func = rte_cpu_to_be_16(pf_func);
> + req->entry_data.kw[0] |= ((uint64_t)pf_func << 32);
> + req->entry_data.kw_mask[0] |= ((uint64_t)0xffff << 32);
> }
> - if ((slab & 0x1) == 0)
> - num += 1;
>
> - return num;
> + rc = otx2_mbox_process_msg(mbox, (void *)&rsp);
> + if (rc != 0) {
> + otx2_err("npc: mcam initialisation write failed");
> + return rc;
> + }
> + return 0;
> }
>
> static int
> -flow_shift_lv_ent(struct otx2_mbox *mbox, struct rte_flow *flow,
> - struct otx2_npc_flow_info *flow_info,
> - uint32_t old_ent, uint32_t new_ent)
> +otx2_shift_mcam_entry(struct otx2_mbox *mbox, uint16_t old_ent,
> + uint16_t new_ent)
> {
> struct npc_mcam_shift_entry_req *req;
> struct npc_mcam_shift_entry_rsp *rsp;
> - struct otx2_flow_list *list;
> - struct rte_flow *flow_iter;
> - int rc = 0;
> -
> - otx2_npc_dbg("Old ent:%u new ent:%u priority:%u", old_ent, new_ent,
> - flow->priority);
> -
> - list = &flow_info->flow_list[flow->priority];
> + int rc = -ENOSPC;
>
> /* Old entry is disabled & it's contents are moved to new_entry,
> * new entry is enabled finally.
> */
> req = otx2_mbox_alloc_msg_npc_mcam_shift_entry(mbox);
> + if (req == NULL)
> + return rc;
> req->curr_entry[0] = old_ent;
> req->new_entry[0] = new_ent;
> req->shift_count = 1;
>
> - otx2_mbox_msg_send(mbox, 0);
> - rc = otx2_mbox_get_rsp(mbox, 0, (void *)&rsp);
> + rc = otx2_mbox_process_msg(mbox, (void *)&rsp);
> if (rc)
> return rc;
>
> - /* Remove old node from list */
> - TAILQ_FOREACH(flow_iter, list, next) {
> - if (flow_iter->mcam_id == old_ent)
> - TAILQ_REMOVE(list, flow_iter, next);
> - }
> -
> - /* Insert node with new mcam id at right place */
> - TAILQ_FOREACH(flow_iter, list, next) {
> - if (flow_iter->mcam_id > new_ent)
> - TAILQ_INSERT_BEFORE(flow_iter, flow, next);
> - }
> - return rc;
> + return 0;
> }
>
> -/* Exchange all required entries with a given priority level */
> +enum SHIFT_DIR {
> + SLIDE_ENTRIES_TO_LOWER_INDEX,
> + SLIDE_ENTRIES_TO_HIGHER_INDEX,
> +};
> +
> static int
> -flow_shift_ent(struct otx2_mbox *mbox, struct rte_flow *flow,
> - struct otx2_npc_flow_info *flow_info,
> - struct npc_mcam_alloc_entry_rsp *rsp, int dir, int prio_lvl)
> +otx2_slide_mcam_entries(struct otx2_mbox *mbox,
> + struct otx2_npc_flow_info *flow_info, int prio,
> + uint16_t *free_mcam_id, int dir)
> {
> - struct rte_bitmap *fr_bmp, *fr_bmp_rev, *lv_bmp, *lv_bmp_rev, *bmp;
> - uint32_t e_fr = 0, e_lv = 0, e, e_id = 0, mcam_entries;
> - uint64_t fr_bit_pos = 0, lv_bit_pos = 0, bit_pos = 0;
> - /* Bit position within the slab */
> - uint32_t sl_fr_bit_off = 0, sl_lv_bit_off = 0;
> - /* Overall bit position of the start of slab */
> - /* free & live entry index */
> - int rc_fr = 0, rc_lv = 0, rc = 0, idx = 0;
> - struct otx2_mcam_ents_info *ent_info;
> - /* free & live bitmap slab */
> - uint64_t sl_fr = 0, sl_lv = 0, *sl;
> -
> - fr_bmp = flow_info->free_entries[prio_lvl];
> - fr_bmp_rev = flow_info->free_entries_rev[prio_lvl];
> - lv_bmp = flow_info->live_entries[prio_lvl];
> - lv_bmp_rev = flow_info->live_entries_rev[prio_lvl];
> - ent_info = &flow_info->flow_entry_info[prio_lvl];
> - mcam_entries = flow_info->mcam_entries;
> -
> -
> - /* New entries allocated are always contiguous, but older entries
> - * already in free/live bitmap can be non-contiguous: so return
> - * shifted entries should be in non-contiguous format.
> - */
> - while (idx <= rsp->count) {
> - if (!sl_fr && !sl_lv) {
> - /* Lower index elements to be exchanged */
> - if (dir < 0) {
> - rc_fr = rte_bitmap_scan(fr_bmp, &e_fr, &sl_fr);
> - rc_lv = rte_bitmap_scan(lv_bmp, &e_lv, &sl_lv);
> - otx2_npc_dbg("Fwd slab rc fr %u rc lv %u "
> - "e_fr %u e_lv %u", rc_fr, rc_lv,
> - e_fr, e_lv);
> - } else {
> - rc_fr = rte_bitmap_scan(fr_bmp_rev,
> - &sl_fr_bit_off,
> - &sl_fr);
> - rc_lv = rte_bitmap_scan(lv_bmp_rev,
> - &sl_lv_bit_off,
> - &sl_lv);
> -
> - otx2_npc_dbg("Rev slab rc fr %u rc lv %u "
> - "e_fr %u e_lv %u", rc_fr, rc_lv,
> - e_fr, e_lv);
> - }
> - }
> -
> - if (rc_fr) {
> - fr_bit_pos = flow_first_set_bit(sl_fr);
> - e_fr = sl_fr_bit_off + fr_bit_pos;
> - otx2_npc_dbg("Fr_bit_pos 0x%" PRIx64, fr_bit_pos);
> - } else {
> - e_fr = ~(0);
> - }
> -
> - if (rc_lv) {
> - lv_bit_pos = flow_first_set_bit(sl_lv);
> - e_lv = sl_lv_bit_off + lv_bit_pos;
> - otx2_npc_dbg("Lv_bit_pos 0x%" PRIx64, lv_bit_pos);
> - } else {
> - e_lv = ~(0);
> - }
> + uint16_t to_mcam_id = 0, from_mcam_id = 0;
> + struct otx2_prio_flow_list_head *list;
> + struct otx2_prio_flow_entry *curr = 0;
> + int rc = 0;
>
> - /* First entry is from free_bmap */
> - if (e_fr < e_lv) {
> - bmp = fr_bmp;
> - e = e_fr;
> - sl = &sl_fr;
> - bit_pos = fr_bit_pos;
> - if (dir > 0)
> - e_id = mcam_entries - e - 1;
> - else
> - e_id = e;
> - otx2_npc_dbg("Fr e %u e_id %u", e, e_id);
> - } else {
> - bmp = lv_bmp;
> - e = e_lv;
> - sl = &sl_lv;
> - bit_pos = lv_bit_pos;
> - if (dir > 0)
> - e_id = mcam_entries - e - 1;
> - else
> - e_id = e;
> -
> - otx2_npc_dbg("Lv e %u e_id %u", e, e_id);
> - if (idx < rsp->count)
> - rc =
> - flow_shift_lv_ent(mbox, flow,
> - flow_info, e_id,
> - rsp->entry + idx);
> + list = &flow_info->prio_flow_list[prio];
> +
> + to_mcam_id = *free_mcam_id;
> + if (dir == SLIDE_ENTRIES_TO_HIGHER_INDEX)
> + curr = TAILQ_LAST(list, otx2_prio_flow_list_head);
> + else if (dir == SLIDE_ENTRIES_TO_LOWER_INDEX)
> + curr = TAILQ_FIRST(list);
> +
> + while (curr) {
> + from_mcam_id = curr->flow->mcam_id;
> + if ((dir == SLIDE_ENTRIES_TO_HIGHER_INDEX &&
> + from_mcam_id < to_mcam_id) ||
> + (dir == SLIDE_ENTRIES_TO_LOWER_INDEX &&
> + from_mcam_id > to_mcam_id)) {
> + /* Newly allocated entry and the source entry given to
> + * npc_mcam_shift_entry_req will be in disabled state.
> + * Initialise and enable before moving an entry into
> + * this mcam.
> + */
> + rc = otx2_initialise_mcam_entry(mbox, flow_info,
> + curr->flow,
> to_mcam_id);
> + if (rc)
> + return rc;
> + rc = otx2_shift_mcam_entry(mbox, from_mcam_id,
> + to_mcam_id);
> + if (rc)
> + return rc;
> +
> + curr->flow->mcam_id = to_mcam_id;
> + to_mcam_id = from_mcam_id;
> }
>
> - rte_bitmap_clear(bmp, e);
> - rte_bitmap_set(bmp, rsp->entry + idx);
> - /* Update entry list, use non-contiguous
> - * list now.
> - */
> - rsp->entry_list[idx] = e_id;
> - *sl &= ~(1 << bit_pos);
> + if (dir == SLIDE_ENTRIES_TO_HIGHER_INDEX)
> + curr = TAILQ_PREV(curr, otx2_prio_flow_list_head,
> next);
> + else if (dir == SLIDE_ENTRIES_TO_LOWER_INDEX)
> + curr = TAILQ_NEXT(curr, next);
> + }
>
> - /* Update min & max entry identifiers in current
> - * priority level.
> - */
> - if (dir < 0) {
> - ent_info->max_id = rsp->entry + idx;
> - ent_info->min_id = e_id;
> - } else {
> - ent_info->max_id = e_id;
> - ent_info->min_id = rsp->entry;
> - }
> + *free_mcam_id = from_mcam_id;
>
> - idx++;
> - }
> - return rc;
> + return 0;
> }
>
> -/* Validate if newly allocated entries lie in the correct priority zone
> - * since NPC_MCAM_LOWER_PRIO & NPC_MCAM_HIGHER_PRIO don't ensure
> zone accuracy.
> - * If not properly aligned, shift entries to do so
> +/*
> + * The mcam_alloc request is first made with NPC_MCAM_LOWER_PRIO with
> +the last
> + * entry in the requested priority level as the reference entry. If it
> +fails,
> + * the alloc request is retried with NPC_MCAM_HIGHER_PRIO with the
> +first entry
> + * in the next lower priority level as the reference entry. After
> +obtaining
> + * the free MCAM from kernel, we check if it is at the right user
> +requested
> + * priority level. If not, the flow rules are moved across MCAM entries
> +till
> + * the user requested priority levels are met.
> + * The MCAM sorting algorithm works as below.
> + * For any given free MCAM obtained from the kernel, there are 3 possibilities.
> + * Case 1:
> + * There are entries belonging to higher user priority
> +level(numerically
> + * lesser) in higher mcam indices. In this case, the entries with
> +higher user
> + * priority are slided towards lower indices and a free entry is
> +created in the
> + * higher indices.
> + * Example:
> + * Assume free entry = 1610, user requested priority = 2 and
> + * max user priority levels = 5 with below entries in respective
> +priority
> + * levels.
> + * 0: 1630, 1635, 1641
> + * 1: 1646, 1650, 1651
> + * 2: 1652, 1655, 1660
> + * 3: 1661, 1662, 1663, 1664
> + * 4: 1665, 1667, 1670
> + *
> + * Entries (1630, 1635, 1641, 1646, 1650, 1651) have to be slided down
> +towards
> + * lower indices.
> + * Shifting sequence will be as below:
> + * 1610 <- 1630 <- 1635 <- 1641 <- 1646 <- 1650 <- 1651
> + * Entry 1651 will be free-ed for writing the new flow. This entry will
> +now
> + * become the head of priority level 2.
> + *
> + * Case 2:
> + * There are entries belonging to lower user priority level
> +(numerically
> + * bigger) in lower mcam indices. In this case, the entries with lower
> +user
> + * priority are slided towards higher indices and a free entry is
> +created in the
> + * lower indices.
> + *
> + * Example:
> + * free entry = 1653, user requested priority = 0
> + * 0: 1630, 1635, 1641
> + * 1: 1646, 1650, 1651
> + * 2: 1652, 1655, 1660
> + * 3: 1661, 1662, 1663, 1664
> + * 4: 1665, 1667, 1670
> + *
> + * Entries (1646, 1650, 1651, 1652) have to be slided up towards higher
> + * indices.
> + * Shifting sequence will be as below:
> + * 1646 -> 1650 -> 1651 -> 1652 -> 1653
> + * Entry 1646 will be free-ed for writing the new flow. This entry will
> +now
> + * become the last element in priority level 0.
> + *
> + * Case 3:
> + * Free mcam is at the right place, ie, all higher user priority level
> + * mcams lie in lower indices and all lower user priority level mcams
> +lie in
> + * higher mcam indices.
> + *
> + * The priority level lists are scanned first for case (1) and if the
> + * condition is found true, case(2) is skipped because they are
> +mutually
> + * exclusive. For example, consider below state.
> + * 0: 1630, 1635, 1641
> + * 1: 1646, 1650, 1651
> + * 2: 1652, 1655, 1660
> + * 3: 1661, 1662, 1663, 1664
> + * 4: 1665, 1667, 1670
> + * free entry = 1610, user requested priority = 2
> + *
> + * Case 1: Here the condition is;
> + * "if (requested_prio > prio_idx && free_mcam < tail->flow->mcam_id ){}"
> + * If this condition is true, it means at some higher priority level
> +than
> + * requested priority level, there are entries at lower indices than
> +the given
> + * free mcam. That is, we have found in levels 0,1 there is an mcam X
> +which is
> + * greater than 1610.
> + * If, for any free entry and user req prio, the above condition is
> +true, then
> + * the below case(2) condition will always be false since the lists are
> +kept
> + * sorted. The case(2) condition is;
> + * "if (requested_prio < prio_idx && free_mcam > head->flow->mcam_id){}"
> + * There can't be entries at lower indices at priority level higher
> + * than the requested priority level. That is, here, at levels 3 & 4
> +there
> + * cannot be any entry greater than 1610. Because all entries in 3 & 4
> +must be
> + * greater than X which was found to be greater than 1610 earlier.
> */
> +
> static int
> -flow_validate_and_shift_prio_ent(struct otx2_mbox *mbox, struct rte_flow
> *flow,
> - struct otx2_npc_flow_info *flow_info,
> - struct npc_mcam_alloc_entry_rsp *rsp,
> - int req_prio)
> +otx2_sort_mcams_by_user_prio_level(struct otx2_mbox *mbox,
> + struct otx2_prio_flow_entry *flow_list_entry,
> + struct otx2_npc_flow_info *flow_info,
> + struct npc_mcam_alloc_entry_rsp *rsp)
> {
> - int prio_idx = 0, rc = 0, needs_shift = 0, idx, prio = flow->priority;
> - struct otx2_mcam_ents_info *info = flow_info->flow_entry_info;
> - int dir = (req_prio == NPC_MCAM_HIGHER_PRIO) ? 1 : -1;
> - uint32_t tot_ent = 0;
> -
> - otx2_npc_dbg("Dir %d, priority = %d", dir, prio);
> -
> - if (dir < 0)
> - prio_idx = flow_info->flow_max_priority - 1;
> -
> - /* Only live entries needs to be shifted, free entries can just be
> - * moved by bits manipulation.
> - */
> -
> - /* For dir = -1(NPC_MCAM_LOWER_PRIO), when shifting,
> - * NPC_MAX_PREALLOC_ENT are exchanged with adjoining higher
> priority
> - * level entries(lower indexes).
> - *
> - * For dir = +1(NPC_MCAM_HIGHER_PRIO), during shift,
> - * NPC_MAX_PREALLOC_ENT are exchanged with adjoining lower
> priority
> - * level entries(higher indexes) with highest indexes.
> - */
> - do {
> - tot_ent = info[prio_idx].free_ent + info[prio_idx].live_ent;
> -
> - if (dir < 0 && prio_idx != prio &&
> - rsp->entry > info[prio_idx].max_id && tot_ent) {
> - otx2_npc_dbg("Rsp entry %u prio idx %u "
> - "max id %u", rsp->entry, prio_idx,
> - info[prio_idx].max_id);
> -
> - needs_shift = 1;
> - } else if ((dir > 0) && (prio_idx != prio) &&
> - (rsp->entry < info[prio_idx].min_id) && tot_ent) {
> - otx2_npc_dbg("Rsp entry %u prio idx %u "
> - "min id %u", rsp->entry, prio_idx,
> - info[prio_idx].min_id);
> - needs_shift = 1;
> + int requested_prio = flow_list_entry->flow->priority;
> + struct otx2_prio_flow_entry *head, *tail;
> + struct otx2_prio_flow_list_head *list;
> + uint16_t free_mcam = rsp->entry;
> + bool do_reverse_scan = true;
> + int prio_idx = 0, rc = 0;
> +
> + while (prio_idx <= flow_info->flow_max_priority - 1) {
> + list = &flow_info->prio_flow_list[prio_idx];
> + tail = TAILQ_LAST(list, otx2_prio_flow_list_head);
> +
> + /* requested priority is lower than current level
> + * ie, numerically req prio is higher
> + */
> + if (requested_prio > prio_idx && tail) {
> + /* but there are some mcams in current level
> + * at higher indices, ie, at priority lower
> + * than free_mcam.
> + */
> + if (free_mcam < tail->flow->mcam_id) {
> + rc = otx2_slide_mcam_entries(mbox,
> flow_info,
> + prio_idx, &free_mcam,
> +
> SLIDE_ENTRIES_TO_LOWER_INDEX);
> + if (rc)
> + return rc;
> + do_reverse_scan = false;
> + }
> }
> + prio_idx++;
> + }
>
> - otx2_npc_dbg("Needs_shift = %d", needs_shift);
> - if (needs_shift) {
> - needs_shift = 0;
> - rc = flow_shift_ent(mbox, flow, flow_info, rsp, dir,
> - prio_idx);
> - } else {
> - for (idx = 0; idx < rsp->count; idx++)
> - rsp->entry_list[idx] = rsp->entry + idx;
> - }
> - } while ((prio_idx != prio) && (prio_idx += dir));
> + prio_idx = flow_info->flow_max_priority - 1;
> + while (prio_idx && do_reverse_scan) {
> + list = &flow_info->prio_flow_list[prio_idx];
> + head = TAILQ_FIRST(list);
>
> + /* requested priority is higher than current level
> + * ie, numerically req prio is lower
> + */
> + if (requested_prio < prio_idx && head) {
> + /* but free mcam is higher than lowest priority
> + * mcam in current level
> + */
> + if (free_mcam > head->flow->mcam_id) {
> + rc = otx2_slide_mcam_entries(mbox,
> flow_info,
> + prio_idx, &free_mcam,
> +
> SLIDE_ENTRIES_TO_HIGHER_INDEX);
> + if (rc)
> + return rc;
> + }
> + }
> + prio_idx--;
> + }
> + rsp->entry = free_mcam;
> return rc;
> }
>
> -static int
> -flow_find_ref_entry(struct otx2_npc_flow_info *flow_info, int *prio,
> - int prio_lvl)
> +static void
> +otx2_insert_into_flow_list(struct otx2_npc_flow_info *flow_info,
> + struct otx2_prio_flow_entry *entry)
> {
> - struct otx2_mcam_ents_info *info = flow_info->flow_entry_info;
> - int step = 1;
> -
> - while (step < flow_info->flow_max_priority) {
> - if (((prio_lvl + step) < flow_info->flow_max_priority) &&
> - info[prio_lvl + step].live_ent) {
> - *prio = NPC_MCAM_HIGHER_PRIO;
> - return info[prio_lvl + step].min_id;
> - }
> + struct otx2_prio_flow_list_head *list;
> + struct otx2_prio_flow_entry *curr;
> +
> + list = &flow_info->prio_flow_list[entry->flow->priority];
> + curr = TAILQ_FIRST(list);
>
> - if (((prio_lvl - step) >= 0) &&
> - info[prio_lvl - step].live_ent) {
> - otx2_npc_dbg("Prio_lvl %u live %u", prio_lvl - step,
> - info[prio_lvl - step].live_ent);
> - *prio = NPC_MCAM_LOWER_PRIO;
> - return info[prio_lvl - step].max_id;
> + if (curr) {
> + while (curr) {
> + if (entry->flow->mcam_id > curr->flow->mcam_id)
> + curr = TAILQ_NEXT(curr, next);
> + else
> + break;
> }
> - step++;
> + if (curr)
> + TAILQ_INSERT_BEFORE(curr, entry, next);
> + else
> + TAILQ_INSERT_TAIL(list, entry, next);
> + } else {
> + TAILQ_INSERT_HEAD(list, entry, next);
> }
> - *prio = NPC_MCAM_ANY_PRIO;
> - return 0;
> }
>
> static int
> -flow_fill_entry_cache(struct otx2_mbox *mbox, struct rte_flow *flow,
> - struct otx2_npc_flow_info *flow_info, uint32_t *free_ent)
> +otx2_allocate_mcam_entry(struct otx2_mbox *mbox, int prio,
> + struct npc_mcam_alloc_entry_rsp *rsp_local,
> + int ref_entry)
> {
> - struct rte_bitmap *free_bmp, *free_bmp_rev, *live_bmp,
> *live_bmp_rev;
> - struct npc_mcam_alloc_entry_rsp rsp_local;
> struct npc_mcam_alloc_entry_rsp *rsp_cmd;
> struct npc_mcam_alloc_entry_req *req;
> struct npc_mcam_alloc_entry_rsp *rsp;
> - struct otx2_mcam_ents_info *info;
> - uint16_t ref_ent, idx;
> - int rc, prio;
> -
> - info = &flow_info->flow_entry_info[flow->priority];
> - free_bmp = flow_info->free_entries[flow->priority];
> - free_bmp_rev = flow_info->free_entries_rev[flow->priority];
> - live_bmp = flow_info->live_entries[flow->priority];
> - live_bmp_rev = flow_info->live_entries_rev[flow->priority];
> -
> - ref_ent = flow_find_ref_entry(flow_info, &prio, flow->priority);
> + int rc = -ENOSPC;
>
> req = otx2_mbox_alloc_msg_npc_mcam_alloc_entry(mbox);
> + if (req == NULL)
> + return rc;
> req->contig = 1;
> - req->count = flow_info->flow_prealloc_size;
> + req->count = 1;
> req->priority = prio;
> - req->ref_entry = ref_ent;
> + req->ref_entry = ref_entry;
>
> - otx2_npc_dbg("Fill cache ref entry %u prio %u", ref_ent, prio);
> -
> - otx2_mbox_msg_send(mbox, 0);
> - rc = otx2_mbox_get_rsp(mbox, 0, (void *)&rsp_cmd);
> + rc = otx2_mbox_process_msg(mbox, (void *)&rsp_cmd);
> if (rc)
> return rc;
>
> - rsp = &rsp_local;
> - memcpy(rsp, rsp_cmd, sizeof(*rsp));
> + if (!rsp_cmd->count)
> + return -ENOSPC;
>
> - otx2_npc_dbg("Alloc entry %u count %u , prio = %d", rsp->entry,
> - rsp->count, prio);
> + memcpy(rsp_local, rsp_cmd, sizeof(*rsp));
>
> - /* Non-first ent cache fill */
> - if (prio != NPC_MCAM_ANY_PRIO) {
> - flow_validate_and_shift_prio_ent(mbox, flow, flow_info, rsp,
> - prio);
> - } else {
> - /* Copy into response entry list */
> - for (idx = 0; idx < rsp->count; idx++)
> - rsp->entry_list[idx] = rsp->entry + idx;
> - }
> -
> - otx2_npc_dbg("Fill entry cache rsp count %u", rsp->count);
> - /* Update free entries, reverse free entries list,
> - * min & max entry ids.
> - */
> - for (idx = 0; idx < rsp->count; idx++) {
> - if (unlikely(rsp->entry_list[idx] < info->min_id))
> - info->min_id = rsp->entry_list[idx];
> -
> - if (unlikely(rsp->entry_list[idx] > info->max_id))
> - info->max_id = rsp->entry_list[idx];
> + return 0;
> +}
>
> - /* Skip entry to be returned, not to be part of free
> - * list.
> - */
> - if (prio == NPC_MCAM_HIGHER_PRIO) {
> - if (unlikely(idx == (rsp->count - 1))) {
> - *free_ent = rsp->entry_list[idx];
> - continue;
> +static void
> +otx2_find_mcam_ref_entry(struct rte_flow *flow,
> + struct otx2_npc_flow_info *flow_info, int *prio,
> + int *ref_entry, int dir)
> +{
> + struct otx2_prio_flow_entry *head, *tail;
> + struct otx2_prio_flow_list_head *list;
> + int prio_idx = flow->priority;
> +
> + if (dir == NPC_MCAM_LOWER_PRIO) {
> + while (prio_idx >= 0) {
> + list = &flow_info->prio_flow_list[prio_idx];
> + head = TAILQ_FIRST(list);
> + if (head) {
> + *prio = NPC_MCAM_LOWER_PRIO;
> + *ref_entry = head->flow->mcam_id;
> + return;
> }
> - } else {
> - if (unlikely(!idx)) {
> - *free_ent = rsp->entry_list[idx];
> - continue;
> + prio_idx--;
> + }
> + } else if (dir == NPC_MCAM_HIGHER_PRIO) {
> + prio_idx = flow->priority;
> + while (prio_idx <= flow_info->flow_max_priority - 1) {
> + list = &flow_info->prio_flow_list[prio_idx];
> + tail = TAILQ_LAST(list, otx2_prio_flow_list_head);
> + if (tail) {
> + *prio = NPC_MCAM_HIGHER_PRIO;
> + *ref_entry = tail->flow->mcam_id;
> + return;
> }
> + prio_idx++;
> }
> - info->free_ent++;
> - rte_bitmap_set(free_bmp, rsp->entry_list[idx]);
> - rte_bitmap_set(free_bmp_rev, flow_info->mcam_entries -
> - rsp->entry_list[idx] - 1);
> -
> - otx2_npc_dbg("Final rsp entry %u rsp entry rev %u",
> - rsp->entry_list[idx],
> - flow_info->mcam_entries - rsp->entry_list[idx] - 1);
> }
> + *prio = NPC_MCAM_ANY_PRIO;
> + *ref_entry = 0;
> +}
>
> - otx2_npc_dbg("Cache free entry %u, rev = %u", *free_ent,
> - flow_info->mcam_entries - *free_ent - 1);
> - info->live_ent++;
> - rte_bitmap_set(live_bmp, *free_ent);
> - rte_bitmap_set(live_bmp_rev, flow_info->mcam_entries - *free_ent -
> 1);
> +static int
> +otx2_alloc_mcam_by_ref_entry(struct otx2_mbox *mbox, struct rte_flow
> *flow,
> + struct otx2_npc_flow_info *flow_info,
> + struct npc_mcam_alloc_entry_rsp *rsp_local) {
> + int prio, ref_entry = 0, rc = 0, dir = NPC_MCAM_LOWER_PRIO;
> + bool retry_done = false;
> +
> +retry:
> + otx2_find_mcam_ref_entry(flow, flow_info, &prio, &ref_entry, dir);
> + rc = otx2_allocate_mcam_entry(mbox, prio, rsp_local, ref_entry);
> + if (rc && !retry_done) {
> + otx2_info("npc: Lower priority entry not available. "
> + "Retrying for higher priority");
> +
> + dir = NPC_MCAM_HIGHER_PRIO;
> + retry_done = true;
> + goto retry;
> + } else if (rc && retry_done) {
> + return rc;
> + }
>
> return 0;
> }
>
> static int
> -flow_check_preallocated_entry_cache(struct otx2_mbox *mbox,
> - struct rte_flow *flow,
> - struct otx2_npc_flow_info *flow_info)
> +otx2_get_free_mcam_entry(struct otx2_mbox *mbox, struct rte_flow *flow,
> + struct otx2_npc_flow_info *flow_info)
> {
> - struct rte_bitmap *free, *free_rev, *live, *live_rev;
> - uint32_t pos = 0, free_ent = 0, mcam_entries;
> - struct otx2_mcam_ents_info *info;
> - uint64_t slab = 0;
> - int rc;
> + struct npc_mcam_alloc_entry_rsp rsp_local;
> + struct otx2_prio_flow_entry *new_entry;
> + int rc = 0;
>
> - otx2_npc_dbg("Flow priority %u", flow->priority);
> + rc = otx2_alloc_mcam_by_ref_entry(mbox, flow, flow_info,
> &rsp_local);
>
> - info = &flow_info->flow_entry_info[flow->priority];
> + if (rc)
> + return rc;
>
> - free_rev = flow_info->free_entries_rev[flow->priority];
> - free = flow_info->free_entries[flow->priority];
> - live_rev = flow_info->live_entries_rev[flow->priority];
> - live = flow_info->live_entries[flow->priority];
> - mcam_entries = flow_info->mcam_entries;
> + new_entry = rte_zmalloc("otx2_rte_flow", sizeof(*new_entry), 0);
> + if (!new_entry)
> + return -ENOSPC;
>
> - if (info->free_ent) {
> - rc = rte_bitmap_scan(free, &pos, &slab);
> - if (rc) {
> - /* Get free_ent from free entry bitmap */
> - free_ent = pos + __builtin_ctzll(slab);
> - otx2_npc_dbg("Allocated from cache entry %u",
> free_ent);
> - /* Remove from free bitmaps and add to live ones */
> - rte_bitmap_clear(free, free_ent);
> - rte_bitmap_set(live, free_ent);
> - rte_bitmap_clear(free_rev,
> - mcam_entries - free_ent - 1);
> - rte_bitmap_set(live_rev,
> - mcam_entries - free_ent - 1);
> -
> - info->free_ent--;
> - info->live_ent++;
> - return free_ent;
> - }
> + new_entry->flow = flow;
>
> - otx2_npc_dbg("No free entry:its a mess");
> - return -1;
> - }
> + otx2_npc_dbg("kernel allocated MCAM entry %d", rsp_local.entry);
>
> - rc = flow_fill_entry_cache(mbox, flow, flow_info, &free_ent);
> + rc = otx2_sort_mcams_by_user_prio_level(mbox, new_entry, flow_info,
> + &rsp_local);
> if (rc)
> - return rc;
> + goto err;
> +
> + otx2_npc_dbg("allocated MCAM entry after sorting %d",
> rsp_local.entry);
> + flow->mcam_id = rsp_local.entry;
> + otx2_insert_into_flow_list(flow_info, new_entry);
> +
> + return rsp_local.entry;
> +err:
> + rte_free(new_entry);
> + return rc;
> +}
> +
> +void
> +otx2_delete_prio_list_entry(struct otx2_npc_flow_info *flow_info,
> + struct rte_flow *flow)
> +{
> + struct otx2_prio_flow_list_head *list;
> + struct otx2_prio_flow_entry *curr;
>
> - return free_ent;
> + list = &flow_info->prio_flow_list[flow->priority];
> + curr = TAILQ_FIRST(list);
> +
> + if (!curr)
> + return;
> +
> + while (curr) {
> + if (flow->mcam_id == curr->flow->mcam_id) {
> + TAILQ_REMOVE(list, curr, next);
> + rte_free(curr);
> + break;
> + }
> + curr = TAILQ_NEXT(curr, next);
> + }
> }
>
> int
> @@ -902,10 +922,11 @@ otx2_flow_mcam_alloc_and_write(struct rte_flow
> *flow, struct otx2_mbox *mbox,
> return rc;
> }
>
> - entry = flow_check_preallocated_entry_cache(mbox, flow, flow_info);
> + entry = otx2_get_free_mcam_entry(mbox, flow, flow_info);
> if (entry < 0) {
> - otx2_err("Prealloc failed");
> - otx2_flow_mcam_free_counter(mbox, ctr);
> + otx2_err("MCAM allocation failed");
> + if (use_ctr)
> + otx2_flow_mcam_free_counter(mbox, ctr);
> return NPC_MCAM_ALLOC_FAILED;
> }
>
> --
> 2.25.4
next prev parent reply other threads:[~2022-03-15 15:47 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-15 4:16 psatheesh
2022-03-15 11:44 ` Luca Boccassi
2022-03-15 12:46 ` [EXT] " Satheesh Paul
2022-03-15 13:23 ` Luca Boccassi
2022-03-15 15:47 ` Kiran Kumar Kokkilagadda [this message]
2022-03-16 13:31 ` Luca Boccassi
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=BYAPR18MB29657862C63E1309391E325AAC109@BYAPR18MB2965.namprd18.prod.outlook.com \
--to=kirankumark@marvell.com \
--cc=jerinj@marvell.com \
--cc=ndabilpuram@marvell.com \
--cc=psatheesh@marvell.com \
--cc=stable@dpdk.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).