From: Hoang Le Date: Wed, 13 Jun 2018 04:09:56 +0000 (+0700) Subject: rdma: sync some IP headers with glibc X-Git-Tag: v4.18.0~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5887ff0922a06d978d3271df9f01fcb04fadc75f;p=thirdparty%2Fiproute2.git rdma: sync some IP headers with glibc In the commit 9a362cc71a45, new userspace header: (i.e rdma/rdma_user_cm.h -> linux/in6.h) is included before the kernel space header: (i.e utils.h -> resolv.h -> netinet/in.h). This leads to unsynchronous some IP headers and compiler got failure with error: redefinition of some structs IP. In this commit, just reorder this including to make them in-sync. Signed-off-by: Hoang Le Acked-by: Leon Romanovsky Signed-off-by: Stephen Hemminger --- diff --git a/rdma/rdma.h b/rdma/rdma.h index fcaf9e69e..d4b7ba191 100644 --- a/rdma/rdma.h +++ b/rdma/rdma.h @@ -15,6 +15,7 @@ #include #include #include +#include #include #include #include