From: "Wu, Yanglong" <yanglong.wu@intel.com>
To: "Zhang, Qi Z" <qi.z.zhang@intel.com>, "dev@dpdk.org" <dev@dpdk.org>
Cc: "Hall, Ryan E" <ryan.e.hall@intel.com>,
"stable@dpdk.org" <stable@dpdk.org>
Subject: Re: [dpdk-stable] [PATCH] net/i40e: fix FPK VF overwrite PF RSS LUT
Date: Tue, 15 Jan 2019 02:13:47 +0000 [thread overview]
Message-ID: <B73B41DFFD120A45AEE57672FCA463BA0601FD63@shsmsx102.ccr.corp.intel.com> (raw)
In-Reply-To: <039ED4275CED7440929022BC67E706115331AEA8@SHSMSX103.ccr.corp.intel.com>
Hi qi,
-----Original Message-----
From: Zhang, Qi Z
Sent: Monday, January 14, 2019 8:48 PM
To: Wu, Yanglong <yanglong.wu@intel.com>; dev@dpdk.org
Cc: Hall, Ryan E <ryan.e.hall@intel.com>; stable@dpdk.org
Subject: RE: [PATCH] net/i40e: fix FPK VF overwrite PF RSS LUT
> -----Original Message-----
> From: Wu, Yanglong
> Sent: Monday, January 14, 2019 4:24 PM
> To: dev@dpdk.org
> Cc: Hall, Ryan E <ryan.e.hall@intel.com>; Zhang, Qi Z
> <qi.z.zhang@intel.com>; Wu, Yanglong <yanglong.wu@intel.com>;
> stable@dpdk.org
> Subject: [PATCH] net/i40e: fix FPK VF overwrite PF RSS LUT
I think this is not a just for FPK, but for all i40e family right?
>From the code, just FPK have this problem. it not well designed when it transfer to admin queue.
>
> i40e_aq_set_rss_lut should set rigister according to the vsi->type. if
> not, VF may overwrite the rigister of PF
>
> Fixes: d0a349409bd7 ("i40e: support AQ based RSS config")
> Cc: stable@dpdk.org
>
> Signed-off-by: Wu Yanglong <yanglong.wu@intel.com>
It should be "Yanglong Wu"
Ok, will send the version two.
> ---
> drivers/net/i40e/i40e_ethdev.c | 9 +++++++--
> 1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/i40e/i40e_ethdev.c
> b/drivers/net/i40e/i40e_ethdev.c index a6b97e164..d4d99edcd 100644
> --- a/drivers/net/i40e/i40e_ethdev.c
> +++ b/drivers/net/i40e/i40e_ethdev.c
> @@ -4183,8 +4183,13 @@ i40e_get_rss_lut(struct i40e_vsi *vsi, uint8_t
> *lut, uint16_t lut_size)
> return -EINVAL;
>
> if (pf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
> - ret = i40e_aq_get_rss_lut(hw, vsi->vsi_id, TRUE,
> - lut, lut_size);
> + if (vsi->type == I40E_VSI_SRIOV) {
> + ret = i40e_aq_get_rss_lut(hw, vsi->vsi_id, FALSE,
> + lut, lut_size);
> + } else {
> + ret = i40e_aq_get_rss_lut(hw, vsi->vsi_id, TRUE,
> + lut, lut_size);
> + }
You can simplify above code to below single line
ret = i40e_aq_get_rss_lut(hw, vsi->vsi_id, vsi->type != I40E_VSI_SRIOV, lut, lut_size);
thanks, it would be better.
> if (ret) {
> PMD_DRV_LOG(ERR, "Failed to get RSS lookup table");
> return ret;
> --
> 2.11.0
next prev parent reply other threads:[~2019-01-15 2:13 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-14 8:24 Yanglong Wu
2019-01-14 12:48 ` Zhang, Qi Z
2019-01-15 2:13 ` Wu, Yanglong [this message]
2019-01-15 2:23 ` [dpdk-stable] [PATCH v2] " Yanglong Wu
2019-01-15 10:51 ` Zhang, Qi Z
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=B73B41DFFD120A45AEE57672FCA463BA0601FD63@shsmsx102.ccr.corp.intel.com \
--to=yanglong.wu@intel.com \
--cc=dev@dpdk.org \
--cc=qi.z.zhang@intel.com \
--cc=ryan.e.hall@intel.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).