From: Simon Horman <horms@kernel.org>
To: Ivan Vecera <ivecera@redhat.com>
Cc: Wojciech Drewek <wojciech.drewek@intel.com>,
Avinash Dayanand <avinash.dayanand@intel.com>,
netdev@vger.kernel.org,
Jesse Brandeburg <jesse.brandeburg@intel.com>,
linux-kernel@vger.kernel.org, Eric Dumazet <edumazet@google.com>,
Tony Nguyen <anthony.l.nguyen@intel.com>,
intel-wired-lan@lists.osuosl.org,
Jacob Keller <jacob.e.keller@intel.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
"David S. Miller" <davem@davemloft.net>
Subject: Re: [Intel-wired-lan] [PATCH net] i40e: Fix adding unsupported cloud filters
Date: Sat, 4 Nov 2023 09:43:54 -0400 [thread overview]
Message-ID: <20231104134354.GD891380@kernel.org> (raw)
In-Reply-To: <20231103204216.1072251-1-ivecera@redhat.com>
+ Avinash Dayanand
On Fri, Nov 03, 2023 at 09:42:16PM +0100, Ivan Vecera wrote:
> If a VF tries to add unsupported cloud filter through virchnl
> then i40e_add_del_cloud_filter(_big_buf) returns -ENOTSUPP but
> this error code is stored in 'ret' instead of 'aq_ret' that
> is used as error code sent back to VF. In this scenario where
> one of the mentioned functions fails the value of 'aq_ret'
> is zero so the VF will incorrectly receive a 'success'.
>
> Use 'aq_ret' to store return value and remove 'ret' local
> variable. Additionally fix the issue when filter allocation
> fails, in this case no notification is sent back to the VF.
>
> Signed-off-by: Ivan Vecera <ivecera@redhat.com>
Hi Ivan,
as a fix targeted at 'net' this probably warrants a fixes tag.
Perhaps the following is appropriate?
Fixes: e284fc280473 ("i40e: Add and delete cloud filter")
The above not withstanding, this change looks good to me.
Reviewed-by: Simon Horman <horms@kernel.org>
> ---
> .../net/ethernet/intel/i40e/i40e_virtchnl_pf.c | 16 +++++++++-------
> 1 file changed, 9 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c b/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c
> index 08d7edccfb8ddb..3f99eb19824527 100644
> --- a/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c
> +++ b/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c
> @@ -3844,7 +3844,7 @@ static int i40e_vc_add_cloud_filter(struct i40e_vf *vf, u8 *msg)
> struct i40e_pf *pf = vf->pf;
> struct i40e_vsi *vsi = NULL;
> int aq_ret = 0;
> - int i, ret;
> + int i;
>
> if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) {
> aq_ret = -EINVAL;
> @@ -3868,8 +3868,10 @@ static int i40e_vc_add_cloud_filter(struct i40e_vf *vf, u8 *msg)
> }
>
> cfilter = kzalloc(sizeof(*cfilter), GFP_KERNEL);
> - if (!cfilter)
> - return -ENOMEM;
> + if (!cfilter) {
> + aq_ret = -ENOMEM;
> + goto err_out;
> + }
>
> /* parse destination mac address */
> for (i = 0; i < ETH_ALEN; i++)
> @@ -3917,13 +3919,13 @@ static int i40e_vc_add_cloud_filter(struct i40e_vf *vf, u8 *msg)
>
> /* Adding cloud filter programmed as TC filter */
> if (tcf.dst_port)
> - ret = i40e_add_del_cloud_filter_big_buf(vsi, cfilter, true);
> + aq_ret = i40e_add_del_cloud_filter_big_buf(vsi, cfilter, true);
> else
> - ret = i40e_add_del_cloud_filter(vsi, cfilter, true);
> - if (ret) {
> + aq_ret = i40e_add_del_cloud_filter(vsi, cfilter, true);
> + if (aq_ret) {
> dev_err(&pf->pdev->dev,
> "VF %d: Failed to add cloud filter, err %pe aq_err %s\n",
> - vf->vf_id, ERR_PTR(ret),
> + vf->vf_id, ERR_PTR(aq_ret),
> i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
> goto err_free;
> }
> --
> 2.41.0
>
>
_______________________________________________
Intel-wired-lan mailing list
Intel-wired-lan@osuosl.org
https://lists.osuosl.org/mailman/listinfo/intel-wired-lan
WARNING: multiple messages have this Message-ID (diff)
From: Simon Horman <horms@kernel.org>
To: Ivan Vecera <ivecera@redhat.com>
Cc: netdev@vger.kernel.org,
Jesse Brandeburg <jesse.brandeburg@intel.com>,
Tony Nguyen <anthony.l.nguyen@intel.com>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
intel-wired-lan@lists.osuosl.org, linux-kernel@vger.kernel.org,
Jacob Keller <jacob.e.keller@intel.com>,
Wojciech Drewek <wojciech.drewek@intel.com>,
Avinash Dayanand <avinash.dayanand@intel.com>
Subject: Re: [PATCH net] i40e: Fix adding unsupported cloud filters
Date: Sat, 4 Nov 2023 09:43:54 -0400 [thread overview]
Message-ID: <20231104134354.GD891380@kernel.org> (raw)
In-Reply-To: <20231103204216.1072251-1-ivecera@redhat.com>
+ Avinash Dayanand
On Fri, Nov 03, 2023 at 09:42:16PM +0100, Ivan Vecera wrote:
> If a VF tries to add unsupported cloud filter through virchnl
> then i40e_add_del_cloud_filter(_big_buf) returns -ENOTSUPP but
> this error code is stored in 'ret' instead of 'aq_ret' that
> is used as error code sent back to VF. In this scenario where
> one of the mentioned functions fails the value of 'aq_ret'
> is zero so the VF will incorrectly receive a 'success'.
>
> Use 'aq_ret' to store return value and remove 'ret' local
> variable. Additionally fix the issue when filter allocation
> fails, in this case no notification is sent back to the VF.
>
> Signed-off-by: Ivan Vecera <ivecera@redhat.com>
Hi Ivan,
as a fix targeted at 'net' this probably warrants a fixes tag.
Perhaps the following is appropriate?
Fixes: e284fc280473 ("i40e: Add and delete cloud filter")
The above not withstanding, this change looks good to me.
Reviewed-by: Simon Horman <horms@kernel.org>
> ---
> .../net/ethernet/intel/i40e/i40e_virtchnl_pf.c | 16 +++++++++-------
> 1 file changed, 9 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c b/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c
> index 08d7edccfb8ddb..3f99eb19824527 100644
> --- a/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c
> +++ b/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c
> @@ -3844,7 +3844,7 @@ static int i40e_vc_add_cloud_filter(struct i40e_vf *vf, u8 *msg)
> struct i40e_pf *pf = vf->pf;
> struct i40e_vsi *vsi = NULL;
> int aq_ret = 0;
> - int i, ret;
> + int i;
>
> if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) {
> aq_ret = -EINVAL;
> @@ -3868,8 +3868,10 @@ static int i40e_vc_add_cloud_filter(struct i40e_vf *vf, u8 *msg)
> }
>
> cfilter = kzalloc(sizeof(*cfilter), GFP_KERNEL);
> - if (!cfilter)
> - return -ENOMEM;
> + if (!cfilter) {
> + aq_ret = -ENOMEM;
> + goto err_out;
> + }
>
> /* parse destination mac address */
> for (i = 0; i < ETH_ALEN; i++)
> @@ -3917,13 +3919,13 @@ static int i40e_vc_add_cloud_filter(struct i40e_vf *vf, u8 *msg)
>
> /* Adding cloud filter programmed as TC filter */
> if (tcf.dst_port)
> - ret = i40e_add_del_cloud_filter_big_buf(vsi, cfilter, true);
> + aq_ret = i40e_add_del_cloud_filter_big_buf(vsi, cfilter, true);
> else
> - ret = i40e_add_del_cloud_filter(vsi, cfilter, true);
> - if (ret) {
> + aq_ret = i40e_add_del_cloud_filter(vsi, cfilter, true);
> + if (aq_ret) {
> dev_err(&pf->pdev->dev,
> "VF %d: Failed to add cloud filter, err %pe aq_err %s\n",
> - vf->vf_id, ERR_PTR(ret),
> + vf->vf_id, ERR_PTR(aq_ret),
> i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
> goto err_free;
> }
> --
> 2.41.0
>
>
next prev parent reply other threads:[~2023-11-04 13:44 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-03 20:42 [Intel-wired-lan] [PATCH net] i40e: Fix adding unsupported cloud filters Ivan Vecera
2023-11-03 20:42 ` Ivan Vecera
2023-11-04 13:43 ` Simon Horman [this message]
2023-11-04 13:43 ` 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=20231104134354.GD891380@kernel.org \
--to=horms@kernel.org \
--cc=anthony.l.nguyen@intel.com \
--cc=avinash.dayanand@intel.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=ivecera@redhat.com \
--cc=jacob.e.keller@intel.com \
--cc=jesse.brandeburg@intel.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--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.