From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f50.google.com (mail-wm0-f50.google.com [74.125.82.50]) by dpdk.org (Postfix) with ESMTP id 1C2A2C2EA for ; Wed, 8 Jun 2016 21:43:59 +0200 (CEST) Received: by mail-wm0-f50.google.com with SMTP id v199so78290942wmv.0 for ; Wed, 08 Jun 2016 12:43:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=mH1edELfrRjz7ZBqsZA4+weGnsM0jazgAVUrQGg8NNE=; b=OtuRi7T+cenwFQ4HQmA2hLckRqXdyFY15NWkxSgLx3J6nysLfNJwPx4N/YDrj6azIx AGjup9b2VojK3mDRWNwVPLvwcBWA7+vzQgJN1sJtTfxvHq/cSt9T+biIgQqz8Md8Wo+T w0oo8Bl5eRz4nXHHwqRwYBimMPXnvYIdyeNFsNWjYOIDXQEFMXR7CHJP8UY73xAz8Iv7 uSwrxXrQ7f1wRLz3L1z9OfZObNC33NwNHKFPKuymWGRzMVEG37HRxqXT1i7wNpJXYxtd qrLlso0uSvQk8VUuidbCGx6rsl+1CoNm9OiV+HB16M9i0DIJEpWiL+gUO63V5Th/miDl 5sUg== 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:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=mH1edELfrRjz7ZBqsZA4+weGnsM0jazgAVUrQGg8NNE=; b=RGCX85vjSaE2uxO6oI+0skugCHXWlTWB+hgbRKeREoarzHpHlOpnlsw3nO4ABMUrAz u97ImyAQIXEIw1ryEfHB6jvNFanbXRl9rXNq2rwH8cavSC4ICVYZ5CF7UqiCYOMFfqJC rjyh7dQHMBVE2DEnT4DuskIz4idqUF3E0KNjVIhPvBRXgRDSRXXDCId8aO7/fh7NwAJu yCA+y8FncfMVDvL8bhNGsu/8DJyJ0hrcMahFSd9NuySFLuoyJNgYZ0/uRAnDgVdrWZIQ c4XSO0sAnAKk0FRFMc2C6yIsRzyvR7D/4OiyPX1ZKmS2qvJVJVAglAi4qAnLpiTDBqLq 6Prg== X-Gm-Message-State: ALyK8tK8HbMVKL52XBWzn14NMkxO9axkHts1mbRBt3qkZiSQl7K2AAYBRpvSq1/Nre71RNHg X-Received: by 10.194.206.39 with SMTP id ll7mr5957826wjc.179.1465415038809; Wed, 08 Jun 2016 12:43:58 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id v200sm2179497wmv.4.2016.06.08.12.43.57 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 08 Jun 2016 12:43:57 -0700 (PDT) From: Thomas Monjalon To: Jasvinder Singh Cc: dev@dpdk.org, cristian.dumitrescu@intel.com Date: Wed, 08 Jun 2016 21:43:57 +0200 Message-ID: <1827315.CqGeHMO5QA@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1464789663-173318-1-git-send-email-jasvinder.singh@intel.com> References: <1462579071-82557-1-git-send-email-jasvinder.singh@intel.com> <1464789663-173318-1-git-send-email-jasvinder.singh@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2 0/6] ip_pipeline: routing pipeline improvements 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: Wed, 08 Jun 2016 19:43:59 -0000 2016-06-01 15:00, Jasvinder Singh: > This commit adds following features to the routing pipeline; > > 1. Implements the tracking mechanism for the routing pipeline for identifying > the physical nic port where a specific output ports of the routing pipeline are > eventually connected. Depending upon the application, tracking could involve > traversing the other intermediate pipelines. > > The pipelines such as pass-through allows tracking to be performaned through > them becasue of straightforward connections between their input and output > ports, while pipelines like flow-classifications, firewall fails the tracking > because of dependency upon the table rule set. As a result of tracking > mechainsm, routing pipeline uses the real MAC addresses of the network > interfaces instead of hardcoded default value. > > 2. Adds support for automatic route automatic update when physical NIC ports > change their state (up/down) or configuration. Every time a physical port > goes up/down, a call-back function that the specific pipeline type > (e.g. routing) registered with NIC ports at init time; will simply add/delete > a route associated with that output port. > > Acked-by: Cristian Dumitrescu > > Jasvinder Singh (6): > ip_pipeline: increase macros values > ip_pipeline: linking routing pipeline output ports with NIC ports > ip_pipeline: assign nic ports mac address to the routing pipeline > outports > ip_pipeline: automatic routes update with the change in nic ports > state > ip_pipeline: sample config file on adding various network layer > components > ip_pipeline: update release notes Applied, thanks