patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / net / bridge / br.c
1 /*
2  *      Generic parts
3  *      Linux ethernet bridge
4  *
5  *      Authors:
6  *      Lennert Buytenhek               <buytenh@gnu.org>
7  *
8  *      $Id: br.c,v 1.47 2001/12/24 00:56:41 davem Exp $
9  *
10  *      This program is free software; you can redistribute it and/or
11  *      modify it under the terms of the GNU General Public License
12  *      as published by the Free Software Foundation; either version
13  *      2 of the License, or (at your option) any later version.
14  */
15
16 #include <linux/config.h>
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/miscdevice.h>
20 #include <linux/netdevice.h>
21 #include <linux/etherdevice.h>
22 #include <linux/init.h>
23
24 #include "br_private.h"
25
26 #if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE)
27 #include "../atm/lec.h"
28 #endif
29
30 int (*br_should_route_hook) (struct sk_buff **pskb) = NULL;
31
32 static int __init br_init(void)
33 {
34         br_fdb_init();
35
36         br_sysfs_init();
37
38 #ifdef CONFIG_BRIDGE_NETFILTER
39         if (br_netfilter_init())
40                 return 1;
41 #endif
42         brioctl_set(br_ioctl_deviceless_stub);
43         br_handle_frame_hook = br_handle_frame;
44
45 #if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE)
46         br_fdb_get_hook = br_fdb_get;
47         br_fdb_put_hook = br_fdb_put;
48 #endif
49         register_netdevice_notifier(&br_device_notifier);
50
51         return 0;
52 }
53
54 static void __exit br_deinit(void)
55 {
56 #ifdef CONFIG_BRIDGE_NETFILTER
57         br_netfilter_fini();
58 #endif
59         unregister_netdevice_notifier(&br_device_notifier);
60         brioctl_set(NULL);
61
62         br_cleanup_bridges();
63
64         synchronize_net();
65
66 #if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE)
67         br_fdb_get_hook = NULL;
68         br_fdb_put_hook = NULL;
69 #endif
70
71         br_handle_frame_hook = NULL;
72         br_sysfs_fini();
73         br_fdb_fini();
74 }
75
76 EXPORT_SYMBOL(br_should_route_hook);
77
78 module_init(br_init)
79 module_exit(br_deinit)
80 MODULE_LICENSE("GPL");