All of lore.kernel.org
 help / color / mirror / Atom feed
From: Simon Horman <horms@kernel.org>
To: Ahmed Zaki <ahmed.zaki@intel.com>
Cc: Wojciech Drewek <wojciech.drewek@intel.com>,
	Junfeng Guo <junfeng.guo@intel.com>,
	netdev@vger.kernel.org,
	Aleksandr Loktionov <aleksandr.loktionov@intel.com>,
	Marcin Szycik <marcin.szycik@linux.intel.com>,
	anthony.l.nguyen@intel.com, intel-wired-lan@lists.osuosl.org
Subject: Re: [Intel-wired-lan] [PATCH iwl-next v3 04/13] ice: add parser internal helper functions
Date: Mon, 22 Jul 2024 16:06:21 +0100	[thread overview]
Message-ID: <20240722150621.GN715661@kernel.org> (raw)
In-Reply-To: <20240710204015.124233-5-ahmed.zaki@intel.com>

On Wed, Jul 10, 2024 at 02:40:06PM -0600, Ahmed Zaki wrote:
> From: Junfeng Guo <junfeng.guo@intel.com>
> 
> Add the following internal helper functions:
> 
> - ice_bst_tcam_match():
>   to perform ternary match on boost TCAM.
> 
> - ice_pg_cam_match():
>   to perform parse graph key match in cam table.
> 
> - ice_pg_nm_cam_match():
>   to perform parse graph key no match in cam table.
> 
> - ice_ptype_mk_tcam_match():
>   to perform ptype markers match in tcam table.
> 
> - ice_flg_redirect():
>   to redirect parser flags to packet flags.
> 
> - ice_xlt_kb_flag_get():
>   to aggregate 64 bit packet flag into 16 bit key builder flags.
> 
> Reviewed-by: Aleksandr Loktionov <aleksandr.loktionov@intel.com>
> Reviewed-by: Wojciech Drewek <wojciech.drewek@intel.com>
> Reviewed-by: Marcin Szycik <marcin.szycik@linux.intel.com>
> Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
> Signed-off-by: Junfeng Guo <junfeng.guo@intel.com>
> Signed-off-by: Ahmed Zaki <ahmed.zaki@intel.com>

Reviewed-by: Simon Horman <horms@kernel.org>


WARNING: multiple messages have this Message-ID (diff)
From: Simon Horman <horms@kernel.org>
To: Ahmed Zaki <ahmed.zaki@intel.com>
Cc: intel-wired-lan@lists.osuosl.org, netdev@vger.kernel.org,
	anthony.l.nguyen@intel.com, Junfeng Guo <junfeng.guo@intel.com>,
	Aleksandr Loktionov <aleksandr.loktionov@intel.com>,
	Wojciech Drewek <wojciech.drewek@intel.com>,
	Marcin Szycik <marcin.szycik@linux.intel.com>
Subject: Re: [PATCH iwl-next v3 04/13] ice: add parser internal helper functions
Date: Mon, 22 Jul 2024 16:06:21 +0100	[thread overview]
Message-ID: <20240722150621.GN715661@kernel.org> (raw)
In-Reply-To: <20240710204015.124233-5-ahmed.zaki@intel.com>

On Wed, Jul 10, 2024 at 02:40:06PM -0600, Ahmed Zaki wrote:
> From: Junfeng Guo <junfeng.guo@intel.com>
> 
> Add the following internal helper functions:
> 
> - ice_bst_tcam_match():
>   to perform ternary match on boost TCAM.
> 
> - ice_pg_cam_match():
>   to perform parse graph key match in cam table.
> 
> - ice_pg_nm_cam_match():
>   to perform parse graph key no match in cam table.
> 
> - ice_ptype_mk_tcam_match():
>   to perform ptype markers match in tcam table.
> 
> - ice_flg_redirect():
>   to redirect parser flags to packet flags.
> 
> - ice_xlt_kb_flag_get():
>   to aggregate 64 bit packet flag into 16 bit key builder flags.
> 
> Reviewed-by: Aleksandr Loktionov <aleksandr.loktionov@intel.com>
> Reviewed-by: Wojciech Drewek <wojciech.drewek@intel.com>
> Reviewed-by: Marcin Szycik <marcin.szycik@linux.intel.com>
> Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
> Signed-off-by: Junfeng Guo <junfeng.guo@intel.com>
> Signed-off-by: Ahmed Zaki <ahmed.zaki@intel.com>

Reviewed-by: Simon Horman <horms@kernel.org>


  reply	other threads:[~2024-07-22 15:06 UTC|newest]

