From patchwork Tue Mar 3 08:44:55 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 3818 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 4A97F5A57; Tue, 3 Mar 2015 09:45:49 +0100 (CET) Received: from mail-we0-f176.google.com (mail-we0-f176.google.com [74.125.82.176]) by dpdk.org (Postfix) with ESMTP id 98DD7595A for ; Tue, 3 Mar 2015 09:45:47 +0100 (CET) Received: by wesw55 with SMTP id w55so38298521wes.5 for ; Tue, 03 Mar 2015 00:45:47 -0800 (PST) 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:mime-version :content-type:content-transfer-encoding; bh=GrCZlcPvMUtKsWPnSAWgo/jc70+vmpUxN5RAYJr7Ah4=; b=AXXGl47Y67VTrh4+8FzMehrivmjKeJpJ8cbNMcTLdvbhUzF/TuW9I02LqoY/cHw+EK fTw4cG6X4TXUf/E/QlxMNqtYOurG1iXLEj8j+en98XSgZbLkwvDDCYDxsss0wzOOEc9O EjHeaP3Pd2Ndg2Ybfw/b8WNCc1WqwH1m+zMJEHxsoPkbDCs2fZ6ULInJlBjyq8rUHl3N garuwuNNOXpaR2werDF0R4kwKTlSJ6sDJ3ZygbgI09snIewePPl+8MXTyed1u8+JC31H duvIiGLtDLh3u6lFHjhHnat9nKuVzrKUGVowT0YXolExVB71o58WYorCtIu5Y00ejvSN tl2A== X-Gm-Message-State: ALoCoQldMYqNCn+lGrThPgWEOTKvo+8TtLxDEhFkPTq60weesl+/RDYkgYeVvuLvvG6TybsQrG18 X-Received: by 10.181.8.99 with SMTP id dj3mr43921460wid.83.1425372347472; Tue, 03 Mar 2015 00:45:47 -0800 (PST) Received: from localhost.localdomain (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id yy9sm287475wjc.20.2015.03.03.00.45.45 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 03 Mar 2015 00:45:46 -0800 (PST) From: Thomas Monjalon To: dev@dpdk.org Date: Tue, 3 Mar 2015 09:44:55 +0100 Message-Id: <1425372295-27839-1-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.2.2 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH] eal/linux: fix build 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Compilation fails in some distributions because of missing unistd.h needed for pread/pwrite (seen with Suse): lib/librte_eal/linuxapp/eal/eal_pci_uio.c:62:2: error: implicit declaration of function ‘pread’ Fixes: 4a499c649590 ("eal/linux: enable uio_pci_generic support") Signed-off-by: Thomas Monjalon Acked-by: David Marchand --- lib/librte_eal/linuxapp/eal/eal_pci_uio.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_eal/linuxapp/eal/eal_pci_uio.c b/lib/librte_eal/linuxapp/eal/eal_pci_uio.c index 35d31c5..0b397ca 100644 --- a/lib/librte_eal/linuxapp/eal/eal_pci_uio.c +++ b/lib/librte_eal/linuxapp/eal/eal_pci_uio.c @@ -32,6 +32,7 @@ */ #include +#include #include #include #include