From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4C9B5A31F3 for ; Fri, 18 Oct 2019 13:18:27 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E0EC61D16A; Fri, 18 Oct 2019 13:18:25 +0200 (CEST) Received: from mail-io1-f68.google.com (mail-io1-f68.google.com [209.85.166.68]) by dpdk.org (Postfix) with ESMTP id 0395B1D15F for ; Fri, 18 Oct 2019 13:18:25 +0200 (CEST) Received: by mail-io1-f68.google.com with SMTP id u8so6977789iom.5 for ; Fri, 18 Oct 2019 04:18:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=px//A5tcDRhrB87ZOPrQyUco+mRs5mQT1/u2Hd8luNk=; b=Gu+sZH2h8SoVRC47WDZZATvJGLBjdSBIyXCHl6aGzgEhPxYJIlmr9ZnjaURZAeUE1U ONhaED/DC4piN6EG0IR9z1yVFBAL4uC58TAtL313RWhrsHENoLUTzgMEsdebRNUhYO1x E4o4Ua71HEUpwFvTGM1J6qJ4IVRBq2hnOIM8OqIfhlXB7td6YZZgSJeY5PyEbQTBpNgO qO3m95njBPTfNuIizHgMB6dC02XnKTrrZGJHpWAUiY5Uc/hsfUW9+ZaJOM42sb9fsTRg tr7gKyu+3OgtF0wkk9tvP2x4Du3I/KUcVuSuMfG9Z3tAGUSvMpwn2n4p6NvoaNWFgobd 1lvw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=px//A5tcDRhrB87ZOPrQyUco+mRs5mQT1/u2Hd8luNk=; b=TSbWPzfyAubbiObZKsvO0T/l29JhXCuZCko0MJoHll5wB/CuNusGvpRxMIkEaRRDS9 iUGgJApSiq93Z+3CwvcOFC0vOBfrTJDXyBd+eYxIhRud9R7mNBZTXeK3Og27O4X0aPNO h91S2kGG38CZvy5ijPH48LMt0H/3pIPw2IK0LQqnf0yYfd6UINLgOnfrL1wBKlemWP9N 4zJiuCXZ3yxilT2MlYzoSz12mc4F8wkqSXl3iFFefYsk8Zv34E/6XqPTI4hr0gIA4p7K pWazwKDQgt1exIe/CfO378e9Vv9FM3QXJo13iLNs+Dz0s8zPexFYrKby9llOBG1qJr8r vbfQ== X-Gm-Message-State: APjAAAVgI4l+ALBJcBMZ61Tpr7CfmRu6qSCRXXY0txCL6ztSirfcRSIO KFuKl0A70+XYi39WPGuPkPClt7K9wnZTIug0evo= X-Google-Smtp-Source: APXvYqxfxcnVKYM/uTBLo900BDolVN3wLKz+XFMXmNhWqbgiMqfjcaXFY9m+ya6XyH2iyOjbmJqQPK49iOCBuUshxBg= X-Received: by 2002:a02:ac81:: with SMTP id x1mr8515926jan.133.1571397504118; Fri, 18 Oct 2019 04:18:24 -0700 (PDT) MIME-Version: 1.0 References: <20191015104421.6269-1-vattunuru@marvell.com> In-Reply-To: <20191015104421.6269-1-vattunuru@marvell.com> From: Jerin Jacob Date: Fri, 18 Oct 2019 16:48:13 +0530 Message-ID: To: Vamsi Attunuru , Ferruh Yigit Cc: dpdk-dev , Jerin Jacob , Thomas Monjalon Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v1 1/1] net/octeontx2: add multicast filter support X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Tue, Oct 15, 2019 at 4:14 PM wrote: > > From: Vamsi Attunuru > > Patch adds mc filter support for otx2 eth devices. > > Signed-off-by: Vamsi Attunuru Acked-by: Jerin Jacob Applied to dpdk-next-net-mrvl/master. Thanks > --- > doc/guides/nics/features/octeontx2.ini | 1 + > doc/guides/nics/features/octeontx2_vec.ini | 1 + > doc/guides/nics/octeontx2.rst | 6 + > drivers/net/octeontx2/Makefile | 1 + > drivers/net/octeontx2/meson.build | 1 + > drivers/net/octeontx2/otx2_ethdev.c | 17 +- > drivers/net/octeontx2/otx2_ethdev.h | 19 ++ > drivers/net/octeontx2/otx2_mcast.c | 339 +++++++++++++++++++++++++++++ > 8 files changed, 384 insertions(+), 1 deletion(-) >