7f7ccdd495fd9c7a8d60cdbb23ed30475932c3bc
[linux-flexiantxendom0-3.2.10.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 #include <linux/if_bridge.h>
24 #include <asm/uaccess.h>
25 #include "br_private.h"
26
27 #if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE)
28 #include "../atm/lec.h"
29 #endif
30
31 int (*br_should_route_hook) (struct sk_buff **pskb) = NULL;
32
33 static int __init br_init(void)
34 {
35         printk(KERN_INFO "NET4: Ethernet Bridge 008 for NET4.0\n");
36
37 #ifdef CONFIG_NETFILTER
38         if (br_netfilter_init())
39                 return 1;
40 #endif
41         brioctl_set(br_ioctl_deviceless_stub);
42         br_handle_frame_hook = br_handle_frame;
43
44 #if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE)
45         br_fdb_get_hook = br_fdb_get;
46         br_fdb_put_hook = br_fdb_put;
47 #endif
48         register_netdevice_notifier(&br_device_notifier);
49
50         return 0;
51 }
52
53 static void __exit br_deinit(void)
54 {
55 #ifdef CONFIG_NETFILTER
56         br_netfilter_fini();
57 #endif
58         unregister_netdevice_notifier(&br_device_notifier);
59         brioctl_set(NULL);
60         br_handle_frame_hook = NULL;
61
62 #if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE)
63         br_fdb_get_hook = NULL;
64         br_fdb_put_hook = NULL;
65 #endif
66
67         br_cleanup_bridges();
68
69         synchronize_net();
70 }
71
72 EXPORT_SYMBOL(br_should_route_hook);
73
74 module_init(br_init)
75 module_exit(br_deinit)
76 MODULE_LICENSE("GPL");