[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20160622223500.577569178@linuxfoundation.org>
Date: Wed, 22 Jun 2016 15:40:32 -0700
From: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
To: linux-kernel@...r.kernel.org
Cc: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
stable@...r.kernel.org, Jan Engelhardt <jengelh@...i.de>,
Josh Boyer <jwboyer@...oraproject.org>,
Stephen Hemminger <shemming@...cade.com>,
Waldemar Brodkorb <mail@...demar-brodkorb.de>,
Gabriel Laskar <gabriel@....epita.fr>,
Mikko Rapeli <mikko.rapeli@....fi>,
Nicolas Dichtel <nicolas.dichtel@...nd.com>,
"David S. Miller" <davem@...emloft.net>
Subject: [PATCH 4.4 10/75] uapi glibc compat: fix compilation when !__USE_MISC in glibc
4.4-stable review patch. If anyone has any objections, please let me know.
------------------
From: Nicolas Dichtel <nicolas.dichtel@...nd.com>
[ Upstream commit f0a3fdca794d1e68ae284ef4caefe681f7c18e89 ]
These structures are defined only if __USE_MISC is set in glibc net/if.h
headers, ie when _BSD_SOURCE or _SVID_SOURCE are defined.
CC: Jan Engelhardt <jengelh@...i.de>
CC: Josh Boyer <jwboyer@...oraproject.org>
CC: Stephen Hemminger <shemming@...cade.com>
CC: Waldemar Brodkorb <mail@...demar-brodkorb.de>
CC: Gabriel Laskar <gabriel@....epita.fr>
CC: Mikko Rapeli <mikko.rapeli@....fi>
Fixes: 4a91cb61bb99 ("uapi glibc compat: fix compile errors when glibc net/if.h included before linux/if.h")
Signed-off-by: Nicolas Dichtel <nicolas.dichtel@...nd.com>
Signed-off-by: David S. Miller <davem@...emloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
---
include/uapi/linux/libc-compat.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/include/uapi/linux/libc-compat.h
+++ b/include/uapi/linux/libc-compat.h
@@ -52,7 +52,7 @@
#if defined(__GLIBC__)
/* Coordinate with glibc net/if.h header. */
-#if defined(_NET_IF_H)
+#if defined(_NET_IF_H) && defined(__USE_MISC)
/* GLIBC headers included first so don't define anything
* that would already be defined. */
Powered by blists - more mailing lists