From: Ali Alnubani <alialnu@nvidia.com>
To: <stable@dpdk.org>
Cc: <dkozlyuk@nvidia.com>
Subject: [PATCH 19.11] net/mlx5: fix netlink header path
Date: Tue, 29 Mar 2022 16:00:51 +0300 [thread overview]
Message-ID: <20220329130051.3493478-1-alialnu@nvidia.com> (raw)
Use netlink.h provided by the kernel headers instead
of adding a dependency on the headers provided by the libnl package,
which weren't being found in some cases, even with libnl-3 and
libnl-route-3 libs installed via the package manager.
Also see usage in netlink(3).
Resolves the build error:
drivers/net/mlx5/mlx5.h:15:10:
fatal error: netlink/netlink.h: No such file or directory
The error reproduces on Ubuntu 16.04/18.04/20.04, openSUSE Leap 15.3,
and CentOS 7/8. It reproduces with Make and Meson.
Fixes: 7bd18f45ed47 ("common/mlx5: add Netlink event helpers")
Cc: dkozlyuk@nvidia.com
Signed-off-by: Ali Alnubani <alialnu@nvidia.com>
---
drivers/net/mlx5/mlx5.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/mlx5/mlx5.h b/drivers/net/mlx5/mlx5.h
index 1cf5f41689..9f6b355182 100644
--- a/drivers/net/mlx5/mlx5.h
+++ b/drivers/net/mlx5/mlx5.h
@@ -12,7 +12,7 @@
#include <limits.h>
#include <net/if.h>
#include <netinet/in.h>
-#include <netlink/netlink.h>
+#include <linux/netlink.h>
#include <sys/queue.h>
/* Verbs header. */
--
2.25.1
next reply other threads:[~2022-03-29 13:01 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-29 13:00 Ali Alnubani [this message]
2022-03-31 9:51 ` Christian Ehrhardt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220329130051.3493478-1-alialnu@nvidia.com \
--to=alialnu@nvidia.com \
--cc=dkozlyuk@nvidia.com \
--cc=stable@dpdk.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).