From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f171.google.com (mail-wi0-f171.google.com [209.85.212.171]) by dpdk.org (Postfix) with ESMTP id AF034DE6 for ; Wed, 13 May 2015 15:20:31 +0200 (CEST) Received: by wicmx19 with SMTP id mx19so10684317wic.0 for ; Wed, 13 May 2015 06:20:31 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=9s7b6coTUk60KzI1mvmI8zr1W1tAZ/ND6OzND2D0fy8=; b=eDe79sgb6g+s/R5QtrCmQmFsih4we5oPNqhadvFTAWvXDQmmuA3srSlTy7ABy64ORF UrTIMzjVtjMY93J3M7zLI/0Y/MtagSPRUB7LNatGLgQ61oF5FSenMizXmrsRL4YUvQ90 ZfhxRNIEKXser7fMamVYZDsKUOLcdYAxsdSqyicWf6B8OPXT+ZcBgAAgui/MuVUphk4/ yT30xuNGXD4seQScr3LukLU5+25iE8TSDkMR0QEF3lN8Eom1sBOS+6mCRlFIr6GYs4e7 b3Ja3HVG3PGQVRUlBLqt3KR+3hm0267QaQXFQZMQH2uZ8oMH5mZy2iHtW1ZUgPdxt2N0 GiSA== X-Gm-Message-State: ALoCoQkDS5BkUc0xE2cAX6WSx6BocYVx0vFdkUW49dqMKV/rLQjbDbf894fMh6Rtd8ZgooqBR6lN X-Received: by 10.194.90.147 with SMTP id bw19mr10712128wjb.60.1431523231586; Wed, 13 May 2015 06:20:31 -0700 (PDT) Received: from [10.16.0.195] (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id o6sm8061905wiz.24.2015.05.13.06.20.30 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 13 May 2015 06:20:30 -0700 (PDT) Message-ID: <55534F9C.5040203@6wind.com> Date: Wed, 13 May 2015 15:20:28 +0200 From: Olivier MATZ User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.6.0 MIME-Version: 1.0 To: Pawel Wodkowski , dev@dpdk.org References: <1431429019-21130-1-git-send-email-pawelx.wodkowski@intel.com> <1431518401-16315-1-git-send-email-pawelx.wodkowski@intel.com> In-Reply-To: <1431518401-16315-1-git-send-email-pawelx.wodkowski@intel.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v2 0/2] cmdline: add polling mode for command line 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, 13 May 2015 13:20:31 -0000 Hi Pawel, On 05/13/2015 01:59 PM, Pawel Wodkowski wrote: > This patchset adds the ability to process console input in the same thread > as packet processing by using poll() function and fixes some minor issues. > > v2 changes: > - add doxygen documentation for cmdline_poll() > - map file issue fixed > - use proper email address. > - add addtional missing include in cmdline_parse_ipaddr.h > > Pawel Wodkowski (2): > cmdline: fix missing include files > cmdline: add polling mode for command line > > doc/api/doxy-api.conf | 1 + > lib/librte_cmdline/cmdline.c | 35 ++++++++++++++++++++++++++++++ > lib/librte_cmdline/cmdline.h | 24 ++++++++++++++++++++ > lib/librte_cmdline/cmdline_parse_ipaddr.h | 2 ++ > lib/librte_cmdline/cmdline_rdline.h | 1 + > lib/librte_cmdline/cmdline_vt100.h | 2 ++ > lib/librte_cmdline/rte_cmdline_version.map | 8 +++++++ > 7 files changed, 73 insertions(+) > Acked-by: Olivier Matz Thanks, Olivier