From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adrien Mazarguil Subject: [PATCH v3 01/14] crypto/scheduler: fix missing includes Date: Wed, 26 Apr 2017 14:07:09 +0200 Message-ID: <34b66837bcf7cfa0ceee4a5972c1844236d10979.1493208189.git.adrien.mazarguil@6wind.com> References: To: dev@dpdk.org Return-path: Received: from mail-wr0-f180.google.com (mail-wr0-f180.google.com [209.85.128.180]) by dpdk.org (Postfix) with ESMTP id A66BE2C50 for ; Wed, 26 Apr 2017 14:07:35 +0200 (CEST) Received: by mail-wr0-f180.google.com with SMTP id l9so22187131wre.1 for ; Wed, 26 Apr 2017 05:07:35 -0700 (PDT) Received: from 6wind.com (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id u76sm51008wrb.27.2017.04.26.05.07.33 for (version=TLS1_2 cipher=AES128-SHA bits=128/128); Wed, 26 Apr 2017 05:07:33 -0700 (PDT) In-Reply-To: List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This commit addresses the following compilation errors: In file included from build/include/rte_cryptodev_scheduler.h:37:0, from /tmp/check-includes.sh.5355.c:1: build/include/rte_cryptodev_scheduler_operations.h:43:30: error: unknown type name 'uint8_t' struct rte_cryptodev *dev, uint8_t slave_id); [...] Fixes: 097ab0bac017 ("crypto/scheduler: add API") Signed-off-by: Adrien Mazarguil Acked-by: Fan Zhang --- drivers/crypto/scheduler/rte_cryptodev_scheduler.h | 1 + drivers/crypto/scheduler/rte_cryptodev_scheduler_operations.h | 1 + 2 files changed, 2 insertions(+) diff --git a/drivers/crypto/scheduler/rte_cryptodev_scheduler.h b/drivers/crypto/scheduler/rte_cryptodev_scheduler.h index 7a34d0a..2ba6e47 100644 --- a/drivers/crypto/scheduler/rte_cryptodev_scheduler.h +++ b/drivers/crypto/scheduler/rte_cryptodev_scheduler.h @@ -46,6 +46,7 @@ * operation: round robin, packet-size based, and fail-over. */ +#include #include "rte_cryptodev_scheduler_operations.h" #ifdef __cplusplus diff --git a/drivers/crypto/scheduler/rte_cryptodev_scheduler_operations.h b/drivers/crypto/scheduler/rte_cryptodev_scheduler_operations.h index 42fe9e6..719165c 100644 --- a/drivers/crypto/scheduler/rte_cryptodev_scheduler_operations.h +++ b/drivers/crypto/scheduler/rte_cryptodev_scheduler_operations.h @@ -34,6 +34,7 @@ #ifndef _RTE_CRYPTO_SCHEDULER_OPERATIONS_H #define _RTE_CRYPTO_SCHEDULER_OPERATIONS_H +#include #ifdef __cplusplus extern "C" { -- 2.1.4