From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f53.google.com (mail-wm0-f53.google.com [74.125.82.53]) by dpdk.org (Postfix) with ESMTP id BA384568F for ; Wed, 9 Dec 2015 21:50:02 +0100 (CET) Received: by wmww144 with SMTP id w144so239261443wmw.1 for ; Wed, 09 Dec 2015 12:50:02 -0800 (PST) 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:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=BOreKSjIVYFLETqp9m0UD3fV9YSNsHeYmsGStemErQs=; b=tS3XppDuCsG+6xaNxZh3HyiKS8RWGnmcz3LmT0uP5sHK49xHPKQa5Quuk9+RpJCPea em+vi3m2E/IPgsdteyc/5U9RDnCzndO/QuiU9PvIMX1pPFSI9h+XePsI0LZWNkczKamL hzhL2sFVKoHG21YnjGRBoBP1mWKPgzmJMaRzqYrJeJlQBmisXE7iAtpbOul5RQPpREVv XEC3Btdnw5DSlYhOoZDUAkM11x0yDRL3FUtCHt9q6L3h306iIwqpfRV70dBpwDgxqxjw ug9QkyUKOTxd3lNKboMgKVtZxBu8eS1ht2IsDiN1mch7G8lI6ejq4apqRCl7tQVOd2l2 1H0Q== 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=BOreKSjIVYFLETqp9m0UD3fV9YSNsHeYmsGStemErQs=; b=Zj/9SejilVAPrivXLgPClwnGTbArVGEev+HhYquCpp+xH7NFFi62cTbBxnbLDUV5kG Un2hgdZVPiJw7Kg9W1H5cds27GIoA1RBvwodvq74uUT7U6C6dt4fBGoy9VElzYgdK/kM GEB/JAPZruRArHlndCu/9cSON3YzXDs5gvJ60DFoJFu5CrqNwLumfi2JHETzIFv5ExSv 6lhl0oRhP+0yoOz/cQeNFR63S9FsF2WN75UIB0Ie3Mle6iDA9kVP1g6GbUn1Rl6TWcNc 4CVUcagwO4VLbuPkvwXqC6F/zCss4GE07nCIHm/M74JM3I7KjH+VdpYDo1fpf4fcqrnp tQDQ== X-Gm-Message-State: ALoCoQlGHrTn24G4b3bSYPRJ8rCgYf69mNaKgNXnkUvdmciXhM7ntKLDyOBdTnPZMbxypveji8Tw7D1wW6+Yq4Qon67xn6JOrg== X-Received: by 10.194.133.100 with SMTP id pb4mr4893467wjb.133.1449694202542; Wed, 09 Dec 2015 12:50:02 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id da10sm9296308wjb.22.2015.12.09.12.50.01 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 09 Dec 2015 12:50:01 -0800 (PST) From: Thomas Monjalon To: "Azarewicz, PiotrX T" Date: Wed, 09 Dec 2015 21:48:46 +0100 Message-ID: <3634586.eXTRuYDjgN@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: References: <1449584208-24987-1-git-send-email-piotrx.t.azarewicz@intel.com> <1449653630-25704-1-git-send-email-piotrx.t.azarewicz@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 v2 1/1] example/ip_pipeline: fix memcpy issue 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, 09 Dec 2015 20:50:02 -0000 > > The source and destination both are the arrays of cmdline_parse_ctx_t. > > So the goal is to copy elements size of cmdline_parse_ctx_t not > > cmdline_parse_ctx_t*. > > > > Coverity issue: 120412 > > Fixes: b4aee0fb9c6d ("examples/ip_pipeline: reconfigure thread binding > > dynamically") > > > > Fixes: ea0908c4ab89 ("examples/ip_pipeline: add master pipeline") > > Fixes: eb32fe7c5574 ("examples/ip_pipeline: rework initialization > > parameters") > > > > Signed-off-by: Piotr Azarewicz > > Acked-by: John McNamara Applied (and merged with Stephen's patch), thanks