20380731bc
Of this type, mostly: CHECK net/ipv6/netfilter.c net/ipv6/netfilter.c:96:12: warning: symbol 'ipv6_netfilter_init' was not declared. Should it be static? net/ipv6/netfilter.c:101:6: warning: symbol 'ipv6_netfilter_fini' was not declared. Should it be static? Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com> Signed-off-by: David S. Miller <davem@davemloft.net>
13 lines
441 B
C
13 lines
441 B
C
#ifndef _NET_P8022_H
|
|
#define _NET_P8022_H
|
|
extern struct datalink_proto *
|
|
register_8022_client(unsigned char type,
|
|
int (*func)(struct sk_buff *skb,
|
|
struct net_device *dev,
|
|
struct packet_type *pt,
|
|
struct net_device *orig_dev));
|
|
extern void unregister_8022_client(struct datalink_proto *proto);
|
|
|
|
extern struct datalink_proto *make_8023_client(void);
|
|
extern void destroy_8023_client(struct datalink_proto *dl);
|
|
#endif
|