From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f179.google.com (mail-wi0-f179.google.com [209.85.212.179]) by dpdk.org (Postfix) with ESMTP id 3B3C55ABA for ; Fri, 12 Jun 2015 15:59:08 +0200 (CEST) Received: by wibdq8 with SMTP id dq8so18646756wib.1 for ; Fri, 12 Jun 2015 06:59:08 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=MtWg8DqdpkCDTdLmS8+Xh4jA930uI27g9f9wTeKekxE=; b=a3D/ycPe67BgpEtwAK2fodNiur2TeGOvycc+EUwQdHLutSeV4E3Vs6JGXgkwD/5JgK HWHOswEP5rf5mWBku72+51YmjO7xKho86YLCth/WHk629IU5q6IU7UJLOpkGbfD6zvcX FVhCMGSExe03VxhPKkDIh6Q7QLRo4GuLiVgFQ9InkF+mlci16RLRaR36wAcBI/xIV6F3 G7AT82QoWFA1HlxdC8lKYilPLeyY94xdmj59Q1K/5vyswH7YCSGpKtJpISS8tgbYojbD bsvNI1lnQa1ms4M0OxulKRwEjr51ygA4iEHxAm5VRY7HMXdTi6q6EBzCwfpb3y/U7y+r KRZg== X-Gm-Message-State: ALoCoQm/9MQFYfC2U89FZqYcN0st/95IPSy43GaAu8QGkgD9mieJcg+0j61G4L4q2Zv8kKcCiVAi X-Received: by 10.180.88.169 with SMTP id bh9mr7493819wib.6.1434117548018; Fri, 12 Jun 2015 06:59:08 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id k2sm2890218wif.3.2015.06.12.06.59.06 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 12 Jun 2015 06:59:06 -0700 (PDT) From: Thomas Monjalon To: Ivan Boule Date: Fri, 12 Jun 2015 15:58:10 +0200 Message-ID: <16126896.ylB63xNk78@xps13> Organization: 6WIND User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; ) 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-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" 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: Fri, 12 Jun 2015 13:59:08 -0000 2015-05-28 17:05, Ivan Boule: > 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 The new symbol was not exported in the .map file (fixed before push). Applied, thanks