From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Hemminger Subject: Re: [PATCH v4 07/12] net/failsafe: support flow API Date: Wed, 31 May 2017 08:21:39 -0700 Message-ID: <20170531082139.5ddce6d9@xeon-e3> References: <36220bb3757d1764d5c054f72bfa72193a91040a.1496065002.git.gaetan.rivet@6wind.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org To: Gaetan Rivet Return-path: Received: from mail-pg0-f44.google.com (mail-pg0-f44.google.com [74.125.83.44]) by dpdk.org (Postfix) with ESMTP id 3EDA823B for ; Wed, 31 May 2017 17:21:42 +0200 (CEST) Received: by mail-pg0-f44.google.com with SMTP id u187so9415570pgb.0 for ; Wed, 31 May 2017 08:21:41 -0700 (PDT) In-Reply-To: <36220bb3757d1764d5c054f72bfa72193a91040a.1496065002.git.gaetan.rivet@6wind.com> 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 Mon, 29 May 2017 15:42:19 +0200 Gaetan Rivet wrote: > Signed-off-by: Gaetan Rivet > Acked-by: Olga Shern > --- > doc/guides/nics/features/failsafe.ini | 1 + > drivers/net/failsafe/Makefile | 1 + > drivers/net/failsafe/failsafe.c | 1 + > drivers/net/failsafe/failsafe_eal.c | 1 + > drivers/net/failsafe/failsafe_ether.c | 70 +++++++++++ > drivers/net/failsafe/failsafe_flow.c | 216 ++++++++++++++++++++++++++++++++ > drivers/net/failsafe/failsafe_ops.c | 29 +++++ > drivers/net/failsafe/failsafe_private.h | 18 +++ > 8 files changed, 337 insertions(+) > create mode 100644 drivers/net/failsafe/failsafe_flow.c How does this interact with typical case of VF and dumb virtual device? The VF has flow API but dumb virtual device does not. How does this work with late binding plugin? If VF arrives later is the flow table reprogrammed to the VF?