net: force bridge module(s) to be GPL

The only valid usage for the bridge frame hooks are by a
GPL components (such as the bridge module).
The kernel should not leave a crack in the door for proprietary
networking stacks to slip in.

Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Stephen Hemminger 2009-09-11 11:50:08 -07:00 коммит произвёл David S. Miller
Родитель ffcfb8db54
Коммит 4fb019a01a
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -2116,7 +2116,7 @@ static inline int deliver_skb(struct sk_buff *skb,
/* This hook is defined here for ATM LANE */ /* This hook is defined here for ATM LANE */
int (*br_fdb_test_addr_hook)(struct net_device *dev, int (*br_fdb_test_addr_hook)(struct net_device *dev,
unsigned char *addr) __read_mostly; unsigned char *addr) __read_mostly;
EXPORT_SYMBOL(br_fdb_test_addr_hook); EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
#endif #endif
/* /*
@ -2125,7 +2125,7 @@ EXPORT_SYMBOL(br_fdb_test_addr_hook);
*/ */
struct sk_buff *(*br_handle_frame_hook)(struct net_bridge_port *p, struct sk_buff *(*br_handle_frame_hook)(struct net_bridge_port *p,
struct sk_buff *skb) __read_mostly; struct sk_buff *skb) __read_mostly;
EXPORT_SYMBOL(br_handle_frame_hook); EXPORT_SYMBOL_GPL(br_handle_frame_hook);
static inline struct sk_buff *handle_bridge(struct sk_buff *skb, static inline struct sk_buff *handle_bridge(struct sk_buff *skb,
struct packet_type **pt_prev, int *ret, struct packet_type **pt_prev, int *ret,