Thread overview: 76+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-07-10 20:40 [Intel-wired-lan] [PATCH iwl-next v3 00/13] ice: iavf: add support for TC U32 filters on VFs Ahmed Zaki
2024-07-10 20:40 ` Ahmed Zaki
2024-07-10 20:40 ` [Intel-wired-lan] [PATCH iwl-next v3 01/13] ice: add parser create and destroy skeleton Ahmed Zaki
2024-07-10 20:40   ` Ahmed Zaki
2024-07-22 15:05   ` [Intel-wired-lan] " Simon Horman
2024-07-22 15:05     ` Simon Horman
2024-07-10 20:40 ` [Intel-wired-lan] [PATCH iwl-next v3 02/13] ice: parse and init various DDP parser sections Ahmed Zaki
2024-07-10 20:40   ` Ahmed Zaki
2024-07-11  5:28   ` [Intel-wired-lan] " Paul Menzel
2024-07-11  5:28     ` Paul Menzel
2024-07-15 14:16     ` Ahmed Zaki
2024-07-15 14:16       ` Ahmed Zaki
2024-07-22 14:52   ` Simon Horman
2024-07-22 14:52     ` Simon Horman
2024-07-10 20:40 ` [Intel-wired-lan] [PATCH iwl-next v3 03/13] ice: add debugging functions for the " Ahmed Zaki
2024-07-10 20:40   ` Ahmed Zaki
2024-07-22 14:53   ` [Intel-wired-lan] " Simon Horman
2024-07-22 14:53     ` Simon Horman
2024-07-24 16:19     ` [Intel-wired-lan] " Ahmed Zaki
2024-07-24 16:19       ` Ahmed Zaki
2024-07-10 20:40 ` [Intel-wired-lan] [PATCH iwl-next v3 04/13] ice: add parser internal helper functions Ahmed Zaki
2024-07-10 20:40   ` Ahmed Zaki
2024-07-22 15:06   ` Simon Horman [this message]
2024-07-22 15:06     ` Simon Horman
2024-07-10 20:40 ` [Intel-wired-lan] [PATCH iwl-next v3 05/13] ice: add parser execution main loop Ahmed Zaki
2024-07-10 20:40   ` Ahmed Zaki
2024-07-22 15:01   ` [Intel-wired-lan] " Simon Horman
2024-07-22 15:01     ` Simon Horman
2024-07-10 20:40 ` [Intel-wired-lan] [PATCH iwl-next v3 06/13] ice: support turning on/off the parser's double vlan mode Ahmed Zaki
2024-07-10 20:40   ` Ahmed Zaki
2024-07-22 15:02   ` [Intel-wired-lan] " Simon Horman
2024-07-22 15:02     ` Simon Horman
2024-07-10 20:40 ` [Intel-wired-lan] [PATCH iwl-next v3 07/13] ice: add UDP tunnels support to the parser Ahmed Zaki
2024-07-10 20:40   ` Ahmed Zaki
2024-07-22 15:06   ` [Intel-wired-lan] " Simon Horman
2024-07-22 15:06     ` Simon Horman
2024-07-22 15:10   ` [Intel-wired-lan] " Simon Horman
2024-07-22 15:10     ` Simon Horman
2024-07-10 20:40 ` [Intel-wired-lan] [PATCH iwl-next v3 08/13] ice: add API for parser profile initialization Ahmed Zaki
2024-07-10 20:40   ` Ahmed Zaki
2024-07-10 20:40 ` [Intel-wired-lan] [PATCH iwl-next v3 09/13] virtchnl: support raw packet in protocol header Ahmed Zaki
2024-07-10 20:40   ` Ahmed Zaki
2024-07-22 15:10   ` [Intel-wired-lan] " Simon Horman
2024-07-22 15:10     ` Simon Horman
2024-07-10 20:40 ` [Intel-wired-lan] [PATCH iwl-next v3 10/13] ice: add method to disable FDIR SWAP option Ahmed Zaki
2024-07-10 20:40   ` Ahmed Zaki
2024-07-11  4:59   ` [Intel-wired-lan] " Paul Menzel
2024-07-11  4:59     ` Paul Menzel
2024-07-15 14:23     ` Ahmed Zaki
2024-07-15 14:23       ` Ahmed Zaki
2024-07-17  9:55       ` Paul Menzel
2024-07-17  9:55         ` Paul Menzel
2024-07-18 16:54         ` Ahmed Zaki
2024-07-18 16:54           ` Ahmed Zaki
2024-07-10 20:40 ` [Intel-wired-lan] [PATCH iwl-next v3 11/13] ice: enable FDIR filters from raw binary patterns for VFs Ahmed Zaki
2024-07-10 20:40   ` Ahmed Zaki
2024-07-11  5:42   ` [Intel-wired-lan] " Paul Menzel
2024-07-11  5:42     ` Paul Menzel
2024-07-15 14:33     ` Ahmed Zaki
2024-07-15 14:33       ` Ahmed Zaki
2024-07-22 15:03   ` Simon Horman
2024-07-22 15:03     ` Simon Horman
2024-07-10 20:40 ` [Intel-wired-lan] [PATCH iwl-next v3 12/13] iavf: refactor add/del FDIR filters Ahmed Zaki
2024-07-10 20:40   ` Ahmed Zaki
2024-07-22 15:04   ` [Intel-wired-lan] " Simon Horman
2024-07-22 15:04     ` Simon Horman
2024-07-24 16:14     ` [Intel-wired-lan] " Ahmed Zaki
2024-07-24 16:14       ` Ahmed Zaki
2024-07-24 16:30       ` [Intel-wired-lan] " Simon Horman
2024-07-24 16:30         ` Simon Horman
2024-07-24 19:28         ` [Intel-wired-lan] " Ahmed Zaki
2024-07-24 19:28           ` Ahmed Zaki
2024-07-10 20:40 ` [Intel-wired-lan] [PATCH iwl-next v3 13/13] iavf: add support for offloading tc U32 cls filters Ahmed Zaki
2024-07-10 20:40   ` Ahmed Zaki
2024-07-22 15:05   ` [Intel-wired-lan] " Simon Horman
2024-07-22 15:05     ` Simon Horman

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=20240722150621.GN715661@kernel.org \
    --to=horms@kernel.org \
    --cc=ahmed.zaki@intel.com \
    --cc=aleksandr.loktionov@intel.com \
    --cc=anthony.l.nguyen@intel.com \
    --cc=intel-wired-lan@lists.osuosl.org \
    --cc=junfeng.guo@intel.com \
    --cc=marcin.szycik@linux.intel.com \
    --cc=netdev@vger.kernel.org \
    --cc=wojciech.drewek@intel.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.