]> git.droids-corp.org - dpdk.git/commitdiff
event/dlb: fix header includes for musl
authorThomas Monjalon <thomas@monjalon.net>
Fri, 19 Mar 2021 09:20:42 +0000 (10:20 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 23 Mar 2021 07:41:05 +0000 (08:41 +0100)
The header file fcntl.h should not be included from sys/ directory
as done in dlb drivers, it is an error with musl libc.

Fixes: 19980083fd57 ("event/dlb: add eventdev probe")
Fixes: 5433956d5185 ("event/dlb2: add eventdev probe")
Cc: stable@dpdk.org
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
Acked-by: David Marchand <david.marchand@redhat.com>
Acked-by: Timothy McDaniel <timothy.mcdaniel@intel.com>
drivers/event/dlb/dlb.c
drivers/event/dlb/pf/dlb_pf.c
drivers/event/dlb2/dlb2.c
drivers/event/dlb2/pf/dlb2_pf.c

index 1174ab3d2b4370b786ecb0651839425a75c9aee9..60084ced3b3982477f7f22a1cb5b99395ce17169 100644 (file)
@@ -10,7 +10,7 @@
 #include <stdint.h>
 #include <stdio.h>
 #include <string.h>
-#include <sys/fcntl.h>
+#include <fcntl.h>
 #include <sys/mman.h>
 #include <unistd.h>
 
index 2f7e30abbdb7ca9067c29beea7c2428d38c5f73f..5445c2d57d18611d2de2e31490d8fe3781a1f160 100644 (file)
@@ -6,12 +6,13 @@
 #include <stdbool.h>
 #include <stdio.h>
 #include <sys/mman.h>
-#include <sys/fcntl.h>
+#include <fcntl.h>
 #include <sys/time.h>
 #include <errno.h>
 #include <assert.h>
 #include <unistd.h>
 #include <string.h>
+
 #include <rte_debug.h>
 #include <rte_log.h>
 #include <rte_dev.h>
index b28ec58bfbf88022d582a5be788f4a0dc47dcaf8..fb5ff012a4a19aebfe78cfdcbde847289801e9e4 100644 (file)
@@ -11,7 +11,7 @@
 #include <stdio.h>
 #include <string.h>
 #include <sys/mman.h>
-#include <sys/fcntl.h>
+#include <fcntl.h>
 
 #include <rte_common.h>
 #include <rte_config.h>
index 1142da5b25d80332d53998cbe4af25c6c14c4cda..cfb22efe8ae4a4e6494c2c63c527062dc3bccbad 100644 (file)
@@ -6,12 +6,13 @@
 #include <stdbool.h>
 #include <stdio.h>
 #include <sys/mman.h>
-#include <sys/fcntl.h>
+#include <fcntl.h>
 #include <sys/time.h>
 #include <errno.h>
 #include <assert.h>
 #include <unistd.h>
 #include <string.h>
+
 #include <rte_debug.h>
 #include <rte_log.h>
 #include <rte_dev.h>