From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f52.google.com (mail-pa0-f52.google.com [209.85.220.52]) by dpdk.org (Postfix) with ESMTP id 3B668BE7C for ; Thu, 28 May 2015 18:21:39 +0200 (CEST) Received: by padbw4 with SMTP id bw4so27002630pad.0 for ; Thu, 28 May 2015 09:21:38 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-type:content-transfer-encoding; bh=BBan4dSv9ANX5VkvwAPzD3pR8iZoSro4+LUnZfA3e9I=; b=QoQVN9ZDUWTr2IuSM2UCgFp5PN2+zUv3N79vUZKqDZHEQjITnVWrV+uZg762C8PCcD t8BZnwxOPzZh6mEG2GN4CwIA9jjHT2jogybGABr7sJpo4GLmgttbbD+Ud1FyfrpC//pY z17K3DLtguLXSwSnVfZnnLIv3vZPZj5k1vXL2R9zbpczzy95k3wNtuh0C/GWAHPNZmMx M2AF37hyBHtyTk0U/oHUwpoQnn7ZIqnsIul5LuHyQP2hSQ+YEQAGCAtHFSONqg9UM+uk zJN2wlykWAKBeuW/RPtu+OzhvofmQily2IMj9ixcNyybTpEMsiSHGii5v11qy1/IPeCP Sf3Q== X-Gm-Message-State: ALoCoQn9V0/1Kpf/2PN77/Gco9dx97VBoC8RDtzIr8mL8GdOrkoreeLdDROeX9guBVKU/U5fzg9o X-Received: by 10.70.96.194 with SMTP id du2mr7114038pdb.108.1432830098481; Thu, 28 May 2015 09:21:38 -0700 (PDT) Received: from urahara (static-50-53-82-155.bvtn.or.frontiernet.net. [50.53.82.155]) by mx.google.com with ESMTPSA id bc14sm2876318pac.6.2015.05.28.09.21.37 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 28 May 2015 09:21:38 -0700 (PDT) Date: Thu, 28 May 2015 09:21:42 -0700 From: Stephen Hemminger To: Ivan Boule Message-ID: <20150528092142.7a4241ec@urahara> In-Reply-To: <1432825523-19006-1-git-send-email-ivan.boule@6wind.com> References: <1432825523-19006-1-git-send-email-ivan.boule@6wind.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH 0/5] multicast address filtering X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 May 2015 16:21:39 -0000 On Thu, 28 May 2015 17:05:18 +0200 Ivan Boule wrote: > Introduce PMD API to set the list of multicast MAC addresses filtered > by a port. > Implemented in the following PMDs: igb, igbvf, em, ixgbe, and ixgbevf. > Implementation for physical PMDs i40e, i40evf, enic, and fm10k left > to their respective maintainers. > > Ivan Boule (5): > ethdev: add multicast address filtering > app/testpmd: new command to add/remove multicast MAC addresses > e1000: add multicast MAC address filtering > ixgbe: add multicast MAC address filtering > app/testpmd: fix reply to a multicast ICMP request > > app/test-pmd/cmdline.c | 52 ++++++++++++++ > app/test-pmd/config.c | 142 ++++++++++++++++++++++++++++++++++++++ > app/test-pmd/icmpecho.c | 65 +++++++++++++++-- > app/test-pmd/testpmd.h | 6 ++ > drivers/net/e1000/em_ethdev.c | 17 +++++ > drivers/net/e1000/igb_ethdev.c | 18 +++++ > drivers/net/ixgbe/ixgbe_ethdev.c | 32 +++++++++ > lib/librte_ether/rte_ethdev.c | 17 +++++ > lib/librte_ether/rte_ethdev.h | 26 +++++++ > 9 files changed, 369 insertions(+), 6 deletions(-) > Looks good, could you also add support for virtio and vmxnet3?