3 * Linux ethernet bridge
6 * Lennert Buytenhek <buytenh@gnu.org>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/netdevice.h>
17 #include <linux/etherdevice.h>
18 #include <linux/init.h>
19 #include <linux/llc.h>
23 #include "br_private.h"
25 int (*br_should_route_hook
)(struct sk_buff
*skb
);
27 static const struct stp_proto br_stp_proto
= {
31 static struct pernet_operations br_net_ops
= {
35 static int __init
br_init(void)
39 err
= stp_proto_register(&br_stp_proto
);
41 printk(KERN_ERR
"bridge: can't register sap for STP\n");
49 err
= register_pernet_subsys(&br_net_ops
);
53 err
= br_netfilter_init();
57 err
= register_netdevice_notifier(&br_device_notifier
);
61 err
= br_netlink_init();
65 brioctl_set(br_ioctl_deviceless_stub
);
66 br_handle_frame_hook
= br_handle_frame
;
68 #if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE)
69 br_fdb_test_addr_hook
= br_fdb_test_addr
;
74 unregister_netdevice_notifier(&br_device_notifier
);
78 unregister_pernet_subsys(&br_net_ops
);
82 stp_proto_unregister(&br_stp_proto
);
86 static void __exit
br_deinit(void)
88 stp_proto_unregister(&br_stp_proto
);
91 unregister_netdevice_notifier(&br_device_notifier
);
94 unregister_pernet_subsys(&br_net_ops
);
96 rcu_barrier(); /* Wait for completion of call_rcu()'s */
99 #if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE)
100 br_fdb_test_addr_hook
= NULL
;
103 br_handle_frame_hook
= NULL
;
107 EXPORT_SYMBOL(br_should_route_hook
);
110 module_exit(br_deinit
)
111 MODULE_LICENSE("GPL");
112 MODULE_VERSION(BR_VERSION
);