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>
22 #include "br_private.h"
24 int (*br_should_route_hook
)(struct sk_buff
*skb
);
26 static struct llc_sap
*br_stp_sap
;
28 static int __init
br_init(void)
32 br_stp_sap
= llc_sap_open(LLC_SAP_BSPAN
, br_stp_rcv
);
34 printk(KERN_ERR
"bridge: can't register sap for STP\n");
42 err
= br_netfilter_init();
46 err
= register_netdevice_notifier(&br_device_notifier
);
50 err
= br_netlink_init();
54 brioctl_set(br_ioctl_deviceless_stub
);
55 br_handle_frame_hook
= br_handle_frame
;
57 br_fdb_get_hook
= br_fdb_get
;
58 br_fdb_put_hook
= br_fdb_put
;
62 unregister_netdevice_notifier(&br_device_notifier
);
68 llc_sap_put(br_stp_sap
);
72 static void __exit
br_deinit(void)
74 rcu_assign_pointer(br_stp_sap
->rcv_func
, NULL
);
77 unregister_netdevice_notifier(&br_device_notifier
);
85 llc_sap_put(br_stp_sap
);
86 br_fdb_get_hook
= NULL
;
87 br_fdb_put_hook
= NULL
;
89 br_handle_frame_hook
= NULL
;
93 EXPORT_SYMBOL(br_should_route_hook
);
96 module_exit(br_deinit
)
97 MODULE_LICENSE("GPL");
98 MODULE_VERSION(BR_VERSION
);