From: Edward Cree <ecree@solarflare.com>
To: Jiri Pirko <jiri@resnulli.us>, <netdev@vger.kernel.org>
Cc: <davem@davemloft.net>, <kuba@kernel.org>, <saeedm@mellanox.com>,
<leon@kernel.org>, <michael.chan@broadcom.com>,
<vishal@chelsio.com>, <jeffrey.t.kirsher@intel.com>,
<idosch@mellanox.com>, <aelior@marvell.com>,
<peppe.cavallaro@st.com>, <alexandre.torgue@st.com>,
<jhs@mojatatu.com>, <xiyou.wangcong@gmail.com>,
<pablo@netfilter.org>, <mlxsw@mellanox.com>
Subject: Re: [patch net-next v4 03/10] flow_offload: check for basic action hw stats type
Date: Mon, 9 Mar 2020 16:52:47 +0000 [thread overview]
Message-ID: <180ffa93-943c-95ba-437b-a9d15db2a955@solarflare.com> (raw)
In-Reply-To: <20200307114020.8664-4-jiri@resnulli.us>
On 07/03/2020 11:40, Jiri Pirko wrote:
> From: Jiri Pirko <jiri@mellanox.com>
>
> Introduce flow_action_basic_hw_stats_types_check() helper and use it
> in drivers. That sanitizes the drivers which do not have support
> for action HW stats types.
>
> Signed-off-by: Jiri Pirko <jiri@mellanox.com>
> ---
> v3->v4:
> - fixed entries iteration in check (s/0/i/)
> - compare allowed type explicitly to 0 to avoid confusion
> v2->v3:
> - added flow_action_hw_stats_types_check() to pass allowed types
> - "mixed" bool got remove, iterate entries in check
> - added mlx5 checking instead of separate patches (will be changed by
> later patch to flow_action_hw_stats_types_check()
> v1->v2:
> - new patch
> ---
> <snip>
> diff --git a/include/net/flow_offload.h b/include/net/flow_offload.h
> index 93d17f37e980..8b40f612a565 100644
> --- a/include/net/flow_offload.h
> +++ b/include/net/flow_offload.h
> @@ -3,6 +3,7 @@
>
> #include <linux/kernel.h>
> #include <linux/list.h>
> +#include <linux/netlink.h>
> #include <net/flow_dissector.h>
> #include <linux/rhashtable.h>
>
> @@ -251,6 +252,66 @@ static inline bool flow_offload_has_one_action(const struct flow_action *action)
> return action->num_entries == 1;
> }
>
> +static inline bool
> +flow_action_mixed_hw_stats_types_check(const struct flow_action *action,
> + struct netlink_ext_ack *extack)
> +{
> + const struct flow_action_entry *action_entry;
> + u8 uninitialized_var(last_hw_stats_type);
> + int i;
> +
> + if (flow_offload_has_one_action(action))
> + return true;
> +
> + for (i = 0; i < action->num_entries; i++) {
Any reason you didn't use flow_action_for_each() here?
-ed
> + action_entry = &action->entries[i];
> + if (i && action_entry->hw_stats_type != last_hw_stats_type) {
> + NL_SET_ERR_MSG_MOD(extack, "Mixing HW stats types for actions is not supported");
> + return false;
> + }
> + last_hw_stats_type = action_entry->hw_stats_type;
> + }
> + return true;
> +}
> +
> +static inline const struct flow_action_entry *
> +flow_action_first_entry_get(const struct flow_action *action)
> +{
> + WARN_ON(!flow_action_has_entries(action));
> + return &action->entries[0];
> +}
> +
> +static inline bool
> +flow_action_hw_stats_types_check(const struct flow_action *action,
> + struct netlink_ext_ack *extack,
> + u8 allowed_hw_stats_type)
> +{
> + const struct flow_action_entry *action_entry;
> +
> + if (!flow_action_has_entries(action))
> + return true;
> + if (!flow_action_mixed_hw_stats_types_check(action, extack))
> + return false;
> + action_entry = flow_action_first_entry_get(action);
> + if (allowed_hw_stats_type == 0 &&
> + action_entry->hw_stats_type != FLOW_ACTION_HW_STATS_TYPE_ANY) {
> + NL_SET_ERR_MSG_MOD(extack, "Driver supports only default HW stats type \"any\"");
> + return false;
> + } else if (allowed_hw_stats_type != 0 &&
> + action_entry->hw_stats_type != allowed_hw_stats_type) {
> + NL_SET_ERR_MSG_MOD(extack, "Driver does not support selected HW stats type");
> + return false;
> + }
> + return true;
> +}
> +
> +static inline bool
> +flow_action_basic_hw_stats_types_check(const struct flow_action *action,
> + struct netlink_ext_ack *extack)
> +{
> + return flow_action_hw_stats_types_check(action, extack, 0);
> +}
> +
> #define flow_action_for_each(__i, __act, __actions) \
> for (__i = 0, __act = &(__actions)->entries[0]; __i < (__actions)->num_entries; __act = &(__actions)->entries[++__i])
>
> diff --git a/net/dsa/slave.c b/net/dsa/slave.c
> index 79d9b4384d7b..fca9bfa8437e 100644
> --- a/net/dsa/slave.c
> +++ b/net/dsa/slave.c
> @@ -865,6 +865,10 @@ static int dsa_slave_add_cls_matchall(struct net_device *dev,
> if (!flow_offload_has_one_action(&cls->rule->action))
> return err;
>
> + if (!flow_action_basic_hw_stats_types_check(&cls->rule->action,
> + cls->common.extack))
> + return err;
> +
> act = &cls->rule->action.entries[0];
>
> if (act->id == FLOW_ACTION_MIRRED && protocol == htons(ETH_P_ALL)) {
next prev parent reply other threads:[~2020-03-09 16:53 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-07 11:40 [patch net-next v4 00/10] net: allow user specify TC action HW stats type Jiri Pirko
2020-03-07 11:40 ` [patch net-next v4 01/10] flow_offload: Introduce offload of " Jiri Pirko
2020-03-09 16:52 ` Edward Cree
2020-03-09 17:34 ` Jiri Pirko
2020-03-09 17:46 ` Edward Cree
2020-03-10 11:19 ` Jiri Pirko
2020-03-09 21:36 ` Jakub Kicinski
2020-03-09 22:27 ` Edward Cree
2020-03-09 22:38 ` Jakub Kicinski
2020-03-10 11:22 ` Jiri Pirko
2020-03-07 11:40 ` [patch net-next v4 02/10] ocelot_flower: use flow_offload_has_one_action() helper Jiri Pirko
2020-03-07 11:40 ` [patch net-next v4 03/10] flow_offload: check for basic action hw stats type Jiri Pirko
2020-03-09 10:23 ` Jose Abreu
2020-03-09 12:04 ` Jiri Pirko
2020-03-09 13:31 ` Jose Abreu
2020-03-09 13:43 ` Jiri Pirko
2020-03-09 16:52 ` Edward Cree [this message]
2020-03-09 17:32 ` Jiri Pirko
2020-03-07 11:40 ` [patch net-next v4 04/10] mlxsw: spectrum_flower: Do not allow mixing HW stats types for actions Jiri Pirko
2020-03-07 11:40 ` [patch net-next v4 05/10] mlxsw: restrict supported HW stats type to "any" Jiri Pirko
2020-03-07 11:40 ` [patch net-next v4 06/10] flow_offload: introduce "immediate" HW stats type and allow it in mlxsw Jiri Pirko
2020-03-07 11:40 ` [patch net-next v4 07/10] flow_offload: introduce "delayed" HW stats type and allow it in mlx5 Jiri Pirko
2020-03-07 11:40 ` [patch net-next v4 08/10] mlxsw: spectrum_acl: Ask device for rule stats only if counter was created Jiri Pirko
2020-03-07 11:40 ` [patch net-next v4 09/10] flow_offload: introduce "disabled" HW stats type and allow it in mlxsw Jiri Pirko
2020-03-07 11:40 ` [patch net-next v4 10/10] sched: act: allow user to specify type of HW stats for a filter Jiri Pirko
2020-03-09 4:09 ` [patch net-next v4 00/10] net: allow user specify TC action HW stats type David Miller
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=180ffa93-943c-95ba-437b-a9d15db2a955@solarflare.com \
--to=ecree@solarflare.com \
--cc=aelior@marvell.com \
--cc=alexandre.torgue@st.com \
--cc=davem@davemloft.net \
--cc=idosch@mellanox.com \
--cc=jeffrey.t.kirsher@intel.com \
--cc=jhs@mojatatu.com \
--cc=jiri@resnulli.us \
--cc=kuba@kernel.org \
--cc=leon@kernel.org \
--cc=michael.chan@broadcom.com \
--cc=mlxsw@mellanox.com \
--cc=netdev@vger.kernel.org \
--cc=pablo@netfilter.org \
--cc=peppe.cavallaro@st.com \
--cc=saeedm@mellanox.com \
--cc=vishal@chelsio.com \
--cc=xiyou.wangcong@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox