From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas.monjalon@6wind.com>
Received: from mail-wi0-f177.google.com (mail-wi0-f177.google.com
 [209.85.212.177]) by dpdk.org (Postfix) with ESMTP id 9C531592B
 for <dev@dpdk.org>; Mon, 13 Jul 2015 13:21:39 +0200 (CEST)
Received: by wibud3 with SMTP id ud3so26803832wib.1
 for <dev@dpdk.org>; Mon, 13 Jul 2015 04:21:39 -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=WycGfCndvPfcDgb2gEXGA95HxDSGLxEZD5TESqQsLD8=;
 b=iZgRb9TOUJQH2ypuZxk2v+QrbEn4ms6VTJv5UJQPSk7Kb3VxTLGm/WIGoQV+h/jJAe
 WsOMo3Kvd6m9Z+gC/TRW2bDwAljGMbzrWjN8QtekZXfCONX8cPokmuXXwjl2PHuLdmvd
 QvQZlgovU29HWN6Dlhrs6B2pzc1czGiYK5DMKTepc7GzgJvjxOVQUpCzS8txP9gVUGGm
 hpuFGTFwNFDHGNzFU/AKKU7+qhCU4fwAZZInN/nQ4fc2ajrdj9FBOOGVAXnWJXR6FE7i
 Zz3XCyqRHhN0zsh+pQX/1i2KUmS1XoFUpYdaoI+XG8II+ecscz4fmnGEVG1mRpenRZPS
 5QOQ==
X-Gm-Message-State: ALoCoQn9sZtydj17x0vD8Litx0ncprv923LqtIyz5bfZ/myBjkptD51p6sxaqQiBmhUNaoN3wdqQ
X-Received: by 10.194.108.5 with SMTP id hg5mr69319819wjb.25.1436786499441;
 Mon, 13 Jul 2015 04:21:39 -0700 (PDT)
Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136])
 by smtp.gmail.com with ESMTPSA id gw7sm14037513wib.15.2015.07.13.04.21.37
 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
 Mon, 13 Jul 2015 04:21:38 -0700 (PDT)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: Tomasz Kulasek <tomaszx.kulasek@intel.com>
Date: Mon, 13 Jul 2015 13:20:22 +0200
Message-ID: <1479158.4haQfyY6Bf@xps13>
Organization: 6WIND
User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; )
In-Reply-To: <1435589444-1988-7-git-send-email-tomaszx.kulasek@intel.com>
References: <1434723200-7528-1-git-send-email-tomaszx.kulasek@intel.com>
 <1435589444-1988-1-git-send-email-tomaszx.kulasek@intel.com>
 <1435589444-1988-7-git-send-email-tomaszx.kulasek@intel.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 v3 6/8] examples: dynamic rss configuration
	for bonding
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches and discussions about DPDK <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Mon, 13 Jul 2015 11:21:39 -0000

2015-06-29 16:50, Tomasz Kulasek:
> This application allows you to test RSS configuration for bonded devices
> changing configuration dynamically, during receiving packets on slaves and
> observe the changes in its distribution over queues.
> 
> After initialization process, all accessible ports are attached to one
> bonding as slaves.
> 
> Monitor screen is divided into five main parts:
>  - Port selection (on the very top)
>  - RSS Configuration for selected port including hash function, key and
>    RETA
>  - Incoming packets statistics
>  - Incoming packets list for selected port
>  - Status bar with contextual information about selected part
> 
> Signed-off-by: Tomasz Kulasek <tomaszx.kulasek@intel.com>
> ---
>  examples/bond_rss/Makefile  |   59 +++
>  examples/bond_rss/bondrss.c |  293 ++++++++++++++
>  examples/bond_rss/bondrss.h |  163 ++++++++
>  examples/bond_rss/config.c  |  251 ++++++++++++
>  examples/bond_rss/ui.c      |  945 +++++++++++++++++++++++++++++++++++++++++++
>  5 files changed, 1711 insertions(+)

This new example is not added in examples/Makefile.
It introduces a new dependency (ncurses).

Examples are useful to show how to use some features. Maybe you can show
bonding RSS in the existing bonding example without adding bells and whistles.
The example directory must be kept reasonnably maintainable.

REJECTED