From: Bruce Richardson Date: Thu, 23 Jun 2022 13:49:31 +0000 (+0100) Subject: raw/ioat: fix build missing errno include X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=dd51b7bd66f4994ca50ba071f2b70dc18eed59a1;p=dpdk.git raw/ioat: fix build missing errno include 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 --- 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.