blob: 3d3e2d5125cb69b2900cde5d8cff5cb1c3ffa3e2 [file] [log] [blame]
Philipp Reisnerb411b362009-09-25 16:07:19 -07001/*
2 drbd_limits.h
3 This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
4*/
5
6/*
7 * Our current limitations.
8 * Some of them are hard limits,
9 * some of them are arbitrary range limits, that make it easier to provide
10 * feedback about nonsense settings for certain configurable values.
11 */
12
13#ifndef DRBD_LIMITS_H
14#define DRBD_LIMITS_H 1
15
16#define DEBUG_RANGE_CHECK 0
17
18#define DRBD_MINOR_COUNT_MIN 1
Philipp Reisner2b8a90b2011-01-10 11:15:17 +010019#define DRBD_MINOR_COUNT_MAX 256
20#define DRBD_MINOR_COUNT_DEF 32
Philipp Reisnerb411b362009-09-25 16:07:19 -070021
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +020022#define DRBD_VOLUME_MAX 65535
23
Philipp Reisnerb411b362009-09-25 16:07:19 -070024#define DRBD_DIALOG_REFRESH_MIN 0
25#define DRBD_DIALOG_REFRESH_MAX 600
26
27/* valid port number */
28#define DRBD_PORT_MIN 1
29#define DRBD_PORT_MAX 0xffff
30
31/* startup { */
32 /* if you want more than 3.4 days, disable */
33#define DRBD_WFC_TIMEOUT_MIN 0
34#define DRBD_WFC_TIMEOUT_MAX 300000
35#define DRBD_WFC_TIMEOUT_DEF 0
36
37#define DRBD_DEGR_WFC_TIMEOUT_MIN 0
38#define DRBD_DEGR_WFC_TIMEOUT_MAX 300000
39#define DRBD_DEGR_WFC_TIMEOUT_DEF 0
40
41#define DRBD_OUTDATED_WFC_TIMEOUT_MIN 0
42#define DRBD_OUTDATED_WFC_TIMEOUT_MAX 300000
43#define DRBD_OUTDATED_WFC_TIMEOUT_DEF 0
44/* }*/
45
46/* net { */
47 /* timeout, unit centi seconds
Lucas De Marchi25985ed2011-03-30 22:57:33 -030048 * more than one minute timeout is not useful */
Philipp Reisnerb411b362009-09-25 16:07:19 -070049#define DRBD_TIMEOUT_MIN 1
50#define DRBD_TIMEOUT_MAX 600
51#define DRBD_TIMEOUT_DEF 60 /* 6 seconds */
52
53 /* active connection retries when C_WF_CONNECTION */
54#define DRBD_CONNECT_INT_MIN 1
55#define DRBD_CONNECT_INT_MAX 120
56#define DRBD_CONNECT_INT_DEF 10 /* seconds */
57
58 /* keep-alive probes when idle */
59#define DRBD_PING_INT_MIN 1
60#define DRBD_PING_INT_MAX 120
61#define DRBD_PING_INT_DEF 10
62
63 /* timeout for the ping packets.*/
64#define DRBD_PING_TIMEO_MIN 1
65#define DRBD_PING_TIMEO_MAX 100
66#define DRBD_PING_TIMEO_DEF 5
67
68 /* max number of write requests between write barriers */
69#define DRBD_MAX_EPOCH_SIZE_MIN 1
70#define DRBD_MAX_EPOCH_SIZE_MAX 20000
71#define DRBD_MAX_EPOCH_SIZE_DEF 2048
72
Lucas De Marchi25985ed2011-03-30 22:57:33 -030073 /* I don't think that a tcp send buffer of more than 10M is useful */
Philipp Reisnerb411b362009-09-25 16:07:19 -070074#define DRBD_SNDBUF_SIZE_MIN 0
75#define DRBD_SNDBUF_SIZE_MAX (10<<20)
Lars Ellenberg89e18382009-09-21 10:46:22 +020076#define DRBD_SNDBUF_SIZE_DEF 0
Philipp Reisnerb411b362009-09-25 16:07:19 -070077
78#define DRBD_RCVBUF_SIZE_MIN 0
79#define DRBD_RCVBUF_SIZE_MAX (10<<20)
Lars Ellenberg89e18382009-09-21 10:46:22 +020080#define DRBD_RCVBUF_SIZE_DEF 0
Philipp Reisnerb411b362009-09-25 16:07:19 -070081
82 /* @4k PageSize -> 128kB - 512MB */
83#define DRBD_MAX_BUFFERS_MIN 32
84#define DRBD_MAX_BUFFERS_MAX 131072
85#define DRBD_MAX_BUFFERS_DEF 2048
86
87 /* @4k PageSize -> 4kB - 512MB */
88#define DRBD_UNPLUG_WATERMARK_MIN 1
89#define DRBD_UNPLUG_WATERMARK_MAX 131072
90#define DRBD_UNPLUG_WATERMARK_DEF (DRBD_MAX_BUFFERS_DEF/16)
91
92 /* 0 is disabled.
93 * 200 should be more than enough even for very short timeouts */
94#define DRBD_KO_COUNT_MIN 0
95#define DRBD_KO_COUNT_MAX 200
96#define DRBD_KO_COUNT_DEF 0
97/* } */
98
99/* syncer { */
100 /* FIXME allow rate to be zero? */
101#define DRBD_RATE_MIN 1
102/* channel bonding 10 GbE, or other hardware */
103#define DRBD_RATE_MAX (4 << 20)
104#define DRBD_RATE_DEF 250 /* kb/second */
105
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300106 /* less than 7 would hit performance unnecessarily.
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100107 * 919 slots context information per transaction,
108 * 32k activity log, 4k transaction size,
109 * one transaction in flight:
110 * 919 * 7 = 6433 */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700111#define DRBD_AL_EXTENTS_MIN 7
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100112#define DRBD_AL_EXTENTS_MAX 6433
Philipp Reisnerb411b362009-09-25 16:07:19 -0700113#define DRBD_AL_EXTENTS_DEF 127
114
115#define DRBD_AFTER_MIN -1
116#define DRBD_AFTER_MAX 255
117#define DRBD_AFTER_DEF -1
118
119/* } */
120
121/* drbdsetup XY resize -d Z
122 * you are free to reduce the device size to nothing, if you want to.
123 * the upper limit with 64bit kernel, enough ram and flexible meta data
Lars Ellenberg15b493d2011-06-28 09:48:48 +0200124 * is 1 PiB, currently. */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700125/* DRBD_MAX_SECTORS */
126#define DRBD_DISK_SIZE_SECT_MIN 0
Lars Ellenberg15b493d2011-06-28 09:48:48 +0200127#define DRBD_DISK_SIZE_SECT_MAX (1 * (2LLU << 40))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700128#define DRBD_DISK_SIZE_SECT_DEF 0 /* = disabled = no user size... */
129
Lars Ellenberga5df0e12011-02-23 12:51:43 +0100130#define DRBD_ON_IO_ERROR_DEF EP_DETACH
Philipp Reisnerb411b362009-09-25 16:07:19 -0700131#define DRBD_FENCING_DEF FP_DONT_CARE
132#define DRBD_AFTER_SB_0P_DEF ASB_DISCONNECT
133#define DRBD_AFTER_SB_1P_DEF ASB_DISCONNECT
134#define DRBD_AFTER_SB_2P_DEF ASB_DISCONNECT
135#define DRBD_RR_CONFLICT_DEF ASB_DISCONNECT
Philipp Reisner265be2d2010-05-31 10:14:17 +0200136#define DRBD_ON_NO_DATA_DEF OND_IO_ERROR
Philipp Reisner422028b2010-10-27 11:12:07 +0200137#define DRBD_ON_CONGESTION_DEF OC_BLOCK
Philipp Reisnerb411b362009-09-25 16:07:19 -0700138
139#define DRBD_MAX_BIO_BVECS_MIN 0
140#define DRBD_MAX_BIO_BVECS_MAX 128
141#define DRBD_MAX_BIO_BVECS_DEF 0
142
Philipp Reisner9a31d712010-07-05 13:42:03 +0200143#define DRBD_C_PLAN_AHEAD_MIN 0
144#define DRBD_C_PLAN_AHEAD_MAX 300
145#define DRBD_C_PLAN_AHEAD_DEF 0 /* RS rate controller disabled by default */
Philipp Reisner67c7ddd2010-05-04 11:12:00 +0200146
Philipp Reisner9a31d712010-07-05 13:42:03 +0200147#define DRBD_C_DELAY_TARGET_MIN 1
148#define DRBD_C_DELAY_TARGET_MAX 100
149#define DRBD_C_DELAY_TARGET_DEF 10
Philipp Reisner67c7ddd2010-05-04 11:12:00 +0200150
Philipp Reisner9a31d712010-07-05 13:42:03 +0200151#define DRBD_C_FILL_TARGET_MIN 0
Philipp Reisner00b42532010-10-05 11:19:39 +0200152#define DRBD_C_FILL_TARGET_MAX (1<<20) /* 500MByte in sec */
Philipp Reisner9a31d712010-07-05 13:42:03 +0200153#define DRBD_C_FILL_TARGET_DEF 0 /* By default disabled -> controlled by delay_target */
Philipp Reisner67c7ddd2010-05-04 11:12:00 +0200154
Philipp Reisner9a31d712010-07-05 13:42:03 +0200155#define DRBD_C_MAX_RATE_MIN 250 /* kByte/sec */
156#define DRBD_C_MAX_RATE_MAX (4 << 20)
157#define DRBD_C_MAX_RATE_DEF 102400
Philipp Reisner67c7ddd2010-05-04 11:12:00 +0200158
Lars Ellenberg0f0601f2010-08-11 23:40:24 +0200159#define DRBD_C_MIN_RATE_MIN 0 /* kByte/sec */
160#define DRBD_C_MIN_RATE_MAX (4 << 20)
161#define DRBD_C_MIN_RATE_DEF 4096
162
Philipp Reisner422028b2010-10-27 11:12:07 +0200163#define DRBD_CONG_FILL_MIN 0
164#define DRBD_CONG_FILL_MAX (10<<21) /* 10GByte in sectors */
165#define DRBD_CONG_FILL_DEF 0
166
167#define DRBD_CONG_EXTENTS_MIN DRBD_AL_EXTENTS_MIN
168#define DRBD_CONG_EXTENTS_MAX DRBD_AL_EXTENTS_MAX
169#define DRBD_CONG_EXTENTS_DEF DRBD_AL_EXTENTS_DEF
170
Lars Ellenbergf3990022011-03-23 14:31:09 +0100171#define DRBD_PROTOCOL_DEF DRBD_PROT_C
172
Andreas Gruenbacher7bac3e62011-05-06 17:50:57 +0200173#define DRBD_DISK_BARRIER_DEF 0
174#define DRBD_DISK_FLUSHES_DEF 1
175#define DRBD_DISK_DRAIN_DEF 1
176#define DRBD_MD_FLUSHES_DEF 1
177#define DRBD_TCP_CORK_DEF 1
178
179#define DRBD_ALLOW_TWO_PRIMARIES_DEF 0
180#define DRBD_ALWAYS_ASBP_DEF 0
181#define DRBD_USE_RLE_DEF 0
182
Philipp Reisnerb411b362009-09-25 16:07:19 -0700183#endif