[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20080623174906.GK4756@cs181140183.pp.htv.fi>
Date: Mon, 23 Jun 2008 20:49:06 +0300
From: Adrian Bunk <bunk@...nel.org>
To: netdev@...r.kernel.org
Subject: [2.6 patch] netdevice.h: don't export MAX_HEADER to userspace
Due to the CONFIG_'s the value is anyway not correct in userspace.
Signed-off-by: Adrian Bunk <bunk@...nel.org>
---
include/linux/netdevice.h | 4 ++++
1 file changed, 4 insertions(+)
2ac2f37cf11560e4ac858549a250ef473aed544d diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index f27fd20..25f8710 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -88,6 +88,8 @@ struct wireless_dev;
#define NETDEV_TX_BUSY 1 /* driver tx path was busy*/
#define NETDEV_TX_LOCKED -1 /* driver tx lock was already taken */
+#ifdef __KERNEL__
+
/*
* Compute the worst case header length according to the protocols
* used.
@@ -114,6 +116,8 @@ struct wireless_dev;
#define MAX_HEADER (LL_MAX_HEADER + 48)
#endif
+#endif /* __KERNEL__ */
+
struct net_device_subqueue
{
/* Give a control state for each queue. This struct may contain
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists