From patchwork Wed May 24 16:16:40 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Ga=C3=ABtan_Rivet?= X-Patchwork-Id: 24563 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 ED2949963; Wed, 24 May 2017 18:17:28 +0200 (CEST) Received: from mail-wm0-f43.google.com (mail-wm0-f43.google.com [74.125.82.43]) by dpdk.org (Postfix) with ESMTP id 05EC2913D for ; Wed, 24 May 2017 18:17:05 +0200 (CEST) Received: by mail-wm0-f43.google.com with SMTP id 123so28283620wmg.1 for ; Wed, 24 May 2017 09:17:05 -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:in-reply-to:references :in-reply-to:references; bh=6L+W/KKm2P272EXaTVPPu8Ar99QgLTg0hnhV7jG7OXo=; b=JOYHjNaZ4qR3vxyruzjYS2R6/ytxbRpzrwFskqhczLU2QWai2z+l3hfbizsPJZ7KJm NmG5WyF1IVxju0+XwACsc5Niku7c0tc+tyVlCMlx/7s6EABjAC6sQ76JWGR8AeHfy6jL vGuanqR24aic2lrjPWrGhuaLfN2tSffhGp9EoYSlKUa7PrsE5tnyuV7iiUrCabHyGLje dmFvVImvnRETyh27pQWNYgkKYm0FLFGxylxyDhYYUtbo1lMNhSbXUpV8kDpNAMhpDOHc dd807y3NjuK7mZ8GIncycETlsFp6HSRfvUOI/AzleQPYhfzG0a4FCbamfqM/oo3rzKs2 7ZBw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:in-reply-to:references; bh=6L+W/KKm2P272EXaTVPPu8Ar99QgLTg0hnhV7jG7OXo=; b=Md4eNElE3D9vXrQuEee1QfVprWMwpHXYOWdaRPAIN4K/FcOeIUjumpYonTv7Bhy8GR sNxQ7pJ3kJWukYVezaFKBFnbIFXKr0T0DORdtPYSD8gM5XAA7nfkqiTfqNiSKwQ3BJ67 lxJUA+gMnTn1LJeGcHSf+RY12B2cF7o//+tYyzxfxEPg0vxlmWp3cg5J9C9ePZGBNbBM DMO6v3eFapnRSn48p0capGzXGB4PD7FHsKOu4I5PqtEOinEJdwG5xqioBUso+LonEpMl 3dEVY7HngCyWrm2AggJ4bBVSBlBfr8cxCT5V5vSSahhim08QnXxoVdw3QQ0UHlobOSzK KxIg== X-Gm-Message-State: AODbwcCmgy1R/EqWZKwZGJjmQGPEqkpeAyJUt6vPmxwbEHeCUnQ2A6bn JylPDEfIbKj3DCq+qMc= X-Received: by 10.28.29.205 with SMTP id d196mr6564750wmd.30.1495642625196; Wed, 24 May 2017 09:17:05 -0700 (PDT) Received: from bidouze.dev.6wind.com (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id 17sm5816909wml.32.2017.05.24.09.17.04 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 24 May 2017 09:17:04 -0700 (PDT) From: Gaetan Rivet To: dev@dpdk.org Cc: Gaetan Rivet Date: Wed, 24 May 2017 18:16:40 +0200 Message-Id: X-Mailer: git-send-email 2.1.4 In-Reply-To: References: In-Reply-To: References: Subject: [dpdk-dev] [PATCH v2 05/14] net/ixgbe: properly reference PCI header 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" From: Gaetan Rivet Signed-off-by: Gaetan Rivet --- drivers/net/ixgbe/ixgbe_ethdev.h | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/ixgbe/ixgbe_ethdev.h b/drivers/net/ixgbe/ixgbe_ethdev.h index b576a6f..fc39a3e 100644 --- a/drivers/net/ixgbe/ixgbe_ethdev.h +++ b/drivers/net/ixgbe/ixgbe_ethdev.h @@ -39,6 +39,7 @@ #include "ixgbe_bypass.h" #include #include +#include /* need update link, bit flag */ #define IXGBE_FLAG_NEED_LINK_UPDATE (uint32_t)(1 << 0)