From patchwork Fri Aug 4 10:12:27 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 27433 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 7CE0B2C19; Fri, 4 Aug 2017 12:12:51 +0200 (CEST) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id F16962BC9 for ; Fri, 4 Aug 2017 12:12:49 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id A55CF20976; Fri, 4 Aug 2017 06:12:49 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Fri, 04 Aug 2017 06:12:49 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:date:from:message-id:subject:to:x-me-sender:x-me-sender :x-sasl-enc:x-sasl-enc; s=mesmtp; bh=OBQJj0bDul/OzbAT+MTo1jVHkxs FnVoS+2m7Mzpy898=; b=VQbmOoC+jZ7VHq2zxHikzJkZ3GekexXHNs21MKroYDi niTUZXE0Bww7K8hAcUY+skkNdCZOM54BA3ogTAxQCRY6AF5trY1gP4qg7cjJ87au b0okyc+8tw39L/CMXLxjHSkQAit/CKeIFHDM5Zr84ADeGyzEn+s9Egdu5wgO3tR4 = DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:message-id:subject:to :x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s=fm1; bh=OBQJj0 bDul/OzbAT+MTo1jVHkxsFnVoS+2m7Mzpy898=; b=If7v06kdg7eHeWpBllnnjz x7Y12u/2FFThWMWAVknTlpH8DiWFwc1RRoSfI5RgK7fyIPrRXWzM7XxNyESY/fVY XZhYgxpR06jmp8FdrF69C99n6iBM2HE66p9gBfkEKawyY7K24YmJUa+HnOpWuGvD 3qA2JtQ1nfjJ0Xxsw1LgY7ZIaItzNYXYthW0sJEYyOVQA4TcVSdssbgiIEDZVOhe CR9J5x9KbOvMMjH7q7XexOV7MqPeX1p5w+zhkMTxttyCn4oRzSWL9wQsIQRL2TQk EtUihcGjENZl13Dck/LGmVtVPpIANGsQGZ0ElJ0pT5F1LEjshr0Q3nUW/od5CzSQ == X-ME-Sender: X-Sasl-enc: 775RDhVqzZMb1zG1hnaQERwSdq5oCPIxOUjpkri33Axp 1501841568 Received: from xps.monjalon.net (159.16.90.92.rev.sfr.net [92.90.16.159]) by mail.messagingengine.com (Postfix) with ESMTPA id 301A17E4A9; Fri, 4 Aug 2017 06:12:46 -0400 (EDT) From: Thomas Monjalon To: jiayu.hu@intel.com Cc: dev@dpdk.org Date: Fri, 4 Aug 2017 12:12:27 +0200 Message-Id: <20170804101227.3698-1-thomas@monjalon.net> X-Mailer: git-send-email 2.13.2 Subject: [dpdk-dev] [PATCH] gro: fix missing includes 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" The GRO header file depends on stdint and mbuf. Spotted with devtools/check-includes.sh Fixes: e996506a1c07 ("lib/gro: add Generic Receive Offload API framework") Signed-off-by: Thomas Monjalon Acked-by: John McNamara --- lib/librte_gro/rte_gro.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/librte_gro/rte_gro.h b/lib/librte_gro/rte_gro.h index 69721a9c0..d57e0c5f9 100644 --- a/lib/librte_gro/rte_gro.h +++ b/lib/librte_gro/rte_gro.h @@ -38,6 +38,9 @@ * Interface to GRO library */ +#include +#include + #ifdef __cplusplus extern "C" { #endif