blob: 9e33f7038beaa3a5d6f74b96e3f7bb2db750476e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002/*
3 drbd_limits.h
4 This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
5*/
6
7/*
8 * Our current limitations.
9 * Some of them are hard limits,
10 * some of them are arbitrary range limits, that make it easier to provide
11 * feedback about nonsense settings for certain configurable values.
12 */
13
14#ifndef DRBD_LIMITS_H
15#define DRBD_LIMITS_H 1
16
17#define DEBUG_RANGE_CHECK 0
18
19#define DRBD_MINOR_COUNT_MIN 1
Philipp Reisnerb80c0432011-07-18 11:09:17 +020020#define DRBD_MINOR_COUNT_MAX 255
Philipp Reisner2b8a90b2011-01-10 11:15:17 +010021#define DRBD_MINOR_COUNT_DEF 32
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +020022#define DRBD_MINOR_COUNT_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -070023
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +020024#define DRBD_VOLUME_MAX 65535
25
Philipp Reisnerb411b362009-09-25 16:07:19 -070026#define DRBD_DIALOG_REFRESH_MIN 0
27#define DRBD_DIALOG_REFRESH_MAX 600
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +020028#define DRBD_DIALOG_REFRESH_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -070029
30/* valid port number */
31#define DRBD_PORT_MIN 1
32#define DRBD_PORT_MAX 0xffff
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +020033#define DRBD_PORT_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -070034
35/* startup { */
36 /* if you want more than 3.4 days, disable */
37#define DRBD_WFC_TIMEOUT_MIN 0
38#define DRBD_WFC_TIMEOUT_MAX 300000
39#define DRBD_WFC_TIMEOUT_DEF 0
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +020040#define DRBD_WFC_TIMEOUT_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -070041
42#define DRBD_DEGR_WFC_TIMEOUT_MIN 0
43#define DRBD_DEGR_WFC_TIMEOUT_MAX 300000
44#define DRBD_DEGR_WFC_TIMEOUT_DEF 0
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +020045#define DRBD_DEGR_WFC_TIMEOUT_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -070046
47#define DRBD_OUTDATED_WFC_TIMEOUT_MIN 0
48#define DRBD_OUTDATED_WFC_TIMEOUT_MAX 300000
49#define DRBD_OUTDATED_WFC_TIMEOUT_DEF 0
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +020050#define DRBD_OUTDATED_WFC_TIMEOUT_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -070051/* }*/
52
53/* net { */
54 /* timeout, unit centi seconds
Lucas De Marchi25985ed2011-03-30 22:57:33 -030055 * more than one minute timeout is not useful */
Philipp Reisnerb411b362009-09-25 16:07:19 -070056#define DRBD_TIMEOUT_MIN 1
57#define DRBD_TIMEOUT_MAX 600
58#define DRBD_TIMEOUT_DEF 60 /* 6 seconds */
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +020059#define DRBD_TIMEOUT_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -070060
Philipp Reisnercdfda632011-07-05 15:38:59 +020061 /* If backing disk takes longer than disk_timeout, mark the disk as failed */
62#define DRBD_DISK_TIMEOUT_MIN 0 /* 0 = disabled */
63#define DRBD_DISK_TIMEOUT_MAX 6000 /* 10 Minutes */
64#define DRBD_DISK_TIMEOUT_DEF 0 /* disabled */
65#define DRBD_DISK_TIMEOUT_SCALE '1'
66
Philipp Reisnerb411b362009-09-25 16:07:19 -070067 /* active connection retries when C_WF_CONNECTION */
68#define DRBD_CONNECT_INT_MIN 1
69#define DRBD_CONNECT_INT_MAX 120
70#define DRBD_CONNECT_INT_DEF 10 /* seconds */
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +020071#define DRBD_CONNECT_INT_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -070072
73 /* keep-alive probes when idle */
74#define DRBD_PING_INT_MIN 1
75#define DRBD_PING_INT_MAX 120
76#define DRBD_PING_INT_DEF 10
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +020077#define DRBD_PING_INT_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -070078
79 /* timeout for the ping packets.*/
80#define DRBD_PING_TIMEO_MIN 1
Lars Ellenbergf03c2542011-06-20 22:21:19 +020081#define DRBD_PING_TIMEO_MAX 300
Philipp Reisnerb411b362009-09-25 16:07:19 -070082#define DRBD_PING_TIMEO_DEF 5
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +020083#define DRBD_PING_TIMEO_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -070084
85 /* max number of write requests between write barriers */
86#define DRBD_MAX_EPOCH_SIZE_MIN 1
87#define DRBD_MAX_EPOCH_SIZE_MAX 20000
88#define DRBD_MAX_EPOCH_SIZE_DEF 2048
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +020089#define DRBD_MAX_EPOCH_SIZE_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -070090
Lucas De Marchi25985ed2011-03-30 22:57:33 -030091 /* I don't think that a tcp send buffer of more than 10M is useful */
Philipp Reisnerb411b362009-09-25 16:07:19 -070092#define DRBD_SNDBUF_SIZE_MIN 0
93#define DRBD_SNDBUF_SIZE_MAX (10<<20)
Lars Ellenberg89e18382009-09-21 10:46:22 +020094#define DRBD_SNDBUF_SIZE_DEF 0
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +020095#define DRBD_SNDBUF_SIZE_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -070096
97#define DRBD_RCVBUF_SIZE_MIN 0
98#define DRBD_RCVBUF_SIZE_MAX (10<<20)
Lars Ellenberg89e18382009-09-21 10:46:22 +020099#define DRBD_RCVBUF_SIZE_DEF 0
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +0200100#define DRBD_RCVBUF_SIZE_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -0700101
102 /* @4k PageSize -> 128kB - 512MB */
103#define DRBD_MAX_BUFFERS_MIN 32
104#define DRBD_MAX_BUFFERS_MAX 131072
105#define DRBD_MAX_BUFFERS_DEF 2048
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +0200106#define DRBD_MAX_BUFFERS_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -0700107
108 /* @4k PageSize -> 4kB - 512MB */
109#define DRBD_UNPLUG_WATERMARK_MIN 1
110#define DRBD_UNPLUG_WATERMARK_MAX 131072
111#define DRBD_UNPLUG_WATERMARK_DEF (DRBD_MAX_BUFFERS_DEF/16)
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +0200112#define DRBD_UNPLUG_WATERMARK_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -0700113
114 /* 0 is disabled.
115 * 200 should be more than enough even for very short timeouts */
116#define DRBD_KO_COUNT_MIN 0
117#define DRBD_KO_COUNT_MAX 200
Philipp Reisner65d94922011-07-13 10:24:51 +0200118#define DRBD_KO_COUNT_DEF 7
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +0200119#define DRBD_KO_COUNT_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -0700120/* } */
121
122/* syncer { */
123 /* FIXME allow rate to be zero? */
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200124#define DRBD_RESYNC_RATE_MIN 1
Philipp Reisnerb411b362009-09-25 16:07:19 -0700125/* channel bonding 10 GbE, or other hardware */
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200126#define DRBD_RESYNC_RATE_MAX (4 << 20)
127#define DRBD_RESYNC_RATE_DEF 250
128#define DRBD_RESYNC_RATE_SCALE 'k' /* kilobytes */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700129
Lars Ellenberg505675f2016-06-14 00:26:23 +0200130#define DRBD_AL_EXTENTS_MIN 67
Lars Ellenberg5bbcf5e2013-03-19 18:16:59 +0100131 /* we use u16 as "slot number", (u16)~0 is "FREE".
132 * If you use >= 292 kB on-disk ring buffer,
133 * this is the maximum you can use: */
134#define DRBD_AL_EXTENTS_MAX 0xfffe
Philipp Reisner65d94922011-07-13 10:24:51 +0200135#define DRBD_AL_EXTENTS_DEF 1237
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +0200136#define DRBD_AL_EXTENTS_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -0700137
Andreas Gruenbacher309f0b72011-05-13 01:24:14 +0200138#define DRBD_MINOR_NUMBER_MIN -1
Andreas Gruenbacher0317d9e2011-07-13 13:40:30 +0200139#define DRBD_MINOR_NUMBER_MAX ((1 << 20) - 1)
Andreas Gruenbacher309f0b72011-05-13 01:24:14 +0200140#define DRBD_MINOR_NUMBER_DEF -1
141#define DRBD_MINOR_NUMBER_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -0700142
143/* } */
144
145/* drbdsetup XY resize -d Z
146 * you are free to reduce the device size to nothing, if you want to.
147 * the upper limit with 64bit kernel, enough ram and flexible meta data
Lars Ellenberg15b493d2011-06-28 09:48:48 +0200148 * is 1 PiB, currently. */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700149/* DRBD_MAX_SECTORS */
Andreas Gruenbacherc5482bb2011-05-11 14:44:55 +0200150#define DRBD_DISK_SIZE_MIN 0
Philipp Reisnerd942ae42011-05-31 13:07:24 +0200151#define DRBD_DISK_SIZE_MAX (1 * (2LLU << 40))
Andreas Gruenbacherc5482bb2011-05-11 14:44:55 +0200152#define DRBD_DISK_SIZE_DEF 0 /* = disabled = no user size... */
153#define DRBD_DISK_SIZE_SCALE 's' /* sectors */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700154
Lars Ellenberga5df0e12011-02-23 12:51:43 +0100155#define DRBD_ON_IO_ERROR_DEF EP_DETACH
Philipp Reisnerb411b362009-09-25 16:07:19 -0700156#define DRBD_FENCING_DEF FP_DONT_CARE
157#define DRBD_AFTER_SB_0P_DEF ASB_DISCONNECT
158#define DRBD_AFTER_SB_1P_DEF ASB_DISCONNECT
159#define DRBD_AFTER_SB_2P_DEF ASB_DISCONNECT
160#define DRBD_RR_CONFLICT_DEF ASB_DISCONNECT
Philipp Reisner265be2d2010-05-31 10:14:17 +0200161#define DRBD_ON_NO_DATA_DEF OND_IO_ERROR
Philipp Reisner422028b2010-10-27 11:12:07 +0200162#define DRBD_ON_CONGESTION_DEF OC_BLOCK
Philipp Reisner380207d2011-11-11 12:31:20 +0100163#define DRBD_READ_BALANCING_DEF RB_PREFER_LOCAL
Philipp Reisnerb411b362009-09-25 16:07:19 -0700164
165#define DRBD_MAX_BIO_BVECS_MIN 0
166#define DRBD_MAX_BIO_BVECS_MAX 128
167#define DRBD_MAX_BIO_BVECS_DEF 0
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +0200168#define DRBD_MAX_BIO_BVECS_SCALE '1'
Philipp Reisnerb411b362009-09-25 16:07:19 -0700169
Philipp Reisner9a31d712010-07-05 13:42:03 +0200170#define DRBD_C_PLAN_AHEAD_MIN 0
171#define DRBD_C_PLAN_AHEAD_MAX 300
Philipp Reisner65d94922011-07-13 10:24:51 +0200172#define DRBD_C_PLAN_AHEAD_DEF 20
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +0200173#define DRBD_C_PLAN_AHEAD_SCALE '1'
Philipp Reisner67c7ddd2010-05-04 11:12:00 +0200174
Philipp Reisner9a31d712010-07-05 13:42:03 +0200175#define DRBD_C_DELAY_TARGET_MIN 1
176#define DRBD_C_DELAY_TARGET_MAX 100
177#define DRBD_C_DELAY_TARGET_DEF 10
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +0200178#define DRBD_C_DELAY_TARGET_SCALE '1'
Philipp Reisner67c7ddd2010-05-04 11:12:00 +0200179
Philipp Reisner9a31d712010-07-05 13:42:03 +0200180#define DRBD_C_FILL_TARGET_MIN 0
Philipp Reisner00b42532010-10-05 11:19:39 +0200181#define DRBD_C_FILL_TARGET_MAX (1<<20) /* 500MByte in sec */
Philipp Reisner65d94922011-07-13 10:24:51 +0200182#define DRBD_C_FILL_TARGET_DEF 100 /* Try to place 50KiB in socket send buffer during resync */
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +0200183#define DRBD_C_FILL_TARGET_SCALE 's' /* sectors */
Philipp Reisner67c7ddd2010-05-04 11:12:00 +0200184
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +0200185#define DRBD_C_MAX_RATE_MIN 250
Philipp Reisner9a31d712010-07-05 13:42:03 +0200186#define DRBD_C_MAX_RATE_MAX (4 << 20)
187#define DRBD_C_MAX_RATE_DEF 102400
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +0200188#define DRBD_C_MAX_RATE_SCALE 'k' /* kilobytes */
Philipp Reisner67c7ddd2010-05-04 11:12:00 +0200189
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +0200190#define DRBD_C_MIN_RATE_MIN 0
Lars Ellenberg0f0601f2010-08-11 23:40:24 +0200191#define DRBD_C_MIN_RATE_MAX (4 << 20)
Philipp Reisner65d94922011-07-13 10:24:51 +0200192#define DRBD_C_MIN_RATE_DEF 250
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +0200193#define DRBD_C_MIN_RATE_SCALE 'k' /* kilobytes */
Lars Ellenberg0f0601f2010-08-11 23:40:24 +0200194
Philipp Reisner422028b2010-10-27 11:12:07 +0200195#define DRBD_CONG_FILL_MIN 0
196#define DRBD_CONG_FILL_MAX (10<<21) /* 10GByte in sectors */
197#define DRBD_CONG_FILL_DEF 0
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +0200198#define DRBD_CONG_FILL_SCALE 's' /* sectors */
Philipp Reisner422028b2010-10-27 11:12:07 +0200199
200#define DRBD_CONG_EXTENTS_MIN DRBD_AL_EXTENTS_MIN
201#define DRBD_CONG_EXTENTS_MAX DRBD_AL_EXTENTS_MAX
202#define DRBD_CONG_EXTENTS_DEF DRBD_AL_EXTENTS_DEF
Andreas Gruenbacher32bdb642011-05-09 18:26:20 +0200203#define DRBD_CONG_EXTENTS_SCALE DRBD_AL_EXTENTS_SCALE
Philipp Reisner422028b2010-10-27 11:12:07 +0200204
Lars Ellenbergf3990022011-03-23 14:31:09 +0100205#define DRBD_PROTOCOL_DEF DRBD_PROT_C
206
Andreas Gruenbacher7bac3e62011-05-06 17:50:57 +0200207#define DRBD_DISK_BARRIER_DEF 0
208#define DRBD_DISK_FLUSHES_DEF 1
209#define DRBD_DISK_DRAIN_DEF 1
210#define DRBD_MD_FLUSHES_DEF 1
211#define DRBD_TCP_CORK_DEF 1
Philipp Reisner9a51ab12012-02-20 21:53:28 +0100212#define DRBD_AL_UPDATES_DEF 1
Lars Ellenberg9de7e142017-08-29 10:20:38 +0200213
Lars Ellenbergdd4f6992016-06-14 00:26:20 +0200214/* We used to ignore the discard_zeroes_data setting.
215 * To not change established (and expected) behaviour,
216 * by default assume that, for discard_zeroes_data=0,
217 * we can make that an effective discard_zeroes_data=1,
218 * if we only explicitly zero-out unaligned partial chunks. */
Lars Ellenberg9de7e142017-08-29 10:20:38 +0200219#define DRBD_DISCARD_ZEROES_IF_ALIGNED_DEF 1
220
221/* Some backends pretend to support WRITE SAME,
222 * but fail such requests when they are actually submitted.
223 * This is to tell DRBD to not even try. */
224#define DRBD_DISABLE_WRITE_SAME_DEF 0
Andreas Gruenbacher7bac3e62011-05-06 17:50:57 +0200225
226#define DRBD_ALLOW_TWO_PRIMARIES_DEF 0
227#define DRBD_ALWAYS_ASBP_DEF 0
Philipp Reisner65d94922011-07-13 10:24:51 +0200228#define DRBD_USE_RLE_DEF 1
Lars Ellenbergaaaba342014-03-18 12:30:09 +0100229#define DRBD_CSUMS_AFTER_CRASH_ONLY_DEF 0
Andreas Gruenbacher7bac3e62011-05-06 17:50:57 +0200230
Philipp Reisnerd752b262013-06-25 16:50:08 +0200231#define DRBD_AL_STRIPES_MIN 1
232#define DRBD_AL_STRIPES_MAX 1024
233#define DRBD_AL_STRIPES_DEF 1
234#define DRBD_AL_STRIPES_SCALE '1'
235
236#define DRBD_AL_STRIPE_SIZE_MIN 4
237#define DRBD_AL_STRIPE_SIZE_MAX 16777216
238#define DRBD_AL_STRIPE_SIZE_DEF 32
239#define DRBD_AL_STRIPE_SIZE_SCALE 'k' /* kilobytes */
Philipp Reisner5d0b17f2014-03-18 14:24:35 +0100240
241#define DRBD_SOCKET_CHECK_TIMEO_MIN 0
242#define DRBD_SOCKET_CHECK_TIMEO_MAX DRBD_PING_TIMEO_MAX
243#define DRBD_SOCKET_CHECK_TIMEO_DEF 0
244#define DRBD_SOCKET_CHECK_TIMEO_SCALE '1'
Philipp Reisnera5ca66c2016-06-14 00:26:14 +0200245
246#define DRBD_RS_DISCARD_GRANULARITY_MIN 0
247#define DRBD_RS_DISCARD_GRANULARITY_MAX (1<<20) /* 1MiByte */
248#define DRBD_RS_DISCARD_GRANULARITY_DEF 0 /* disabled by default */
249#define DRBD_RS_DISCARD_GRANULARITY_SCALE '1' /* bytes */
250
Philipp Reisnerb411b362009-09-25 16:07:19 -0700251#endif