From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id 59AE51B16A for ; Wed, 17 Jan 2018 18:50:40 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id B1D2C21116; Wed, 17 Jan 2018 12:50:39 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Wed, 17 Jan 2018 12:50:39 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=1z93eAm6DxU0BYXS9uYZrl1mP+ dand8ZC5wsN9B2g9A=; b=bJblwbVRMiK3Tljt4L3MUuZRjhcv7ghWskNd98X9sk R9bVMYYeC3rkwr3n4RDMhd9O/+5hSeieSLYSraf9OmquvWnQJLIR8b2lHKSO58Fr arpUGOpL7BA2Uryj/2vqXHu5twyEBFxpxkjOhlo/kjqiLZffzgnlGAVHnfAWDxfF 4= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=1z93eA m6DxU0BYXS9uYZrl1mP+dand8ZC5wsN9B2g9A=; b=bpjBgo2CuMeYVd9K8GYBlG AAh6z+wK2xAPYzMQKpanAgBIw7rvfZ3Ga2v2lJg/95vdD+fhChRhHsFB7q6bp0Aa 8Vz47hZnoPZGw1pI+c8unS3sEOw++gru+SvHFgA55OW7Lgxb0ogSZ2FOoykzb54n Y4tAQZfHHlDnIht04cBE8pq4qhzKDnFWqvrT+SYbPQbMnrGhaoFfxLBY06w8KSLY aYS2BQ9NDsn1r9qSTOycHxyUYs4+djA7aTVuUdNWmQHqGIT2/S5f62F1eqBRT2op r2dgp1bK03dcNyyOascnEZ2fxqrUWaTlynRqmtyIHg9rKSdW8UqkYfmP8EiFdlfg == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 6149D7E125; Wed, 17 Jan 2018 12:50:39 -0500 (EST) From: Thomas Monjalon To: Moti Haimovsky Cc: dev@dpdk.org, Hemant Agrawal Date: Wed, 17 Jan 2018 18:50:05 +0100 Message-ID: <1597290.NWRQbkUh9I@xps> In-Reply-To: <1516209855-139507-1-git-send-email-motih@mellanox.com> References: <1516206196-137537-1-git-send-email-motih@mellanox.com> <1516209855-139507-1-git-send-email-motih@mellanox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2] vfio: fix compilation errors in bsdapp X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jan 2018 17:50:40 -0000 17/01/2018 18:24, Moti Haimovsky: > This patch fixes the following compilation errors in bsdapp > /home/patchWorkOrg/compilation/lib/librte_eal/bsdapp/eal/eal.c:782:5: > error: no previous prototype for function 'rte_vfio_clear_group' > [-Werror,-Wmissing-prototypes] > int rte_vfio_clear_group(int vfio_group_fd) > ^ > /home/patchWorkOrg/compilation/lib/librte_eal/bsdapp/eal/eal.c:782:30: > error: unused parameter 'vfio_group_fd' [-Werror,-Wunused-parameter] > int rte_vfio_clear_group(int vfio_group_fd) > ^ > Fixes: c564a2a20093 ("vfio: expose clear group function for internal usages") > Cc: Hemant Agrawal > > Signed-off-by: Moti Haimovsky Applied, thanks