br.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Generic parts
  3.  * Linux ethernet bridge
  4.  *
  5.  * Authors:
  6.  * Lennert Buytenhek <buytenh@gnu.org>
  7.  *
  8.  * $Id: br.c,v 1.46.2.1 2001/12/24 00:56:13 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. #include <linux/config.h>
  16. #include <linux/module.h>
  17. #include <linux/kernel.h>
  18. #include <linux/miscdevice.h>
  19. #include <linux/netdevice.h>
  20. #include <linux/etherdevice.h>
  21. #include <linux/init.h>
  22. #include <linux/if_bridge.h>
  23. #include <linux/brlock.h>
  24. #include <asm/uaccess.h>
  25. #include "br_private.h"
  26. #if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE)
  27. #include "../atm/lec.h"
  28. #endif
  29. void br_dec_use_count()
  30. {
  31. MOD_DEC_USE_COUNT;
  32. }
  33. void br_inc_use_count()
  34. {
  35. MOD_INC_USE_COUNT;
  36. }
  37. static int __init br_init(void)
  38. {
  39. printk(KERN_INFO "NET4: Ethernet Bridge 008 for NET4.0n");
  40. br_handle_frame_hook = br_handle_frame;
  41. br_ioctl_hook = br_ioctl_deviceless_stub;
  42. #if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE)
  43. br_fdb_get_hook = br_fdb_get;
  44. br_fdb_put_hook = br_fdb_put;
  45. #endif
  46. register_netdevice_notifier(&br_device_notifier);
  47. return 0;
  48. }
  49. static void __br_clear_ioctl_hook(void)
  50. {
  51. br_ioctl_hook = NULL;
  52. }
  53. static void __exit br_deinit(void)
  54. {
  55. unregister_netdevice_notifier(&br_device_notifier);
  56. br_call_ioctl_atomic(__br_clear_ioctl_hook);
  57. br_write_lock_bh(BR_NETPROTO_LOCK);
  58. br_handle_frame_hook = NULL;
  59. br_write_unlock_bh(BR_NETPROTO_LOCK);
  60. #if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE)
  61. br_fdb_get_hook = NULL;
  62. br_fdb_put_hook = NULL;
  63. #endif
  64. }
  65. EXPORT_NO_SYMBOLS;
  66. module_init(br_init)
  67. module_exit(br_deinit)
  68. MODULE_LICENSE("GPL");