DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Zhang, Helin" <helin.zhang@intel.com>
To: "Ding, HengX" <hengx.ding@intel.com>
Cc: "dev@dpdk.org" <dev@dpdk.org>
Subject: Re: [dpdk-dev] [PATCH] i40e: Enable multicast promiscuous mode when	promiscuous mode enabled for i40e driver
Date: Fri, 15 Aug 2014 01:49:12 +0000	[thread overview]
Message-ID: <F35DEAC7BCE34641BA9FAC6BCA4A12E70A77E7D6@SHSMSX104.ccr.corp.intel.com> (raw)
In-Reply-To: <1408067252-14179-1-git-send-email-hengx.ding@intel.com>



> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Heng Ding
> Sent: Friday, August 15, 2014 9:48 AM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH] i40e: Enable multicast promiscuous mode when
> promiscuous mode enabled for i40e driver
> 
> From: Ding Heng <hengx.ding@intel.com>
> 
> IPv6 will run NDP with multicast packets, but multicast packets will be filtered
> by i40e driver by default. So we need to enable multicast when promiscuous
> mode is on, or IPv6 will fail on these cards when running testpmd and kni app.
> 
> Signed-off-by: Ding Heng <hengx.ding@intel.com>
> ---
>  lib/librte_pmd_i40e/i40e_ethdev.c | 14 ++++++++++++++
>  1 file changed, 14 insertions(+)
> 
> diff --git a/lib/librte_pmd_i40e/i40e_ethdev.c
> b/lib/librte_pmd_i40e/i40e_ethdev.c
> index 9ed31b5..539dae5 100644
> --- a/lib/librte_pmd_i40e/i40e_ethdev.c
> +++ b/lib/librte_pmd_i40e/i40e_ethdev.c
> @@ -755,6 +755,12 @@ i40e_dev_promiscuous_enable(struct rte_eth_dev
> *dev)
>  							true, NULL);
>  	if (status != I40E_SUCCESS)
>  		PMD_DRV_LOG(ERR, "Failed to enable unicast promiscuous\n");
> +
> +	status = i40e_aq_set_vsi_multicast_promiscuous(hw, vsi->seid,
> +							TRUE, NULL);
> +	if (status != I40E_SUCCESS)
> +		PMD_DRV_LOG(ERR, "Failed to enable multicast promiscuous\n");
> +
>  }
> 
>  static void
> @@ -769,6 +775,11 @@ i40e_dev_promiscuous_disable(struct rte_eth_dev
> *dev)
>  							false, NULL);
>  	if (status != I40E_SUCCESS)
>  		PMD_DRV_LOG(ERR, "Failed to disable unicast promiscuous\n");
> +
> +	status = i40e_aq_set_vsi_multicast_promiscuous(hw, vsi->seid,
> +							false, NULL);
> +	if (status != I40E_SUCCESS)
> +		PMD_DRV_LOG(ERR, "Failed to disable multicast promiscuous\n");
>  }
> 
>  static void
> @@ -792,6 +803,9 @@ i40e_dev_allmulticast_disable(struct rte_eth_dev
> *dev)
>  	struct i40e_vsi *vsi = pf->main_vsi;
>  	int ret;
> 
> +	if (dev->data->promiscuous == 1)
> +		return; /* must remain in all_multicast mode */
> +
>  	ret = i40e_aq_set_vsi_multicast_promiscuous(hw,
>  				vsi->seid, FALSE, NULL);
>  	if (ret != I40E_SUCCESS)
> --
> 1.9.3

Reviewed-by: Helin Zhang <helin.zhang@intel.com>

  reply	other threads:[~2014-08-15  4:40 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-15  1:47 Heng Ding
2014-08-15  1:49 ` Zhang, Helin [this message]
2014-08-25 14:13   ` Thomas Monjalon

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=F35DEAC7BCE34641BA9FAC6BCA4A12E70A77E7D6@SHSMSX104.ccr.corp.intel.com \
    --to=helin.zhang@intel.com \
    --cc=dev@dpdk.org \
    --cc=hengx.ding@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 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).