sysctl.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /* sysctls for configuring RxRPC operating parameters
  2. *
  3. * Copyright (C) 2014 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public Licence
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the Licence, or (at your option) any later version.
  10. */
  11. #include <linux/sysctl.h>
  12. #include <net/sock.h>
  13. #include <net/af_rxrpc.h>
  14. #include "ar-internal.h"
  15. static struct ctl_table_header *rxrpc_sysctl_reg_table;
  16. static const unsigned int one = 1;
  17. static const unsigned int four = 4;
  18. static const unsigned int thirtytwo = 32;
  19. static const unsigned int n_65535 = 65535;
  20. static const unsigned int n_max_acks = RXRPC_RXTX_BUFF_SIZE - 1;
  21. static const unsigned long one_jiffy = 1;
  22. static const unsigned long max_jiffies = MAX_JIFFY_OFFSET;
  23. /*
  24. * RxRPC operating parameters.
  25. *
  26. * See Documentation/networking/rxrpc.txt and the variable definitions for more
  27. * information on the individual parameters.
  28. */
  29. static struct ctl_table rxrpc_sysctl_table[] = {
  30. /* Values measured in milliseconds but used in jiffies */
  31. {
  32. .procname = "req_ack_delay",
  33. .data = &rxrpc_requested_ack_delay,
  34. .maxlen = sizeof(unsigned long),
  35. .mode = 0644,
  36. .proc_handler = proc_doulongvec_ms_jiffies_minmax,
  37. .extra1 = (void *)&one_jiffy,
  38. .extra2 = (void *)&max_jiffies,
  39. },
  40. {
  41. .procname = "soft_ack_delay",
  42. .data = &rxrpc_soft_ack_delay,
  43. .maxlen = sizeof(unsigned long),
  44. .mode = 0644,
  45. .proc_handler = proc_doulongvec_ms_jiffies_minmax,
  46. .extra1 = (void *)&one_jiffy,
  47. .extra2 = (void *)&max_jiffies,
  48. },
  49. {
  50. .procname = "idle_ack_delay",
  51. .data = &rxrpc_idle_ack_delay,
  52. .maxlen = sizeof(unsigned long),
  53. .mode = 0644,
  54. .proc_handler = proc_doulongvec_ms_jiffies_minmax,
  55. .extra1 = (void *)&one_jiffy,
  56. .extra2 = (void *)&max_jiffies,
  57. },
  58. {
  59. .procname = "idle_conn_expiry",
  60. .data = &rxrpc_conn_idle_client_expiry,
  61. .maxlen = sizeof(unsigned long),
  62. .mode = 0644,
  63. .proc_handler = proc_doulongvec_ms_jiffies_minmax,
  64. .extra1 = (void *)&one_jiffy,
  65. .extra2 = (void *)&max_jiffies,
  66. },
  67. {
  68. .procname = "idle_conn_fast_expiry",
  69. .data = &rxrpc_conn_idle_client_fast_expiry,
  70. .maxlen = sizeof(unsigned long),
  71. .mode = 0644,
  72. .proc_handler = proc_doulongvec_ms_jiffies_minmax,
  73. .extra1 = (void *)&one_jiffy,
  74. .extra2 = (void *)&max_jiffies,
  75. },
  76. {
  77. .procname = "resend_timeout",
  78. .data = &rxrpc_resend_timeout,
  79. .maxlen = sizeof(unsigned long),
  80. .mode = 0644,
  81. .proc_handler = proc_doulongvec_ms_jiffies_minmax,
  82. .extra1 = (void *)&one_jiffy,
  83. .extra2 = (void *)&max_jiffies,
  84. },
  85. /* Non-time values */
  86. {
  87. .procname = "max_client_conns",
  88. .data = &rxrpc_max_client_connections,
  89. .maxlen = sizeof(unsigned int),
  90. .mode = 0644,
  91. .proc_handler = proc_dointvec_minmax,
  92. .extra1 = (void *)&rxrpc_reap_client_connections,
  93. },
  94. {
  95. .procname = "reap_client_conns",
  96. .data = &rxrpc_reap_client_connections,
  97. .maxlen = sizeof(unsigned int),
  98. .mode = 0644,
  99. .proc_handler = proc_dointvec_minmax,
  100. .extra1 = (void *)&one,
  101. .extra2 = (void *)&rxrpc_max_client_connections,
  102. },
  103. {
  104. .procname = "max_backlog",
  105. .data = &rxrpc_max_backlog,
  106. .maxlen = sizeof(unsigned int),
  107. .mode = 0644,
  108. .proc_handler = proc_dointvec_minmax,
  109. .extra1 = (void *)&four,
  110. .extra2 = (void *)&thirtytwo,
  111. },
  112. {
  113. .procname = "rx_window_size",
  114. .data = &rxrpc_rx_window_size,
  115. .maxlen = sizeof(unsigned int),
  116. .mode = 0644,
  117. .proc_handler = proc_dointvec_minmax,
  118. .extra1 = (void *)&one,
  119. .extra2 = (void *)&n_max_acks,
  120. },
  121. {
  122. .procname = "rx_mtu",
  123. .data = &rxrpc_rx_mtu,
  124. .maxlen = sizeof(unsigned int),
  125. .mode = 0644,
  126. .proc_handler = proc_dointvec_minmax,
  127. .extra1 = (void *)&one,
  128. .extra2 = (void *)&n_65535,
  129. },
  130. {
  131. .procname = "rx_jumbo_max",
  132. .data = &rxrpc_rx_jumbo_max,
  133. .maxlen = sizeof(unsigned int),
  134. .mode = 0644,
  135. .proc_handler = proc_dointvec_minmax,
  136. .extra1 = (void *)&one,
  137. .extra2 = (void *)&four,
  138. },
  139. { }
  140. };
  141. int __init rxrpc_sysctl_init(void)
  142. {
  143. rxrpc_sysctl_reg_table = register_net_sysctl(&init_net, "net/rxrpc",
  144. rxrpc_sysctl_table);
  145. if (!rxrpc_sysctl_reg_table)
  146. return -ENOMEM;
  147. return 0;
  148. }
  149. void rxrpc_sysctl_exit(void)
  150. {
  151. if (rxrpc_sysctl_reg_table)
  152. unregister_net_sysctl_table(rxrpc_sysctl_reg_table);
  153. }