drbd: reduce sizeof struct drbd_epoch_entry by 8 byte by aligning members
[deliverable/linux.git] / drivers / block / drbd / drbd_int.h
CommitLineData
b411b363
PR
1/*
2 drbd_int.h
3
4 This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
5
6 Copyright (C) 2001-2008, LINBIT Information Technologies GmbH.
7 Copyright (C) 1999-2008, Philipp Reisner <philipp.reisner@linbit.com>.
8 Copyright (C) 2002-2008, Lars Ellenberg <lars.ellenberg@linbit.com>.
9
10 drbd is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
13 any later version.
14
15 drbd is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with drbd; see the file COPYING. If not, write to
22 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
24*/
25
26#ifndef _DRBD_INT_H
27#define _DRBD_INT_H
28
29#include <linux/compiler.h>
30#include <linux/types.h>
31#include <linux/version.h>
32#include <linux/list.h>
33#include <linux/sched.h>
34#include <linux/bitops.h>
35#include <linux/slab.h>
36#include <linux/crypto.h>
132cc538 37#include <linux/ratelimit.h>
b411b363
PR
38#include <linux/tcp.h>
39#include <linux/mutex.h>
40#include <linux/major.h>
41#include <linux/blkdev.h>
42#include <linux/genhd.h>
43#include <net/tcp.h>
44#include <linux/lru_cache.h>
45
46#ifdef __CHECKER__
47# define __protected_by(x) __attribute__((require_context(x,1,999,"rdwr")))
48# define __protected_read_by(x) __attribute__((require_context(x,1,999,"read")))
49# define __protected_write_by(x) __attribute__((require_context(x,1,999,"write")))
50# define __must_hold(x) __attribute__((context(x,1,1), require_context(x,1,999,"call")))
51#else
52# define __protected_by(x)
53# define __protected_read_by(x)
54# define __protected_write_by(x)
55# define __must_hold(x)
56#endif
57
58#define __no_warn(lock, stmt) do { __acquire(lock); stmt; __release(lock); } while (0)
59
60/* module parameter, defined in drbd_main.c */
61extern unsigned int minor_count;
62extern int disable_sendpage;
63extern int allow_oos;
64extern unsigned int cn_idx;
65
66#ifdef CONFIG_DRBD_FAULT_INJECTION
67extern int enable_faults;
68extern int fault_rate;
69extern int fault_devs;
70#endif
71
72extern char usermode_helper[];
73
74
75#ifndef TRUE
76#define TRUE 1
77#endif
78#ifndef FALSE
79#define FALSE 0
80#endif
81
82/* I don't remember why XCPU ...
83 * This is used to wake the asender,
84 * and to interrupt sending the sending task
85 * on disconnect.
86 */
87#define DRBD_SIG SIGXCPU
88
89/* This is used to stop/restart our threads.
90 * Cannot use SIGTERM nor SIGKILL, since these
91 * are sent out by init on runlevel changes
92 * I choose SIGHUP for now.
93 */
94#define DRBD_SIGKILL SIGHUP
95
96/* All EEs on the free list should have ID_VACANT (== 0)
97 * freshly allocated EEs get !ID_VACANT (== 1)
3ad2f3fb 98 * so if it says "cannot dereference null pointer at address 0x00000001",
b411b363
PR
99 * it is most likely one of these :( */
100
101#define ID_IN_SYNC (4711ULL)
102#define ID_OUT_OF_SYNC (4712ULL)
103
104#define ID_SYNCER (-1ULL)
105#define ID_VACANT 0
106#define is_syncer_block_id(id) ((id) == ID_SYNCER)
107
108struct drbd_conf;
109
110
111/* to shorten dev_warn(DEV, "msg"); and relatives statements */
112#define DEV (disk_to_dev(mdev->vdisk))
113
114#define D_ASSERT(exp) if (!(exp)) \
115 dev_err(DEV, "ASSERT( " #exp " ) in %s:%d\n", __FILE__, __LINE__)
116
117#define ERR_IF(exp) if (({ \
118 int _b = (exp) != 0; \
119 if (_b) dev_err(DEV, "%s: (%s) in %s:%d\n", \
120 __func__, #exp, __FILE__, __LINE__); \
121 _b; \
122 }))
123
124/* Defines to control fault insertion */
125enum {
126 DRBD_FAULT_MD_WR = 0, /* meta data write */
127 DRBD_FAULT_MD_RD = 1, /* read */
128 DRBD_FAULT_RS_WR = 2, /* resync */
129 DRBD_FAULT_RS_RD = 3,
130 DRBD_FAULT_DT_WR = 4, /* data */
131 DRBD_FAULT_DT_RD = 5,
132 DRBD_FAULT_DT_RA = 6, /* data read ahead */
133 DRBD_FAULT_BM_ALLOC = 7, /* bitmap allocation */
134 DRBD_FAULT_AL_EE = 8, /* alloc ee */
6b4388ac 135 DRBD_FAULT_RECEIVE = 9, /* Changes some bytes upon receiving a [rs]data block */
b411b363
PR
136
137 DRBD_FAULT_MAX,
138};
139
b411b363
PR
140#ifdef CONFIG_DRBD_FAULT_INJECTION
141extern unsigned int
142_drbd_insert_fault(struct drbd_conf *mdev, unsigned int type);
143static inline int
144drbd_insert_fault(struct drbd_conf *mdev, unsigned int type) {
145 return fault_rate &&
146 (enable_faults & (1<<type)) &&
147 _drbd_insert_fault(mdev, type);
148}
149#define FAULT_ACTIVE(_m, _t) (drbd_insert_fault((_m), (_t)))
150
151#else
152#define FAULT_ACTIVE(_m, _t) (0)
153#endif
154
155/* integer division, round _UP_ to the next integer */
156#define div_ceil(A, B) ((A)/(B) + ((A)%(B) ? 1 : 0))
157/* usual integer division */
158#define div_floor(A, B) ((A)/(B))
159
160/* drbd_meta-data.c (still in drbd_main.c) */
161/* 4th incarnation of the disk layout. */
162#define DRBD_MD_MAGIC (DRBD_MAGIC+4)
163
164extern struct drbd_conf **minor_table;
165extern struct ratelimit_state drbd_ratelimit_state;
166
167/* on the wire */
168enum drbd_packets {
169 /* receiver (data socket) */
170 P_DATA = 0x00,
171 P_DATA_REPLY = 0x01, /* Response to P_DATA_REQUEST */
172 P_RS_DATA_REPLY = 0x02, /* Response to P_RS_DATA_REQUEST */
173 P_BARRIER = 0x03,
174 P_BITMAP = 0x04,
175 P_BECOME_SYNC_TARGET = 0x05,
176 P_BECOME_SYNC_SOURCE = 0x06,
177 P_UNPLUG_REMOTE = 0x07, /* Used at various times to hint the peer */
178 P_DATA_REQUEST = 0x08, /* Used to ask for a data block */
179 P_RS_DATA_REQUEST = 0x09, /* Used to ask for a data block for resync */
180 P_SYNC_PARAM = 0x0a,
181 P_PROTOCOL = 0x0b,
182 P_UUIDS = 0x0c,
183 P_SIZES = 0x0d,
184 P_STATE = 0x0e,
185 P_SYNC_UUID = 0x0f,
186 P_AUTH_CHALLENGE = 0x10,
187 P_AUTH_RESPONSE = 0x11,
188 P_STATE_CHG_REQ = 0x12,
189
190 /* asender (meta socket */
191 P_PING = 0x13,
192 P_PING_ACK = 0x14,
193 P_RECV_ACK = 0x15, /* Used in protocol B */
194 P_WRITE_ACK = 0x16, /* Used in protocol C */
195 P_RS_WRITE_ACK = 0x17, /* Is a P_WRITE_ACK, additionally call set_in_sync(). */
196 P_DISCARD_ACK = 0x18, /* Used in proto C, two-primaries conflict detection */
197 P_NEG_ACK = 0x19, /* Sent if local disk is unusable */
198 P_NEG_DREPLY = 0x1a, /* Local disk is broken... */
199 P_NEG_RS_DREPLY = 0x1b, /* Local disk is broken... */
200 P_BARRIER_ACK = 0x1c,
201 P_STATE_CHG_REPLY = 0x1d,
202
203 /* "new" commands, no longer fitting into the ordering scheme above */
204
205 P_OV_REQUEST = 0x1e, /* data socket */
206 P_OV_REPLY = 0x1f,
207 P_OV_RESULT = 0x20, /* meta socket */
208 P_CSUM_RS_REQUEST = 0x21, /* data socket */
209 P_RS_IS_IN_SYNC = 0x22, /* meta socket */
210 P_SYNC_PARAM89 = 0x23, /* data socket, protocol version 89 replacement for P_SYNC_PARAM */
211 P_COMPRESSED_BITMAP = 0x24, /* compressed or otherwise encoded bitmap transfer */
0ced55a3
PR
212 /* P_CKPT_FENCE_REQ = 0x25, * currently reserved for protocol D */
213 /* P_CKPT_DISABLE_REQ = 0x26, * currently reserved for protocol D */
214 P_DELAY_PROBE = 0x27, /* is used on BOTH sockets */
b411b363 215
0ced55a3 216 P_MAX_CMD = 0x28,
b411b363
PR
217 P_MAY_IGNORE = 0x100, /* Flag to test if (cmd > P_MAY_IGNORE) ... */
218 P_MAX_OPT_CMD = 0x101,
219
220 /* special command ids for handshake */
221
222 P_HAND_SHAKE_M = 0xfff1, /* First Packet on the MetaSock */
223 P_HAND_SHAKE_S = 0xfff2, /* First Packet on the Socket */
224
225 P_HAND_SHAKE = 0xfffe /* FIXED for the next century! */
226};
227
228static inline const char *cmdname(enum drbd_packets cmd)
229{
230 /* THINK may need to become several global tables
231 * when we want to support more than
232 * one PRO_VERSION */
233 static const char *cmdnames[] = {
234 [P_DATA] = "Data",
235 [P_DATA_REPLY] = "DataReply",
236 [P_RS_DATA_REPLY] = "RSDataReply",
237 [P_BARRIER] = "Barrier",
238 [P_BITMAP] = "ReportBitMap",
239 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
240 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
241 [P_UNPLUG_REMOTE] = "UnplugRemote",
242 [P_DATA_REQUEST] = "DataRequest",
243 [P_RS_DATA_REQUEST] = "RSDataRequest",
244 [P_SYNC_PARAM] = "SyncParam",
245 [P_SYNC_PARAM89] = "SyncParam89",
246 [P_PROTOCOL] = "ReportProtocol",
247 [P_UUIDS] = "ReportUUIDs",
248 [P_SIZES] = "ReportSizes",
249 [P_STATE] = "ReportState",
250 [P_SYNC_UUID] = "ReportSyncUUID",
251 [P_AUTH_CHALLENGE] = "AuthChallenge",
252 [P_AUTH_RESPONSE] = "AuthResponse",
253 [P_PING] = "Ping",
254 [P_PING_ACK] = "PingAck",
255 [P_RECV_ACK] = "RecvAck",
256 [P_WRITE_ACK] = "WriteAck",
257 [P_RS_WRITE_ACK] = "RSWriteAck",
258 [P_DISCARD_ACK] = "DiscardAck",
259 [P_NEG_ACK] = "NegAck",
260 [P_NEG_DREPLY] = "NegDReply",
261 [P_NEG_RS_DREPLY] = "NegRSDReply",
262 [P_BARRIER_ACK] = "BarrierAck",
263 [P_STATE_CHG_REQ] = "StateChgRequest",
264 [P_STATE_CHG_REPLY] = "StateChgReply",
265 [P_OV_REQUEST] = "OVRequest",
266 [P_OV_REPLY] = "OVReply",
267 [P_OV_RESULT] = "OVResult",
c42b6cf4
LE
268 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
269 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
270 [P_COMPRESSED_BITMAP] = "CBitmap",
a8cdfd8d 271 [P_DELAY_PROBE] = "DelayProbe",
b411b363
PR
272 [P_MAX_CMD] = NULL,
273 };
274
275 if (cmd == P_HAND_SHAKE_M)
276 return "HandShakeM";
277 if (cmd == P_HAND_SHAKE_S)
278 return "HandShakeS";
279 if (cmd == P_HAND_SHAKE)
280 return "HandShake";
281 if (cmd >= P_MAX_CMD)
282 return "Unknown";
283 return cmdnames[cmd];
284}
285
286/* for sending/receiving the bitmap,
287 * possibly in some encoding scheme */
288struct bm_xfer_ctx {
289 /* "const"
290 * stores total bits and long words
291 * of the bitmap, so we don't need to
292 * call the accessor functions over and again. */
293 unsigned long bm_bits;
294 unsigned long bm_words;
295 /* during xfer, current position within the bitmap */
296 unsigned long bit_offset;
297 unsigned long word_offset;
298
299 /* statistics; index: (h->command == P_BITMAP) */
300 unsigned packets[2];
301 unsigned bytes[2];
302};
303
304extern void INFO_bm_xfer_stats(struct drbd_conf *mdev,
305 const char *direction, struct bm_xfer_ctx *c);
306
307static inline void bm_xfer_ctx_bit_to_word_offset(struct bm_xfer_ctx *c)
308{
309 /* word_offset counts "native long words" (32 or 64 bit),
310 * aligned at 64 bit.
311 * Encoded packet may end at an unaligned bit offset.
312 * In case a fallback clear text packet is transmitted in
313 * between, we adjust this offset back to the last 64bit
314 * aligned "native long word", which makes coding and decoding
315 * the plain text bitmap much more convenient. */
316#if BITS_PER_LONG == 64
317 c->word_offset = c->bit_offset >> 6;
318#elif BITS_PER_LONG == 32
319 c->word_offset = c->bit_offset >> 5;
320 c->word_offset &= ~(1UL);
321#else
322# error "unsupported BITS_PER_LONG"
323#endif
324}
325
326#ifndef __packed
327#define __packed __attribute__((packed))
328#endif
329
330/* This is the layout for a packet on the wire.
331 * The byteorder is the network byte order.
332 * (except block_id and barrier fields.
333 * these are pointers to local structs
334 * and have no relevance for the partner,
335 * which just echoes them as received.)
336 *
337 * NOTE that the payload starts at a long aligned offset,
338 * regardless of 32 or 64 bit arch!
339 */
340struct p_header {
341 u32 magic;
342 u16 command;
343 u16 length; /* bytes of data after this header */
344 u8 payload[0];
345} __packed;
346/* 8 bytes. packet FIXED for the next century! */
347
348/*
349 * short commands, packets without payload, plain p_header:
350 * P_PING
351 * P_PING_ACK
352 * P_BECOME_SYNC_TARGET
353 * P_BECOME_SYNC_SOURCE
354 * P_UNPLUG_REMOTE
355 */
356
357/*
358 * commands with out-of-struct payload:
359 * P_BITMAP (no additional fields)
360 * P_DATA, P_DATA_REPLY (see p_data)
361 * P_COMPRESSED_BITMAP (see receive_compressed_bitmap)
362 */
363
364/* these defines must not be changed without changing the protocol version */
365#define DP_HARDBARRIER 1
366#define DP_RW_SYNC 2
367#define DP_MAY_SET_IN_SYNC 4
368
369struct p_data {
370 struct p_header head;
371 u64 sector; /* 64 bits sector number */
372 u64 block_id; /* to identify the request in protocol B&C */
373 u32 seq_num;
374 u32 dp_flags;
375} __packed;
376
377/*
378 * commands which share a struct:
379 * p_block_ack:
380 * P_RECV_ACK (proto B), P_WRITE_ACK (proto C),
381 * P_DISCARD_ACK (proto C, two-primaries conflict detection)
382 * p_block_req:
383 * P_DATA_REQUEST, P_RS_DATA_REQUEST
384 */
385struct p_block_ack {
386 struct p_header head;
387 u64 sector;
388 u64 block_id;
389 u32 blksize;
390 u32 seq_num;
391} __packed;
392
393
394struct p_block_req {
395 struct p_header head;
396 u64 sector;
397 u64 block_id;
398 u32 blksize;
399 u32 pad; /* to multiple of 8 Byte */
400} __packed;
401
402/*
403 * commands with their own struct for additional fields:
404 * P_HAND_SHAKE
405 * P_BARRIER
406 * P_BARRIER_ACK
407 * P_SYNC_PARAM
408 * ReportParams
409 */
410
411struct p_handshake {
412 struct p_header head; /* 8 bytes */
413 u32 protocol_min;
414 u32 feature_flags;
415 u32 protocol_max;
416
417 /* should be more than enough for future enhancements
418 * for now, feature_flags and the reserverd array shall be zero.
419 */
420
421 u32 _pad;
422 u64 reserverd[7];
423} __packed;
424/* 80 bytes, FIXED for the next century */
425
426struct p_barrier {
427 struct p_header head;
428 u32 barrier; /* barrier number _handle_ only */
429 u32 pad; /* to multiple of 8 Byte */
430} __packed;
431
432struct p_barrier_ack {
433 struct p_header head;
434 u32 barrier;
435 u32 set_size;
436} __packed;
437
438struct p_rs_param {
439 struct p_header head;
440 u32 rate;
441
442 /* Since protocol version 88 and higher. */
443 char verify_alg[0];
444} __packed;
445
446struct p_rs_param_89 {
447 struct p_header head;
448 u32 rate;
449 /* protocol version 89: */
450 char verify_alg[SHARED_SECRET_MAX];
451 char csums_alg[SHARED_SECRET_MAX];
452} __packed;
453
cf14c2e9
PR
454enum drbd_conn_flags {
455 CF_WANT_LOSE = 1,
456 CF_DRY_RUN = 2,
457};
458
b411b363
PR
459struct p_protocol {
460 struct p_header head;
461 u32 protocol;
462 u32 after_sb_0p;
463 u32 after_sb_1p;
464 u32 after_sb_2p;
cf14c2e9 465 u32 conn_flags;
b411b363
PR
466 u32 two_primaries;
467
468 /* Since protocol version 87 and higher. */
469 char integrity_alg[0];
470
471} __packed;
472
473struct p_uuids {
474 struct p_header head;
475 u64 uuid[UI_EXTENDED_SIZE];
476} __packed;
477
478struct p_rs_uuid {
479 struct p_header head;
480 u64 uuid;
481} __packed;
482
483struct p_sizes {
484 struct p_header head;
485 u64 d_size; /* size of disk */
486 u64 u_size; /* user requested size */
487 u64 c_size; /* current exported size */
488 u32 max_segment_size; /* Maximal size of a BIO */
e89b591c
PR
489 u16 queue_order_type; /* not yet implemented in DRBD*/
490 u16 dds_flags; /* use enum dds_flags here. */
b411b363
PR
491} __packed;
492
493struct p_state {
494 struct p_header head;
495 u32 state;
496} __packed;
497
498struct p_req_state {
499 struct p_header head;
500 u32 mask;
501 u32 val;
502} __packed;
503
504struct p_req_state_reply {
505 struct p_header head;
506 u32 retcode;
507} __packed;
508
509struct p_drbd06_param {
510 u64 size;
511 u32 state;
512 u32 blksize;
513 u32 protocol;
514 u32 version;
515 u32 gen_cnt[5];
516 u32 bit_map_gen[5];
517} __packed;
518
519struct p_discard {
520 struct p_header head;
521 u64 block_id;
522 u32 seq_num;
523 u32 pad;
524} __packed;
525
526/* Valid values for the encoding field.
527 * Bump proto version when changing this. */
528enum drbd_bitmap_code {
529 /* RLE_VLI_Bytes = 0,
530 * and other bit variants had been defined during
531 * algorithm evaluation. */
532 RLE_VLI_Bits = 2,
533};
534
535struct p_compressed_bm {
536 struct p_header head;
537 /* (encoding & 0x0f): actual encoding, see enum drbd_bitmap_code
538 * (encoding & 0x80): polarity (set/unset) of first runlength
539 * ((encoding >> 4) & 0x07): pad_bits, number of trailing zero bits
540 * used to pad up to head.length bytes
541 */
542 u8 encoding;
543
544 u8 code[0];
545} __packed;
546
0ced55a3
PR
547struct p_delay_probe {
548 struct p_header head;
549 u32 seq_num; /* sequence number to match the two probe packets */
550 u32 offset; /* usecs the probe got sent after the reference time point */
551} __packed;
552
553struct delay_probe {
554 struct list_head list;
162f3ec7 555 unsigned int seq_num;
0ced55a3
PR
556 struct timeval time;
557};
558
b411b363
PR
559/* DCBP: Drbd Compressed Bitmap Packet ... */
560static inline enum drbd_bitmap_code
561DCBP_get_code(struct p_compressed_bm *p)
562{
563 return (enum drbd_bitmap_code)(p->encoding & 0x0f);
564}
565
566static inline void
567DCBP_set_code(struct p_compressed_bm *p, enum drbd_bitmap_code code)
568{
569 BUG_ON(code & ~0xf);
570 p->encoding = (p->encoding & ~0xf) | code;
571}
572
573static inline int
574DCBP_get_start(struct p_compressed_bm *p)
575{
576 return (p->encoding & 0x80) != 0;
577}
578
579static inline void
580DCBP_set_start(struct p_compressed_bm *p, int set)
581{
582 p->encoding = (p->encoding & ~0x80) | (set ? 0x80 : 0);
583}
584
585static inline int
586DCBP_get_pad_bits(struct p_compressed_bm *p)
587{
588 return (p->encoding >> 4) & 0x7;
589}
590
591static inline void
592DCBP_set_pad_bits(struct p_compressed_bm *p, int n)
593{
594 BUG_ON(n & ~0x7);
595 p->encoding = (p->encoding & (~0x7 << 4)) | (n << 4);
596}
597
598/* one bitmap packet, including the p_header,
599 * should fit within one _architecture independend_ page.
600 * so we need to use the fixed size 4KiB page size
601 * most architechtures have used for a long time.
602 */
603#define BM_PACKET_PAYLOAD_BYTES (4096 - sizeof(struct p_header))
604#define BM_PACKET_WORDS (BM_PACKET_PAYLOAD_BYTES/sizeof(long))
605#define BM_PACKET_VLI_BYTES_MAX (4096 - sizeof(struct p_compressed_bm))
606#if (PAGE_SIZE < 4096)
607/* drbd_send_bitmap / receive_bitmap would break horribly */
608#error "PAGE_SIZE too small"
609#endif
610
611union p_polymorph {
612 struct p_header header;
613 struct p_handshake handshake;
614 struct p_data data;
615 struct p_block_ack block_ack;
616 struct p_barrier barrier;
617 struct p_barrier_ack barrier_ack;
618 struct p_rs_param_89 rs_param_89;
619 struct p_protocol protocol;
620 struct p_sizes sizes;
621 struct p_uuids uuids;
622 struct p_state state;
623 struct p_req_state req_state;
624 struct p_req_state_reply req_state_reply;
625 struct p_block_req block_req;
626} __packed;
627
628/**********************************************************************/
629enum drbd_thread_state {
630 None,
631 Running,
632 Exiting,
633 Restarting
634};
635
636struct drbd_thread {
637 spinlock_t t_lock;
638 struct task_struct *task;
639 struct completion stop;
640 enum drbd_thread_state t_state;
641 int (*function) (struct drbd_thread *);
642 struct drbd_conf *mdev;
643 int reset_cpu_mask;
644};
645
646static inline enum drbd_thread_state get_t_state(struct drbd_thread *thi)
647{
648 /* THINK testing the t_state seems to be uncritical in all cases
649 * (but thread_{start,stop}), so we can read it *without* the lock.
650 * --lge */
651
652 smp_rmb();
653 return thi->t_state;
654}
655
656
657/*
658 * Having this as the first member of a struct provides sort of "inheritance".
659 * "derived" structs can be "drbd_queue_work()"ed.
660 * The callback should know and cast back to the descendant struct.
661 * drbd_request and drbd_epoch_entry are descendants of drbd_work.
662 */
663struct drbd_work;
664typedef int (*drbd_work_cb)(struct drbd_conf *, struct drbd_work *, int cancel);
665struct drbd_work {
666 struct list_head list;
667 drbd_work_cb cb;
668};
669
670struct drbd_tl_epoch;
671struct drbd_request {
672 struct drbd_work w;
673 struct drbd_conf *mdev;
674
675 /* if local IO is not allowed, will be NULL.
676 * if local IO _is_ allowed, holds the locally submitted bio clone,
677 * or, after local IO completion, the ERR_PTR(error).
678 * see drbd_endio_pri(). */
679 struct bio *private_bio;
680
681 struct hlist_node colision;
682 sector_t sector;
683 unsigned int size;
684 unsigned int epoch; /* barrier_nr */
685
686 /* barrier_nr: used to check on "completion" whether this req was in
687 * the current epoch, and we therefore have to close it,
688 * starting a new epoch...
689 */
690
691 /* up to here, the struct layout is identical to drbd_epoch_entry;
692 * we might be able to use that to our advantage... */
693
694 struct list_head tl_requests; /* ring list in the transfer log */
695 struct bio *master_bio; /* master bio pointer */
696 unsigned long rq_state; /* see comments above _req_mod() */
697 int seq_num;
698 unsigned long start_time;
699};
700
701struct drbd_tl_epoch {
702 struct drbd_work w;
703 struct list_head requests; /* requests before */
704 struct drbd_tl_epoch *next; /* pointer to the next barrier */
705 unsigned int br_number; /* the barriers identifier. */
706 int n_req; /* number of requests attached before this barrier */
707};
708
709struct drbd_request;
710
711/* These Tl_epoch_entries may be in one of 6 lists:
712 active_ee .. data packet being written
713 sync_ee .. syncer block being written
714 done_ee .. block written, need to send P_WRITE_ACK
715 read_ee .. [RS]P_DATA_REQUEST being read
716*/
717
718struct drbd_epoch {
719 struct list_head list;
720 unsigned int barrier_nr;
721 atomic_t epoch_size; /* increased on every request added. */
722 atomic_t active; /* increased on every req. added, and dec on every finished. */
723 unsigned long flags;
724};
725
726/* drbd_epoch flag bits */
727enum {
728 DE_BARRIER_IN_NEXT_EPOCH_ISSUED,
729 DE_BARRIER_IN_NEXT_EPOCH_DONE,
730 DE_CONTAINS_A_BARRIER,
731 DE_HAVE_BARRIER_NUMBER,
732 DE_IS_FINISHING,
733};
734
735enum epoch_event {
736 EV_PUT,
737 EV_GOT_BARRIER_NR,
738 EV_BARRIER_DONE,
739 EV_BECAME_LAST,
b411b363
PR
740 EV_CLEANUP = 32, /* used as flag */
741};
742
743struct drbd_epoch_entry {
744 struct drbd_work w;
745 struct drbd_conf *mdev;
746 struct bio *private_bio;
747 struct hlist_node colision;
748 sector_t sector;
749 unsigned int size;
b411b363 750 unsigned int flags;
708d740e 751 struct drbd_epoch *epoch;
b411b363
PR
752 u64 block_id;
753};
754
755struct drbd_wq_barrier {
756 struct drbd_work w;
757 struct completion done;
758};
759
760struct digest_info {
761 int digest_size;
762 void *digest;
763};
764
765/* ee flag bits */
766enum {
767 __EE_CALL_AL_COMPLETE_IO,
768 __EE_CONFLICT_PENDING,
769 __EE_MAY_SET_IN_SYNC,
770 __EE_IS_BARRIER,
771};
772#define EE_CALL_AL_COMPLETE_IO (1<<__EE_CALL_AL_COMPLETE_IO)
773#define EE_CONFLICT_PENDING (1<<__EE_CONFLICT_PENDING)
774#define EE_MAY_SET_IN_SYNC (1<<__EE_MAY_SET_IN_SYNC)
775#define EE_IS_BARRIER (1<<__EE_IS_BARRIER)
776
777/* global flag bits */
778enum {
779 CREATE_BARRIER, /* next P_DATA is preceeded by a P_BARRIER */
780 SIGNAL_ASENDER, /* whether asender wants to be interrupted */
781 SEND_PING, /* whether asender should send a ping asap */
782
783 STOP_SYNC_TIMER, /* tell timer to cancel itself */
784 UNPLUG_QUEUED, /* only relevant with kernel 2.4 */
785 UNPLUG_REMOTE, /* sending a "UnplugRemote" could help */
786 MD_DIRTY, /* current uuids and flags not yet on disk */
787 DISCARD_CONCURRENT, /* Set on one node, cleared on the peer! */
788 USE_DEGR_WFC_T, /* degr-wfc-timeout instead of wfc-timeout. */
789 CLUSTER_ST_CHANGE, /* Cluster wide state change going on... */
790 CL_ST_CHG_SUCCESS,
791 CL_ST_CHG_FAIL,
792 CRASHED_PRIMARY, /* This node was a crashed primary.
793 * Gets cleared when the state.conn
794 * goes into C_CONNECTED state. */
795 WRITE_BM_AFTER_RESYNC, /* A kmalloc() during resync failed */
796 NO_BARRIER_SUPP, /* underlying block device doesn't implement barriers */
797 CONSIDER_RESYNC,
798
799 MD_NO_BARRIER, /* meta data device does not support barriers,
800 so don't even try */
801 SUSPEND_IO, /* suspend application io */
802 BITMAP_IO, /* suspend application io;
803 once no more io in flight, start bitmap io */
804 BITMAP_IO_QUEUED, /* Started bitmap IO */
805 RESYNC_AFTER_NEG, /* Resync after online grow after the attach&negotiate finished. */
806 NET_CONGESTED, /* The data socket is congested */
807
808 CONFIG_PENDING, /* serialization of (re)configuration requests.
809 * if set, also prevents the device from dying */
810 DEVICE_DYING, /* device became unconfigured,
811 * but worker thread is still handling the cleanup.
812 * reconfiguring (nl_disk_conf, nl_net_conf) is dissalowed,
813 * while this is set. */
814 RESIZE_PENDING, /* Size change detected locally, waiting for the response from
815 * the peer, if it changed there as well. */
cf14c2e9 816 CONN_DRY_RUN, /* Expect disconnect after resync handshake. */
309d1608 817 GOT_PING_ACK, /* set when we receive a ping_ack packet, misc wait gets woken */
b411b363
PR
818};
819
820struct drbd_bitmap; /* opaque for drbd_conf */
821
822/* TODO sort members for performance
823 * MAYBE group them further */
824
825/* THINK maybe we actually want to use the default "event/%s" worker threads
826 * or similar in linux 2.6, which uses per cpu data and threads.
827 *
828 * To be general, this might need a spin_lock member.
829 * For now, please use the mdev->req_lock to protect list_head,
830 * see drbd_queue_work below.
831 */
832struct drbd_work_queue {
833 struct list_head q;
834 struct semaphore s; /* producers up it, worker down()s it */
835 spinlock_t q_lock; /* to protect the list. */
836};
837
838struct drbd_socket {
839 struct drbd_work_queue work;
840 struct mutex mutex;
841 struct socket *socket;
842 /* this way we get our
843 * send/receive buffers off the stack */
844 union p_polymorph sbuf;
845 union p_polymorph rbuf;
846};
847
848struct drbd_md {
849 u64 md_offset; /* sector offset to 'super' block */
850
851 u64 la_size_sect; /* last agreed size, unit sectors */
852 u64 uuid[UI_SIZE];
853 u64 device_uuid;
854 u32 flags;
855 u32 md_size_sect;
856
857 s32 al_offset; /* signed relative sector offset to al area */
858 s32 bm_offset; /* signed relative sector offset to bitmap */
859
860 /* u32 al_nr_extents; important for restoring the AL
861 * is stored into sync_conf.al_extents, which in turn
862 * gets applied to act_log->nr_elements
863 */
864};
865
866/* for sync_conf and other types... */
867#define NL_PACKET(name, number, fields) struct name { fields };
868#define NL_INTEGER(pn,pr,member) int member;
869#define NL_INT64(pn,pr,member) __u64 member;
870#define NL_BIT(pn,pr,member) unsigned member:1;
871#define NL_STRING(pn,pr,member,len) unsigned char member[len]; int member ## _len;
872#include "linux/drbd_nl.h"
873
874struct drbd_backing_dev {
875 struct block_device *backing_bdev;
876 struct block_device *md_bdev;
877 struct file *lo_file;
878 struct file *md_file;
879 struct drbd_md md;
880 struct disk_conf dc; /* The user provided config... */
881 sector_t known_size; /* last known size of that backing device */
882};
883
884struct drbd_md_io {
885 struct drbd_conf *mdev;
886 struct completion event;
887 int error;
888};
889
890struct bm_io_work {
891 struct drbd_work w;
892 char *why;
893 int (*io_fn)(struct drbd_conf *mdev);
894 void (*done)(struct drbd_conf *mdev, int rv);
895};
896
897enum write_ordering_e {
898 WO_none,
899 WO_drain_io,
900 WO_bdev_flush,
901 WO_bio_barrier
902};
903
904struct drbd_conf {
905 /* things that are stored as / read from meta data on disk */
906 unsigned long flags;
907
908 /* configured by drbdsetup */
909 struct net_conf *net_conf; /* protected by get_net_conf() and put_net_conf() */
910 struct syncer_conf sync_conf;
911 struct drbd_backing_dev *ldev __protected_by(local);
912
913 sector_t p_size; /* partner's disk size */
914 struct request_queue *rq_queue;
915 struct block_device *this_bdev;
916 struct gendisk *vdisk;
917
918 struct drbd_socket data; /* data/barrier/cstate/parameter packets */
919 struct drbd_socket meta; /* ping/ack (metadata) packets */
920 int agreed_pro_version; /* actually used protocol version */
921 unsigned long last_received; /* in jiffies, either socket */
922 unsigned int ko_count;
923 struct drbd_work resync_work,
924 unplug_work,
bd26bfc5
PR
925 md_sync_work,
926 delay_probe_work;
b411b363
PR
927 struct timer_list resync_timer;
928 struct timer_list md_sync_timer;
bd26bfc5 929 struct timer_list delay_probe_timer;
b411b363
PR
930
931 /* Used after attach while negotiating new disk state. */
932 union drbd_state new_state_tmp;
933
934 union drbd_state state;
935 wait_queue_head_t misc_wait;
936 wait_queue_head_t state_wait; /* upon each state change. */
937 unsigned int send_cnt;
938 unsigned int recv_cnt;
939 unsigned int read_cnt;
940 unsigned int writ_cnt;
941 unsigned int al_writ_cnt;
942 unsigned int bm_writ_cnt;
943 atomic_t ap_bio_cnt; /* Requests we need to complete */
944 atomic_t ap_pending_cnt; /* AP data packets on the wire, ack expected */
945 atomic_t rs_pending_cnt; /* RS request/data packets on the wire */
946 atomic_t unacked_cnt; /* Need to send replys for */
947 atomic_t local_cnt; /* Waiting for local completion */
948 atomic_t net_cnt; /* Users of net_conf */
949 spinlock_t req_lock;
950 struct drbd_tl_epoch *unused_spare_tle; /* for pre-allocation */
951 struct drbd_tl_epoch *newest_tle;
952 struct drbd_tl_epoch *oldest_tle;
953 struct list_head out_of_sequence_requests;
954 struct hlist_head *tl_hash;
955 unsigned int tl_hash_s;
956
957 /* blocks to sync in this run [unit BM_BLOCK_SIZE] */
958 unsigned long rs_total;
959 /* number of sync IOs that failed in this run */
960 unsigned long rs_failed;
961 /* Syncer's start time [unit jiffies] */
962 unsigned long rs_start;
963 /* cumulated time in PausedSyncX state [unit jiffies] */
964 unsigned long rs_paused;
965 /* block not up-to-date at mark [unit BM_BLOCK_SIZE] */
966 unsigned long rs_mark_left;
967 /* marks's time [unit jiffies] */
968 unsigned long rs_mark_time;
969 /* skipped because csum was equeal [unit BM_BLOCK_SIZE] */
970 unsigned long rs_same_csum;
971
972 /* where does the admin want us to start? (sector) */
973 sector_t ov_start_sector;
974 /* where are we now? (sector) */
975 sector_t ov_position;
976 /* Start sector of out of sync range (to merge printk reporting). */
977 sector_t ov_last_oos_start;
978 /* size of out-of-sync range in sectors. */
979 sector_t ov_last_oos_size;
980 unsigned long ov_left; /* in bits */
981 struct crypto_hash *csums_tfm;
982 struct crypto_hash *verify_tfm;
983
984 struct drbd_thread receiver;
985 struct drbd_thread worker;
986 struct drbd_thread asender;
987 struct drbd_bitmap *bitmap;
988 unsigned long bm_resync_fo; /* bit offset for drbd_bm_find_next */
989
990 /* Used to track operations of resync... */
991 struct lru_cache *resync;
992 /* Number of locked elements in resync LRU */
993 unsigned int resync_locked;
994 /* resync extent number waiting for application requests */
995 unsigned int resync_wenr;
996
997 int open_cnt;
998 u64 *p_uuid;
999 struct drbd_epoch *current_epoch;
1000 spinlock_t epoch_lock;
1001 unsigned int epochs;
1002 enum write_ordering_e write_ordering;
1003 struct list_head active_ee; /* IO in progress */
1004 struct list_head sync_ee; /* IO in progress */
1005 struct list_head done_ee; /* send ack */
1006 struct list_head read_ee; /* IO in progress */
1007 struct list_head net_ee; /* zero-copy network send in progress */
1008 struct hlist_head *ee_hash; /* is proteced by req_lock! */
1009 unsigned int ee_hash_s;
1010
1011 /* this one is protected by ee_lock, single thread */
1012 struct drbd_epoch_entry *last_write_w_barrier;
1013
1014 int next_barrier_nr;
1015 struct hlist_head *app_reads_hash; /* is proteced by req_lock */
1016 struct list_head resync_reads;
1017 atomic_t pp_in_use;
1018 wait_queue_head_t ee_wait;
1019 struct page *md_io_page; /* one page buffer for md_io */
1020 struct page *md_io_tmpp; /* for logical_block_size != 512 */
1021 struct mutex md_io_mutex; /* protects the md_io_buffer */
1022 spinlock_t al_lock;
1023 wait_queue_head_t al_wait;
1024 struct lru_cache *act_log; /* activity log */
1025 unsigned int al_tr_number;
1026 int al_tr_cycle;
1027 int al_tr_pos; /* position of the next transaction in the journal */
1028 struct crypto_hash *cram_hmac_tfm;
1029 struct crypto_hash *integrity_w_tfm; /* to be used by the worker thread */
1030 struct crypto_hash *integrity_r_tfm; /* to be used by the receiver thread */
1031 void *int_dig_out;
1032 void *int_dig_in;
1033 void *int_dig_vv;
1034 wait_queue_head_t seq_wait;
1035 atomic_t packet_seq;
1036 unsigned int peer_seq;
1037 spinlock_t peer_seq_lock;
1038 unsigned int minor;
1039 unsigned long comm_bm_set; /* communicated number of set bits. */
1040 cpumask_var_t cpu_mask;
1041 struct bm_io_work bm_io_work;
1042 u64 ed_uuid; /* UUID of the exposed data */
1043 struct mutex state_mutex;
1044 char congestion_reason; /* Why we where congested... */
0ced55a3
PR
1045 struct list_head delay_probes; /* protected by peer_seq_lock */
1046 int data_delay; /* Delay of packets on the data-sock behind meta-sock */
162f3ec7 1047 unsigned int delay_seq; /* To generate sequence numbers of delay probes */
7237bc43 1048 struct timeval dps_time; /* delay-probes-start-time */
162f3ec7 1049 unsigned int dp_volume_last; /* send_cnt of last delay probe */
bd26bfc5 1050 int c_sync_rate; /* current resync rate after delay_probe magic */
b411b363
PR
1051};
1052
1053static inline struct drbd_conf *minor_to_mdev(unsigned int minor)
1054{
1055 struct drbd_conf *mdev;
1056
1057 mdev = minor < minor_count ? minor_table[minor] : NULL;
1058
1059 return mdev;
1060}
1061
1062static inline unsigned int mdev_to_minor(struct drbd_conf *mdev)
1063{
1064 return mdev->minor;
1065}
1066
1067/* returns 1 if it was successfull,
1068 * returns 0 if there was no data socket.
1069 * so wherever you are going to use the data.socket, e.g. do
1070 * if (!drbd_get_data_sock(mdev))
1071 * return 0;
1072 * CODE();
1073 * drbd_put_data_sock(mdev);
1074 */
1075static inline int drbd_get_data_sock(struct drbd_conf *mdev)
1076{
1077 mutex_lock(&mdev->data.mutex);
1078 /* drbd_disconnect() could have called drbd_free_sock()
1079 * while we were waiting in down()... */
1080 if (unlikely(mdev->data.socket == NULL)) {
1081 mutex_unlock(&mdev->data.mutex);
1082 return 0;
1083 }
1084 return 1;
1085}
1086
1087static inline void drbd_put_data_sock(struct drbd_conf *mdev)
1088{
1089 mutex_unlock(&mdev->data.mutex);
1090}
1091
1092/*
1093 * function declarations
1094 *************************/
1095
1096/* drbd_main.c */
1097
1098enum chg_state_flags {
1099 CS_HARD = 1,
1100 CS_VERBOSE = 2,
1101 CS_WAIT_COMPLETE = 4,
1102 CS_SERIALIZE = 8,
1103 CS_ORDERED = CS_WAIT_COMPLETE + CS_SERIALIZE,
1104};
1105
e89b591c
PR
1106enum dds_flags {
1107 DDSF_FORCED = 1,
1108 DDSF_NO_RESYNC = 2, /* Do not run a resync for the new space */
1109};
1110
b411b363
PR
1111extern void drbd_init_set_defaults(struct drbd_conf *mdev);
1112extern int drbd_change_state(struct drbd_conf *mdev, enum chg_state_flags f,
1113 union drbd_state mask, union drbd_state val);
1114extern void drbd_force_state(struct drbd_conf *, union drbd_state,
1115 union drbd_state);
1116extern int _drbd_request_state(struct drbd_conf *, union drbd_state,
1117 union drbd_state, enum chg_state_flags);
1118extern int __drbd_set_state(struct drbd_conf *, union drbd_state,
1119 enum chg_state_flags, struct completion *done);
1120extern void print_st_err(struct drbd_conf *, union drbd_state,
1121 union drbd_state, int);
1122extern int drbd_thread_start(struct drbd_thread *thi);
1123extern void _drbd_thread_stop(struct drbd_thread *thi, int restart, int wait);
1124#ifdef CONFIG_SMP
1125extern void drbd_thread_current_set_cpu(struct drbd_conf *mdev);
1126extern void drbd_calc_cpu_mask(struct drbd_conf *mdev);
1127#else
1128#define drbd_thread_current_set_cpu(A) ({})
1129#define drbd_calc_cpu_mask(A) ({})
1130#endif
1131extern void drbd_free_resources(struct drbd_conf *mdev);
1132extern void tl_release(struct drbd_conf *mdev, unsigned int barrier_nr,
1133 unsigned int set_size);
1134extern void tl_clear(struct drbd_conf *mdev);
1135extern void _tl_add_barrier(struct drbd_conf *, struct drbd_tl_epoch *);
1136extern void drbd_free_sock(struct drbd_conf *mdev);
1137extern int drbd_send(struct drbd_conf *mdev, struct socket *sock,
1138 void *buf, size_t size, unsigned msg_flags);
1139extern int drbd_send_protocol(struct drbd_conf *mdev);
1140extern int drbd_send_uuids(struct drbd_conf *mdev);
1141extern int drbd_send_uuids_skip_initial_sync(struct drbd_conf *mdev);
1142extern int drbd_send_sync_uuid(struct drbd_conf *mdev, u64 val);
e89b591c 1143extern int drbd_send_sizes(struct drbd_conf *mdev, int trigger_reply, enum dds_flags flags);
b411b363
PR
1144extern int _drbd_send_state(struct drbd_conf *mdev);
1145extern int drbd_send_state(struct drbd_conf *mdev);
1146extern int _drbd_send_cmd(struct drbd_conf *mdev, struct socket *sock,
1147 enum drbd_packets cmd, struct p_header *h,
1148 size_t size, unsigned msg_flags);
1149#define USE_DATA_SOCKET 1
1150#define USE_META_SOCKET 0
1151extern int drbd_send_cmd(struct drbd_conf *mdev, int use_data_socket,
1152 enum drbd_packets cmd, struct p_header *h,
1153 size_t size);
1154extern int drbd_send_cmd2(struct drbd_conf *mdev, enum drbd_packets cmd,
1155 char *data, size_t size);
1156extern int drbd_send_sync_param(struct drbd_conf *mdev, struct syncer_conf *sc);
1157extern int drbd_send_b_ack(struct drbd_conf *mdev, u32 barrier_nr,
1158 u32 set_size);
1159extern int drbd_send_ack(struct drbd_conf *mdev, enum drbd_packets cmd,
1160 struct drbd_epoch_entry *e);
1161extern int drbd_send_ack_rp(struct drbd_conf *mdev, enum drbd_packets cmd,
1162 struct p_block_req *rp);
1163extern int drbd_send_ack_dp(struct drbd_conf *mdev, enum drbd_packets cmd,
1164 struct p_data *dp);
1165extern int drbd_send_ack_ex(struct drbd_conf *mdev, enum drbd_packets cmd,
1166 sector_t sector, int blksize, u64 block_id);
1167extern int drbd_send_block(struct drbd_conf *mdev, enum drbd_packets cmd,
1168 struct drbd_epoch_entry *e);
1169extern int drbd_send_dblock(struct drbd_conf *mdev, struct drbd_request *req);
1170extern int _drbd_send_barrier(struct drbd_conf *mdev,
1171 struct drbd_tl_epoch *barrier);
1172extern int drbd_send_drequest(struct drbd_conf *mdev, int cmd,
1173 sector_t sector, int size, u64 block_id);
1174extern int drbd_send_drequest_csum(struct drbd_conf *mdev,
1175 sector_t sector,int size,
1176 void *digest, int digest_size,
1177 enum drbd_packets cmd);
1178extern int drbd_send_ov_request(struct drbd_conf *mdev,sector_t sector,int size);
1179
1180extern int drbd_send_bitmap(struct drbd_conf *mdev);
1181extern int _drbd_send_bitmap(struct drbd_conf *mdev);
1182extern int drbd_send_sr_reply(struct drbd_conf *mdev, int retcode);
1183extern void drbd_free_bc(struct drbd_backing_dev *ldev);
1184extern void drbd_mdev_cleanup(struct drbd_conf *mdev);
1185
1186/* drbd_meta-data.c (still in drbd_main.c) */
1187extern void drbd_md_sync(struct drbd_conf *mdev);
1188extern int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev);
1189/* maybe define them below as inline? */
1190extern void drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local);
1191extern void _drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local);
1192extern void drbd_uuid_new_current(struct drbd_conf *mdev) __must_hold(local);
1193extern void _drbd_uuid_new_current(struct drbd_conf *mdev) __must_hold(local);
1194extern void drbd_uuid_set_bm(struct drbd_conf *mdev, u64 val) __must_hold(local);
1195extern void drbd_md_set_flag(struct drbd_conf *mdev, int flags) __must_hold(local);
1196extern void drbd_md_clear_flag(struct drbd_conf *mdev, int flags)__must_hold(local);
1197extern int drbd_md_test_flag(struct drbd_backing_dev *, int);
1198extern void drbd_md_mark_dirty(struct drbd_conf *mdev);
1199extern void drbd_queue_bitmap_io(struct drbd_conf *mdev,
1200 int (*io_fn)(struct drbd_conf *),
1201 void (*done)(struct drbd_conf *, int),
1202 char *why);
1203extern int drbd_bmio_set_n_write(struct drbd_conf *mdev);
1204extern int drbd_bmio_clear_n_write(struct drbd_conf *mdev);
1205extern int drbd_bitmap_io(struct drbd_conf *mdev, int (*io_fn)(struct drbd_conf *), char *why);
1206
1207
1208/* Meta data layout
1209 We reserve a 128MB Block (4k aligned)
1210 * either at the end of the backing device
3ad2f3fb 1211 * or on a separate meta data device. */
b411b363
PR
1212
1213#define MD_RESERVED_SECT (128LU << 11) /* 128 MB, unit sectors */
1214/* The following numbers are sectors */
1215#define MD_AL_OFFSET 8 /* 8 Sectors after start of meta area */
1216#define MD_AL_MAX_SIZE 64 /* = 32 kb LOG ~ 3776 extents ~ 14 GB Storage */
1217/* Allows up to about 3.8TB */
1218#define MD_BM_OFFSET (MD_AL_OFFSET + MD_AL_MAX_SIZE)
1219
1220/* Since the smalles IO unit is usually 512 byte */
1221#define MD_SECTOR_SHIFT 9
1222#define MD_SECTOR_SIZE (1<<MD_SECTOR_SHIFT)
1223
1224/* activity log */
1225#define AL_EXTENTS_PT ((MD_SECTOR_SIZE-12)/8-1) /* 61 ; Extents per 512B sector */
1226#define AL_EXTENT_SHIFT 22 /* One extent represents 4M Storage */
1227#define AL_EXTENT_SIZE (1<<AL_EXTENT_SHIFT)
1228
1229#if BITS_PER_LONG == 32
1230#define LN2_BPL 5
1231#define cpu_to_lel(A) cpu_to_le32(A)
1232#define lel_to_cpu(A) le32_to_cpu(A)
1233#elif BITS_PER_LONG == 64
1234#define LN2_BPL 6
1235#define cpu_to_lel(A) cpu_to_le64(A)
1236#define lel_to_cpu(A) le64_to_cpu(A)
1237#else
1238#error "LN2 of BITS_PER_LONG unknown!"
1239#endif
1240
1241/* resync bitmap */
1242/* 16MB sized 'bitmap extent' to track syncer usage */
1243struct bm_extent {
1244 int rs_left; /* number of bits set (out of sync) in this extent. */
1245 int rs_failed; /* number of failed resync requests in this extent. */
1246 unsigned long flags;
1247 struct lc_element lce;
1248};
1249
1250#define BME_NO_WRITES 0 /* bm_extent.flags: no more requests on this one! */
1251#define BME_LOCKED 1 /* bm_extent.flags: syncer active on this one. */
1252
1253/* drbd_bitmap.c */
1254/*
1255 * We need to store one bit for a block.
1256 * Example: 1GB disk @ 4096 byte blocks ==> we need 32 KB bitmap.
1257 * Bit 0 ==> local node thinks this block is binary identical on both nodes
1258 * Bit 1 ==> local node thinks this block needs to be synced.
1259 */
1260
1261#define BM_BLOCK_SHIFT 12 /* 4k per bit */
1262#define BM_BLOCK_SIZE (1<<BM_BLOCK_SHIFT)
1263/* (9+3) : 512 bytes @ 8 bits; representing 16M storage
1264 * per sector of on disk bitmap */
1265#define BM_EXT_SHIFT (BM_BLOCK_SHIFT + MD_SECTOR_SHIFT + 3) /* = 24 */
1266#define BM_EXT_SIZE (1<<BM_EXT_SHIFT)
1267
1268#if (BM_EXT_SHIFT != 24) || (BM_BLOCK_SHIFT != 12)
1269#error "HAVE YOU FIXED drbdmeta AS WELL??"
1270#endif
1271
1272/* thus many _storage_ sectors are described by one bit */
1273#define BM_SECT_TO_BIT(x) ((x)>>(BM_BLOCK_SHIFT-9))
1274#define BM_BIT_TO_SECT(x) ((sector_t)(x)<<(BM_BLOCK_SHIFT-9))
1275#define BM_SECT_PER_BIT BM_BIT_TO_SECT(1)
1276
1277/* bit to represented kilo byte conversion */
1278#define Bit2KB(bits) ((bits)<<(BM_BLOCK_SHIFT-10))
1279
1280/* in which _bitmap_ extent (resp. sector) the bit for a certain
1281 * _storage_ sector is located in */
1282#define BM_SECT_TO_EXT(x) ((x)>>(BM_EXT_SHIFT-9))
1283
1284/* how much _storage_ sectors we have per bitmap sector */
1285#define BM_EXT_TO_SECT(x) ((sector_t)(x) << (BM_EXT_SHIFT-9))
1286#define BM_SECT_PER_EXT BM_EXT_TO_SECT(1)
1287
1288/* in one sector of the bitmap, we have this many activity_log extents. */
1289#define AL_EXT_PER_BM_SECT (1 << (BM_EXT_SHIFT - AL_EXTENT_SHIFT))
1290#define BM_WORDS_PER_AL_EXT (1 << (AL_EXTENT_SHIFT-BM_BLOCK_SHIFT-LN2_BPL))
1291
1292#define BM_BLOCKS_PER_BM_EXT_B (BM_EXT_SHIFT - BM_BLOCK_SHIFT)
1293#define BM_BLOCKS_PER_BM_EXT_MASK ((1<<BM_BLOCKS_PER_BM_EXT_B) - 1)
1294
1295/* the extent in "PER_EXTENT" below is an activity log extent
1296 * we need that many (long words/bytes) to store the bitmap
1297 * of one AL_EXTENT_SIZE chunk of storage.
1298 * we can store the bitmap for that many AL_EXTENTS within
1299 * one sector of the _on_disk_ bitmap:
1300 * bit 0 bit 37 bit 38 bit (512*8)-1
1301 * ...|........|........|.. // ..|........|
1302 * sect. 0 `296 `304 ^(512*8*8)-1
1303 *
1304#define BM_WORDS_PER_EXT ( (AL_EXT_SIZE/BM_BLOCK_SIZE) / BITS_PER_LONG )
1305#define BM_BYTES_PER_EXT ( (AL_EXT_SIZE/BM_BLOCK_SIZE) / 8 ) // 128
1306#define BM_EXT_PER_SECT ( 512 / BM_BYTES_PER_EXTENT ) // 4
1307 */
1308
1309#define DRBD_MAX_SECTORS_32 (0xffffffffLU)
1310#define DRBD_MAX_SECTORS_BM \
1311 ((MD_RESERVED_SECT - MD_BM_OFFSET) * (1LL<<(BM_EXT_SHIFT-9)))
1312#if DRBD_MAX_SECTORS_BM < DRBD_MAX_SECTORS_32
1313#define DRBD_MAX_SECTORS DRBD_MAX_SECTORS_BM
1314#define DRBD_MAX_SECTORS_FLEX DRBD_MAX_SECTORS_BM
36bfc7e2 1315#elif !defined(CONFIG_LBDAF) && BITS_PER_LONG == 32
b411b363
PR
1316#define DRBD_MAX_SECTORS DRBD_MAX_SECTORS_32
1317#define DRBD_MAX_SECTORS_FLEX DRBD_MAX_SECTORS_32
1318#else
1319#define DRBD_MAX_SECTORS DRBD_MAX_SECTORS_BM
1320/* 16 TB in units of sectors */
1321#if BITS_PER_LONG == 32
1322/* adjust by one page worth of bitmap,
1323 * so we won't wrap around in drbd_bm_find_next_bit.
1324 * you should use 64bit OS for that much storage, anyways. */
1325#define DRBD_MAX_SECTORS_FLEX BM_BIT_TO_SECT(0xffff7fff)
1326#else
1327#define DRBD_MAX_SECTORS_FLEX BM_BIT_TO_SECT(0x1LU << 32)
1328#endif
1329#endif
1330
1331/* Sector shift value for the "hash" functions of tl_hash and ee_hash tables.
1332 * With a value of 6 all IO in one 32K block make it to the same slot of the
1333 * hash table. */
1334#define HT_SHIFT 6
1335#define DRBD_MAX_SEGMENT_SIZE (1U<<(9+HT_SHIFT))
1336
1337/* Number of elements in the app_reads_hash */
1338#define APP_R_HSIZE 15
1339
1340extern int drbd_bm_init(struct drbd_conf *mdev);
02d9a94b 1341extern int drbd_bm_resize(struct drbd_conf *mdev, sector_t sectors, int set_new_bits);
b411b363
PR
1342extern void drbd_bm_cleanup(struct drbd_conf *mdev);
1343extern void drbd_bm_set_all(struct drbd_conf *mdev);
1344extern void drbd_bm_clear_all(struct drbd_conf *mdev);
1345extern int drbd_bm_set_bits(
1346 struct drbd_conf *mdev, unsigned long s, unsigned long e);
1347extern int drbd_bm_clear_bits(
1348 struct drbd_conf *mdev, unsigned long s, unsigned long e);
1349/* bm_set_bits variant for use while holding drbd_bm_lock */
1350extern void _drbd_bm_set_bits(struct drbd_conf *mdev,
1351 const unsigned long s, const unsigned long e);
1352extern int drbd_bm_test_bit(struct drbd_conf *mdev, unsigned long bitnr);
1353extern int drbd_bm_e_weight(struct drbd_conf *mdev, unsigned long enr);
1354extern int drbd_bm_write_sect(struct drbd_conf *mdev, unsigned long enr) __must_hold(local);
1355extern int drbd_bm_read(struct drbd_conf *mdev) __must_hold(local);
1356extern int drbd_bm_write(struct drbd_conf *mdev) __must_hold(local);
1357extern unsigned long drbd_bm_ALe_set_all(struct drbd_conf *mdev,
1358 unsigned long al_enr);
1359extern size_t drbd_bm_words(struct drbd_conf *mdev);
1360extern unsigned long drbd_bm_bits(struct drbd_conf *mdev);
1361extern sector_t drbd_bm_capacity(struct drbd_conf *mdev);
1362extern unsigned long drbd_bm_find_next(struct drbd_conf *mdev, unsigned long bm_fo);
1363/* bm_find_next variants for use while you hold drbd_bm_lock() */
1364extern unsigned long _drbd_bm_find_next(struct drbd_conf *mdev, unsigned long bm_fo);
1365extern unsigned long _drbd_bm_find_next_zero(struct drbd_conf *mdev, unsigned long bm_fo);
1366extern unsigned long drbd_bm_total_weight(struct drbd_conf *mdev);
1367extern int drbd_bm_rs_done(struct drbd_conf *mdev);
1368/* for receive_bitmap */
1369extern void drbd_bm_merge_lel(struct drbd_conf *mdev, size_t offset,
1370 size_t number, unsigned long *buffer);
1371/* for _drbd_send_bitmap and drbd_bm_write_sect */
1372extern void drbd_bm_get_lel(struct drbd_conf *mdev, size_t offset,
1373 size_t number, unsigned long *buffer);
1374
1375extern void drbd_bm_lock(struct drbd_conf *mdev, char *why);
1376extern void drbd_bm_unlock(struct drbd_conf *mdev);
1377
1378extern int drbd_bm_count_bits(struct drbd_conf *mdev, const unsigned long s, const unsigned long e);
1379/* drbd_main.c */
1380
1381extern struct kmem_cache *drbd_request_cache;
1382extern struct kmem_cache *drbd_ee_cache; /* epoch entries */
1383extern struct kmem_cache *drbd_bm_ext_cache; /* bitmap extents */
1384extern struct kmem_cache *drbd_al_ext_cache; /* activity log extents */
1385extern mempool_t *drbd_request_mempool;
1386extern mempool_t *drbd_ee_mempool;
1387
1388extern struct page *drbd_pp_pool; /* drbd's page pool */
1389extern spinlock_t drbd_pp_lock;
1390extern int drbd_pp_vacant;
1391extern wait_queue_head_t drbd_pp_wait;
1392
1393extern rwlock_t global_state_lock;
1394
1395extern struct drbd_conf *drbd_new_device(unsigned int minor);
1396extern void drbd_free_mdev(struct drbd_conf *mdev);
1397
1398extern int proc_details;
1399
1400/* drbd_req */
1401extern int drbd_make_request_26(struct request_queue *q, struct bio *bio);
1402extern int drbd_read_remote(struct drbd_conf *mdev, struct drbd_request *req);
1403extern int drbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bvm, struct bio_vec *bvec);
1404extern int is_valid_ar_handle(struct drbd_request *, sector_t);
1405
1406
1407/* drbd_nl.c */
1408extern void drbd_suspend_io(struct drbd_conf *mdev);
1409extern void drbd_resume_io(struct drbd_conf *mdev);
1410extern char *ppsize(char *buf, unsigned long long size);
a393db6f 1411extern sector_t drbd_new_dev_size(struct drbd_conf *, struct drbd_backing_dev *, int);
b411b363 1412enum determine_dev_size { dev_size_error = -1, unchanged = 0, shrunk = 1, grew = 2 };
d845030f 1413extern enum determine_dev_size drbd_determin_dev_size(struct drbd_conf *, enum dds_flags) __must_hold(local);
b411b363
PR
1414extern void resync_after_online_grow(struct drbd_conf *);
1415extern void drbd_setup_queue_param(struct drbd_conf *mdev, unsigned int) __must_hold(local);
1416extern int drbd_set_role(struct drbd_conf *mdev, enum drbd_role new_role,
1417 int force);
1418enum drbd_disk_state drbd_try_outdate_peer(struct drbd_conf *mdev);
1419extern int drbd_khelper(struct drbd_conf *mdev, char *cmd);
1420
1421/* drbd_worker.c */
1422extern int drbd_worker(struct drbd_thread *thi);
1423extern int drbd_alter_sa(struct drbd_conf *mdev, int na);
1424extern void drbd_start_resync(struct drbd_conf *mdev, enum drbd_conns side);
1425extern void resume_next_sg(struct drbd_conf *mdev);
1426extern void suspend_other_sg(struct drbd_conf *mdev);
1427extern int drbd_resync_finished(struct drbd_conf *mdev);
1428/* maybe rather drbd_main.c ? */
1429extern int drbd_md_sync_page_io(struct drbd_conf *mdev,
1430 struct drbd_backing_dev *bdev, sector_t sector, int rw);
1431extern void drbd_ov_oos_found(struct drbd_conf*, sector_t, int);
1432
1433static inline void ov_oos_print(struct drbd_conf *mdev)
1434{
1435 if (mdev->ov_last_oos_size) {
1436 dev_err(DEV, "Out of sync: start=%llu, size=%lu (sectors)\n",
1437 (unsigned long long)mdev->ov_last_oos_start,
1438 (unsigned long)mdev->ov_last_oos_size);
1439 }
1440 mdev->ov_last_oos_size=0;
1441}
1442
1443
1444extern void drbd_csum(struct drbd_conf *, struct crypto_hash *, struct bio *, void *);
1445/* worker callbacks */
1446extern int w_req_cancel_conflict(struct drbd_conf *, struct drbd_work *, int);
1447extern int w_read_retry_remote(struct drbd_conf *, struct drbd_work *, int);
1448extern int w_e_end_data_req(struct drbd_conf *, struct drbd_work *, int);
1449extern int w_e_end_rsdata_req(struct drbd_conf *, struct drbd_work *, int);
1450extern int w_e_end_csum_rs_req(struct drbd_conf *, struct drbd_work *, int);
1451extern int w_e_end_ov_reply(struct drbd_conf *, struct drbd_work *, int);
1452extern int w_e_end_ov_req(struct drbd_conf *, struct drbd_work *, int);
1453extern int w_ov_finished(struct drbd_conf *, struct drbd_work *, int);
1454extern int w_resync_inactive(struct drbd_conf *, struct drbd_work *, int);
1455extern int w_resume_next_sg(struct drbd_conf *, struct drbd_work *, int);
1456extern int w_io_error(struct drbd_conf *, struct drbd_work *, int);
1457extern int w_send_write_hint(struct drbd_conf *, struct drbd_work *, int);
1458extern int w_make_resync_request(struct drbd_conf *, struct drbd_work *, int);
1459extern int w_send_dblock(struct drbd_conf *, struct drbd_work *, int);
1460extern int w_send_barrier(struct drbd_conf *, struct drbd_work *, int);
1461extern int w_send_read_req(struct drbd_conf *, struct drbd_work *, int);
1462extern int w_prev_work_done(struct drbd_conf *, struct drbd_work *, int);
1463extern int w_e_reissue(struct drbd_conf *, struct drbd_work *, int);
1464
1465extern void resync_timer_fn(unsigned long data);
1466
1467/* drbd_receiver.c */
1468extern int drbd_release_ee(struct drbd_conf *mdev, struct list_head *list);
1469extern struct drbd_epoch_entry *drbd_alloc_ee(struct drbd_conf *mdev,
1470 u64 id,
1471 sector_t sector,
1472 unsigned int data_size,
1473 gfp_t gfp_mask) __must_hold(local);
1474extern void drbd_free_ee(struct drbd_conf *mdev, struct drbd_epoch_entry *e);
1475extern void drbd_wait_ee_list_empty(struct drbd_conf *mdev,
1476 struct list_head *head);
1477extern void _drbd_wait_ee_list_empty(struct drbd_conf *mdev,
1478 struct list_head *head);
1479extern void drbd_set_recv_tcq(struct drbd_conf *mdev, int tcq_enabled);
1480extern void _drbd_clear_done_ee(struct drbd_conf *mdev, struct list_head *to_be_freed);
1481extern void drbd_flush_workqueue(struct drbd_conf *mdev);
1482
1483/* yes, there is kernel_setsockopt, but only since 2.6.18. we don't need to
1484 * mess with get_fs/set_fs, we know we are KERNEL_DS always. */
1485static inline int drbd_setsockopt(struct socket *sock, int level, int optname,
1486 char __user *optval, int optlen)
1487{
1488 int err;
1489 if (level == SOL_SOCKET)
1490 err = sock_setsockopt(sock, level, optname, optval, optlen);
1491 else
1492 err = sock->ops->setsockopt(sock, level, optname, optval,
1493 optlen);
1494 return err;
1495}
1496
1497static inline void drbd_tcp_cork(struct socket *sock)
1498{
1499 int __user val = 1;
1500 (void) drbd_setsockopt(sock, SOL_TCP, TCP_CORK,
1501 (char __user *)&val, sizeof(val));
1502}
1503
1504static inline void drbd_tcp_uncork(struct socket *sock)
1505{
1506 int __user val = 0;
1507 (void) drbd_setsockopt(sock, SOL_TCP, TCP_CORK,
1508 (char __user *)&val, sizeof(val));
1509}
1510
1511static inline void drbd_tcp_nodelay(struct socket *sock)
1512{
1513 int __user val = 1;
1514 (void) drbd_setsockopt(sock, SOL_TCP, TCP_NODELAY,
1515 (char __user *)&val, sizeof(val));
1516}
1517
1518static inline void drbd_tcp_quickack(struct socket *sock)
1519{
1520 int __user val = 1;
1521 (void) drbd_setsockopt(sock, SOL_TCP, TCP_QUICKACK,
1522 (char __user *)&val, sizeof(val));
1523}
1524
1525void drbd_bump_write_ordering(struct drbd_conf *mdev, enum write_ordering_e wo);
1526
1527/* drbd_proc.c */
1528extern struct proc_dir_entry *drbd_proc;
7d4e9d09 1529extern const struct file_operations drbd_proc_fops;
b411b363
PR
1530extern const char *drbd_conn_str(enum drbd_conns s);
1531extern const char *drbd_role_str(enum drbd_role s);
1532
1533/* drbd_actlog.c */
1534extern void drbd_al_begin_io(struct drbd_conf *mdev, sector_t sector);
1535extern void drbd_al_complete_io(struct drbd_conf *mdev, sector_t sector);
1536extern void drbd_rs_complete_io(struct drbd_conf *mdev, sector_t sector);
1537extern int drbd_rs_begin_io(struct drbd_conf *mdev, sector_t sector);
1538extern int drbd_try_rs_begin_io(struct drbd_conf *mdev, sector_t sector);
1539extern void drbd_rs_cancel_all(struct drbd_conf *mdev);
1540extern int drbd_rs_del_all(struct drbd_conf *mdev);
1541extern void drbd_rs_failed_io(struct drbd_conf *mdev,
1542 sector_t sector, int size);
1543extern int drbd_al_read_log(struct drbd_conf *mdev, struct drbd_backing_dev *);
1544extern void __drbd_set_in_sync(struct drbd_conf *mdev, sector_t sector,
1545 int size, const char *file, const unsigned int line);
1546#define drbd_set_in_sync(mdev, sector, size) \
1547 __drbd_set_in_sync(mdev, sector, size, __FILE__, __LINE__)
1548extern void __drbd_set_out_of_sync(struct drbd_conf *mdev, sector_t sector,
1549 int size, const char *file, const unsigned int line);
1550#define drbd_set_out_of_sync(mdev, sector, size) \
1551 __drbd_set_out_of_sync(mdev, sector, size, __FILE__, __LINE__)
1552extern void drbd_al_apply_to_bm(struct drbd_conf *mdev);
1553extern void drbd_al_to_on_disk_bm(struct drbd_conf *mdev);
1554extern void drbd_al_shrink(struct drbd_conf *mdev);
1555
1556
1557/* drbd_nl.c */
1558
1559void drbd_nl_cleanup(void);
1560int __init drbd_nl_init(void);
1561void drbd_bcast_state(struct drbd_conf *mdev, union drbd_state);
1562void drbd_bcast_sync_progress(struct drbd_conf *mdev);
1563void drbd_bcast_ee(struct drbd_conf *mdev,
1564 const char *reason, const int dgs,
1565 const char* seen_hash, const char* calc_hash,
1566 const struct drbd_epoch_entry* e);
1567
1568
1569/**
1570 * DOC: DRBD State macros
1571 *
1572 * These macros are used to express state changes in easily readable form.
1573 *
1574 * The NS macros expand to a mask and a value, that can be bit ored onto the
1575 * current state as soon as the spinlock (req_lock) was taken.
1576 *
1577 * The _NS macros are used for state functions that get called with the
1578 * spinlock. These macros expand directly to the new state value.
1579 *
1580 * Besides the basic forms NS() and _NS() additional _?NS[23] are defined
1581 * to express state changes that affect more than one aspect of the state.
1582 *
1583 * E.g. NS2(conn, C_CONNECTED, peer, R_SECONDARY)
1584 * Means that the network connection was established and that the peer
1585 * is in secondary role.
1586 */
1587#define role_MASK R_MASK
1588#define peer_MASK R_MASK
1589#define disk_MASK D_MASK
1590#define pdsk_MASK D_MASK
1591#define conn_MASK C_MASK
1592#define susp_MASK 1
1593#define user_isp_MASK 1
1594#define aftr_isp_MASK 1
1595
1596#define NS(T, S) \
1597 ({ union drbd_state mask; mask.i = 0; mask.T = T##_MASK; mask; }), \
1598 ({ union drbd_state val; val.i = 0; val.T = (S); val; })
1599#define NS2(T1, S1, T2, S2) \
1600 ({ union drbd_state mask; mask.i = 0; mask.T1 = T1##_MASK; \
1601 mask.T2 = T2##_MASK; mask; }), \
1602 ({ union drbd_state val; val.i = 0; val.T1 = (S1); \
1603 val.T2 = (S2); val; })
1604#define NS3(T1, S1, T2, S2, T3, S3) \
1605 ({ union drbd_state mask; mask.i = 0; mask.T1 = T1##_MASK; \
1606 mask.T2 = T2##_MASK; mask.T3 = T3##_MASK; mask; }), \
1607 ({ union drbd_state val; val.i = 0; val.T1 = (S1); \
1608 val.T2 = (S2); val.T3 = (S3); val; })
1609
1610#define _NS(D, T, S) \
1611 D, ({ union drbd_state __ns; __ns.i = D->state.i; __ns.T = (S); __ns; })
1612#define _NS2(D, T1, S1, T2, S2) \
1613 D, ({ union drbd_state __ns; __ns.i = D->state.i; __ns.T1 = (S1); \
1614 __ns.T2 = (S2); __ns; })
1615#define _NS3(D, T1, S1, T2, S2, T3, S3) \
1616 D, ({ union drbd_state __ns; __ns.i = D->state.i; __ns.T1 = (S1); \
1617 __ns.T2 = (S2); __ns.T3 = (S3); __ns; })
1618
1619/*
1620 * inline helper functions
1621 *************************/
1622
1623static inline void drbd_state_lock(struct drbd_conf *mdev)
1624{
1625 wait_event(mdev->misc_wait,
1626 !test_and_set_bit(CLUSTER_ST_CHANGE, &mdev->flags));
1627}
1628
1629static inline void drbd_state_unlock(struct drbd_conf *mdev)
1630{
1631 clear_bit(CLUSTER_ST_CHANGE, &mdev->flags);
1632 wake_up(&mdev->misc_wait);
1633}
1634
1635static inline int _drbd_set_state(struct drbd_conf *mdev,
1636 union drbd_state ns, enum chg_state_flags flags,
1637 struct completion *done)
1638{
1639 int rv;
1640
1641 read_lock(&global_state_lock);
1642 rv = __drbd_set_state(mdev, ns, flags, done);
1643 read_unlock(&global_state_lock);
1644
1645 return rv;
1646}
1647
1648/**
1649 * drbd_request_state() - Reqest a state change
1650 * @mdev: DRBD device.
1651 * @mask: mask of state bits to change.
1652 * @val: value of new state bits.
1653 *
1654 * This is the most graceful way of requesting a state change. It is verbose
1655 * quite verbose in case the state change is not possible, and all those
1656 * state changes are globally serialized.
1657 */
1658static inline int drbd_request_state(struct drbd_conf *mdev,
1659 union drbd_state mask,
1660 union drbd_state val)
1661{
1662 return _drbd_request_state(mdev, mask, val, CS_VERBOSE + CS_ORDERED);
1663}
1664
1665#define __drbd_chk_io_error(m,f) __drbd_chk_io_error_(m,f, __func__)
1666static inline void __drbd_chk_io_error_(struct drbd_conf *mdev, int forcedetach, const char *where)
1667{
1668 switch (mdev->ldev->dc.on_io_error) {
1669 case EP_PASS_ON:
1670 if (!forcedetach) {
1671 if (printk_ratelimit())
1672 dev_err(DEV, "Local IO failed in %s."
1673 "Passing error on...\n", where);
1674 break;
1675 }
1676 /* NOTE fall through to detach case if forcedetach set */
1677 case EP_DETACH:
1678 case EP_CALL_HELPER:
1679 if (mdev->state.disk > D_FAILED) {
1680 _drbd_set_state(_NS(mdev, disk, D_FAILED), CS_HARD, NULL);
1681 dev_err(DEV, "Local IO failed in %s."
1682 "Detaching...\n", where);
1683 }
1684 break;
1685 }
1686}
1687
1688/**
1689 * drbd_chk_io_error: Handle the on_io_error setting, should be called from all io completion handlers
1690 * @mdev: DRBD device.
1691 * @error: Error code passed to the IO completion callback
1692 * @forcedetach: Force detach. I.e. the error happened while accessing the meta data
1693 *
1694 * See also drbd_main.c:after_state_ch() if (os.disk > D_FAILED && ns.disk == D_FAILED)
1695 */
1696#define drbd_chk_io_error(m,e,f) drbd_chk_io_error_(m,e,f, __func__)
1697static inline void drbd_chk_io_error_(struct drbd_conf *mdev,
1698 int error, int forcedetach, const char *where)
1699{
1700 if (error) {
1701 unsigned long flags;
1702 spin_lock_irqsave(&mdev->req_lock, flags);
1703 __drbd_chk_io_error_(mdev, forcedetach, where);
1704 spin_unlock_irqrestore(&mdev->req_lock, flags);
1705 }
1706}
1707
1708
1709/**
1710 * drbd_md_first_sector() - Returns the first sector number of the meta data area
1711 * @bdev: Meta data block device.
1712 *
1713 * BTW, for internal meta data, this happens to be the maximum capacity
1714 * we could agree upon with our peer node.
1715 */
1716static inline sector_t drbd_md_first_sector(struct drbd_backing_dev *bdev)
1717{
1718 switch (bdev->dc.meta_dev_idx) {
1719 case DRBD_MD_INDEX_INTERNAL:
1720 case DRBD_MD_INDEX_FLEX_INT:
1721 return bdev->md.md_offset + bdev->md.bm_offset;
1722 case DRBD_MD_INDEX_FLEX_EXT:
1723 default:
1724 return bdev->md.md_offset;
1725 }
1726}
1727
1728/**
1729 * drbd_md_last_sector() - Return the last sector number of the meta data area
1730 * @bdev: Meta data block device.
1731 */
1732static inline sector_t drbd_md_last_sector(struct drbd_backing_dev *bdev)
1733{
1734 switch (bdev->dc.meta_dev_idx) {
1735 case DRBD_MD_INDEX_INTERNAL:
1736 case DRBD_MD_INDEX_FLEX_INT:
1737 return bdev->md.md_offset + MD_AL_OFFSET - 1;
1738 case DRBD_MD_INDEX_FLEX_EXT:
1739 default:
1740 return bdev->md.md_offset + bdev->md.md_size_sect;
1741 }
1742}
1743
1744/* Returns the number of 512 byte sectors of the device */
1745static inline sector_t drbd_get_capacity(struct block_device *bdev)
1746{
1747 /* return bdev ? get_capacity(bdev->bd_disk) : 0; */
1748 return bdev ? bdev->bd_inode->i_size >> 9 : 0;
1749}
1750
1751/**
1752 * drbd_get_max_capacity() - Returns the capacity we announce to out peer
1753 * @bdev: Meta data block device.
1754 *
1755 * returns the capacity we announce to out peer. we clip ourselves at the
1756 * various MAX_SECTORS, because if we don't, current implementation will
1757 * oops sooner or later
1758 */
1759static inline sector_t drbd_get_max_capacity(struct drbd_backing_dev *bdev)
1760{
1761 sector_t s;
1762 switch (bdev->dc.meta_dev_idx) {
1763 case DRBD_MD_INDEX_INTERNAL:
1764 case DRBD_MD_INDEX_FLEX_INT:
1765 s = drbd_get_capacity(bdev->backing_bdev)
1766 ? min_t(sector_t, DRBD_MAX_SECTORS_FLEX,
1767 drbd_md_first_sector(bdev))
1768 : 0;
1769 break;
1770 case DRBD_MD_INDEX_FLEX_EXT:
1771 s = min_t(sector_t, DRBD_MAX_SECTORS_FLEX,
1772 drbd_get_capacity(bdev->backing_bdev));
1773 /* clip at maximum size the meta device can support */
1774 s = min_t(sector_t, s,
1775 BM_EXT_TO_SECT(bdev->md.md_size_sect
1776 - bdev->md.bm_offset));
1777 break;
1778 default:
1779 s = min_t(sector_t, DRBD_MAX_SECTORS,
1780 drbd_get_capacity(bdev->backing_bdev));
1781 }
1782 return s;
1783}
1784
1785/**
1786 * drbd_md_ss__() - Return the sector number of our meta data super block
1787 * @mdev: DRBD device.
1788 * @bdev: Meta data block device.
1789 */
1790static inline sector_t drbd_md_ss__(struct drbd_conf *mdev,
1791 struct drbd_backing_dev *bdev)
1792{
1793 switch (bdev->dc.meta_dev_idx) {
1794 default: /* external, some index */
1795 return MD_RESERVED_SECT * bdev->dc.meta_dev_idx;
1796 case DRBD_MD_INDEX_INTERNAL:
1797 /* with drbd08, internal meta data is always "flexible" */
1798 case DRBD_MD_INDEX_FLEX_INT:
1799 /* sizeof(struct md_on_disk_07) == 4k
1800 * position: last 4k aligned block of 4k size */
1801 if (!bdev->backing_bdev) {
1802 if (__ratelimit(&drbd_ratelimit_state)) {
1803 dev_err(DEV, "bdev->backing_bdev==NULL\n");
1804 dump_stack();
1805 }
1806 return 0;
1807 }
1808 return (drbd_get_capacity(bdev->backing_bdev) & ~7ULL)
1809 - MD_AL_OFFSET;
1810 case DRBD_MD_INDEX_FLEX_EXT:
1811 return 0;
1812 }
1813}
1814
1815static inline void
1816_drbd_queue_work(struct drbd_work_queue *q, struct drbd_work *w)
1817{
1818 list_add_tail(&w->list, &q->q);
1819 up(&q->s);
1820}
1821
1822static inline void
1823drbd_queue_work_front(struct drbd_work_queue *q, struct drbd_work *w)
1824{
1825 unsigned long flags;
1826 spin_lock_irqsave(&q->q_lock, flags);
1827 list_add(&w->list, &q->q);
1828 up(&q->s); /* within the spinlock,
1829 see comment near end of drbd_worker() */
1830 spin_unlock_irqrestore(&q->q_lock, flags);
1831}
1832
1833static inline void
1834drbd_queue_work(struct drbd_work_queue *q, struct drbd_work *w)
1835{
1836 unsigned long flags;
1837 spin_lock_irqsave(&q->q_lock, flags);
1838 list_add_tail(&w->list, &q->q);
1839 up(&q->s); /* within the spinlock,
1840 see comment near end of drbd_worker() */
1841 spin_unlock_irqrestore(&q->q_lock, flags);
1842}
1843
1844static inline void wake_asender(struct drbd_conf *mdev)
1845{
1846 if (test_bit(SIGNAL_ASENDER, &mdev->flags))
1847 force_sig(DRBD_SIG, mdev->asender.task);
1848}
1849
1850static inline void request_ping(struct drbd_conf *mdev)
1851{
1852 set_bit(SEND_PING, &mdev->flags);
1853 wake_asender(mdev);
1854}
1855
1856static inline int drbd_send_short_cmd(struct drbd_conf *mdev,
1857 enum drbd_packets cmd)
1858{
1859 struct p_header h;
1860 return drbd_send_cmd(mdev, USE_DATA_SOCKET, cmd, &h, sizeof(h));
1861}
1862
1863static inline int drbd_send_ping(struct drbd_conf *mdev)
1864{
1865 struct p_header h;
1866 return drbd_send_cmd(mdev, USE_META_SOCKET, P_PING, &h, sizeof(h));
1867}
1868
1869static inline int drbd_send_ping_ack(struct drbd_conf *mdev)
1870{
1871 struct p_header h;
1872 return drbd_send_cmd(mdev, USE_META_SOCKET, P_PING_ACK, &h, sizeof(h));
1873}
1874
1875static inline void drbd_thread_stop(struct drbd_thread *thi)
1876{
1877 _drbd_thread_stop(thi, FALSE, TRUE);
1878}
1879
1880static inline void drbd_thread_stop_nowait(struct drbd_thread *thi)
1881{
1882 _drbd_thread_stop(thi, FALSE, FALSE);
1883}
1884
1885static inline void drbd_thread_restart_nowait(struct drbd_thread *thi)
1886{
1887 _drbd_thread_stop(thi, TRUE, FALSE);
1888}
1889
1890/* counts how many answer packets packets we expect from our peer,
1891 * for either explicit application requests,
1892 * or implicit barrier packets as necessary.
1893 * increased:
1894 * w_send_barrier
1895 * _req_mod(req, queue_for_net_write or queue_for_net_read);
1896 * it is much easier and equally valid to count what we queue for the
1897 * worker, even before it actually was queued or send.
1898 * (drbd_make_request_common; recovery path on read io-error)
1899 * decreased:
1900 * got_BarrierAck (respective tl_clear, tl_clear_barrier)
1901 * _req_mod(req, data_received)
1902 * [from receive_DataReply]
1903 * _req_mod(req, write_acked_by_peer or recv_acked_by_peer or neg_acked)
1904 * [from got_BlockAck (P_WRITE_ACK, P_RECV_ACK)]
1905 * for some reason it is NOT decreased in got_NegAck,
1906 * but in the resulting cleanup code from report_params.
1907 * we should try to remember the reason for that...
1908 * _req_mod(req, send_failed or send_canceled)
1909 * _req_mod(req, connection_lost_while_pending)
1910 * [from tl_clear_barrier]
1911 */
1912static inline void inc_ap_pending(struct drbd_conf *mdev)
1913{
1914 atomic_inc(&mdev->ap_pending_cnt);
1915}
1916
1917#define ERR_IF_CNT_IS_NEGATIVE(which) \
1918 if (atomic_read(&mdev->which) < 0) \
1919 dev_err(DEV, "in %s:%d: " #which " = %d < 0 !\n", \
1920 __func__ , __LINE__ , \
1921 atomic_read(&mdev->which))
1922
1923#define dec_ap_pending(mdev) do { \
1924 typecheck(struct drbd_conf *, mdev); \
1925 if (atomic_dec_and_test(&mdev->ap_pending_cnt)) \
1926 wake_up(&mdev->misc_wait); \
1927 ERR_IF_CNT_IS_NEGATIVE(ap_pending_cnt); } while (0)
1928
1929/* counts how many resync-related answers we still expect from the peer
1930 * increase decrease
1931 * C_SYNC_TARGET sends P_RS_DATA_REQUEST (and expects P_RS_DATA_REPLY)
1932 * C_SYNC_SOURCE sends P_RS_DATA_REPLY (and expects P_WRITE_ACK whith ID_SYNCER)
1933 * (or P_NEG_ACK with ID_SYNCER)
1934 */
1935static inline void inc_rs_pending(struct drbd_conf *mdev)
1936{
1937 atomic_inc(&mdev->rs_pending_cnt);
1938}
1939
1940#define dec_rs_pending(mdev) do { \
1941 typecheck(struct drbd_conf *, mdev); \
1942 atomic_dec(&mdev->rs_pending_cnt); \
1943 ERR_IF_CNT_IS_NEGATIVE(rs_pending_cnt); } while (0)
1944
1945/* counts how many answers we still need to send to the peer.
1946 * increased on
1947 * receive_Data unless protocol A;
1948 * we need to send a P_RECV_ACK (proto B)
1949 * or P_WRITE_ACK (proto C)
1950 * receive_RSDataReply (recv_resync_read) we need to send a P_WRITE_ACK
1951 * receive_DataRequest (receive_RSDataRequest) we need to send back P_DATA
1952 * receive_Barrier_* we need to send a P_BARRIER_ACK
1953 */
1954static inline void inc_unacked(struct drbd_conf *mdev)
1955{
1956 atomic_inc(&mdev->unacked_cnt);
1957}
1958
1959#define dec_unacked(mdev) do { \
1960 typecheck(struct drbd_conf *, mdev); \
1961 atomic_dec(&mdev->unacked_cnt); \
1962 ERR_IF_CNT_IS_NEGATIVE(unacked_cnt); } while (0)
1963
1964#define sub_unacked(mdev, n) do { \
1965 typecheck(struct drbd_conf *, mdev); \
1966 atomic_sub(n, &mdev->unacked_cnt); \
1967 ERR_IF_CNT_IS_NEGATIVE(unacked_cnt); } while (0)
1968
1969
1970static inline void put_net_conf(struct drbd_conf *mdev)
1971{
1972 if (atomic_dec_and_test(&mdev->net_cnt))
1973 wake_up(&mdev->misc_wait);
1974}
1975
1976/**
1977 * get_net_conf() - Increase ref count on mdev->net_conf; Returns 0 if nothing there
1978 * @mdev: DRBD device.
1979 *
1980 * You have to call put_net_conf() when finished working with mdev->net_conf.
1981 */
1982static inline int get_net_conf(struct drbd_conf *mdev)
1983{
1984 int have_net_conf;
1985
1986 atomic_inc(&mdev->net_cnt);
1987 have_net_conf = mdev->state.conn >= C_UNCONNECTED;
1988 if (!have_net_conf)
1989 put_net_conf(mdev);
1990 return have_net_conf;
1991}
1992
1993/**
1994 * get_ldev() - Increase the ref count on mdev->ldev. Returns 0 if there is no ldev
1995 * @M: DRBD device.
1996 *
1997 * You have to call put_ldev() when finished working with mdev->ldev.
1998 */
1999#define get_ldev(M) __cond_lock(local, _get_ldev_if_state(M,D_INCONSISTENT))
2000#define get_ldev_if_state(M,MINS) __cond_lock(local, _get_ldev_if_state(M,MINS))
2001
2002static inline void put_ldev(struct drbd_conf *mdev)
2003{
2004 __release(local);
2005 if (atomic_dec_and_test(&mdev->local_cnt))
2006 wake_up(&mdev->misc_wait);
2007 D_ASSERT(atomic_read(&mdev->local_cnt) >= 0);
2008}
2009
2010#ifndef __CHECKER__
2011static inline int _get_ldev_if_state(struct drbd_conf *mdev, enum drbd_disk_state mins)
2012{
2013 int io_allowed;
2014
2015 atomic_inc(&mdev->local_cnt);
2016 io_allowed = (mdev->state.disk >= mins);
2017 if (!io_allowed)
2018 put_ldev(mdev);
2019 return io_allowed;
2020}
2021#else
2022extern int _get_ldev_if_state(struct drbd_conf *mdev, enum drbd_disk_state mins);
2023#endif
2024
2025/* you must have an "get_ldev" reference */
2026static inline void drbd_get_syncer_progress(struct drbd_conf *mdev,
2027 unsigned long *bits_left, unsigned int *per_mil_done)
2028{
2029 /*
2030 * this is to break it at compile time when we change that
2031 * (we may feel 4TB maximum storage per drbd is not enough)
2032 */
2033 typecheck(unsigned long, mdev->rs_total);
2034
2035 /* note: both rs_total and rs_left are in bits, i.e. in
2036 * units of BM_BLOCK_SIZE.
2037 * for the percentage, we don't care. */
2038
2039 *bits_left = drbd_bm_total_weight(mdev) - mdev->rs_failed;
2040 /* >> 10 to prevent overflow,
2041 * +1 to prevent division by zero */
2042 if (*bits_left > mdev->rs_total) {
2043 /* doh. maybe a logic bug somewhere.
2044 * may also be just a race condition
2045 * between this and a disconnect during sync.
2046 * for now, just prevent in-kernel buffer overflow.
2047 */
2048 smp_rmb();
2049 dev_warn(DEV, "cs:%s rs_left=%lu > rs_total=%lu (rs_failed %lu)\n",
2050 drbd_conn_str(mdev->state.conn),
2051 *bits_left, mdev->rs_total, mdev->rs_failed);
2052 *per_mil_done = 0;
2053 } else {
2054 /* make sure the calculation happens in long context */
2055 unsigned long tmp = 1000UL -
2056 (*bits_left >> 10)*1000UL
2057 / ((mdev->rs_total >> 10) + 1UL);
2058 *per_mil_done = tmp;
2059 }
2060}
2061
2062
2063/* this throttles on-the-fly application requests
2064 * according to max_buffers settings;
2065 * maybe re-implement using semaphores? */
2066static inline int drbd_get_max_buffers(struct drbd_conf *mdev)
2067{
2068 int mxb = 1000000; /* arbitrary limit on open requests */
2069 if (get_net_conf(mdev)) {
2070 mxb = mdev->net_conf->max_buffers;
2071 put_net_conf(mdev);
2072 }
2073 return mxb;
2074}
2075
2076static inline int drbd_state_is_stable(union drbd_state s)
2077{
2078
2079 /* DO NOT add a default clause, we want the compiler to warn us
2080 * for any newly introduced state we may have forgotten to add here */
2081
2082 switch ((enum drbd_conns)s.conn) {
2083 /* new io only accepted when there is no connection, ... */
2084 case C_STANDALONE:
2085 case C_WF_CONNECTION:
2086 /* ... or there is a well established connection. */
2087 case C_CONNECTED:
2088 case C_SYNC_SOURCE:
2089 case C_SYNC_TARGET:
2090 case C_VERIFY_S:
2091 case C_VERIFY_T:
2092 case C_PAUSED_SYNC_S:
2093 case C_PAUSED_SYNC_T:
2094 /* maybe stable, look at the disk state */
2095 break;
2096
2097 /* no new io accepted during tansitional states
2098 * like handshake or teardown */
2099 case C_DISCONNECTING:
2100 case C_UNCONNECTED:
2101 case C_TIMEOUT:
2102 case C_BROKEN_PIPE:
2103 case C_NETWORK_FAILURE:
2104 case C_PROTOCOL_ERROR:
2105 case C_TEAR_DOWN:
2106 case C_WF_REPORT_PARAMS:
2107 case C_STARTING_SYNC_S:
2108 case C_STARTING_SYNC_T:
2109 case C_WF_BITMAP_S:
2110 case C_WF_BITMAP_T:
2111 case C_WF_SYNC_UUID:
2112 case C_MASK:
2113 /* not "stable" */
2114 return 0;
2115 }
2116
2117 switch ((enum drbd_disk_state)s.disk) {
2118 case D_DISKLESS:
2119 case D_INCONSISTENT:
2120 case D_OUTDATED:
2121 case D_CONSISTENT:
2122 case D_UP_TO_DATE:
2123 /* disk state is stable as well. */
2124 break;
2125
2126 /* no new io accepted during tansitional states */
2127 case D_ATTACHING:
2128 case D_FAILED:
2129 case D_NEGOTIATING:
2130 case D_UNKNOWN:
2131 case D_MASK:
2132 /* not "stable" */
2133 return 0;
2134 }
2135
2136 return 1;
2137}
2138
2139static inline int __inc_ap_bio_cond(struct drbd_conf *mdev)
2140{
2141 int mxb = drbd_get_max_buffers(mdev);
2142
2143 if (mdev->state.susp)
2144 return 0;
2145 if (test_bit(SUSPEND_IO, &mdev->flags))
2146 return 0;
2147
2148 /* to avoid potential deadlock or bitmap corruption,
2149 * in various places, we only allow new application io
2150 * to start during "stable" states. */
2151
2152 /* no new io accepted when attaching or detaching the disk */
2153 if (!drbd_state_is_stable(mdev->state))
2154 return 0;
2155
2156 /* since some older kernels don't have atomic_add_unless,
2157 * and we are within the spinlock anyways, we have this workaround. */
2158 if (atomic_read(&mdev->ap_bio_cnt) > mxb)
2159 return 0;
2160 if (test_bit(BITMAP_IO, &mdev->flags))
2161 return 0;
2162 return 1;
2163}
2164
2165/* I'd like to use wait_event_lock_irq,
2166 * but I'm not sure when it got introduced,
2167 * and not sure when it has 3 or 4 arguments */
2168static inline void inc_ap_bio(struct drbd_conf *mdev, int one_or_two)
2169{
2170 /* compare with after_state_ch,
2171 * os.conn != C_WF_BITMAP_S && ns.conn == C_WF_BITMAP_S */
2172 DEFINE_WAIT(wait);
2173
2174 /* we wait here
2175 * as long as the device is suspended
2176 * until the bitmap is no longer on the fly during connection
2177 * handshake as long as we would exeed the max_buffer limit.
2178 *
2179 * to avoid races with the reconnect code,
2180 * we need to atomic_inc within the spinlock. */
2181
2182 spin_lock_irq(&mdev->req_lock);
2183 while (!__inc_ap_bio_cond(mdev)) {
2184 prepare_to_wait(&mdev->misc_wait, &wait, TASK_UNINTERRUPTIBLE);
2185 spin_unlock_irq(&mdev->req_lock);
2186 schedule();
2187 finish_wait(&mdev->misc_wait, &wait);
2188 spin_lock_irq(&mdev->req_lock);
2189 }
2190 atomic_add(one_or_two, &mdev->ap_bio_cnt);
2191 spin_unlock_irq(&mdev->req_lock);
2192}
2193
2194static inline void dec_ap_bio(struct drbd_conf *mdev)
2195{
2196 int mxb = drbd_get_max_buffers(mdev);
2197 int ap_bio = atomic_dec_return(&mdev->ap_bio_cnt);
2198
2199 D_ASSERT(ap_bio >= 0);
2200 /* this currently does wake_up for every dec_ap_bio!
2201 * maybe rather introduce some type of hysteresis?
2202 * e.g. (ap_bio == mxb/2 || ap_bio == 0) ? */
2203 if (ap_bio < mxb)
2204 wake_up(&mdev->misc_wait);
2205 if (ap_bio == 0 && test_bit(BITMAP_IO, &mdev->flags)) {
2206 if (!test_and_set_bit(BITMAP_IO_QUEUED, &mdev->flags))
2207 drbd_queue_work(&mdev->data.work, &mdev->bm_io_work.w);
2208 }
2209}
2210
2211static inline void drbd_set_ed_uuid(struct drbd_conf *mdev, u64 val)
2212{
2213 mdev->ed_uuid = val;
2214}
2215
2216static inline int seq_cmp(u32 a, u32 b)
2217{
2218 /* we assume wrap around at 32bit.
2219 * for wrap around at 24bit (old atomic_t),
2220 * we'd have to
2221 * a <<= 8; b <<= 8;
2222 */
2223 return (s32)(a) - (s32)(b);
2224}
2225#define seq_lt(a, b) (seq_cmp((a), (b)) < 0)
2226#define seq_gt(a, b) (seq_cmp((a), (b)) > 0)
2227#define seq_ge(a, b) (seq_cmp((a), (b)) >= 0)
2228#define seq_le(a, b) (seq_cmp((a), (b)) <= 0)
2229/* CAUTION: please no side effects in arguments! */
2230#define seq_max(a, b) ((u32)(seq_gt((a), (b)) ? (a) : (b)))
2231
2232static inline void update_peer_seq(struct drbd_conf *mdev, unsigned int new_seq)
2233{
2234 unsigned int m;
2235 spin_lock(&mdev->peer_seq_lock);
2236 m = seq_max(mdev->peer_seq, new_seq);
2237 mdev->peer_seq = m;
2238 spin_unlock(&mdev->peer_seq_lock);
2239 if (m == new_seq)
2240 wake_up(&mdev->seq_wait);
2241}
2242
2243static inline void drbd_update_congested(struct drbd_conf *mdev)
2244{
2245 struct sock *sk = mdev->data.socket->sk;
2246 if (sk->sk_wmem_queued > sk->sk_sndbuf * 4 / 5)
2247 set_bit(NET_CONGESTED, &mdev->flags);
2248}
2249
2250static inline int drbd_queue_order_type(struct drbd_conf *mdev)
2251{
2252 /* sorry, we currently have no working implementation
2253 * of distributed TCQ stuff */
2254#ifndef QUEUE_ORDERED_NONE
2255#define QUEUE_ORDERED_NONE 0
2256#endif
2257 return QUEUE_ORDERED_NONE;
2258}
2259
2260static inline void drbd_blk_run_queue(struct request_queue *q)
2261{
2262 if (q && q->unplug_fn)
2263 q->unplug_fn(q);
2264}
2265
2266static inline void drbd_kick_lo(struct drbd_conf *mdev)
2267{
2268 if (get_ldev(mdev)) {
2269 drbd_blk_run_queue(bdev_get_queue(mdev->ldev->backing_bdev));
2270 put_ldev(mdev);
2271 }
2272}
2273
2274static inline void drbd_md_flush(struct drbd_conf *mdev)
2275{
2276 int r;
2277
2278 if (test_bit(MD_NO_BARRIER, &mdev->flags))
2279 return;
2280
fbd9b09a
DM
2281 r = blkdev_issue_flush(mdev->ldev->md_bdev, GFP_KERNEL, NULL,
2282 BLKDEV_IFL_WAIT);
b411b363
PR
2283 if (r) {
2284 set_bit(MD_NO_BARRIER, &mdev->flags);
2285 dev_err(DEV, "meta data flush failed with status %d, disabling md-flushes\n", r);
2286 }
2287}
2288
2289#endif
This page took 0.178772 seconds and 5 git commands to generate.