From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f48.google.com (mail-wm0-f48.google.com [74.125.82.48]) by dpdk.org (Postfix) with ESMTP id C6B8829CD for ; Fri, 1 Jul 2016 19:32:15 +0200 (CEST) Received: by mail-wm0-f48.google.com with SMTP id r201so38235632wme.1 for ; Fri, 01 Jul 2016 10:32:15 -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=8Of4XR2NDiBlpnFjH7AnIirg10gxXn6IPaKlnpKFVfc=; b=TAxoOEX4ilDluyi2zSGgs455EY23s4bDlZnKCV4i6cl8NYe/mXZbVrlOR0QyHjztw6 rB2Si4zE412+ze34kcBIDxkXwhIKaK9V66MbtCjIgEyDbpEVjtlvhzTlTCbi/WQB2fOC 6iSnrsbVjyDVSOCaVF58c0bFhe+jSSuYvI459OnZjsphka429S2PPrgczUpYyZR4b1HR TVjcbA3xtEJDycANBYspD/n43UVHC46W5LLSm/VkL5ow7Zs9ZuHV7qwImvs3uDW6oEyM ymHU816AaF88juGqHZmhDgjETochred9k4woKgRT8gbGjdV6LCxYDRw30Bjr0IJbHGLe mx+Q== 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=8Of4XR2NDiBlpnFjH7AnIirg10gxXn6IPaKlnpKFVfc=; b=lRoUibjf/N2JvCQ0MMwQ5EZbwv0sRTAT5p+Z5dUQ69PK2jx1w21d7cUHDPU9XxGm6q WKubLMZaWjOdKYaWq04NvL+sfHAwo+h8UuZcW3nS+S1sC02ym4xBmXzJ9ZoAJfGHCfPK iF+efH/F/Xdu6WnqmeFgiFoC1ftII/6XpM+fpYQrTfbLnM1PiVeRuYimG6xRqMJIuSGL zIx/suFvPOgz/ltNHNwuY2k/JFjqVmPXtEkFp5PucowcU+Pyc7YEMjgd/vTf2drbTyJi /AYaJiqStP4POzMHrSyIpqkvA1Rp7B5rJCbK3Tu72jIGIdXfqSgteDEoa6QU1vKhZYJv lGyQ== X-Gm-Message-State: ALyK8tIj15MJ6oPg6B+nB/FYhEFbxN8mLogM+Jds3hwy0Svt4YSChJALRBtwzdeWP8Xfph+W X-Received: by 10.28.66.148 with SMTP id k20mr666202wmi.55.1467394335648; Fri, 01 Jul 2016 10:32:15 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id r127sm5293943wmf.21.2016.07.01.10.32.13 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 01 Jul 2016 10:32:13 -0700 (PDT) From: Thomas Monjalon To: Ferruh Yigit Cc: dev@dpdk.org, Anatoly Burakov Date: Fri, 01 Jul 2016 19:32:12 +0200 Message-ID: <1655372.VbrXBsjosb@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1467390408-781-1-git-send-email-ferruh.yigit@intel.com> References: <1467390408-781-1-git-send-email-ferruh.yigit@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] ivshmem: fix for modified mempool struct 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: Fri, 01 Jul 2016 17:32:15 -0000 2016-07-01 17:26, Ferruh Yigit: > struct rte_mempool changed its "ring" field to "pool_data" > > "ring" field is accessed by ivshmem library, and updated to "pool_data" > > This patch fixes the compile error: > > == Build lib/librte_ivshmem > CC rte_ivshmem.o > .../lib/librte_ivshmem/rte_ivshmem.c: > In function 'add_mempool_to_metadata': > .../lib/librte_ivshmem/rte_ivshmem.c:584:32: > error: 'const struct rte_mempool' has no member named 'ring' > return add_ring_to_metadata(mp->ring, config); > ^~ > > Fixes: 449c49b93a6b ("mempool: support handler operations") > Signed-off-by: Ferruh Yigit Applied, thanks