drbd_limits.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /*
  2. drbd_limits.h
  3. This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
  4. */
  5. /*
  6. * Our current limitations.
  7. * Some of them are hard limits,
  8. * some of them are arbitrary range limits, that make it easier to provide
  9. * feedback about nonsense settings for certain configurable values.
  10. */
  11. #ifndef DRBD_LIMITS_H
  12. #define DRBD_LIMITS_H 1
  13. #define DEBUG_RANGE_CHECK 0
  14. #define DRBD_MINOR_COUNT_MIN 1
  15. #define DRBD_MINOR_COUNT_MAX 256
  16. #define DRBD_MINOR_COUNT_DEF 32
  17. #define DRBD_DIALOG_REFRESH_MIN 0
  18. #define DRBD_DIALOG_REFRESH_MAX 600
  19. /* valid port number */
  20. #define DRBD_PORT_MIN 1
  21. #define DRBD_PORT_MAX 0xffff
  22. /* startup { */
  23. /* if you want more than 3.4 days, disable */
  24. #define DRBD_WFC_TIMEOUT_MIN 0
  25. #define DRBD_WFC_TIMEOUT_MAX 300000
  26. #define DRBD_WFC_TIMEOUT_DEF 0
  27. #define DRBD_DEGR_WFC_TIMEOUT_MIN 0
  28. #define DRBD_DEGR_WFC_TIMEOUT_MAX 300000
  29. #define DRBD_DEGR_WFC_TIMEOUT_DEF 0
  30. #define DRBD_OUTDATED_WFC_TIMEOUT_MIN 0
  31. #define DRBD_OUTDATED_WFC_TIMEOUT_MAX 300000
  32. #define DRBD_OUTDATED_WFC_TIMEOUT_DEF 0
  33. /* }*/
  34. /* net { */
  35. /* timeout, unit centi seconds
  36. * more than one minute timeout is not useful */
  37. #define DRBD_TIMEOUT_MIN 1
  38. #define DRBD_TIMEOUT_MAX 600
  39. #define DRBD_TIMEOUT_DEF 60 /* 6 seconds */
  40. /* If backing disk takes longer than disk_timeout, mark the disk as failed */
  41. #define DRBD_DISK_TIMEOUT_MIN 0 /* 0 = disabled */
  42. #define DRBD_DISK_TIMEOUT_MAX 6000 /* 10 Minutes */
  43. #define DRBD_DISK_TIMEOUT_DEF 0 /* disabled */
  44. /* active connection retries when C_WF_CONNECTION */
  45. #define DRBD_CONNECT_INT_MIN 1
  46. #define DRBD_CONNECT_INT_MAX 120
  47. #define DRBD_CONNECT_INT_DEF 10 /* seconds */
  48. /* keep-alive probes when idle */
  49. #define DRBD_PING_INT_MIN 1
  50. #define DRBD_PING_INT_MAX 120
  51. #define DRBD_PING_INT_DEF 10
  52. /* timeout for the ping packets.*/
  53. #define DRBD_PING_TIMEO_MIN 1
  54. #define DRBD_PING_TIMEO_MAX 300
  55. #define DRBD_PING_TIMEO_DEF 5
  56. /* max number of write requests between write barriers */
  57. #define DRBD_MAX_EPOCH_SIZE_MIN 1
  58. #define DRBD_MAX_EPOCH_SIZE_MAX 20000
  59. #define DRBD_MAX_EPOCH_SIZE_DEF 2048
  60. /* I don't think that a tcp send buffer of more than 10M is useful */
  61. #define DRBD_SNDBUF_SIZE_MIN 0
  62. #define DRBD_SNDBUF_SIZE_MAX (10<<20)
  63. #define DRBD_SNDBUF_SIZE_DEF 0
  64. #define DRBD_RCVBUF_SIZE_MIN 0
  65. #define DRBD_RCVBUF_SIZE_MAX (10<<20)
  66. #define DRBD_RCVBUF_SIZE_DEF 0
  67. /* @4k PageSize -> 128kB - 512MB */
  68. #define DRBD_MAX_BUFFERS_MIN 32
  69. #define DRBD_MAX_BUFFERS_MAX 131072
  70. #define DRBD_MAX_BUFFERS_DEF 2048
  71. /* @4k PageSize -> 4kB - 512MB */
  72. #define DRBD_UNPLUG_WATERMARK_MIN 1
  73. #define DRBD_UNPLUG_WATERMARK_MAX 131072
  74. #define DRBD_UNPLUG_WATERMARK_DEF (DRBD_MAX_BUFFERS_DEF/16)
  75. /* 0 is disabled.
  76. * 200 should be more than enough even for very short timeouts */
  77. #define DRBD_KO_COUNT_MIN 0
  78. #define DRBD_KO_COUNT_MAX 200
  79. #define DRBD_KO_COUNT_DEF 0
  80. /* } */
  81. /* syncer { */
  82. /* FIXME allow rate to be zero? */
  83. #define DRBD_RATE_MIN 1
  84. /* channel bonding 10 GbE, or other hardware */
  85. #define DRBD_RATE_MAX (4 << 20)
  86. #define DRBD_RATE_DEF 250 /* kb/second */
  87. /* less than 7 would hit performance unnecessarily.
  88. * 3833 is the largest prime that still does fit
  89. * into 64 sectors of activity log */
  90. #define DRBD_AL_EXTENTS_MIN 7
  91. #define DRBD_AL_EXTENTS_MAX 3833
  92. #define DRBD_AL_EXTENTS_DEF 127
  93. #define DRBD_AFTER_MIN -1
  94. #define DRBD_AFTER_MAX 255
  95. #define DRBD_AFTER_DEF -1
  96. /* } */
  97. /* drbdsetup XY resize -d Z
  98. * you are free to reduce the device size to nothing, if you want to.
  99. * the upper limit with 64bit kernel, enough ram and flexible meta data
  100. * is 1 PiB, currently. */
  101. /* DRBD_MAX_SECTORS */
  102. #define DRBD_DISK_SIZE_SECT_MIN 0
  103. #define DRBD_DISK_SIZE_SECT_MAX (1 * (2LLU << 40))
  104. #define DRBD_DISK_SIZE_SECT_DEF 0 /* = disabled = no user size... */
  105. #define DRBD_ON_IO_ERROR_DEF EP_PASS_ON
  106. #define DRBD_FENCING_DEF FP_DONT_CARE
  107. #define DRBD_AFTER_SB_0P_DEF ASB_DISCONNECT
  108. #define DRBD_AFTER_SB_1P_DEF ASB_DISCONNECT
  109. #define DRBD_AFTER_SB_2P_DEF ASB_DISCONNECT
  110. #define DRBD_RR_CONFLICT_DEF ASB_DISCONNECT
  111. #define DRBD_ON_NO_DATA_DEF OND_IO_ERROR
  112. #define DRBD_ON_CONGESTION_DEF OC_BLOCK
  113. #define DRBD_MAX_BIO_BVECS_MIN 0
  114. #define DRBD_MAX_BIO_BVECS_MAX 128
  115. #define DRBD_MAX_BIO_BVECS_DEF 0
  116. #define DRBD_C_PLAN_AHEAD_MIN 0
  117. #define DRBD_C_PLAN_AHEAD_MAX 300
  118. #define DRBD_C_PLAN_AHEAD_DEF 0 /* RS rate controller disabled by default */
  119. #define DRBD_C_DELAY_TARGET_MIN 1
  120. #define DRBD_C_DELAY_TARGET_MAX 100
  121. #define DRBD_C_DELAY_TARGET_DEF 10
  122. #define DRBD_C_FILL_TARGET_MIN 0
  123. #define DRBD_C_FILL_TARGET_MAX (1<<20) /* 500MByte in sec */
  124. #define DRBD_C_FILL_TARGET_DEF 0 /* By default disabled -> controlled by delay_target */
  125. #define DRBD_C_MAX_RATE_MIN 250 /* kByte/sec */
  126. #define DRBD_C_MAX_RATE_MAX (4 << 20)
  127. #define DRBD_C_MAX_RATE_DEF 102400
  128. #define DRBD_C_MIN_RATE_MIN 0 /* kByte/sec */
  129. #define DRBD_C_MIN_RATE_MAX (4 << 20)
  130. #define DRBD_C_MIN_RATE_DEF 4096
  131. #define DRBD_CONG_FILL_MIN 0
  132. #define DRBD_CONG_FILL_MAX (10<<21) /* 10GByte in sectors */
  133. #define DRBD_CONG_FILL_DEF 0
  134. #define DRBD_CONG_EXTENTS_MIN DRBD_AL_EXTENTS_MIN
  135. #define DRBD_CONG_EXTENTS_MAX DRBD_AL_EXTENTS_MAX
  136. #define DRBD_CONG_EXTENTS_DEF DRBD_AL_EXTENTS_DEF
  137. #undef RANGE
  138. #endif