sysctl_net_core.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* -*- linux-c -*-
  2.  * sysctl_net_core.c: sysctl interface to net core subsystem.
  3.  *
  4.  * Begun April 1, 1996, Mike Shaver.
  5.  * Added /proc/sys/net/core directory entry (empty =) ). [MS]
  6.  */
  7. #include <linux/mm.h>
  8. #include <linux/sysctl.h>
  9. #include <linux/config.h>
  10. #ifdef CONFIG_SYSCTL
  11. extern int netdev_max_backlog;
  12. extern int no_cong_thresh;
  13. extern int no_cong;
  14. extern int lo_cong;
  15. extern int mod_cong;
  16. extern int netdev_fastroute;
  17. extern int net_msg_cost;
  18. extern int net_msg_burst;
  19. extern __u32 sysctl_wmem_max;
  20. extern __u32 sysctl_rmem_max;
  21. extern __u32 sysctl_wmem_default;
  22. extern __u32 sysctl_rmem_default;
  23. extern int sysctl_core_destroy_delay;
  24. extern int sysctl_optmem_max;
  25. extern int sysctl_hot_list_len;
  26. #ifdef CONFIG_NET_DIVERT
  27. extern char sysctl_divert_version[];
  28. #endif /* CONFIG_NET_DIVERT */
  29. ctl_table core_table[] = {
  30. #ifdef CONFIG_NET
  31. {NET_CORE_WMEM_MAX, "wmem_max",
  32.  &sysctl_wmem_max, sizeof(int), 0644, NULL,
  33.  &proc_dointvec},
  34. {NET_CORE_RMEM_MAX, "rmem_max",
  35.  &sysctl_rmem_max, sizeof(int), 0644, NULL,
  36.  &proc_dointvec},
  37. {NET_CORE_WMEM_DEFAULT, "wmem_default",
  38.  &sysctl_wmem_default, sizeof(int), 0644, NULL,
  39.  &proc_dointvec},
  40. {NET_CORE_RMEM_DEFAULT, "rmem_default",
  41.  &sysctl_rmem_default, sizeof(int), 0644, NULL,
  42.  &proc_dointvec},
  43. {NET_CORE_MAX_BACKLOG, "netdev_max_backlog",
  44.  &netdev_max_backlog, sizeof(int), 0644, NULL,
  45.  &proc_dointvec},
  46. {NET_CORE_NO_CONG_THRESH, "no_cong_thresh",
  47.  &no_cong, sizeof(int), 0644, NULL,
  48.  &proc_dointvec},
  49. {NET_CORE_NO_CONG, "no_cong",
  50.  &no_cong, sizeof(int), 0644, NULL,
  51.  &proc_dointvec},
  52. {NET_CORE_LO_CONG, "lo_cong",
  53.  &lo_cong, sizeof(int), 0644, NULL,
  54.  &proc_dointvec},
  55. {NET_CORE_MOD_CONG, "mod_cong",
  56.  &mod_cong, sizeof(int), 0644, NULL,
  57.  &proc_dointvec},
  58. #ifdef CONFIG_NET_FASTROUTE
  59. {NET_CORE_FASTROUTE, "netdev_fastroute",
  60.  &netdev_fastroute, sizeof(int), 0644, NULL,
  61.  &proc_dointvec},
  62. #endif
  63. {NET_CORE_MSG_COST, "message_cost",
  64.  &net_msg_cost, sizeof(int), 0644, NULL,
  65.  &proc_dointvec_jiffies},
  66. {NET_CORE_MSG_BURST, "message_burst",
  67.  &net_msg_burst, sizeof(int), 0644, NULL,
  68.  &proc_dointvec_jiffies},
  69. {NET_CORE_OPTMEM_MAX, "optmem_max",
  70.  &sysctl_optmem_max, sizeof(int), 0644, NULL,
  71.  &proc_dointvec},
  72. {NET_CORE_HOT_LIST_LENGTH, "hot_list_length",
  73.  &sysctl_hot_list_len, sizeof(int), 0644, NULL,
  74.  &proc_dointvec},
  75. #ifdef CONFIG_NET_DIVERT
  76. {NET_CORE_DIVERT_VERSION, "divert_version",
  77.  (void *)sysctl_divert_version, 32, 0444, NULL,
  78.  &proc_dostring},
  79. #endif /* CONFIG_NET_DIVERT */
  80. #endif /* CONFIG_NET */
  81. { 0 }
  82. };
  83. #endif