From patchwork Thu Jun 23 13:49:31 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 113345 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 7F68FA0093; Thu, 23 Jun 2022 15:49:55 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6D77B40A82; Thu, 23 Jun 2022 15:49:55 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id CF5C040042; Thu, 23 Jun 2022 15:49:53 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655992194; x=1687528194; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=EaLyQHQeanlzllpBi3gJc/ZPz5CGUnbywnMf9SI/5LY=; b=nboFw34IWAvoqxxsl+Uq84TNB84UFiTEzwxfPRh0jkaRivcNtwAhatEk aBEXvMjj1pVGdwG0iUVyRUUJHsTKIDIEqhkuG0G4L7k9Gzbj5hQGVsDCb 5BlTq2FUm+N6wjj69PXSQ+y74CEhBw/ClG+xXRPUqTmGjsHEm7J7TsNyk 9HrLdUoW9K5VvRAVhzGtRf+HGc8yzKI3HL9W+lcilTJ7+OEUsg18yYvmM W6cnaxvFyZqMPutsIw/rbl+n9C+6c08RXSvWZG+uVvEoB+xdteVf16CLv 4NjbYcFrEHgQUT423Pf0P67kTH1uzIwxepieMfzOamBwslcjJbbiIzP8P A==; X-IronPort-AV: E=McAfee;i="6400,9594,10386"; a="281800691" X-IronPort-AV: E=Sophos;i="5.92,216,1650956400"; d="scan'208";a="281800691" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Jun 2022 06:49:52 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,216,1650956400"; d="scan'208";a="678065767" Received: from silpixa00401385.ir.intel.com (HELO silpixa00401385.ger.corp.intel.com.) ([10.237.223.125]) by FMSMGA003.fm.intel.com with ESMTP; 23 Jun 2022 06:49:51 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson , stable@dpdk.org Subject: [PATCH 1/3] raw/ioat: fix build error for missing errno Date: Thu, 23 Jun 2022 14:49:31 +0100 Message-Id: <20220623134933.469240-2-bruce.richardson@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220623134933.469240-1-bruce.richardson@intel.com> References: <20220623134933.469240-1-bruce.richardson@intel.com> MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org The inline functions in rte_idxd_rawdev_fns.h make use of rte_errno, but the header with its definition is not included by that file leading to build errors. Fixes: f82c87eb14a4 ("raw/ioat: move idxd functions to separate file") Cc: stable@dpdk.org Signed-off-by: Bruce Richardson --- drivers/raw/ioat/rte_idxd_rawdev_fns.h | 1 + 1 file changed, 1 insertion(+) -- 2.34.1 diff --git a/drivers/raw/ioat/rte_idxd_rawdev_fns.h b/drivers/raw/ioat/rte_idxd_rawdev_fns.h index 3ea25f6ca9..a07892faa0 100644 --- a/drivers/raw/ioat/rte_idxd_rawdev_fns.h +++ b/drivers/raw/ioat/rte_idxd_rawdev_fns.h @@ -16,6 +16,7 @@ */ #include +#include /* * Defines used in the data path for interacting with IDXD hardware.