xref: /OK3568_Linux_fs/kernel/drivers/block/drbd/drbd_int.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0-or-later */
2*4882a593Smuzhiyun /*
3*4882a593Smuzhiyun   drbd_int.h
4*4882a593Smuzhiyun 
5*4882a593Smuzhiyun   This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
6*4882a593Smuzhiyun 
7*4882a593Smuzhiyun   Copyright (C) 2001-2008, LINBIT Information Technologies GmbH.
8*4882a593Smuzhiyun   Copyright (C) 1999-2008, Philipp Reisner <philipp.reisner@linbit.com>.
9*4882a593Smuzhiyun   Copyright (C) 2002-2008, Lars Ellenberg <lars.ellenberg@linbit.com>.
10*4882a593Smuzhiyun 
11*4882a593Smuzhiyun 
12*4882a593Smuzhiyun */
13*4882a593Smuzhiyun 
14*4882a593Smuzhiyun #ifndef _DRBD_INT_H
15*4882a593Smuzhiyun #define _DRBD_INT_H
16*4882a593Smuzhiyun 
17*4882a593Smuzhiyun #include <crypto/hash.h>
18*4882a593Smuzhiyun #include <linux/compiler.h>
19*4882a593Smuzhiyun #include <linux/types.h>
20*4882a593Smuzhiyun #include <linux/list.h>
21*4882a593Smuzhiyun #include <linux/sched/signal.h>
22*4882a593Smuzhiyun #include <linux/bitops.h>
23*4882a593Smuzhiyun #include <linux/slab.h>
24*4882a593Smuzhiyun #include <linux/ratelimit.h>
25*4882a593Smuzhiyun #include <linux/tcp.h>
26*4882a593Smuzhiyun #include <linux/mutex.h>
27*4882a593Smuzhiyun #include <linux/major.h>
28*4882a593Smuzhiyun #include <linux/blkdev.h>
29*4882a593Smuzhiyun #include <linux/backing-dev.h>
30*4882a593Smuzhiyun #include <linux/genhd.h>
31*4882a593Smuzhiyun #include <linux/idr.h>
32*4882a593Smuzhiyun #include <linux/dynamic_debug.h>
33*4882a593Smuzhiyun #include <net/tcp.h>
34*4882a593Smuzhiyun #include <linux/lru_cache.h>
35*4882a593Smuzhiyun #include <linux/prefetch.h>
36*4882a593Smuzhiyun #include <linux/drbd_genl_api.h>
37*4882a593Smuzhiyun #include <linux/drbd.h>
38*4882a593Smuzhiyun #include "drbd_strings.h"
39*4882a593Smuzhiyun #include "drbd_state.h"
40*4882a593Smuzhiyun #include "drbd_protocol.h"
41*4882a593Smuzhiyun 
42*4882a593Smuzhiyun #ifdef __CHECKER__
43*4882a593Smuzhiyun # define __protected_by(x)       __attribute__((require_context(x,1,999,"rdwr")))
44*4882a593Smuzhiyun # define __protected_read_by(x)  __attribute__((require_context(x,1,999,"read")))
45*4882a593Smuzhiyun # define __protected_write_by(x) __attribute__((require_context(x,1,999,"write")))
46*4882a593Smuzhiyun #else
47*4882a593Smuzhiyun # define __protected_by(x)
48*4882a593Smuzhiyun # define __protected_read_by(x)
49*4882a593Smuzhiyun # define __protected_write_by(x)
50*4882a593Smuzhiyun #endif
51*4882a593Smuzhiyun 
52*4882a593Smuzhiyun /* shared module parameters, defined in drbd_main.c */
53*4882a593Smuzhiyun #ifdef CONFIG_DRBD_FAULT_INJECTION
54*4882a593Smuzhiyun extern int drbd_enable_faults;
55*4882a593Smuzhiyun extern int drbd_fault_rate;
56*4882a593Smuzhiyun #endif
57*4882a593Smuzhiyun 
58*4882a593Smuzhiyun extern unsigned int drbd_minor_count;
59*4882a593Smuzhiyun extern char drbd_usermode_helper[];
60*4882a593Smuzhiyun extern int drbd_proc_details;
61*4882a593Smuzhiyun 
62*4882a593Smuzhiyun 
63*4882a593Smuzhiyun /* This is used to stop/restart our threads.
64*4882a593Smuzhiyun  * Cannot use SIGTERM nor SIGKILL, since these
65*4882a593Smuzhiyun  * are sent out by init on runlevel changes
66*4882a593Smuzhiyun  * I choose SIGHUP for now.
67*4882a593Smuzhiyun  */
68*4882a593Smuzhiyun #define DRBD_SIGKILL SIGHUP
69*4882a593Smuzhiyun 
70*4882a593Smuzhiyun #define ID_IN_SYNC      (4711ULL)
71*4882a593Smuzhiyun #define ID_OUT_OF_SYNC  (4712ULL)
72*4882a593Smuzhiyun #define ID_SYNCER (-1ULL)
73*4882a593Smuzhiyun 
74*4882a593Smuzhiyun #define UUID_NEW_BM_OFFSET ((u64)0x0001000000000000ULL)
75*4882a593Smuzhiyun 
76*4882a593Smuzhiyun struct drbd_device;
77*4882a593Smuzhiyun struct drbd_connection;
78*4882a593Smuzhiyun 
79*4882a593Smuzhiyun #define __drbd_printk_device(level, device, fmt, args...) \
80*4882a593Smuzhiyun 	dev_printk(level, disk_to_dev((device)->vdisk), fmt, ## args)
81*4882a593Smuzhiyun #define __drbd_printk_peer_device(level, peer_device, fmt, args...) \
82*4882a593Smuzhiyun 	dev_printk(level, disk_to_dev((peer_device)->device->vdisk), fmt, ## args)
83*4882a593Smuzhiyun #define __drbd_printk_resource(level, resource, fmt, args...) \
84*4882a593Smuzhiyun 	printk(level "drbd %s: " fmt, (resource)->name, ## args)
85*4882a593Smuzhiyun #define __drbd_printk_connection(level, connection, fmt, args...) \
86*4882a593Smuzhiyun 	printk(level "drbd %s: " fmt, (connection)->resource->name, ## args)
87*4882a593Smuzhiyun 
88*4882a593Smuzhiyun void drbd_printk_with_wrong_object_type(void);
89*4882a593Smuzhiyun 
90*4882a593Smuzhiyun #define __drbd_printk_if_same_type(obj, type, func, level, fmt, args...) \
91*4882a593Smuzhiyun 	(__builtin_types_compatible_p(typeof(obj), type) || \
92*4882a593Smuzhiyun 	 __builtin_types_compatible_p(typeof(obj), const type)), \
93*4882a593Smuzhiyun 	func(level, (const type)(obj), fmt, ## args)
94*4882a593Smuzhiyun 
95*4882a593Smuzhiyun #define drbd_printk(level, obj, fmt, args...) \
96*4882a593Smuzhiyun 	__builtin_choose_expr( \
97*4882a593Smuzhiyun 	  __drbd_printk_if_same_type(obj, struct drbd_device *, \
98*4882a593Smuzhiyun 			     __drbd_printk_device, level, fmt, ## args), \
99*4882a593Smuzhiyun 	  __builtin_choose_expr( \
100*4882a593Smuzhiyun 	    __drbd_printk_if_same_type(obj, struct drbd_resource *, \
101*4882a593Smuzhiyun 			       __drbd_printk_resource, level, fmt, ## args), \
102*4882a593Smuzhiyun 	    __builtin_choose_expr( \
103*4882a593Smuzhiyun 	      __drbd_printk_if_same_type(obj, struct drbd_connection *, \
104*4882a593Smuzhiyun 				 __drbd_printk_connection, level, fmt, ## args), \
105*4882a593Smuzhiyun 	      __builtin_choose_expr( \
106*4882a593Smuzhiyun 		__drbd_printk_if_same_type(obj, struct drbd_peer_device *, \
107*4882a593Smuzhiyun 				 __drbd_printk_peer_device, level, fmt, ## args), \
108*4882a593Smuzhiyun 		drbd_printk_with_wrong_object_type()))))
109*4882a593Smuzhiyun 
110*4882a593Smuzhiyun #define drbd_dbg(obj, fmt, args...) \
111*4882a593Smuzhiyun 	drbd_printk(KERN_DEBUG, obj, fmt, ## args)
112*4882a593Smuzhiyun #define drbd_alert(obj, fmt, args...) \
113*4882a593Smuzhiyun 	drbd_printk(KERN_ALERT, obj, fmt, ## args)
114*4882a593Smuzhiyun #define drbd_err(obj, fmt, args...) \
115*4882a593Smuzhiyun 	drbd_printk(KERN_ERR, obj, fmt, ## args)
116*4882a593Smuzhiyun #define drbd_warn(obj, fmt, args...) \
117*4882a593Smuzhiyun 	drbd_printk(KERN_WARNING, obj, fmt, ## args)
118*4882a593Smuzhiyun #define drbd_info(obj, fmt, args...) \
119*4882a593Smuzhiyun 	drbd_printk(KERN_INFO, obj, fmt, ## args)
120*4882a593Smuzhiyun #define drbd_emerg(obj, fmt, args...) \
121*4882a593Smuzhiyun 	drbd_printk(KERN_EMERG, obj, fmt, ## args)
122*4882a593Smuzhiyun 
123*4882a593Smuzhiyun #define dynamic_drbd_dbg(device, fmt, args...) \
124*4882a593Smuzhiyun 	dynamic_dev_dbg(disk_to_dev(device->vdisk), fmt, ## args)
125*4882a593Smuzhiyun 
126*4882a593Smuzhiyun #define D_ASSERT(device, exp)	do { \
127*4882a593Smuzhiyun 	if (!(exp)) \
128*4882a593Smuzhiyun 		drbd_err(device, "ASSERT( " #exp " ) in %s:%d\n", __FILE__, __LINE__); \
129*4882a593Smuzhiyun 	} while (0)
130*4882a593Smuzhiyun 
131*4882a593Smuzhiyun /**
132*4882a593Smuzhiyun  * expect  -  Make an assertion
133*4882a593Smuzhiyun  *
134*4882a593Smuzhiyun  * Unlike the assert macro, this macro returns a boolean result.
135*4882a593Smuzhiyun  */
136*4882a593Smuzhiyun #define expect(exp) ({								\
137*4882a593Smuzhiyun 		bool _bool = (exp);						\
138*4882a593Smuzhiyun 		if (!_bool)							\
139*4882a593Smuzhiyun 			drbd_err(device, "ASSERTION %s FAILED in %s\n",		\
140*4882a593Smuzhiyun 			        #exp, __func__);				\
141*4882a593Smuzhiyun 		_bool;								\
142*4882a593Smuzhiyun 		})
143*4882a593Smuzhiyun 
144*4882a593Smuzhiyun /* Defines to control fault insertion */
145*4882a593Smuzhiyun enum {
146*4882a593Smuzhiyun 	DRBD_FAULT_MD_WR = 0,	/* meta data write */
147*4882a593Smuzhiyun 	DRBD_FAULT_MD_RD = 1,	/*           read  */
148*4882a593Smuzhiyun 	DRBD_FAULT_RS_WR = 2,	/* resync          */
149*4882a593Smuzhiyun 	DRBD_FAULT_RS_RD = 3,
150*4882a593Smuzhiyun 	DRBD_FAULT_DT_WR = 4,	/* data            */
151*4882a593Smuzhiyun 	DRBD_FAULT_DT_RD = 5,
152*4882a593Smuzhiyun 	DRBD_FAULT_DT_RA = 6,	/* data read ahead */
153*4882a593Smuzhiyun 	DRBD_FAULT_BM_ALLOC = 7,	/* bitmap allocation */
154*4882a593Smuzhiyun 	DRBD_FAULT_AL_EE = 8,	/* alloc ee */
155*4882a593Smuzhiyun 	DRBD_FAULT_RECEIVE = 9, /* Changes some bytes upon receiving a [rs]data block */
156*4882a593Smuzhiyun 
157*4882a593Smuzhiyun 	DRBD_FAULT_MAX,
158*4882a593Smuzhiyun };
159*4882a593Smuzhiyun 
160*4882a593Smuzhiyun extern unsigned int
161*4882a593Smuzhiyun _drbd_insert_fault(struct drbd_device *device, unsigned int type);
162*4882a593Smuzhiyun 
163*4882a593Smuzhiyun static inline int
drbd_insert_fault(struct drbd_device * device,unsigned int type)164*4882a593Smuzhiyun drbd_insert_fault(struct drbd_device *device, unsigned int type) {
165*4882a593Smuzhiyun #ifdef CONFIG_DRBD_FAULT_INJECTION
166*4882a593Smuzhiyun 	return drbd_fault_rate &&
167*4882a593Smuzhiyun 		(drbd_enable_faults & (1<<type)) &&
168*4882a593Smuzhiyun 		_drbd_insert_fault(device, type);
169*4882a593Smuzhiyun #else
170*4882a593Smuzhiyun 	return 0;
171*4882a593Smuzhiyun #endif
172*4882a593Smuzhiyun }
173*4882a593Smuzhiyun 
174*4882a593Smuzhiyun /* integer division, round _UP_ to the next integer */
175*4882a593Smuzhiyun #define div_ceil(A, B) ((A)/(B) + ((A)%(B) ? 1 : 0))
176*4882a593Smuzhiyun /* usual integer division */
177*4882a593Smuzhiyun #define div_floor(A, B) ((A)/(B))
178*4882a593Smuzhiyun 
179*4882a593Smuzhiyun extern struct ratelimit_state drbd_ratelimit_state;
180*4882a593Smuzhiyun extern struct idr drbd_devices; /* RCU, updates: genl_lock() */
181*4882a593Smuzhiyun extern struct list_head drbd_resources; /* RCU, updates: genl_lock() */
182*4882a593Smuzhiyun 
183*4882a593Smuzhiyun extern const char *cmdname(enum drbd_packet cmd);
184*4882a593Smuzhiyun 
185*4882a593Smuzhiyun /* for sending/receiving the bitmap,
186*4882a593Smuzhiyun  * possibly in some encoding scheme */
187*4882a593Smuzhiyun struct bm_xfer_ctx {
188*4882a593Smuzhiyun 	/* "const"
189*4882a593Smuzhiyun 	 * stores total bits and long words
190*4882a593Smuzhiyun 	 * of the bitmap, so we don't need to
191*4882a593Smuzhiyun 	 * call the accessor functions over and again. */
192*4882a593Smuzhiyun 	unsigned long bm_bits;
193*4882a593Smuzhiyun 	unsigned long bm_words;
194*4882a593Smuzhiyun 	/* during xfer, current position within the bitmap */
195*4882a593Smuzhiyun 	unsigned long bit_offset;
196*4882a593Smuzhiyun 	unsigned long word_offset;
197*4882a593Smuzhiyun 
198*4882a593Smuzhiyun 	/* statistics; index: (h->command == P_BITMAP) */
199*4882a593Smuzhiyun 	unsigned packets[2];
200*4882a593Smuzhiyun 	unsigned bytes[2];
201*4882a593Smuzhiyun };
202*4882a593Smuzhiyun 
203*4882a593Smuzhiyun extern void INFO_bm_xfer_stats(struct drbd_device *device,
204*4882a593Smuzhiyun 		const char *direction, struct bm_xfer_ctx *c);
205*4882a593Smuzhiyun 
bm_xfer_ctx_bit_to_word_offset(struct bm_xfer_ctx * c)206*4882a593Smuzhiyun static inline void bm_xfer_ctx_bit_to_word_offset(struct bm_xfer_ctx *c)
207*4882a593Smuzhiyun {
208*4882a593Smuzhiyun 	/* word_offset counts "native long words" (32 or 64 bit),
209*4882a593Smuzhiyun 	 * aligned at 64 bit.
210*4882a593Smuzhiyun 	 * Encoded packet may end at an unaligned bit offset.
211*4882a593Smuzhiyun 	 * In case a fallback clear text packet is transmitted in
212*4882a593Smuzhiyun 	 * between, we adjust this offset back to the last 64bit
213*4882a593Smuzhiyun 	 * aligned "native long word", which makes coding and decoding
214*4882a593Smuzhiyun 	 * the plain text bitmap much more convenient.  */
215*4882a593Smuzhiyun #if BITS_PER_LONG == 64
216*4882a593Smuzhiyun 	c->word_offset = c->bit_offset >> 6;
217*4882a593Smuzhiyun #elif BITS_PER_LONG == 32
218*4882a593Smuzhiyun 	c->word_offset = c->bit_offset >> 5;
219*4882a593Smuzhiyun 	c->word_offset &= ~(1UL);
220*4882a593Smuzhiyun #else
221*4882a593Smuzhiyun # error "unsupported BITS_PER_LONG"
222*4882a593Smuzhiyun #endif
223*4882a593Smuzhiyun }
224*4882a593Smuzhiyun 
225*4882a593Smuzhiyun extern unsigned int drbd_header_size(struct drbd_connection *connection);
226*4882a593Smuzhiyun 
227*4882a593Smuzhiyun /**********************************************************************/
228*4882a593Smuzhiyun enum drbd_thread_state {
229*4882a593Smuzhiyun 	NONE,
230*4882a593Smuzhiyun 	RUNNING,
231*4882a593Smuzhiyun 	EXITING,
232*4882a593Smuzhiyun 	RESTARTING
233*4882a593Smuzhiyun };
234*4882a593Smuzhiyun 
235*4882a593Smuzhiyun struct drbd_thread {
236*4882a593Smuzhiyun 	spinlock_t t_lock;
237*4882a593Smuzhiyun 	struct task_struct *task;
238*4882a593Smuzhiyun 	struct completion stop;
239*4882a593Smuzhiyun 	enum drbd_thread_state t_state;
240*4882a593Smuzhiyun 	int (*function) (struct drbd_thread *);
241*4882a593Smuzhiyun 	struct drbd_resource *resource;
242*4882a593Smuzhiyun 	struct drbd_connection *connection;
243*4882a593Smuzhiyun 	int reset_cpu_mask;
244*4882a593Smuzhiyun 	const char *name;
245*4882a593Smuzhiyun };
246*4882a593Smuzhiyun 
get_t_state(struct drbd_thread * thi)247*4882a593Smuzhiyun static inline enum drbd_thread_state get_t_state(struct drbd_thread *thi)
248*4882a593Smuzhiyun {
249*4882a593Smuzhiyun 	/* THINK testing the t_state seems to be uncritical in all cases
250*4882a593Smuzhiyun 	 * (but thread_{start,stop}), so we can read it *without* the lock.
251*4882a593Smuzhiyun 	 *	--lge */
252*4882a593Smuzhiyun 
253*4882a593Smuzhiyun 	smp_rmb();
254*4882a593Smuzhiyun 	return thi->t_state;
255*4882a593Smuzhiyun }
256*4882a593Smuzhiyun 
257*4882a593Smuzhiyun struct drbd_work {
258*4882a593Smuzhiyun 	struct list_head list;
259*4882a593Smuzhiyun 	int (*cb)(struct drbd_work *, int cancel);
260*4882a593Smuzhiyun };
261*4882a593Smuzhiyun 
262*4882a593Smuzhiyun struct drbd_device_work {
263*4882a593Smuzhiyun 	struct drbd_work w;
264*4882a593Smuzhiyun 	struct drbd_device *device;
265*4882a593Smuzhiyun };
266*4882a593Smuzhiyun 
267*4882a593Smuzhiyun #include "drbd_interval.h"
268*4882a593Smuzhiyun 
269*4882a593Smuzhiyun extern int drbd_wait_misc(struct drbd_device *, struct drbd_interval *);
270*4882a593Smuzhiyun 
271*4882a593Smuzhiyun extern void lock_all_resources(void);
272*4882a593Smuzhiyun extern void unlock_all_resources(void);
273*4882a593Smuzhiyun 
274*4882a593Smuzhiyun struct drbd_request {
275*4882a593Smuzhiyun 	struct drbd_work w;
276*4882a593Smuzhiyun 	struct drbd_device *device;
277*4882a593Smuzhiyun 
278*4882a593Smuzhiyun 	/* if local IO is not allowed, will be NULL.
279*4882a593Smuzhiyun 	 * if local IO _is_ allowed, holds the locally submitted bio clone,
280*4882a593Smuzhiyun 	 * or, after local IO completion, the ERR_PTR(error).
281*4882a593Smuzhiyun 	 * see drbd_request_endio(). */
282*4882a593Smuzhiyun 	struct bio *private_bio;
283*4882a593Smuzhiyun 
284*4882a593Smuzhiyun 	struct drbd_interval i;
285*4882a593Smuzhiyun 
286*4882a593Smuzhiyun 	/* epoch: used to check on "completion" whether this req was in
287*4882a593Smuzhiyun 	 * the current epoch, and we therefore have to close it,
288*4882a593Smuzhiyun 	 * causing a p_barrier packet to be send, starting a new epoch.
289*4882a593Smuzhiyun 	 *
290*4882a593Smuzhiyun 	 * This corresponds to "barrier" in struct p_barrier[_ack],
291*4882a593Smuzhiyun 	 * and to "barrier_nr" in struct drbd_epoch (and various
292*4882a593Smuzhiyun 	 * comments/function parameters/local variable names).
293*4882a593Smuzhiyun 	 */
294*4882a593Smuzhiyun 	unsigned int epoch;
295*4882a593Smuzhiyun 
296*4882a593Smuzhiyun 	struct list_head tl_requests; /* ring list in the transfer log */
297*4882a593Smuzhiyun 	struct bio *master_bio;       /* master bio pointer */
298*4882a593Smuzhiyun 
299*4882a593Smuzhiyun 	/* see struct drbd_device */
300*4882a593Smuzhiyun 	struct list_head req_pending_master_completion;
301*4882a593Smuzhiyun 	struct list_head req_pending_local;
302*4882a593Smuzhiyun 
303*4882a593Smuzhiyun 	/* for generic IO accounting */
304*4882a593Smuzhiyun 	unsigned long start_jif;
305*4882a593Smuzhiyun 
306*4882a593Smuzhiyun 	/* for DRBD internal statistics */
307*4882a593Smuzhiyun 
308*4882a593Smuzhiyun 	/* Minimal set of time stamps to determine if we wait for activity log
309*4882a593Smuzhiyun 	 * transactions, local disk or peer.  32 bit "jiffies" are good enough,
310*4882a593Smuzhiyun 	 * we don't expect a DRBD request to be stalled for several month.
311*4882a593Smuzhiyun 	 */
312*4882a593Smuzhiyun 
313*4882a593Smuzhiyun 	/* before actual request processing */
314*4882a593Smuzhiyun 	unsigned long in_actlog_jif;
315*4882a593Smuzhiyun 
316*4882a593Smuzhiyun 	/* local disk */
317*4882a593Smuzhiyun 	unsigned long pre_submit_jif;
318*4882a593Smuzhiyun 
319*4882a593Smuzhiyun 	/* per connection */
320*4882a593Smuzhiyun 	unsigned long pre_send_jif;
321*4882a593Smuzhiyun 	unsigned long acked_jif;
322*4882a593Smuzhiyun 	unsigned long net_done_jif;
323*4882a593Smuzhiyun 
324*4882a593Smuzhiyun 	/* Possibly even more detail to track each phase:
325*4882a593Smuzhiyun 	 *  master_completion_jif
326*4882a593Smuzhiyun 	 *      how long did it take to complete the master bio
327*4882a593Smuzhiyun 	 *      (application visible latency)
328*4882a593Smuzhiyun 	 *  allocated_jif
329*4882a593Smuzhiyun 	 *      how long the master bio was blocked until we finally allocated
330*4882a593Smuzhiyun 	 *      a tracking struct
331*4882a593Smuzhiyun 	 *  in_actlog_jif
332*4882a593Smuzhiyun 	 *      how long did we wait for activity log transactions
333*4882a593Smuzhiyun 	 *
334*4882a593Smuzhiyun 	 *  net_queued_jif
335*4882a593Smuzhiyun 	 *      when did we finally queue it for sending
336*4882a593Smuzhiyun 	 *  pre_send_jif
337*4882a593Smuzhiyun 	 *      when did we start sending it
338*4882a593Smuzhiyun 	 *  post_send_jif
339*4882a593Smuzhiyun 	 *      how long did we block in the network stack trying to send it
340*4882a593Smuzhiyun 	 *  acked_jif
341*4882a593Smuzhiyun 	 *      when did we receive (or fake, in protocol A) a remote ACK
342*4882a593Smuzhiyun 	 *  net_done_jif
343*4882a593Smuzhiyun 	 *      when did we receive final acknowledgement (P_BARRIER_ACK),
344*4882a593Smuzhiyun 	 *      or decide, e.g. on connection loss, that we do no longer expect
345*4882a593Smuzhiyun 	 *      anything from this peer for this request.
346*4882a593Smuzhiyun 	 *
347*4882a593Smuzhiyun 	 *  pre_submit_jif
348*4882a593Smuzhiyun 	 *  post_sub_jif
349*4882a593Smuzhiyun 	 *      when did we start submiting to the lower level device,
350*4882a593Smuzhiyun 	 *      and how long did we block in that submit function
351*4882a593Smuzhiyun 	 *  local_completion_jif
352*4882a593Smuzhiyun 	 *      how long did it take the lower level device to complete this request
353*4882a593Smuzhiyun 	 */
354*4882a593Smuzhiyun 
355*4882a593Smuzhiyun 
356*4882a593Smuzhiyun 	/* once it hits 0, we may complete the master_bio */
357*4882a593Smuzhiyun 	atomic_t completion_ref;
358*4882a593Smuzhiyun 	/* once it hits 0, we may destroy this drbd_request object */
359*4882a593Smuzhiyun 	struct kref kref;
360*4882a593Smuzhiyun 
361*4882a593Smuzhiyun 	unsigned rq_state; /* see comments above _req_mod() */
362*4882a593Smuzhiyun };
363*4882a593Smuzhiyun 
364*4882a593Smuzhiyun struct drbd_epoch {
365*4882a593Smuzhiyun 	struct drbd_connection *connection;
366*4882a593Smuzhiyun 	struct list_head list;
367*4882a593Smuzhiyun 	unsigned int barrier_nr;
368*4882a593Smuzhiyun 	atomic_t epoch_size; /* increased on every request added. */
369*4882a593Smuzhiyun 	atomic_t active;     /* increased on every req. added, and dec on every finished. */
370*4882a593Smuzhiyun 	unsigned long flags;
371*4882a593Smuzhiyun };
372*4882a593Smuzhiyun 
373*4882a593Smuzhiyun /* Prototype declaration of function defined in drbd_receiver.c */
374*4882a593Smuzhiyun int drbdd_init(struct drbd_thread *);
375*4882a593Smuzhiyun int drbd_asender(struct drbd_thread *);
376*4882a593Smuzhiyun 
377*4882a593Smuzhiyun /* drbd_epoch flag bits */
378*4882a593Smuzhiyun enum {
379*4882a593Smuzhiyun 	DE_HAVE_BARRIER_NUMBER,
380*4882a593Smuzhiyun };
381*4882a593Smuzhiyun 
382*4882a593Smuzhiyun enum epoch_event {
383*4882a593Smuzhiyun 	EV_PUT,
384*4882a593Smuzhiyun 	EV_GOT_BARRIER_NR,
385*4882a593Smuzhiyun 	EV_BECAME_LAST,
386*4882a593Smuzhiyun 	EV_CLEANUP = 32, /* used as flag */
387*4882a593Smuzhiyun };
388*4882a593Smuzhiyun 
389*4882a593Smuzhiyun struct digest_info {
390*4882a593Smuzhiyun 	int digest_size;
391*4882a593Smuzhiyun 	void *digest;
392*4882a593Smuzhiyun };
393*4882a593Smuzhiyun 
394*4882a593Smuzhiyun struct drbd_peer_request {
395*4882a593Smuzhiyun 	struct drbd_work w;
396*4882a593Smuzhiyun 	struct drbd_peer_device *peer_device;
397*4882a593Smuzhiyun 	struct drbd_epoch *epoch; /* for writes */
398*4882a593Smuzhiyun 	struct page *pages;
399*4882a593Smuzhiyun 	atomic_t pending_bios;
400*4882a593Smuzhiyun 	struct drbd_interval i;
401*4882a593Smuzhiyun 	/* see comments on ee flag bits below */
402*4882a593Smuzhiyun 	unsigned long flags;
403*4882a593Smuzhiyun 	unsigned long submit_jif;
404*4882a593Smuzhiyun 	union {
405*4882a593Smuzhiyun 		u64 block_id;
406*4882a593Smuzhiyun 		struct digest_info *digest;
407*4882a593Smuzhiyun 	};
408*4882a593Smuzhiyun };
409*4882a593Smuzhiyun 
410*4882a593Smuzhiyun /* ee flag bits.
411*4882a593Smuzhiyun  * While corresponding bios are in flight, the only modification will be
412*4882a593Smuzhiyun  * set_bit WAS_ERROR, which has to be atomic.
413*4882a593Smuzhiyun  * If no bios are in flight yet, or all have been completed,
414*4882a593Smuzhiyun  * non-atomic modification to ee->flags is ok.
415*4882a593Smuzhiyun  */
416*4882a593Smuzhiyun enum {
417*4882a593Smuzhiyun 	__EE_CALL_AL_COMPLETE_IO,
418*4882a593Smuzhiyun 	__EE_MAY_SET_IN_SYNC,
419*4882a593Smuzhiyun 
420*4882a593Smuzhiyun 	/* is this a TRIM aka REQ_OP_DISCARD? */
421*4882a593Smuzhiyun 	__EE_TRIM,
422*4882a593Smuzhiyun 	/* explicit zero-out requested, or
423*4882a593Smuzhiyun 	 * our lower level cannot handle trim,
424*4882a593Smuzhiyun 	 * and we want to fall back to zeroout instead */
425*4882a593Smuzhiyun 	__EE_ZEROOUT,
426*4882a593Smuzhiyun 
427*4882a593Smuzhiyun 	/* In case a barrier failed,
428*4882a593Smuzhiyun 	 * we need to resubmit without the barrier flag. */
429*4882a593Smuzhiyun 	__EE_RESUBMITTED,
430*4882a593Smuzhiyun 
431*4882a593Smuzhiyun 	/* we may have several bios per peer request.
432*4882a593Smuzhiyun 	 * if any of those fail, we set this flag atomically
433*4882a593Smuzhiyun 	 * from the endio callback */
434*4882a593Smuzhiyun 	__EE_WAS_ERROR,
435*4882a593Smuzhiyun 
436*4882a593Smuzhiyun 	/* This ee has a pointer to a digest instead of a block id */
437*4882a593Smuzhiyun 	__EE_HAS_DIGEST,
438*4882a593Smuzhiyun 
439*4882a593Smuzhiyun 	/* Conflicting local requests need to be restarted after this request */
440*4882a593Smuzhiyun 	__EE_RESTART_REQUESTS,
441*4882a593Smuzhiyun 
442*4882a593Smuzhiyun 	/* The peer wants a write ACK for this (wire proto C) */
443*4882a593Smuzhiyun 	__EE_SEND_WRITE_ACK,
444*4882a593Smuzhiyun 
445*4882a593Smuzhiyun 	/* Is set when net_conf had two_primaries set while creating this peer_req */
446*4882a593Smuzhiyun 	__EE_IN_INTERVAL_TREE,
447*4882a593Smuzhiyun 
448*4882a593Smuzhiyun 	/* for debugfs: */
449*4882a593Smuzhiyun 	/* has this been submitted, or does it still wait for something else? */
450*4882a593Smuzhiyun 	__EE_SUBMITTED,
451*4882a593Smuzhiyun 
452*4882a593Smuzhiyun 	/* this is/was a write request */
453*4882a593Smuzhiyun 	__EE_WRITE,
454*4882a593Smuzhiyun 
455*4882a593Smuzhiyun 	/* this is/was a write same request */
456*4882a593Smuzhiyun 	__EE_WRITE_SAME,
457*4882a593Smuzhiyun 
458*4882a593Smuzhiyun 	/* this originates from application on peer
459*4882a593Smuzhiyun 	 * (not some resync or verify or other DRBD internal request) */
460*4882a593Smuzhiyun 	__EE_APPLICATION,
461*4882a593Smuzhiyun 
462*4882a593Smuzhiyun 	/* If it contains only 0 bytes, send back P_RS_DEALLOCATED */
463*4882a593Smuzhiyun 	__EE_RS_THIN_REQ,
464*4882a593Smuzhiyun };
465*4882a593Smuzhiyun #define EE_CALL_AL_COMPLETE_IO (1<<__EE_CALL_AL_COMPLETE_IO)
466*4882a593Smuzhiyun #define EE_MAY_SET_IN_SYNC     (1<<__EE_MAY_SET_IN_SYNC)
467*4882a593Smuzhiyun #define EE_TRIM                (1<<__EE_TRIM)
468*4882a593Smuzhiyun #define EE_ZEROOUT             (1<<__EE_ZEROOUT)
469*4882a593Smuzhiyun #define EE_RESUBMITTED         (1<<__EE_RESUBMITTED)
470*4882a593Smuzhiyun #define EE_WAS_ERROR           (1<<__EE_WAS_ERROR)
471*4882a593Smuzhiyun #define EE_HAS_DIGEST          (1<<__EE_HAS_DIGEST)
472*4882a593Smuzhiyun #define EE_RESTART_REQUESTS	(1<<__EE_RESTART_REQUESTS)
473*4882a593Smuzhiyun #define EE_SEND_WRITE_ACK	(1<<__EE_SEND_WRITE_ACK)
474*4882a593Smuzhiyun #define EE_IN_INTERVAL_TREE	(1<<__EE_IN_INTERVAL_TREE)
475*4882a593Smuzhiyun #define EE_SUBMITTED		(1<<__EE_SUBMITTED)
476*4882a593Smuzhiyun #define EE_WRITE		(1<<__EE_WRITE)
477*4882a593Smuzhiyun #define EE_WRITE_SAME		(1<<__EE_WRITE_SAME)
478*4882a593Smuzhiyun #define EE_APPLICATION		(1<<__EE_APPLICATION)
479*4882a593Smuzhiyun #define EE_RS_THIN_REQ		(1<<__EE_RS_THIN_REQ)
480*4882a593Smuzhiyun 
481*4882a593Smuzhiyun /* flag bits per device */
482*4882a593Smuzhiyun enum {
483*4882a593Smuzhiyun 	UNPLUG_REMOTE,		/* sending a "UnplugRemote" could help */
484*4882a593Smuzhiyun 	MD_DIRTY,		/* current uuids and flags not yet on disk */
485*4882a593Smuzhiyun 	USE_DEGR_WFC_T,		/* degr-wfc-timeout instead of wfc-timeout. */
486*4882a593Smuzhiyun 	CL_ST_CHG_SUCCESS,
487*4882a593Smuzhiyun 	CL_ST_CHG_FAIL,
488*4882a593Smuzhiyun 	CRASHED_PRIMARY,	/* This node was a crashed primary.
489*4882a593Smuzhiyun 				 * Gets cleared when the state.conn
490*4882a593Smuzhiyun 				 * goes into C_CONNECTED state. */
491*4882a593Smuzhiyun 	CONSIDER_RESYNC,
492*4882a593Smuzhiyun 
493*4882a593Smuzhiyun 	MD_NO_FUA,		/* Users wants us to not use FUA/FLUSH on meta data dev */
494*4882a593Smuzhiyun 
495*4882a593Smuzhiyun 	BITMAP_IO,		/* suspend application io;
496*4882a593Smuzhiyun 				   once no more io in flight, start bitmap io */
497*4882a593Smuzhiyun 	BITMAP_IO_QUEUED,       /* Started bitmap IO */
498*4882a593Smuzhiyun 	WAS_IO_ERROR,		/* Local disk failed, returned IO error */
499*4882a593Smuzhiyun 	WAS_READ_ERROR,		/* Local disk READ failed (set additionally to the above) */
500*4882a593Smuzhiyun 	FORCE_DETACH,		/* Force-detach from local disk, aborting any pending local IO */
501*4882a593Smuzhiyun 	RESYNC_AFTER_NEG,       /* Resync after online grow after the attach&negotiate finished. */
502*4882a593Smuzhiyun 	RESIZE_PENDING,		/* Size change detected locally, waiting for the response from
503*4882a593Smuzhiyun 				 * the peer, if it changed there as well. */
504*4882a593Smuzhiyun 	NEW_CUR_UUID,		/* Create new current UUID when thawing IO */
505*4882a593Smuzhiyun 	AL_SUSPENDED,		/* Activity logging is currently suspended. */
506*4882a593Smuzhiyun 	AHEAD_TO_SYNC_SOURCE,   /* Ahead -> SyncSource queued */
507*4882a593Smuzhiyun 	B_RS_H_DONE,		/* Before resync handler done (already executed) */
508*4882a593Smuzhiyun 	DISCARD_MY_DATA,	/* discard_my_data flag per volume */
509*4882a593Smuzhiyun 	READ_BALANCE_RR,
510*4882a593Smuzhiyun 
511*4882a593Smuzhiyun 	FLUSH_PENDING,		/* if set, device->flush_jif is when we submitted that flush
512*4882a593Smuzhiyun 				 * from drbd_flush_after_epoch() */
513*4882a593Smuzhiyun 
514*4882a593Smuzhiyun 	/* cleared only after backing device related structures have been destroyed. */
515*4882a593Smuzhiyun 	GOING_DISKLESS,		/* Disk is being detached, because of io-error, or admin request. */
516*4882a593Smuzhiyun 
517*4882a593Smuzhiyun 	/* to be used in drbd_device_post_work() */
518*4882a593Smuzhiyun 	GO_DISKLESS,		/* tell worker to schedule cleanup before detach */
519*4882a593Smuzhiyun 	DESTROY_DISK,		/* tell worker to close backing devices and destroy related structures. */
520*4882a593Smuzhiyun 	MD_SYNC,		/* tell worker to call drbd_md_sync() */
521*4882a593Smuzhiyun 	RS_START,		/* tell worker to start resync/OV */
522*4882a593Smuzhiyun 	RS_PROGRESS,		/* tell worker that resync made significant progress */
523*4882a593Smuzhiyun 	RS_DONE,		/* tell worker that resync is done */
524*4882a593Smuzhiyun };
525*4882a593Smuzhiyun 
526*4882a593Smuzhiyun struct drbd_bitmap; /* opaque for drbd_device */
527*4882a593Smuzhiyun 
528*4882a593Smuzhiyun /* definition of bits in bm_flags to be used in drbd_bm_lock
529*4882a593Smuzhiyun  * and drbd_bitmap_io and friends. */
530*4882a593Smuzhiyun enum bm_flag {
531*4882a593Smuzhiyun 	/* currently locked for bulk operation */
532*4882a593Smuzhiyun 	BM_LOCKED_MASK = 0xf,
533*4882a593Smuzhiyun 
534*4882a593Smuzhiyun 	/* in detail, that is: */
535*4882a593Smuzhiyun 	BM_DONT_CLEAR = 0x1,
536*4882a593Smuzhiyun 	BM_DONT_SET   = 0x2,
537*4882a593Smuzhiyun 	BM_DONT_TEST  = 0x4,
538*4882a593Smuzhiyun 
539*4882a593Smuzhiyun 	/* so we can mark it locked for bulk operation,
540*4882a593Smuzhiyun 	 * and still allow all non-bulk operations */
541*4882a593Smuzhiyun 	BM_IS_LOCKED  = 0x8,
542*4882a593Smuzhiyun 
543*4882a593Smuzhiyun 	/* (test bit, count bit) allowed (common case) */
544*4882a593Smuzhiyun 	BM_LOCKED_TEST_ALLOWED = BM_DONT_CLEAR | BM_DONT_SET | BM_IS_LOCKED,
545*4882a593Smuzhiyun 
546*4882a593Smuzhiyun 	/* testing bits, as well as setting new bits allowed, but clearing bits
547*4882a593Smuzhiyun 	 * would be unexpected.  Used during bitmap receive.  Setting new bits
548*4882a593Smuzhiyun 	 * requires sending of "out-of-sync" information, though. */
549*4882a593Smuzhiyun 	BM_LOCKED_SET_ALLOWED = BM_DONT_CLEAR | BM_IS_LOCKED,
550*4882a593Smuzhiyun 
551*4882a593Smuzhiyun 	/* for drbd_bm_write_copy_pages, everything is allowed,
552*4882a593Smuzhiyun 	 * only concurrent bulk operations are locked out. */
553*4882a593Smuzhiyun 	BM_LOCKED_CHANGE_ALLOWED = BM_IS_LOCKED,
554*4882a593Smuzhiyun };
555*4882a593Smuzhiyun 
556*4882a593Smuzhiyun struct drbd_work_queue {
557*4882a593Smuzhiyun 	struct list_head q;
558*4882a593Smuzhiyun 	spinlock_t q_lock;  /* to protect the list. */
559*4882a593Smuzhiyun 	wait_queue_head_t q_wait;
560*4882a593Smuzhiyun };
561*4882a593Smuzhiyun 
562*4882a593Smuzhiyun struct drbd_socket {
563*4882a593Smuzhiyun 	struct mutex mutex;
564*4882a593Smuzhiyun 	struct socket    *socket;
565*4882a593Smuzhiyun 	/* this way we get our
566*4882a593Smuzhiyun 	 * send/receive buffers off the stack */
567*4882a593Smuzhiyun 	void *sbuf;
568*4882a593Smuzhiyun 	void *rbuf;
569*4882a593Smuzhiyun };
570*4882a593Smuzhiyun 
571*4882a593Smuzhiyun struct drbd_md {
572*4882a593Smuzhiyun 	u64 md_offset;		/* sector offset to 'super' block */
573*4882a593Smuzhiyun 
574*4882a593Smuzhiyun 	u64 la_size_sect;	/* last agreed size, unit sectors */
575*4882a593Smuzhiyun 	spinlock_t uuid_lock;
576*4882a593Smuzhiyun 	u64 uuid[UI_SIZE];
577*4882a593Smuzhiyun 	u64 device_uuid;
578*4882a593Smuzhiyun 	u32 flags;
579*4882a593Smuzhiyun 	u32 md_size_sect;
580*4882a593Smuzhiyun 
581*4882a593Smuzhiyun 	s32 al_offset;	/* signed relative sector offset to activity log */
582*4882a593Smuzhiyun 	s32 bm_offset;	/* signed relative sector offset to bitmap */
583*4882a593Smuzhiyun 
584*4882a593Smuzhiyun 	/* cached value of bdev->disk_conf->meta_dev_idx (see below) */
585*4882a593Smuzhiyun 	s32 meta_dev_idx;
586*4882a593Smuzhiyun 
587*4882a593Smuzhiyun 	/* see al_tr_number_to_on_disk_sector() */
588*4882a593Smuzhiyun 	u32 al_stripes;
589*4882a593Smuzhiyun 	u32 al_stripe_size_4k;
590*4882a593Smuzhiyun 	u32 al_size_4k; /* cached product of the above */
591*4882a593Smuzhiyun };
592*4882a593Smuzhiyun 
593*4882a593Smuzhiyun struct drbd_backing_dev {
594*4882a593Smuzhiyun 	struct block_device *backing_bdev;
595*4882a593Smuzhiyun 	struct block_device *md_bdev;
596*4882a593Smuzhiyun 	struct drbd_md md;
597*4882a593Smuzhiyun 	struct disk_conf *disk_conf; /* RCU, for updates: resource->conf_update */
598*4882a593Smuzhiyun 	sector_t known_size; /* last known size of that backing device */
599*4882a593Smuzhiyun };
600*4882a593Smuzhiyun 
601*4882a593Smuzhiyun struct drbd_md_io {
602*4882a593Smuzhiyun 	struct page *page;
603*4882a593Smuzhiyun 	unsigned long start_jif;	/* last call to drbd_md_get_buffer */
604*4882a593Smuzhiyun 	unsigned long submit_jif;	/* last _drbd_md_sync_page_io() submit */
605*4882a593Smuzhiyun 	const char *current_use;
606*4882a593Smuzhiyun 	atomic_t in_use;
607*4882a593Smuzhiyun 	unsigned int done;
608*4882a593Smuzhiyun 	int error;
609*4882a593Smuzhiyun };
610*4882a593Smuzhiyun 
611*4882a593Smuzhiyun struct bm_io_work {
612*4882a593Smuzhiyun 	struct drbd_work w;
613*4882a593Smuzhiyun 	char *why;
614*4882a593Smuzhiyun 	enum bm_flag flags;
615*4882a593Smuzhiyun 	int (*io_fn)(struct drbd_device *device);
616*4882a593Smuzhiyun 	void (*done)(struct drbd_device *device, int rv);
617*4882a593Smuzhiyun };
618*4882a593Smuzhiyun 
619*4882a593Smuzhiyun struct fifo_buffer {
620*4882a593Smuzhiyun 	unsigned int head_index;
621*4882a593Smuzhiyun 	unsigned int size;
622*4882a593Smuzhiyun 	int total; /* sum of all values */
623*4882a593Smuzhiyun 	int values[];
624*4882a593Smuzhiyun };
625*4882a593Smuzhiyun extern struct fifo_buffer *fifo_alloc(unsigned int fifo_size);
626*4882a593Smuzhiyun 
627*4882a593Smuzhiyun /* flag bits per connection */
628*4882a593Smuzhiyun enum {
629*4882a593Smuzhiyun 	NET_CONGESTED,		/* The data socket is congested */
630*4882a593Smuzhiyun 	RESOLVE_CONFLICTS,	/* Set on one node, cleared on the peer! */
631*4882a593Smuzhiyun 	SEND_PING,
632*4882a593Smuzhiyun 	GOT_PING_ACK,		/* set when we receive a ping_ack packet, ping_wait gets woken */
633*4882a593Smuzhiyun 	CONN_WD_ST_CHG_REQ,	/* A cluster wide state change on the connection is active */
634*4882a593Smuzhiyun 	CONN_WD_ST_CHG_OKAY,
635*4882a593Smuzhiyun 	CONN_WD_ST_CHG_FAIL,
636*4882a593Smuzhiyun 	CONN_DRY_RUN,		/* Expect disconnect after resync handshake. */
637*4882a593Smuzhiyun 	CREATE_BARRIER,		/* next P_DATA is preceded by a P_BARRIER */
638*4882a593Smuzhiyun 	STATE_SENT,		/* Do not change state/UUIDs while this is set */
639*4882a593Smuzhiyun 	CALLBACK_PENDING,	/* Whether we have a call_usermodehelper(, UMH_WAIT_PROC)
640*4882a593Smuzhiyun 				 * pending, from drbd worker context.
641*4882a593Smuzhiyun 				 * If set, bdi_write_congested() returns true,
642*4882a593Smuzhiyun 				 * so shrink_page_list() would not recurse into,
643*4882a593Smuzhiyun 				 * and potentially deadlock on, this drbd worker.
644*4882a593Smuzhiyun 				 */
645*4882a593Smuzhiyun 	DISCONNECT_SENT,
646*4882a593Smuzhiyun 
647*4882a593Smuzhiyun 	DEVICE_WORK_PENDING,	/* tell worker that some device has pending work */
648*4882a593Smuzhiyun };
649*4882a593Smuzhiyun 
650*4882a593Smuzhiyun enum which_state { NOW, OLD = NOW, NEW };
651*4882a593Smuzhiyun 
652*4882a593Smuzhiyun struct drbd_resource {
653*4882a593Smuzhiyun 	char *name;
654*4882a593Smuzhiyun #ifdef CONFIG_DEBUG_FS
655*4882a593Smuzhiyun 	struct dentry *debugfs_res;
656*4882a593Smuzhiyun 	struct dentry *debugfs_res_volumes;
657*4882a593Smuzhiyun 	struct dentry *debugfs_res_connections;
658*4882a593Smuzhiyun 	struct dentry *debugfs_res_in_flight_summary;
659*4882a593Smuzhiyun #endif
660*4882a593Smuzhiyun 	struct kref kref;
661*4882a593Smuzhiyun 	struct idr devices;		/* volume number to device mapping */
662*4882a593Smuzhiyun 	struct list_head connections;
663*4882a593Smuzhiyun 	struct list_head resources;
664*4882a593Smuzhiyun 	struct res_opts res_opts;
665*4882a593Smuzhiyun 	struct mutex conf_update;	/* mutex for ready-copy-update of net_conf and disk_conf */
666*4882a593Smuzhiyun 	struct mutex adm_mutex;		/* mutex to serialize administrative requests */
667*4882a593Smuzhiyun 	spinlock_t req_lock;
668*4882a593Smuzhiyun 
669*4882a593Smuzhiyun 	unsigned susp:1;		/* IO suspended by user */
670*4882a593Smuzhiyun 	unsigned susp_nod:1;		/* IO suspended because no data */
671*4882a593Smuzhiyun 	unsigned susp_fen:1;		/* IO suspended because fence peer handler runs */
672*4882a593Smuzhiyun 
673*4882a593Smuzhiyun 	enum write_ordering_e write_ordering;
674*4882a593Smuzhiyun 
675*4882a593Smuzhiyun 	cpumask_var_t cpu_mask;
676*4882a593Smuzhiyun };
677*4882a593Smuzhiyun 
678*4882a593Smuzhiyun struct drbd_thread_timing_details
679*4882a593Smuzhiyun {
680*4882a593Smuzhiyun 	unsigned long start_jif;
681*4882a593Smuzhiyun 	void *cb_addr;
682*4882a593Smuzhiyun 	const char *caller_fn;
683*4882a593Smuzhiyun 	unsigned int line;
684*4882a593Smuzhiyun 	unsigned int cb_nr;
685*4882a593Smuzhiyun };
686*4882a593Smuzhiyun 
687*4882a593Smuzhiyun struct drbd_connection {
688*4882a593Smuzhiyun 	struct list_head connections;
689*4882a593Smuzhiyun 	struct drbd_resource *resource;
690*4882a593Smuzhiyun #ifdef CONFIG_DEBUG_FS
691*4882a593Smuzhiyun 	struct dentry *debugfs_conn;
692*4882a593Smuzhiyun 	struct dentry *debugfs_conn_callback_history;
693*4882a593Smuzhiyun 	struct dentry *debugfs_conn_oldest_requests;
694*4882a593Smuzhiyun #endif
695*4882a593Smuzhiyun 	struct kref kref;
696*4882a593Smuzhiyun 	struct idr peer_devices;	/* volume number to peer device mapping */
697*4882a593Smuzhiyun 	enum drbd_conns cstate;		/* Only C_STANDALONE to C_WF_REPORT_PARAMS */
698*4882a593Smuzhiyun 	struct mutex cstate_mutex;	/* Protects graceful disconnects */
699*4882a593Smuzhiyun 	unsigned int connect_cnt;	/* Inc each time a connection is established */
700*4882a593Smuzhiyun 
701*4882a593Smuzhiyun 	unsigned long flags;
702*4882a593Smuzhiyun 	struct net_conf *net_conf;	/* content protected by rcu */
703*4882a593Smuzhiyun 	wait_queue_head_t ping_wait;	/* Woken upon reception of a ping, and a state change */
704*4882a593Smuzhiyun 
705*4882a593Smuzhiyun 	struct sockaddr_storage my_addr;
706*4882a593Smuzhiyun 	int my_addr_len;
707*4882a593Smuzhiyun 	struct sockaddr_storage peer_addr;
708*4882a593Smuzhiyun 	int peer_addr_len;
709*4882a593Smuzhiyun 
710*4882a593Smuzhiyun 	struct drbd_socket data;	/* data/barrier/cstate/parameter packets */
711*4882a593Smuzhiyun 	struct drbd_socket meta;	/* ping/ack (metadata) packets */
712*4882a593Smuzhiyun 	int agreed_pro_version;		/* actually used protocol version */
713*4882a593Smuzhiyun 	u32 agreed_features;
714*4882a593Smuzhiyun 	unsigned long last_received;	/* in jiffies, either socket */
715*4882a593Smuzhiyun 	unsigned int ko_count;
716*4882a593Smuzhiyun 
717*4882a593Smuzhiyun 	struct list_head transfer_log;	/* all requests not yet fully processed */
718*4882a593Smuzhiyun 
719*4882a593Smuzhiyun 	struct crypto_shash *cram_hmac_tfm;
720*4882a593Smuzhiyun 	struct crypto_shash *integrity_tfm;  /* checksums we compute, updates protected by connection->data->mutex */
721*4882a593Smuzhiyun 	struct crypto_shash *peer_integrity_tfm;  /* checksums we verify, only accessed from receiver thread  */
722*4882a593Smuzhiyun 	struct crypto_shash *csums_tfm;
723*4882a593Smuzhiyun 	struct crypto_shash *verify_tfm;
724*4882a593Smuzhiyun 	void *int_dig_in;
725*4882a593Smuzhiyun 	void *int_dig_vv;
726*4882a593Smuzhiyun 
727*4882a593Smuzhiyun 	/* receiver side */
728*4882a593Smuzhiyun 	struct drbd_epoch *current_epoch;
729*4882a593Smuzhiyun 	spinlock_t epoch_lock;
730*4882a593Smuzhiyun 	unsigned int epochs;
731*4882a593Smuzhiyun 	atomic_t current_tle_nr;	/* transfer log epoch number */
732*4882a593Smuzhiyun 	unsigned current_tle_writes;	/* writes seen within this tl epoch */
733*4882a593Smuzhiyun 
734*4882a593Smuzhiyun 	unsigned long last_reconnect_jif;
735*4882a593Smuzhiyun 	/* empty member on older kernels without blk_start_plug() */
736*4882a593Smuzhiyun 	struct blk_plug receiver_plug;
737*4882a593Smuzhiyun 	struct drbd_thread receiver;
738*4882a593Smuzhiyun 	struct drbd_thread worker;
739*4882a593Smuzhiyun 	struct drbd_thread ack_receiver;
740*4882a593Smuzhiyun 	struct workqueue_struct *ack_sender;
741*4882a593Smuzhiyun 
742*4882a593Smuzhiyun 	/* cached pointers,
743*4882a593Smuzhiyun 	 * so we can look up the oldest pending requests more quickly.
744*4882a593Smuzhiyun 	 * protected by resource->req_lock */
745*4882a593Smuzhiyun 	struct drbd_request *req_next; /* DRBD 9: todo.req_next */
746*4882a593Smuzhiyun 	struct drbd_request *req_ack_pending;
747*4882a593Smuzhiyun 	struct drbd_request *req_not_net_done;
748*4882a593Smuzhiyun 
749*4882a593Smuzhiyun 	/* sender side */
750*4882a593Smuzhiyun 	struct drbd_work_queue sender_work;
751*4882a593Smuzhiyun 
752*4882a593Smuzhiyun #define DRBD_THREAD_DETAILS_HIST	16
753*4882a593Smuzhiyun 	unsigned int w_cb_nr; /* keeps counting up */
754*4882a593Smuzhiyun 	unsigned int r_cb_nr; /* keeps counting up */
755*4882a593Smuzhiyun 	struct drbd_thread_timing_details w_timing_details[DRBD_THREAD_DETAILS_HIST];
756*4882a593Smuzhiyun 	struct drbd_thread_timing_details r_timing_details[DRBD_THREAD_DETAILS_HIST];
757*4882a593Smuzhiyun 
758*4882a593Smuzhiyun 	struct {
759*4882a593Smuzhiyun 		unsigned long last_sent_barrier_jif;
760*4882a593Smuzhiyun 
761*4882a593Smuzhiyun 		/* whether this sender thread
762*4882a593Smuzhiyun 		 * has processed a single write yet. */
763*4882a593Smuzhiyun 		bool seen_any_write_yet;
764*4882a593Smuzhiyun 
765*4882a593Smuzhiyun 		/* Which barrier number to send with the next P_BARRIER */
766*4882a593Smuzhiyun 		int current_epoch_nr;
767*4882a593Smuzhiyun 
768*4882a593Smuzhiyun 		/* how many write requests have been sent
769*4882a593Smuzhiyun 		 * with req->epoch == current_epoch_nr.
770*4882a593Smuzhiyun 		 * If none, no P_BARRIER will be sent. */
771*4882a593Smuzhiyun 		unsigned current_epoch_writes;
772*4882a593Smuzhiyun 	} send;
773*4882a593Smuzhiyun };
774*4882a593Smuzhiyun 
has_net_conf(struct drbd_connection * connection)775*4882a593Smuzhiyun static inline bool has_net_conf(struct drbd_connection *connection)
776*4882a593Smuzhiyun {
777*4882a593Smuzhiyun 	bool has_net_conf;
778*4882a593Smuzhiyun 
779*4882a593Smuzhiyun 	rcu_read_lock();
780*4882a593Smuzhiyun 	has_net_conf = rcu_dereference(connection->net_conf);
781*4882a593Smuzhiyun 	rcu_read_unlock();
782*4882a593Smuzhiyun 
783*4882a593Smuzhiyun 	return has_net_conf;
784*4882a593Smuzhiyun }
785*4882a593Smuzhiyun 
786*4882a593Smuzhiyun void __update_timing_details(
787*4882a593Smuzhiyun 		struct drbd_thread_timing_details *tdp,
788*4882a593Smuzhiyun 		unsigned int *cb_nr,
789*4882a593Smuzhiyun 		void *cb,
790*4882a593Smuzhiyun 		const char *fn, const unsigned int line);
791*4882a593Smuzhiyun 
792*4882a593Smuzhiyun #define update_worker_timing_details(c, cb) \
793*4882a593Smuzhiyun 	__update_timing_details(c->w_timing_details, &c->w_cb_nr, cb, __func__ , __LINE__ )
794*4882a593Smuzhiyun #define update_receiver_timing_details(c, cb) \
795*4882a593Smuzhiyun 	__update_timing_details(c->r_timing_details, &c->r_cb_nr, cb, __func__ , __LINE__ )
796*4882a593Smuzhiyun 
797*4882a593Smuzhiyun struct submit_worker {
798*4882a593Smuzhiyun 	struct workqueue_struct *wq;
799*4882a593Smuzhiyun 	struct work_struct worker;
800*4882a593Smuzhiyun 
801*4882a593Smuzhiyun 	/* protected by ..->resource->req_lock */
802*4882a593Smuzhiyun 	struct list_head writes;
803*4882a593Smuzhiyun };
804*4882a593Smuzhiyun 
805*4882a593Smuzhiyun struct drbd_peer_device {
806*4882a593Smuzhiyun 	struct list_head peer_devices;
807*4882a593Smuzhiyun 	struct drbd_device *device;
808*4882a593Smuzhiyun 	struct drbd_connection *connection;
809*4882a593Smuzhiyun 	struct work_struct send_acks_work;
810*4882a593Smuzhiyun #ifdef CONFIG_DEBUG_FS
811*4882a593Smuzhiyun 	struct dentry *debugfs_peer_dev;
812*4882a593Smuzhiyun #endif
813*4882a593Smuzhiyun };
814*4882a593Smuzhiyun 
815*4882a593Smuzhiyun struct drbd_device {
816*4882a593Smuzhiyun 	struct drbd_resource *resource;
817*4882a593Smuzhiyun 	struct list_head peer_devices;
818*4882a593Smuzhiyun 	struct list_head pending_bitmap_io;
819*4882a593Smuzhiyun 
820*4882a593Smuzhiyun 	unsigned long flush_jif;
821*4882a593Smuzhiyun #ifdef CONFIG_DEBUG_FS
822*4882a593Smuzhiyun 	struct dentry *debugfs_minor;
823*4882a593Smuzhiyun 	struct dentry *debugfs_vol;
824*4882a593Smuzhiyun 	struct dentry *debugfs_vol_oldest_requests;
825*4882a593Smuzhiyun 	struct dentry *debugfs_vol_act_log_extents;
826*4882a593Smuzhiyun 	struct dentry *debugfs_vol_resync_extents;
827*4882a593Smuzhiyun 	struct dentry *debugfs_vol_data_gen_id;
828*4882a593Smuzhiyun 	struct dentry *debugfs_vol_ed_gen_id;
829*4882a593Smuzhiyun #endif
830*4882a593Smuzhiyun 
831*4882a593Smuzhiyun 	unsigned int vnr;	/* volume number within the connection */
832*4882a593Smuzhiyun 	unsigned int minor;	/* device minor number */
833*4882a593Smuzhiyun 
834*4882a593Smuzhiyun 	struct kref kref;
835*4882a593Smuzhiyun 
836*4882a593Smuzhiyun 	/* things that are stored as / read from meta data on disk */
837*4882a593Smuzhiyun 	unsigned long flags;
838*4882a593Smuzhiyun 
839*4882a593Smuzhiyun 	/* configured by drbdsetup */
840*4882a593Smuzhiyun 	struct drbd_backing_dev *ldev __protected_by(local);
841*4882a593Smuzhiyun 
842*4882a593Smuzhiyun 	sector_t p_size;     /* partner's disk size */
843*4882a593Smuzhiyun 	struct request_queue *rq_queue;
844*4882a593Smuzhiyun 	struct gendisk	    *vdisk;
845*4882a593Smuzhiyun 
846*4882a593Smuzhiyun 	unsigned long last_reattach_jif;
847*4882a593Smuzhiyun 	struct drbd_work resync_work;
848*4882a593Smuzhiyun 	struct drbd_work unplug_work;
849*4882a593Smuzhiyun 	struct timer_list resync_timer;
850*4882a593Smuzhiyun 	struct timer_list md_sync_timer;
851*4882a593Smuzhiyun 	struct timer_list start_resync_timer;
852*4882a593Smuzhiyun 	struct timer_list request_timer;
853*4882a593Smuzhiyun 
854*4882a593Smuzhiyun 	/* Used after attach while negotiating new disk state. */
855*4882a593Smuzhiyun 	union drbd_state new_state_tmp;
856*4882a593Smuzhiyun 
857*4882a593Smuzhiyun 	union drbd_dev_state state;
858*4882a593Smuzhiyun 	wait_queue_head_t misc_wait;
859*4882a593Smuzhiyun 	wait_queue_head_t state_wait;  /* upon each state change. */
860*4882a593Smuzhiyun 	unsigned int send_cnt;
861*4882a593Smuzhiyun 	unsigned int recv_cnt;
862*4882a593Smuzhiyun 	unsigned int read_cnt;
863*4882a593Smuzhiyun 	unsigned int writ_cnt;
864*4882a593Smuzhiyun 	unsigned int al_writ_cnt;
865*4882a593Smuzhiyun 	unsigned int bm_writ_cnt;
866*4882a593Smuzhiyun 	atomic_t ap_bio_cnt;	 /* Requests we need to complete */
867*4882a593Smuzhiyun 	atomic_t ap_actlog_cnt;  /* Requests waiting for activity log */
868*4882a593Smuzhiyun 	atomic_t ap_pending_cnt; /* AP data packets on the wire, ack expected */
869*4882a593Smuzhiyun 	atomic_t rs_pending_cnt; /* RS request/data packets on the wire */
870*4882a593Smuzhiyun 	atomic_t unacked_cnt;	 /* Need to send replies for */
871*4882a593Smuzhiyun 	atomic_t local_cnt;	 /* Waiting for local completion */
872*4882a593Smuzhiyun 	atomic_t suspend_cnt;
873*4882a593Smuzhiyun 
874*4882a593Smuzhiyun 	/* Interval tree of pending local requests */
875*4882a593Smuzhiyun 	struct rb_root read_requests;
876*4882a593Smuzhiyun 	struct rb_root write_requests;
877*4882a593Smuzhiyun 
878*4882a593Smuzhiyun 	/* for statistics and timeouts */
879*4882a593Smuzhiyun 	/* [0] read, [1] write */
880*4882a593Smuzhiyun 	struct list_head pending_master_completion[2];
881*4882a593Smuzhiyun 	struct list_head pending_completion[2];
882*4882a593Smuzhiyun 
883*4882a593Smuzhiyun 	/* use checksums for *this* resync */
884*4882a593Smuzhiyun 	bool use_csums;
885*4882a593Smuzhiyun 	/* blocks to resync in this run [unit BM_BLOCK_SIZE] */
886*4882a593Smuzhiyun 	unsigned long rs_total;
887*4882a593Smuzhiyun 	/* number of resync blocks that failed in this run */
888*4882a593Smuzhiyun 	unsigned long rs_failed;
889*4882a593Smuzhiyun 	/* Syncer's start time [unit jiffies] */
890*4882a593Smuzhiyun 	unsigned long rs_start;
891*4882a593Smuzhiyun 	/* cumulated time in PausedSyncX state [unit jiffies] */
892*4882a593Smuzhiyun 	unsigned long rs_paused;
893*4882a593Smuzhiyun 	/* skipped because csum was equal [unit BM_BLOCK_SIZE] */
894*4882a593Smuzhiyun 	unsigned long rs_same_csum;
895*4882a593Smuzhiyun #define DRBD_SYNC_MARKS 8
896*4882a593Smuzhiyun #define DRBD_SYNC_MARK_STEP (3*HZ)
897*4882a593Smuzhiyun 	/* block not up-to-date at mark [unit BM_BLOCK_SIZE] */
898*4882a593Smuzhiyun 	unsigned long rs_mark_left[DRBD_SYNC_MARKS];
899*4882a593Smuzhiyun 	/* marks's time [unit jiffies] */
900*4882a593Smuzhiyun 	unsigned long rs_mark_time[DRBD_SYNC_MARKS];
901*4882a593Smuzhiyun 	/* current index into rs_mark_{left,time} */
902*4882a593Smuzhiyun 	int rs_last_mark;
903*4882a593Smuzhiyun 	unsigned long rs_last_bcast; /* [unit jiffies] */
904*4882a593Smuzhiyun 
905*4882a593Smuzhiyun 	/* where does the admin want us to start? (sector) */
906*4882a593Smuzhiyun 	sector_t ov_start_sector;
907*4882a593Smuzhiyun 	sector_t ov_stop_sector;
908*4882a593Smuzhiyun 	/* where are we now? (sector) */
909*4882a593Smuzhiyun 	sector_t ov_position;
910*4882a593Smuzhiyun 	/* Start sector of out of sync range (to merge printk reporting). */
911*4882a593Smuzhiyun 	sector_t ov_last_oos_start;
912*4882a593Smuzhiyun 	/* size of out-of-sync range in sectors. */
913*4882a593Smuzhiyun 	sector_t ov_last_oos_size;
914*4882a593Smuzhiyun 	unsigned long ov_left; /* in bits */
915*4882a593Smuzhiyun 
916*4882a593Smuzhiyun 	struct drbd_bitmap *bitmap;
917*4882a593Smuzhiyun 	unsigned long bm_resync_fo; /* bit offset for drbd_bm_find_next */
918*4882a593Smuzhiyun 
919*4882a593Smuzhiyun 	/* Used to track operations of resync... */
920*4882a593Smuzhiyun 	struct lru_cache *resync;
921*4882a593Smuzhiyun 	/* Number of locked elements in resync LRU */
922*4882a593Smuzhiyun 	unsigned int resync_locked;
923*4882a593Smuzhiyun 	/* resync extent number waiting for application requests */
924*4882a593Smuzhiyun 	unsigned int resync_wenr;
925*4882a593Smuzhiyun 
926*4882a593Smuzhiyun 	int open_cnt;
927*4882a593Smuzhiyun 	u64 *p_uuid;
928*4882a593Smuzhiyun 
929*4882a593Smuzhiyun 	struct list_head active_ee; /* IO in progress (P_DATA gets written to disk) */
930*4882a593Smuzhiyun 	struct list_head sync_ee;   /* IO in progress (P_RS_DATA_REPLY gets written to disk) */
931*4882a593Smuzhiyun 	struct list_head done_ee;   /* need to send P_WRITE_ACK */
932*4882a593Smuzhiyun 	struct list_head read_ee;   /* [RS]P_DATA_REQUEST being read */
933*4882a593Smuzhiyun 	struct list_head net_ee;    /* zero-copy network send in progress */
934*4882a593Smuzhiyun 
935*4882a593Smuzhiyun 	int next_barrier_nr;
936*4882a593Smuzhiyun 	struct list_head resync_reads;
937*4882a593Smuzhiyun 	atomic_t pp_in_use;		/* allocated from page pool */
938*4882a593Smuzhiyun 	atomic_t pp_in_use_by_net;	/* sendpage()d, still referenced by tcp */
939*4882a593Smuzhiyun 	wait_queue_head_t ee_wait;
940*4882a593Smuzhiyun 	struct drbd_md_io md_io;
941*4882a593Smuzhiyun 	spinlock_t al_lock;
942*4882a593Smuzhiyun 	wait_queue_head_t al_wait;
943*4882a593Smuzhiyun 	struct lru_cache *act_log;	/* activity log */
944*4882a593Smuzhiyun 	unsigned int al_tr_number;
945*4882a593Smuzhiyun 	int al_tr_cycle;
946*4882a593Smuzhiyun 	wait_queue_head_t seq_wait;
947*4882a593Smuzhiyun 	atomic_t packet_seq;
948*4882a593Smuzhiyun 	unsigned int peer_seq;
949*4882a593Smuzhiyun 	spinlock_t peer_seq_lock;
950*4882a593Smuzhiyun 	unsigned long comm_bm_set; /* communicated number of set bits. */
951*4882a593Smuzhiyun 	struct bm_io_work bm_io_work;
952*4882a593Smuzhiyun 	u64 ed_uuid; /* UUID of the exposed data */
953*4882a593Smuzhiyun 	struct mutex own_state_mutex;
954*4882a593Smuzhiyun 	struct mutex *state_mutex; /* either own_state_mutex or first_peer_device(device)->connection->cstate_mutex */
955*4882a593Smuzhiyun 	char congestion_reason;  /* Why we where congested... */
956*4882a593Smuzhiyun 	atomic_t rs_sect_in; /* for incoming resync data rate, SyncTarget */
957*4882a593Smuzhiyun 	atomic_t rs_sect_ev; /* for submitted resync data rate, both */
958*4882a593Smuzhiyun 	int rs_last_sect_ev; /* counter to compare with */
959*4882a593Smuzhiyun 	int rs_last_events;  /* counter of read or write "events" (unit sectors)
960*4882a593Smuzhiyun 			      * on the lower level device when we last looked. */
961*4882a593Smuzhiyun 	int c_sync_rate; /* current resync rate after syncer throttle magic */
962*4882a593Smuzhiyun 	struct fifo_buffer *rs_plan_s; /* correction values of resync planer (RCU, connection->conn_update) */
963*4882a593Smuzhiyun 	int rs_in_flight; /* resync sectors in flight (to proxy, in proxy and from proxy) */
964*4882a593Smuzhiyun 	atomic_t ap_in_flight; /* App sectors in flight (waiting for ack) */
965*4882a593Smuzhiyun 	unsigned int peer_max_bio_size;
966*4882a593Smuzhiyun 	unsigned int local_max_bio_size;
967*4882a593Smuzhiyun 
968*4882a593Smuzhiyun 	/* any requests that would block in drbd_make_request()
969*4882a593Smuzhiyun 	 * are deferred to this single-threaded work queue */
970*4882a593Smuzhiyun 	struct submit_worker submit;
971*4882a593Smuzhiyun };
972*4882a593Smuzhiyun 
973*4882a593Smuzhiyun struct drbd_bm_aio_ctx {
974*4882a593Smuzhiyun 	struct drbd_device *device;
975*4882a593Smuzhiyun 	struct list_head list; /* on device->pending_bitmap_io */;
976*4882a593Smuzhiyun 	unsigned long start_jif;
977*4882a593Smuzhiyun 	atomic_t in_flight;
978*4882a593Smuzhiyun 	unsigned int done;
979*4882a593Smuzhiyun 	unsigned flags;
980*4882a593Smuzhiyun #define BM_AIO_COPY_PAGES	1
981*4882a593Smuzhiyun #define BM_AIO_WRITE_HINTED	2
982*4882a593Smuzhiyun #define BM_AIO_WRITE_ALL_PAGES	4
983*4882a593Smuzhiyun #define BM_AIO_READ		8
984*4882a593Smuzhiyun 	int error;
985*4882a593Smuzhiyun 	struct kref kref;
986*4882a593Smuzhiyun };
987*4882a593Smuzhiyun 
988*4882a593Smuzhiyun struct drbd_config_context {
989*4882a593Smuzhiyun 	/* assigned from drbd_genlmsghdr */
990*4882a593Smuzhiyun 	unsigned int minor;
991*4882a593Smuzhiyun 	/* assigned from request attributes, if present */
992*4882a593Smuzhiyun 	unsigned int volume;
993*4882a593Smuzhiyun #define VOLUME_UNSPECIFIED		(-1U)
994*4882a593Smuzhiyun 	/* pointer into the request skb,
995*4882a593Smuzhiyun 	 * limited lifetime! */
996*4882a593Smuzhiyun 	char *resource_name;
997*4882a593Smuzhiyun 	struct nlattr *my_addr;
998*4882a593Smuzhiyun 	struct nlattr *peer_addr;
999*4882a593Smuzhiyun 
1000*4882a593Smuzhiyun 	/* reply buffer */
1001*4882a593Smuzhiyun 	struct sk_buff *reply_skb;
1002*4882a593Smuzhiyun 	/* pointer into reply buffer */
1003*4882a593Smuzhiyun 	struct drbd_genlmsghdr *reply_dh;
1004*4882a593Smuzhiyun 	/* resolved from attributes, if possible */
1005*4882a593Smuzhiyun 	struct drbd_device *device;
1006*4882a593Smuzhiyun 	struct drbd_resource *resource;
1007*4882a593Smuzhiyun 	struct drbd_connection *connection;
1008*4882a593Smuzhiyun };
1009*4882a593Smuzhiyun 
minor_to_device(unsigned int minor)1010*4882a593Smuzhiyun static inline struct drbd_device *minor_to_device(unsigned int minor)
1011*4882a593Smuzhiyun {
1012*4882a593Smuzhiyun 	return (struct drbd_device *)idr_find(&drbd_devices, minor);
1013*4882a593Smuzhiyun }
1014*4882a593Smuzhiyun 
first_peer_device(struct drbd_device * device)1015*4882a593Smuzhiyun static inline struct drbd_peer_device *first_peer_device(struct drbd_device *device)
1016*4882a593Smuzhiyun {
1017*4882a593Smuzhiyun 	return list_first_entry_or_null(&device->peer_devices, struct drbd_peer_device, peer_devices);
1018*4882a593Smuzhiyun }
1019*4882a593Smuzhiyun 
1020*4882a593Smuzhiyun static inline struct drbd_peer_device *
conn_peer_device(struct drbd_connection * connection,int volume_number)1021*4882a593Smuzhiyun conn_peer_device(struct drbd_connection *connection, int volume_number)
1022*4882a593Smuzhiyun {
1023*4882a593Smuzhiyun 	return idr_find(&connection->peer_devices, volume_number);
1024*4882a593Smuzhiyun }
1025*4882a593Smuzhiyun 
1026*4882a593Smuzhiyun #define for_each_resource(resource, _resources) \
1027*4882a593Smuzhiyun 	list_for_each_entry(resource, _resources, resources)
1028*4882a593Smuzhiyun 
1029*4882a593Smuzhiyun #define for_each_resource_rcu(resource, _resources) \
1030*4882a593Smuzhiyun 	list_for_each_entry_rcu(resource, _resources, resources)
1031*4882a593Smuzhiyun 
1032*4882a593Smuzhiyun #define for_each_resource_safe(resource, tmp, _resources) \
1033*4882a593Smuzhiyun 	list_for_each_entry_safe(resource, tmp, _resources, resources)
1034*4882a593Smuzhiyun 
1035*4882a593Smuzhiyun #define for_each_connection(connection, resource) \
1036*4882a593Smuzhiyun 	list_for_each_entry(connection, &resource->connections, connections)
1037*4882a593Smuzhiyun 
1038*4882a593Smuzhiyun #define for_each_connection_rcu(connection, resource) \
1039*4882a593Smuzhiyun 	list_for_each_entry_rcu(connection, &resource->connections, connections)
1040*4882a593Smuzhiyun 
1041*4882a593Smuzhiyun #define for_each_connection_safe(connection, tmp, resource) \
1042*4882a593Smuzhiyun 	list_for_each_entry_safe(connection, tmp, &resource->connections, connections)
1043*4882a593Smuzhiyun 
1044*4882a593Smuzhiyun #define for_each_peer_device(peer_device, device) \
1045*4882a593Smuzhiyun 	list_for_each_entry(peer_device, &device->peer_devices, peer_devices)
1046*4882a593Smuzhiyun 
1047*4882a593Smuzhiyun #define for_each_peer_device_rcu(peer_device, device) \
1048*4882a593Smuzhiyun 	list_for_each_entry_rcu(peer_device, &device->peer_devices, peer_devices)
1049*4882a593Smuzhiyun 
1050*4882a593Smuzhiyun #define for_each_peer_device_safe(peer_device, tmp, device) \
1051*4882a593Smuzhiyun 	list_for_each_entry_safe(peer_device, tmp, &device->peer_devices, peer_devices)
1052*4882a593Smuzhiyun 
device_to_minor(struct drbd_device * device)1053*4882a593Smuzhiyun static inline unsigned int device_to_minor(struct drbd_device *device)
1054*4882a593Smuzhiyun {
1055*4882a593Smuzhiyun 	return device->minor;
1056*4882a593Smuzhiyun }
1057*4882a593Smuzhiyun 
1058*4882a593Smuzhiyun /*
1059*4882a593Smuzhiyun  * function declarations
1060*4882a593Smuzhiyun  *************************/
1061*4882a593Smuzhiyun 
1062*4882a593Smuzhiyun /* drbd_main.c */
1063*4882a593Smuzhiyun 
1064*4882a593Smuzhiyun enum dds_flags {
1065*4882a593Smuzhiyun 	DDSF_FORCED    = 1,
1066*4882a593Smuzhiyun 	DDSF_NO_RESYNC = 2, /* Do not run a resync for the new space */
1067*4882a593Smuzhiyun };
1068*4882a593Smuzhiyun 
1069*4882a593Smuzhiyun extern void drbd_init_set_defaults(struct drbd_device *device);
1070*4882a593Smuzhiyun extern int  drbd_thread_start(struct drbd_thread *thi);
1071*4882a593Smuzhiyun extern void _drbd_thread_stop(struct drbd_thread *thi, int restart, int wait);
1072*4882a593Smuzhiyun #ifdef CONFIG_SMP
1073*4882a593Smuzhiyun extern void drbd_thread_current_set_cpu(struct drbd_thread *thi);
1074*4882a593Smuzhiyun #else
1075*4882a593Smuzhiyun #define drbd_thread_current_set_cpu(A) ({})
1076*4882a593Smuzhiyun #endif
1077*4882a593Smuzhiyun extern void tl_release(struct drbd_connection *, unsigned int barrier_nr,
1078*4882a593Smuzhiyun 		       unsigned int set_size);
1079*4882a593Smuzhiyun extern void tl_clear(struct drbd_connection *);
1080*4882a593Smuzhiyun extern void drbd_free_sock(struct drbd_connection *connection);
1081*4882a593Smuzhiyun extern int drbd_send(struct drbd_connection *connection, struct socket *sock,
1082*4882a593Smuzhiyun 		     void *buf, size_t size, unsigned msg_flags);
1083*4882a593Smuzhiyun extern int drbd_send_all(struct drbd_connection *, struct socket *, void *, size_t,
1084*4882a593Smuzhiyun 			 unsigned);
1085*4882a593Smuzhiyun 
1086*4882a593Smuzhiyun extern int __drbd_send_protocol(struct drbd_connection *connection, enum drbd_packet cmd);
1087*4882a593Smuzhiyun extern int drbd_send_protocol(struct drbd_connection *connection);
1088*4882a593Smuzhiyun extern int drbd_send_uuids(struct drbd_peer_device *);
1089*4882a593Smuzhiyun extern int drbd_send_uuids_skip_initial_sync(struct drbd_peer_device *);
1090*4882a593Smuzhiyun extern void drbd_gen_and_send_sync_uuid(struct drbd_peer_device *);
1091*4882a593Smuzhiyun extern int drbd_send_sizes(struct drbd_peer_device *, int trigger_reply, enum dds_flags flags);
1092*4882a593Smuzhiyun extern int drbd_send_state(struct drbd_peer_device *, union drbd_state s);
1093*4882a593Smuzhiyun extern int drbd_send_current_state(struct drbd_peer_device *);
1094*4882a593Smuzhiyun extern int drbd_send_sync_param(struct drbd_peer_device *);
1095*4882a593Smuzhiyun extern void drbd_send_b_ack(struct drbd_connection *connection, u32 barrier_nr,
1096*4882a593Smuzhiyun 			    u32 set_size);
1097*4882a593Smuzhiyun extern int drbd_send_ack(struct drbd_peer_device *, enum drbd_packet,
1098*4882a593Smuzhiyun 			 struct drbd_peer_request *);
1099*4882a593Smuzhiyun extern void drbd_send_ack_rp(struct drbd_peer_device *, enum drbd_packet,
1100*4882a593Smuzhiyun 			     struct p_block_req *rp);
1101*4882a593Smuzhiyun extern void drbd_send_ack_dp(struct drbd_peer_device *, enum drbd_packet,
1102*4882a593Smuzhiyun 			     struct p_data *dp, int data_size);
1103*4882a593Smuzhiyun extern int drbd_send_ack_ex(struct drbd_peer_device *, enum drbd_packet,
1104*4882a593Smuzhiyun 			    sector_t sector, int blksize, u64 block_id);
1105*4882a593Smuzhiyun extern int drbd_send_out_of_sync(struct drbd_peer_device *, struct drbd_request *);
1106*4882a593Smuzhiyun extern int drbd_send_block(struct drbd_peer_device *, enum drbd_packet,
1107*4882a593Smuzhiyun 			   struct drbd_peer_request *);
1108*4882a593Smuzhiyun extern int drbd_send_dblock(struct drbd_peer_device *, struct drbd_request *req);
1109*4882a593Smuzhiyun extern int drbd_send_drequest(struct drbd_peer_device *, int cmd,
1110*4882a593Smuzhiyun 			      sector_t sector, int size, u64 block_id);
1111*4882a593Smuzhiyun extern int drbd_send_drequest_csum(struct drbd_peer_device *, sector_t sector,
1112*4882a593Smuzhiyun 				   int size, void *digest, int digest_size,
1113*4882a593Smuzhiyun 				   enum drbd_packet cmd);
1114*4882a593Smuzhiyun extern int drbd_send_ov_request(struct drbd_peer_device *, sector_t sector, int size);
1115*4882a593Smuzhiyun 
1116*4882a593Smuzhiyun extern int drbd_send_bitmap(struct drbd_device *device);
1117*4882a593Smuzhiyun extern void drbd_send_sr_reply(struct drbd_peer_device *, enum drbd_state_rv retcode);
1118*4882a593Smuzhiyun extern void conn_send_sr_reply(struct drbd_connection *connection, enum drbd_state_rv retcode);
1119*4882a593Smuzhiyun extern int drbd_send_rs_deallocated(struct drbd_peer_device *, struct drbd_peer_request *);
1120*4882a593Smuzhiyun extern void drbd_backing_dev_free(struct drbd_device *device, struct drbd_backing_dev *ldev);
1121*4882a593Smuzhiyun extern void drbd_device_cleanup(struct drbd_device *device);
1122*4882a593Smuzhiyun extern void drbd_print_uuids(struct drbd_device *device, const char *text);
1123*4882a593Smuzhiyun extern void drbd_queue_unplug(struct drbd_device *device);
1124*4882a593Smuzhiyun 
1125*4882a593Smuzhiyun extern void conn_md_sync(struct drbd_connection *connection);
1126*4882a593Smuzhiyun extern void drbd_md_write(struct drbd_device *device, void *buffer);
1127*4882a593Smuzhiyun extern void drbd_md_sync(struct drbd_device *device);
1128*4882a593Smuzhiyun extern int  drbd_md_read(struct drbd_device *device, struct drbd_backing_dev *bdev);
1129*4882a593Smuzhiyun extern void drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local);
1130*4882a593Smuzhiyun extern void _drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local);
1131*4882a593Smuzhiyun extern void drbd_uuid_new_current(struct drbd_device *device) __must_hold(local);
1132*4882a593Smuzhiyun extern void drbd_uuid_set_bm(struct drbd_device *device, u64 val) __must_hold(local);
1133*4882a593Smuzhiyun extern void drbd_uuid_move_history(struct drbd_device *device) __must_hold(local);
1134*4882a593Smuzhiyun extern void __drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local);
1135*4882a593Smuzhiyun extern void drbd_md_set_flag(struct drbd_device *device, int flags) __must_hold(local);
1136*4882a593Smuzhiyun extern void drbd_md_clear_flag(struct drbd_device *device, int flags)__must_hold(local);
1137*4882a593Smuzhiyun extern int drbd_md_test_flag(struct drbd_backing_dev *, int);
1138*4882a593Smuzhiyun extern void drbd_md_mark_dirty(struct drbd_device *device);
1139*4882a593Smuzhiyun extern void drbd_queue_bitmap_io(struct drbd_device *device,
1140*4882a593Smuzhiyun 				 int (*io_fn)(struct drbd_device *),
1141*4882a593Smuzhiyun 				 void (*done)(struct drbd_device *, int),
1142*4882a593Smuzhiyun 				 char *why, enum bm_flag flags);
1143*4882a593Smuzhiyun extern int drbd_bitmap_io(struct drbd_device *device,
1144*4882a593Smuzhiyun 		int (*io_fn)(struct drbd_device *),
1145*4882a593Smuzhiyun 		char *why, enum bm_flag flags);
1146*4882a593Smuzhiyun extern int drbd_bitmap_io_from_worker(struct drbd_device *device,
1147*4882a593Smuzhiyun 		int (*io_fn)(struct drbd_device *),
1148*4882a593Smuzhiyun 		char *why, enum bm_flag flags);
1149*4882a593Smuzhiyun extern int drbd_bmio_set_n_write(struct drbd_device *device) __must_hold(local);
1150*4882a593Smuzhiyun extern int drbd_bmio_clear_n_write(struct drbd_device *device) __must_hold(local);
1151*4882a593Smuzhiyun 
1152*4882a593Smuzhiyun /* Meta data layout
1153*4882a593Smuzhiyun  *
1154*4882a593Smuzhiyun  * We currently have two possible layouts.
1155*4882a593Smuzhiyun  * Offsets in (512 byte) sectors.
1156*4882a593Smuzhiyun  * external:
1157*4882a593Smuzhiyun  *   |----------- md_size_sect ------------------|
1158*4882a593Smuzhiyun  *   [ 4k superblock ][ activity log ][  Bitmap  ]
1159*4882a593Smuzhiyun  *   | al_offset == 8 |
1160*4882a593Smuzhiyun  *   | bm_offset = al_offset + X      |
1161*4882a593Smuzhiyun  *  ==> bitmap sectors = md_size_sect - bm_offset
1162*4882a593Smuzhiyun  *
1163*4882a593Smuzhiyun  *  Variants:
1164*4882a593Smuzhiyun  *     old, indexed fixed size meta data:
1165*4882a593Smuzhiyun  *
1166*4882a593Smuzhiyun  * internal:
1167*4882a593Smuzhiyun  *            |----------- md_size_sect ------------------|
1168*4882a593Smuzhiyun  * [data.....][  Bitmap  ][ activity log ][ 4k superblock ][padding*]
1169*4882a593Smuzhiyun  *                        | al_offset < 0 |
1170*4882a593Smuzhiyun  *            | bm_offset = al_offset - Y |
1171*4882a593Smuzhiyun  *  ==> bitmap sectors = Y = al_offset - bm_offset
1172*4882a593Smuzhiyun  *
1173*4882a593Smuzhiyun  *  [padding*] are zero or up to 7 unused 512 Byte sectors to the
1174*4882a593Smuzhiyun  *  end of the device, so that the [4k superblock] will be 4k aligned.
1175*4882a593Smuzhiyun  *
1176*4882a593Smuzhiyun  *  The activity log consists of 4k transaction blocks,
1177*4882a593Smuzhiyun  *  which are written in a ring-buffer, or striped ring-buffer like fashion,
1178*4882a593Smuzhiyun  *  which are writtensize used to be fixed 32kB,
1179*4882a593Smuzhiyun  *  but is about to become configurable.
1180*4882a593Smuzhiyun  */
1181*4882a593Smuzhiyun 
1182*4882a593Smuzhiyun /* Our old fixed size meta data layout
1183*4882a593Smuzhiyun  * allows up to about 3.8TB, so if you want more,
1184*4882a593Smuzhiyun  * you need to use the "flexible" meta data format. */
1185*4882a593Smuzhiyun #define MD_128MB_SECT (128LLU << 11)  /* 128 MB, unit sectors */
1186*4882a593Smuzhiyun #define MD_4kB_SECT	 8
1187*4882a593Smuzhiyun #define MD_32kB_SECT	64
1188*4882a593Smuzhiyun 
1189*4882a593Smuzhiyun /* One activity log extent represents 4M of storage */
1190*4882a593Smuzhiyun #define AL_EXTENT_SHIFT 22
1191*4882a593Smuzhiyun #define AL_EXTENT_SIZE (1<<AL_EXTENT_SHIFT)
1192*4882a593Smuzhiyun 
1193*4882a593Smuzhiyun /* We could make these currently hardcoded constants configurable
1194*4882a593Smuzhiyun  * variables at create-md time (or even re-configurable at runtime?).
1195*4882a593Smuzhiyun  * Which will require some more changes to the DRBD "super block"
1196*4882a593Smuzhiyun  * and attach code.
1197*4882a593Smuzhiyun  *
1198*4882a593Smuzhiyun  * updates per transaction:
1199*4882a593Smuzhiyun  *   This many changes to the active set can be logged with one transaction.
1200*4882a593Smuzhiyun  *   This number is arbitrary.
1201*4882a593Smuzhiyun  * context per transaction:
1202*4882a593Smuzhiyun  *   This many context extent numbers are logged with each transaction.
1203*4882a593Smuzhiyun  *   This number is resulting from the transaction block size (4k), the layout
1204*4882a593Smuzhiyun  *   of the transaction header, and the number of updates per transaction.
1205*4882a593Smuzhiyun  *   See drbd_actlog.c:struct al_transaction_on_disk
1206*4882a593Smuzhiyun  * */
1207*4882a593Smuzhiyun #define AL_UPDATES_PER_TRANSACTION	 64	// arbitrary
1208*4882a593Smuzhiyun #define AL_CONTEXT_PER_TRANSACTION	919	// (4096 - 36 - 6*64)/4
1209*4882a593Smuzhiyun 
1210*4882a593Smuzhiyun #if BITS_PER_LONG == 32
1211*4882a593Smuzhiyun #define LN2_BPL 5
1212*4882a593Smuzhiyun #define cpu_to_lel(A) cpu_to_le32(A)
1213*4882a593Smuzhiyun #define lel_to_cpu(A) le32_to_cpu(A)
1214*4882a593Smuzhiyun #elif BITS_PER_LONG == 64
1215*4882a593Smuzhiyun #define LN2_BPL 6
1216*4882a593Smuzhiyun #define cpu_to_lel(A) cpu_to_le64(A)
1217*4882a593Smuzhiyun #define lel_to_cpu(A) le64_to_cpu(A)
1218*4882a593Smuzhiyun #else
1219*4882a593Smuzhiyun #error "LN2 of BITS_PER_LONG unknown!"
1220*4882a593Smuzhiyun #endif
1221*4882a593Smuzhiyun 
1222*4882a593Smuzhiyun /* resync bitmap */
1223*4882a593Smuzhiyun /* 16MB sized 'bitmap extent' to track syncer usage */
1224*4882a593Smuzhiyun struct bm_extent {
1225*4882a593Smuzhiyun 	int rs_left; /* number of bits set (out of sync) in this extent. */
1226*4882a593Smuzhiyun 	int rs_failed; /* number of failed resync requests in this extent. */
1227*4882a593Smuzhiyun 	unsigned long flags;
1228*4882a593Smuzhiyun 	struct lc_element lce;
1229*4882a593Smuzhiyun };
1230*4882a593Smuzhiyun 
1231*4882a593Smuzhiyun #define BME_NO_WRITES  0  /* bm_extent.flags: no more requests on this one! */
1232*4882a593Smuzhiyun #define BME_LOCKED     1  /* bm_extent.flags: syncer active on this one. */
1233*4882a593Smuzhiyun #define BME_PRIORITY   2  /* finish resync IO on this extent ASAP! App IO waiting! */
1234*4882a593Smuzhiyun 
1235*4882a593Smuzhiyun /* drbd_bitmap.c */
1236*4882a593Smuzhiyun /*
1237*4882a593Smuzhiyun  * We need to store one bit for a block.
1238*4882a593Smuzhiyun  * Example: 1GB disk @ 4096 byte blocks ==> we need 32 KB bitmap.
1239*4882a593Smuzhiyun  * Bit 0 ==> local node thinks this block is binary identical on both nodes
1240*4882a593Smuzhiyun  * Bit 1 ==> local node thinks this block needs to be synced.
1241*4882a593Smuzhiyun  */
1242*4882a593Smuzhiyun 
1243*4882a593Smuzhiyun #define SLEEP_TIME (HZ/10)
1244*4882a593Smuzhiyun 
1245*4882a593Smuzhiyun /* We do bitmap IO in units of 4k blocks.
1246*4882a593Smuzhiyun  * We also still have a hardcoded 4k per bit relation. */
1247*4882a593Smuzhiyun #define BM_BLOCK_SHIFT	12			 /* 4k per bit */
1248*4882a593Smuzhiyun #define BM_BLOCK_SIZE	 (1<<BM_BLOCK_SHIFT)
1249*4882a593Smuzhiyun /* mostly arbitrarily set the represented size of one bitmap extent,
1250*4882a593Smuzhiyun  * aka resync extent, to 16 MiB (which is also 512 Byte worth of bitmap
1251*4882a593Smuzhiyun  * at 4k per bit resolution) */
1252*4882a593Smuzhiyun #define BM_EXT_SHIFT	 24	/* 16 MiB per resync extent */
1253*4882a593Smuzhiyun #define BM_EXT_SIZE	 (1<<BM_EXT_SHIFT)
1254*4882a593Smuzhiyun 
1255*4882a593Smuzhiyun #if (BM_EXT_SHIFT != 24) || (BM_BLOCK_SHIFT != 12)
1256*4882a593Smuzhiyun #error "HAVE YOU FIXED drbdmeta AS WELL??"
1257*4882a593Smuzhiyun #endif
1258*4882a593Smuzhiyun 
1259*4882a593Smuzhiyun /* thus many _storage_ sectors are described by one bit */
1260*4882a593Smuzhiyun #define BM_SECT_TO_BIT(x)   ((x)>>(BM_BLOCK_SHIFT-9))
1261*4882a593Smuzhiyun #define BM_BIT_TO_SECT(x)   ((sector_t)(x)<<(BM_BLOCK_SHIFT-9))
1262*4882a593Smuzhiyun #define BM_SECT_PER_BIT     BM_BIT_TO_SECT(1)
1263*4882a593Smuzhiyun 
1264*4882a593Smuzhiyun /* bit to represented kilo byte conversion */
1265*4882a593Smuzhiyun #define Bit2KB(bits) ((bits)<<(BM_BLOCK_SHIFT-10))
1266*4882a593Smuzhiyun 
1267*4882a593Smuzhiyun /* in which _bitmap_ extent (resp. sector) the bit for a certain
1268*4882a593Smuzhiyun  * _storage_ sector is located in */
1269*4882a593Smuzhiyun #define BM_SECT_TO_EXT(x)   ((x)>>(BM_EXT_SHIFT-9))
1270*4882a593Smuzhiyun #define BM_BIT_TO_EXT(x)    ((x) >> (BM_EXT_SHIFT - BM_BLOCK_SHIFT))
1271*4882a593Smuzhiyun 
1272*4882a593Smuzhiyun /* first storage sector a bitmap extent corresponds to */
1273*4882a593Smuzhiyun #define BM_EXT_TO_SECT(x)   ((sector_t)(x) << (BM_EXT_SHIFT-9))
1274*4882a593Smuzhiyun /* how much _storage_ sectors we have per bitmap extent */
1275*4882a593Smuzhiyun #define BM_SECT_PER_EXT     BM_EXT_TO_SECT(1)
1276*4882a593Smuzhiyun /* how many bits are covered by one bitmap extent (resync extent) */
1277*4882a593Smuzhiyun #define BM_BITS_PER_EXT     (1UL << (BM_EXT_SHIFT - BM_BLOCK_SHIFT))
1278*4882a593Smuzhiyun 
1279*4882a593Smuzhiyun #define BM_BLOCKS_PER_BM_EXT_MASK  (BM_BITS_PER_EXT - 1)
1280*4882a593Smuzhiyun 
1281*4882a593Smuzhiyun 
1282*4882a593Smuzhiyun /* in one sector of the bitmap, we have this many activity_log extents. */
1283*4882a593Smuzhiyun #define AL_EXT_PER_BM_SECT  (1 << (BM_EXT_SHIFT - AL_EXTENT_SHIFT))
1284*4882a593Smuzhiyun 
1285*4882a593Smuzhiyun /* the extent in "PER_EXTENT" below is an activity log extent
1286*4882a593Smuzhiyun  * we need that many (long words/bytes) to store the bitmap
1287*4882a593Smuzhiyun  *		     of one AL_EXTENT_SIZE chunk of storage.
1288*4882a593Smuzhiyun  * we can store the bitmap for that many AL_EXTENTS within
1289*4882a593Smuzhiyun  * one sector of the _on_disk_ bitmap:
1290*4882a593Smuzhiyun  * bit	 0	  bit 37   bit 38	     bit (512*8)-1
1291*4882a593Smuzhiyun  *	     ...|........|........|.. // ..|........|
1292*4882a593Smuzhiyun  * sect. 0	 `296	  `304			   ^(512*8*8)-1
1293*4882a593Smuzhiyun  *
1294*4882a593Smuzhiyun #define BM_WORDS_PER_EXT    ( (AL_EXT_SIZE/BM_BLOCK_SIZE) / BITS_PER_LONG )
1295*4882a593Smuzhiyun #define BM_BYTES_PER_EXT    ( (AL_EXT_SIZE/BM_BLOCK_SIZE) / 8 )  // 128
1296*4882a593Smuzhiyun #define BM_EXT_PER_SECT	    ( 512 / BM_BYTES_PER_EXTENT )	 //   4
1297*4882a593Smuzhiyun  */
1298*4882a593Smuzhiyun 
1299*4882a593Smuzhiyun #define DRBD_MAX_SECTORS_32 (0xffffffffLU)
1300*4882a593Smuzhiyun /* we have a certain meta data variant that has a fixed on-disk size of 128
1301*4882a593Smuzhiyun  * MiB, of which 4k are our "superblock", and 32k are the fixed size activity
1302*4882a593Smuzhiyun  * log, leaving this many sectors for the bitmap.
1303*4882a593Smuzhiyun  */
1304*4882a593Smuzhiyun 
1305*4882a593Smuzhiyun #define DRBD_MAX_SECTORS_FIXED_BM \
1306*4882a593Smuzhiyun 	  ((MD_128MB_SECT - MD_32kB_SECT - MD_4kB_SECT) * (1LL<<(BM_EXT_SHIFT-9)))
1307*4882a593Smuzhiyun #define DRBD_MAX_SECTORS      DRBD_MAX_SECTORS_FIXED_BM
1308*4882a593Smuzhiyun /* 16 TB in units of sectors */
1309*4882a593Smuzhiyun #if BITS_PER_LONG == 32
1310*4882a593Smuzhiyun /* adjust by one page worth of bitmap,
1311*4882a593Smuzhiyun  * so we won't wrap around in drbd_bm_find_next_bit.
1312*4882a593Smuzhiyun  * you should use 64bit OS for that much storage, anyways. */
1313*4882a593Smuzhiyun #define DRBD_MAX_SECTORS_FLEX BM_BIT_TO_SECT(0xffff7fff)
1314*4882a593Smuzhiyun #else
1315*4882a593Smuzhiyun /* we allow up to 1 PiB now on 64bit architecture with "flexible" meta data */
1316*4882a593Smuzhiyun #define DRBD_MAX_SECTORS_FLEX (1UL << 51)
1317*4882a593Smuzhiyun /* corresponds to (1UL << 38) bits right now. */
1318*4882a593Smuzhiyun #endif
1319*4882a593Smuzhiyun 
1320*4882a593Smuzhiyun /* Estimate max bio size as 256 * PAGE_SIZE,
1321*4882a593Smuzhiyun  * so for typical PAGE_SIZE of 4k, that is (1<<20) Byte.
1322*4882a593Smuzhiyun  * Since we may live in a mixed-platform cluster,
1323*4882a593Smuzhiyun  * we limit us to a platform agnostic constant here for now.
1324*4882a593Smuzhiyun  * A followup commit may allow even bigger BIO sizes,
1325*4882a593Smuzhiyun  * once we thought that through. */
1326*4882a593Smuzhiyun #define DRBD_MAX_BIO_SIZE (1U << 20)
1327*4882a593Smuzhiyun #if DRBD_MAX_BIO_SIZE > (BIO_MAX_PAGES << PAGE_SHIFT)
1328*4882a593Smuzhiyun #error Architecture not supported: DRBD_MAX_BIO_SIZE > BIO_MAX_SIZE
1329*4882a593Smuzhiyun #endif
1330*4882a593Smuzhiyun #define DRBD_MAX_BIO_SIZE_SAFE (1U << 12)       /* Works always = 4k */
1331*4882a593Smuzhiyun 
1332*4882a593Smuzhiyun #define DRBD_MAX_SIZE_H80_PACKET (1U << 15) /* Header 80 only allows packets up to 32KiB data */
1333*4882a593Smuzhiyun #define DRBD_MAX_BIO_SIZE_P95    (1U << 17) /* Protocol 95 to 99 allows bios up to 128KiB */
1334*4882a593Smuzhiyun 
1335*4882a593Smuzhiyun /* For now, don't allow more than half of what we can "activate" in one
1336*4882a593Smuzhiyun  * activity log transaction to be discarded in one go. We may need to rework
1337*4882a593Smuzhiyun  * drbd_al_begin_io() to allow for even larger discard ranges */
1338*4882a593Smuzhiyun #define DRBD_MAX_BATCH_BIO_SIZE	 (AL_UPDATES_PER_TRANSACTION/2*AL_EXTENT_SIZE)
1339*4882a593Smuzhiyun #define DRBD_MAX_BBIO_SECTORS    (DRBD_MAX_BATCH_BIO_SIZE >> 9)
1340*4882a593Smuzhiyun 
1341*4882a593Smuzhiyun extern int  drbd_bm_init(struct drbd_device *device);
1342*4882a593Smuzhiyun extern int  drbd_bm_resize(struct drbd_device *device, sector_t sectors, int set_new_bits);
1343*4882a593Smuzhiyun extern void drbd_bm_cleanup(struct drbd_device *device);
1344*4882a593Smuzhiyun extern void drbd_bm_set_all(struct drbd_device *device);
1345*4882a593Smuzhiyun extern void drbd_bm_clear_all(struct drbd_device *device);
1346*4882a593Smuzhiyun /* set/clear/test only a few bits at a time */
1347*4882a593Smuzhiyun extern int  drbd_bm_set_bits(
1348*4882a593Smuzhiyun 		struct drbd_device *device, unsigned long s, unsigned long e);
1349*4882a593Smuzhiyun extern int  drbd_bm_clear_bits(
1350*4882a593Smuzhiyun 		struct drbd_device *device, unsigned long s, unsigned long e);
1351*4882a593Smuzhiyun extern int drbd_bm_count_bits(
1352*4882a593Smuzhiyun 	struct drbd_device *device, const unsigned long s, const unsigned long e);
1353*4882a593Smuzhiyun /* bm_set_bits variant for use while holding drbd_bm_lock,
1354*4882a593Smuzhiyun  * may process the whole bitmap in one go */
1355*4882a593Smuzhiyun extern void _drbd_bm_set_bits(struct drbd_device *device,
1356*4882a593Smuzhiyun 		const unsigned long s, const unsigned long e);
1357*4882a593Smuzhiyun extern int  drbd_bm_test_bit(struct drbd_device *device, unsigned long bitnr);
1358*4882a593Smuzhiyun extern int  drbd_bm_e_weight(struct drbd_device *device, unsigned long enr);
1359*4882a593Smuzhiyun extern int  drbd_bm_read(struct drbd_device *device) __must_hold(local);
1360*4882a593Smuzhiyun extern void drbd_bm_mark_for_writeout(struct drbd_device *device, int page_nr);
1361*4882a593Smuzhiyun extern int  drbd_bm_write(struct drbd_device *device) __must_hold(local);
1362*4882a593Smuzhiyun extern void drbd_bm_reset_al_hints(struct drbd_device *device) __must_hold(local);
1363*4882a593Smuzhiyun extern int  drbd_bm_write_hinted(struct drbd_device *device) __must_hold(local);
1364*4882a593Smuzhiyun extern int  drbd_bm_write_lazy(struct drbd_device *device, unsigned upper_idx) __must_hold(local);
1365*4882a593Smuzhiyun extern int drbd_bm_write_all(struct drbd_device *device) __must_hold(local);
1366*4882a593Smuzhiyun extern int  drbd_bm_write_copy_pages(struct drbd_device *device) __must_hold(local);
1367*4882a593Smuzhiyun extern size_t	     drbd_bm_words(struct drbd_device *device);
1368*4882a593Smuzhiyun extern unsigned long drbd_bm_bits(struct drbd_device *device);
1369*4882a593Smuzhiyun extern sector_t      drbd_bm_capacity(struct drbd_device *device);
1370*4882a593Smuzhiyun 
1371*4882a593Smuzhiyun #define DRBD_END_OF_BITMAP	(~(unsigned long)0)
1372*4882a593Smuzhiyun extern unsigned long drbd_bm_find_next(struct drbd_device *device, unsigned long bm_fo);
1373*4882a593Smuzhiyun /* bm_find_next variants for use while you hold drbd_bm_lock() */
1374*4882a593Smuzhiyun extern unsigned long _drbd_bm_find_next(struct drbd_device *device, unsigned long bm_fo);
1375*4882a593Smuzhiyun extern unsigned long _drbd_bm_find_next_zero(struct drbd_device *device, unsigned long bm_fo);
1376*4882a593Smuzhiyun extern unsigned long _drbd_bm_total_weight(struct drbd_device *device);
1377*4882a593Smuzhiyun extern unsigned long drbd_bm_total_weight(struct drbd_device *device);
1378*4882a593Smuzhiyun /* for receive_bitmap */
1379*4882a593Smuzhiyun extern void drbd_bm_merge_lel(struct drbd_device *device, size_t offset,
1380*4882a593Smuzhiyun 		size_t number, unsigned long *buffer);
1381*4882a593Smuzhiyun /* for _drbd_send_bitmap */
1382*4882a593Smuzhiyun extern void drbd_bm_get_lel(struct drbd_device *device, size_t offset,
1383*4882a593Smuzhiyun 		size_t number, unsigned long *buffer);
1384*4882a593Smuzhiyun 
1385*4882a593Smuzhiyun extern void drbd_bm_lock(struct drbd_device *device, char *why, enum bm_flag flags);
1386*4882a593Smuzhiyun extern void drbd_bm_unlock(struct drbd_device *device);
1387*4882a593Smuzhiyun /* drbd_main.c */
1388*4882a593Smuzhiyun 
1389*4882a593Smuzhiyun extern struct kmem_cache *drbd_request_cache;
1390*4882a593Smuzhiyun extern struct kmem_cache *drbd_ee_cache;	/* peer requests */
1391*4882a593Smuzhiyun extern struct kmem_cache *drbd_bm_ext_cache;	/* bitmap extents */
1392*4882a593Smuzhiyun extern struct kmem_cache *drbd_al_ext_cache;	/* activity log extents */
1393*4882a593Smuzhiyun extern mempool_t drbd_request_mempool;
1394*4882a593Smuzhiyun extern mempool_t drbd_ee_mempool;
1395*4882a593Smuzhiyun 
1396*4882a593Smuzhiyun /* drbd's page pool, used to buffer data received from the peer,
1397*4882a593Smuzhiyun  * or data requested by the peer.
1398*4882a593Smuzhiyun  *
1399*4882a593Smuzhiyun  * This does not have an emergency reserve.
1400*4882a593Smuzhiyun  *
1401*4882a593Smuzhiyun  * When allocating from this pool, it first takes pages from the pool.
1402*4882a593Smuzhiyun  * Only if the pool is depleted will try to allocate from the system.
1403*4882a593Smuzhiyun  *
1404*4882a593Smuzhiyun  * The assumption is that pages taken from this pool will be processed,
1405*4882a593Smuzhiyun  * and given back, "quickly", and then can be recycled, so we can avoid
1406*4882a593Smuzhiyun  * frequent calls to alloc_page(), and still will be able to make progress even
1407*4882a593Smuzhiyun  * under memory pressure.
1408*4882a593Smuzhiyun  */
1409*4882a593Smuzhiyun extern struct page *drbd_pp_pool;
1410*4882a593Smuzhiyun extern spinlock_t   drbd_pp_lock;
1411*4882a593Smuzhiyun extern int	    drbd_pp_vacant;
1412*4882a593Smuzhiyun extern wait_queue_head_t drbd_pp_wait;
1413*4882a593Smuzhiyun 
1414*4882a593Smuzhiyun /* We also need a standard (emergency-reserve backed) page pool
1415*4882a593Smuzhiyun  * for meta data IO (activity log, bitmap).
1416*4882a593Smuzhiyun  * We can keep it global, as long as it is used as "N pages at a time".
1417*4882a593Smuzhiyun  * 128 should be plenty, currently we probably can get away with as few as 1.
1418*4882a593Smuzhiyun  */
1419*4882a593Smuzhiyun #define DRBD_MIN_POOL_PAGES	128
1420*4882a593Smuzhiyun extern mempool_t drbd_md_io_page_pool;
1421*4882a593Smuzhiyun 
1422*4882a593Smuzhiyun /* We also need to make sure we get a bio
1423*4882a593Smuzhiyun  * when we need it for housekeeping purposes */
1424*4882a593Smuzhiyun extern struct bio_set drbd_md_io_bio_set;
1425*4882a593Smuzhiyun /* to allocate from that set */
1426*4882a593Smuzhiyun extern struct bio *bio_alloc_drbd(gfp_t gfp_mask);
1427*4882a593Smuzhiyun 
1428*4882a593Smuzhiyun /* And a bio_set for cloning */
1429*4882a593Smuzhiyun extern struct bio_set drbd_io_bio_set;
1430*4882a593Smuzhiyun 
1431*4882a593Smuzhiyun extern struct mutex resources_mutex;
1432*4882a593Smuzhiyun 
1433*4882a593Smuzhiyun extern int conn_lowest_minor(struct drbd_connection *connection);
1434*4882a593Smuzhiyun extern enum drbd_ret_code drbd_create_device(struct drbd_config_context *adm_ctx, unsigned int minor);
1435*4882a593Smuzhiyun extern void drbd_destroy_device(struct kref *kref);
1436*4882a593Smuzhiyun extern void drbd_delete_device(struct drbd_device *device);
1437*4882a593Smuzhiyun 
1438*4882a593Smuzhiyun extern struct drbd_resource *drbd_create_resource(const char *name);
1439*4882a593Smuzhiyun extern void drbd_free_resource(struct drbd_resource *resource);
1440*4882a593Smuzhiyun 
1441*4882a593Smuzhiyun extern int set_resource_options(struct drbd_resource *resource, struct res_opts *res_opts);
1442*4882a593Smuzhiyun extern struct drbd_connection *conn_create(const char *name, struct res_opts *res_opts);
1443*4882a593Smuzhiyun extern void drbd_destroy_connection(struct kref *kref);
1444*4882a593Smuzhiyun extern struct drbd_connection *conn_get_by_addrs(void *my_addr, int my_addr_len,
1445*4882a593Smuzhiyun 					    void *peer_addr, int peer_addr_len);
1446*4882a593Smuzhiyun extern struct drbd_resource *drbd_find_resource(const char *name);
1447*4882a593Smuzhiyun extern void drbd_destroy_resource(struct kref *kref);
1448*4882a593Smuzhiyun extern void conn_free_crypto(struct drbd_connection *connection);
1449*4882a593Smuzhiyun 
1450*4882a593Smuzhiyun /* drbd_req */
1451*4882a593Smuzhiyun extern void do_submit(struct work_struct *ws);
1452*4882a593Smuzhiyun extern void __drbd_make_request(struct drbd_device *, struct bio *, unsigned long);
1453*4882a593Smuzhiyun extern blk_qc_t drbd_submit_bio(struct bio *bio);
1454*4882a593Smuzhiyun extern int drbd_read_remote(struct drbd_device *device, struct drbd_request *req);
1455*4882a593Smuzhiyun extern int is_valid_ar_handle(struct drbd_request *, sector_t);
1456*4882a593Smuzhiyun 
1457*4882a593Smuzhiyun 
1458*4882a593Smuzhiyun /* drbd_nl.c */
1459*4882a593Smuzhiyun 
1460*4882a593Smuzhiyun extern struct mutex notification_mutex;
1461*4882a593Smuzhiyun 
1462*4882a593Smuzhiyun extern void drbd_suspend_io(struct drbd_device *device);
1463*4882a593Smuzhiyun extern void drbd_resume_io(struct drbd_device *device);
1464*4882a593Smuzhiyun extern char *ppsize(char *buf, unsigned long long size);
1465*4882a593Smuzhiyun extern sector_t drbd_new_dev_size(struct drbd_device *, struct drbd_backing_dev *, sector_t, int);
1466*4882a593Smuzhiyun enum determine_dev_size {
1467*4882a593Smuzhiyun 	DS_ERROR_SHRINK = -3,
1468*4882a593Smuzhiyun 	DS_ERROR_SPACE_MD = -2,
1469*4882a593Smuzhiyun 	DS_ERROR = -1,
1470*4882a593Smuzhiyun 	DS_UNCHANGED = 0,
1471*4882a593Smuzhiyun 	DS_SHRUNK = 1,
1472*4882a593Smuzhiyun 	DS_GREW = 2,
1473*4882a593Smuzhiyun 	DS_GREW_FROM_ZERO = 3,
1474*4882a593Smuzhiyun };
1475*4882a593Smuzhiyun extern enum determine_dev_size
1476*4882a593Smuzhiyun drbd_determine_dev_size(struct drbd_device *, enum dds_flags, struct resize_parms *) __must_hold(local);
1477*4882a593Smuzhiyun extern void resync_after_online_grow(struct drbd_device *);
1478*4882a593Smuzhiyun extern void drbd_reconsider_queue_parameters(struct drbd_device *device,
1479*4882a593Smuzhiyun 			struct drbd_backing_dev *bdev, struct o_qlim *o);
1480*4882a593Smuzhiyun extern enum drbd_state_rv drbd_set_role(struct drbd_device *device,
1481*4882a593Smuzhiyun 					enum drbd_role new_role,
1482*4882a593Smuzhiyun 					int force);
1483*4882a593Smuzhiyun extern bool conn_try_outdate_peer(struct drbd_connection *connection);
1484*4882a593Smuzhiyun extern void conn_try_outdate_peer_async(struct drbd_connection *connection);
1485*4882a593Smuzhiyun extern enum drbd_peer_state conn_khelper(struct drbd_connection *connection, char *cmd);
1486*4882a593Smuzhiyun extern int drbd_khelper(struct drbd_device *device, char *cmd);
1487*4882a593Smuzhiyun 
1488*4882a593Smuzhiyun /* drbd_worker.c */
1489*4882a593Smuzhiyun /* bi_end_io handlers */
1490*4882a593Smuzhiyun extern void drbd_md_endio(struct bio *bio);
1491*4882a593Smuzhiyun extern void drbd_peer_request_endio(struct bio *bio);
1492*4882a593Smuzhiyun extern void drbd_request_endio(struct bio *bio);
1493*4882a593Smuzhiyun extern int drbd_worker(struct drbd_thread *thi);
1494*4882a593Smuzhiyun enum drbd_ret_code drbd_resync_after_valid(struct drbd_device *device, int o_minor);
1495*4882a593Smuzhiyun void drbd_resync_after_changed(struct drbd_device *device);
1496*4882a593Smuzhiyun extern void drbd_start_resync(struct drbd_device *device, enum drbd_conns side);
1497*4882a593Smuzhiyun extern void resume_next_sg(struct drbd_device *device);
1498*4882a593Smuzhiyun extern void suspend_other_sg(struct drbd_device *device);
1499*4882a593Smuzhiyun extern int drbd_resync_finished(struct drbd_device *device);
1500*4882a593Smuzhiyun /* maybe rather drbd_main.c ? */
1501*4882a593Smuzhiyun extern void *drbd_md_get_buffer(struct drbd_device *device, const char *intent);
1502*4882a593Smuzhiyun extern void drbd_md_put_buffer(struct drbd_device *device);
1503*4882a593Smuzhiyun extern int drbd_md_sync_page_io(struct drbd_device *device,
1504*4882a593Smuzhiyun 		struct drbd_backing_dev *bdev, sector_t sector, int op);
1505*4882a593Smuzhiyun extern void drbd_ov_out_of_sync_found(struct drbd_device *, sector_t, int);
1506*4882a593Smuzhiyun extern void wait_until_done_or_force_detached(struct drbd_device *device,
1507*4882a593Smuzhiyun 		struct drbd_backing_dev *bdev, unsigned int *done);
1508*4882a593Smuzhiyun extern void drbd_rs_controller_reset(struct drbd_device *device);
1509*4882a593Smuzhiyun 
ov_out_of_sync_print(struct drbd_device * device)1510*4882a593Smuzhiyun static inline void ov_out_of_sync_print(struct drbd_device *device)
1511*4882a593Smuzhiyun {
1512*4882a593Smuzhiyun 	if (device->ov_last_oos_size) {
1513*4882a593Smuzhiyun 		drbd_err(device, "Out of sync: start=%llu, size=%lu (sectors)\n",
1514*4882a593Smuzhiyun 		     (unsigned long long)device->ov_last_oos_start,
1515*4882a593Smuzhiyun 		     (unsigned long)device->ov_last_oos_size);
1516*4882a593Smuzhiyun 	}
1517*4882a593Smuzhiyun 	device->ov_last_oos_size = 0;
1518*4882a593Smuzhiyun }
1519*4882a593Smuzhiyun 
1520*4882a593Smuzhiyun 
1521*4882a593Smuzhiyun extern void drbd_csum_bio(struct crypto_shash *, struct bio *, void *);
1522*4882a593Smuzhiyun extern void drbd_csum_ee(struct crypto_shash *, struct drbd_peer_request *,
1523*4882a593Smuzhiyun 			 void *);
1524*4882a593Smuzhiyun /* worker callbacks */
1525*4882a593Smuzhiyun extern int w_e_end_data_req(struct drbd_work *, int);
1526*4882a593Smuzhiyun extern int w_e_end_rsdata_req(struct drbd_work *, int);
1527*4882a593Smuzhiyun extern int w_e_end_csum_rs_req(struct drbd_work *, int);
1528*4882a593Smuzhiyun extern int w_e_end_ov_reply(struct drbd_work *, int);
1529*4882a593Smuzhiyun extern int w_e_end_ov_req(struct drbd_work *, int);
1530*4882a593Smuzhiyun extern int w_ov_finished(struct drbd_work *, int);
1531*4882a593Smuzhiyun extern int w_resync_timer(struct drbd_work *, int);
1532*4882a593Smuzhiyun extern int w_send_write_hint(struct drbd_work *, int);
1533*4882a593Smuzhiyun extern int w_send_dblock(struct drbd_work *, int);
1534*4882a593Smuzhiyun extern int w_send_read_req(struct drbd_work *, int);
1535*4882a593Smuzhiyun extern int w_e_reissue(struct drbd_work *, int);
1536*4882a593Smuzhiyun extern int w_restart_disk_io(struct drbd_work *, int);
1537*4882a593Smuzhiyun extern int w_send_out_of_sync(struct drbd_work *, int);
1538*4882a593Smuzhiyun extern int w_start_resync(struct drbd_work *, int);
1539*4882a593Smuzhiyun 
1540*4882a593Smuzhiyun extern void resync_timer_fn(struct timer_list *t);
1541*4882a593Smuzhiyun extern void start_resync_timer_fn(struct timer_list *t);
1542*4882a593Smuzhiyun 
1543*4882a593Smuzhiyun extern void drbd_endio_write_sec_final(struct drbd_peer_request *peer_req);
1544*4882a593Smuzhiyun 
1545*4882a593Smuzhiyun /* drbd_receiver.c */
1546*4882a593Smuzhiyun extern int drbd_issue_discard_or_zero_out(struct drbd_device *device,
1547*4882a593Smuzhiyun 		sector_t start, unsigned int nr_sectors, int flags);
1548*4882a593Smuzhiyun extern int drbd_receiver(struct drbd_thread *thi);
1549*4882a593Smuzhiyun extern int drbd_ack_receiver(struct drbd_thread *thi);
1550*4882a593Smuzhiyun extern void drbd_send_ping_wf(struct work_struct *ws);
1551*4882a593Smuzhiyun extern void drbd_send_acks_wf(struct work_struct *ws);
1552*4882a593Smuzhiyun extern bool drbd_rs_c_min_rate_throttle(struct drbd_device *device);
1553*4882a593Smuzhiyun extern bool drbd_rs_should_slow_down(struct drbd_device *device, sector_t sector,
1554*4882a593Smuzhiyun 		bool throttle_if_app_is_waiting);
1555*4882a593Smuzhiyun extern int drbd_submit_peer_request(struct drbd_device *,
1556*4882a593Smuzhiyun 				    struct drbd_peer_request *, const unsigned,
1557*4882a593Smuzhiyun 				    const unsigned, const int);
1558*4882a593Smuzhiyun extern int drbd_free_peer_reqs(struct drbd_device *, struct list_head *);
1559*4882a593Smuzhiyun extern struct drbd_peer_request *drbd_alloc_peer_req(struct drbd_peer_device *, u64,
1560*4882a593Smuzhiyun 						     sector_t, unsigned int,
1561*4882a593Smuzhiyun 						     unsigned int,
1562*4882a593Smuzhiyun 						     gfp_t) __must_hold(local);
1563*4882a593Smuzhiyun extern void __drbd_free_peer_req(struct drbd_device *, struct drbd_peer_request *,
1564*4882a593Smuzhiyun 				 int);
1565*4882a593Smuzhiyun #define drbd_free_peer_req(m,e) __drbd_free_peer_req(m, e, 0)
1566*4882a593Smuzhiyun #define drbd_free_net_peer_req(m,e) __drbd_free_peer_req(m, e, 1)
1567*4882a593Smuzhiyun extern struct page *drbd_alloc_pages(struct drbd_peer_device *, unsigned int, bool);
1568*4882a593Smuzhiyun extern void drbd_set_recv_tcq(struct drbd_device *device, int tcq_enabled);
1569*4882a593Smuzhiyun extern void _drbd_clear_done_ee(struct drbd_device *device, struct list_head *to_be_freed);
1570*4882a593Smuzhiyun extern int drbd_connected(struct drbd_peer_device *);
1571*4882a593Smuzhiyun 
1572*4882a593Smuzhiyun /* sets the number of 512 byte sectors of our virtual device */
1573*4882a593Smuzhiyun void drbd_set_my_capacity(struct drbd_device *device, sector_t size);
1574*4882a593Smuzhiyun 
1575*4882a593Smuzhiyun /*
1576*4882a593Smuzhiyun  * used to submit our private bio
1577*4882a593Smuzhiyun  */
drbd_submit_bio_noacct(struct drbd_device * device,int fault_type,struct bio * bio)1578*4882a593Smuzhiyun static inline void drbd_submit_bio_noacct(struct drbd_device *device,
1579*4882a593Smuzhiyun 					     int fault_type, struct bio *bio)
1580*4882a593Smuzhiyun {
1581*4882a593Smuzhiyun 	__release(local);
1582*4882a593Smuzhiyun 	if (!bio->bi_disk) {
1583*4882a593Smuzhiyun 		drbd_err(device, "drbd_submit_bio_noacct: bio->bi_disk == NULL\n");
1584*4882a593Smuzhiyun 		bio->bi_status = BLK_STS_IOERR;
1585*4882a593Smuzhiyun 		bio_endio(bio);
1586*4882a593Smuzhiyun 		return;
1587*4882a593Smuzhiyun 	}
1588*4882a593Smuzhiyun 
1589*4882a593Smuzhiyun 	if (drbd_insert_fault(device, fault_type))
1590*4882a593Smuzhiyun 		bio_io_error(bio);
1591*4882a593Smuzhiyun 	else
1592*4882a593Smuzhiyun 		submit_bio_noacct(bio);
1593*4882a593Smuzhiyun }
1594*4882a593Smuzhiyun 
1595*4882a593Smuzhiyun void drbd_bump_write_ordering(struct drbd_resource *resource, struct drbd_backing_dev *bdev,
1596*4882a593Smuzhiyun 			      enum write_ordering_e wo);
1597*4882a593Smuzhiyun 
1598*4882a593Smuzhiyun /* drbd_proc.c */
1599*4882a593Smuzhiyun extern struct proc_dir_entry *drbd_proc;
1600*4882a593Smuzhiyun int drbd_seq_show(struct seq_file *seq, void *v);
1601*4882a593Smuzhiyun 
1602*4882a593Smuzhiyun /* drbd_actlog.c */
1603*4882a593Smuzhiyun extern bool drbd_al_begin_io_prepare(struct drbd_device *device, struct drbd_interval *i);
1604*4882a593Smuzhiyun extern int drbd_al_begin_io_nonblock(struct drbd_device *device, struct drbd_interval *i);
1605*4882a593Smuzhiyun extern void drbd_al_begin_io_commit(struct drbd_device *device);
1606*4882a593Smuzhiyun extern bool drbd_al_begin_io_fastpath(struct drbd_device *device, struct drbd_interval *i);
1607*4882a593Smuzhiyun extern void drbd_al_begin_io(struct drbd_device *device, struct drbd_interval *i);
1608*4882a593Smuzhiyun extern void drbd_al_complete_io(struct drbd_device *device, struct drbd_interval *i);
1609*4882a593Smuzhiyun extern void drbd_rs_complete_io(struct drbd_device *device, sector_t sector);
1610*4882a593Smuzhiyun extern int drbd_rs_begin_io(struct drbd_device *device, sector_t sector);
1611*4882a593Smuzhiyun extern int drbd_try_rs_begin_io(struct drbd_device *device, sector_t sector);
1612*4882a593Smuzhiyun extern void drbd_rs_cancel_all(struct drbd_device *device);
1613*4882a593Smuzhiyun extern int drbd_rs_del_all(struct drbd_device *device);
1614*4882a593Smuzhiyun extern void drbd_rs_failed_io(struct drbd_device *device,
1615*4882a593Smuzhiyun 		sector_t sector, int size);
1616*4882a593Smuzhiyun extern void drbd_advance_rs_marks(struct drbd_device *device, unsigned long still_to_go);
1617*4882a593Smuzhiyun 
1618*4882a593Smuzhiyun enum update_sync_bits_mode { RECORD_RS_FAILED, SET_OUT_OF_SYNC, SET_IN_SYNC };
1619*4882a593Smuzhiyun extern int __drbd_change_sync(struct drbd_device *device, sector_t sector, int size,
1620*4882a593Smuzhiyun 		enum update_sync_bits_mode mode);
1621*4882a593Smuzhiyun #define drbd_set_in_sync(device, sector, size) \
1622*4882a593Smuzhiyun 	__drbd_change_sync(device, sector, size, SET_IN_SYNC)
1623*4882a593Smuzhiyun #define drbd_set_out_of_sync(device, sector, size) \
1624*4882a593Smuzhiyun 	__drbd_change_sync(device, sector, size, SET_OUT_OF_SYNC)
1625*4882a593Smuzhiyun #define drbd_rs_failed_io(device, sector, size) \
1626*4882a593Smuzhiyun 	__drbd_change_sync(device, sector, size, RECORD_RS_FAILED)
1627*4882a593Smuzhiyun extern void drbd_al_shrink(struct drbd_device *device);
1628*4882a593Smuzhiyun extern int drbd_al_initialize(struct drbd_device *, void *);
1629*4882a593Smuzhiyun 
1630*4882a593Smuzhiyun /* drbd_nl.c */
1631*4882a593Smuzhiyun /* state info broadcast */
1632*4882a593Smuzhiyun struct sib_info {
1633*4882a593Smuzhiyun 	enum drbd_state_info_bcast_reason sib_reason;
1634*4882a593Smuzhiyun 	union {
1635*4882a593Smuzhiyun 		struct {
1636*4882a593Smuzhiyun 			char *helper_name;
1637*4882a593Smuzhiyun 			unsigned helper_exit_code;
1638*4882a593Smuzhiyun 		};
1639*4882a593Smuzhiyun 		struct {
1640*4882a593Smuzhiyun 			union drbd_state os;
1641*4882a593Smuzhiyun 			union drbd_state ns;
1642*4882a593Smuzhiyun 		};
1643*4882a593Smuzhiyun 	};
1644*4882a593Smuzhiyun };
1645*4882a593Smuzhiyun void drbd_bcast_event(struct drbd_device *device, const struct sib_info *sib);
1646*4882a593Smuzhiyun 
1647*4882a593Smuzhiyun extern int notify_resource_state(struct sk_buff *,
1648*4882a593Smuzhiyun 				  unsigned int,
1649*4882a593Smuzhiyun 				  struct drbd_resource *,
1650*4882a593Smuzhiyun 				  struct resource_info *,
1651*4882a593Smuzhiyun 				  enum drbd_notification_type);
1652*4882a593Smuzhiyun extern int notify_device_state(struct sk_buff *,
1653*4882a593Smuzhiyun 				unsigned int,
1654*4882a593Smuzhiyun 				struct drbd_device *,
1655*4882a593Smuzhiyun 				struct device_info *,
1656*4882a593Smuzhiyun 				enum drbd_notification_type);
1657*4882a593Smuzhiyun extern int notify_connection_state(struct sk_buff *,
1658*4882a593Smuzhiyun 				    unsigned int,
1659*4882a593Smuzhiyun 				    struct drbd_connection *,
1660*4882a593Smuzhiyun 				    struct connection_info *,
1661*4882a593Smuzhiyun 				    enum drbd_notification_type);
1662*4882a593Smuzhiyun extern int notify_peer_device_state(struct sk_buff *,
1663*4882a593Smuzhiyun 				     unsigned int,
1664*4882a593Smuzhiyun 				     struct drbd_peer_device *,
1665*4882a593Smuzhiyun 				     struct peer_device_info *,
1666*4882a593Smuzhiyun 				     enum drbd_notification_type);
1667*4882a593Smuzhiyun extern void notify_helper(enum drbd_notification_type, struct drbd_device *,
1668*4882a593Smuzhiyun 			  struct drbd_connection *, const char *, int);
1669*4882a593Smuzhiyun 
1670*4882a593Smuzhiyun /*
1671*4882a593Smuzhiyun  * inline helper functions
1672*4882a593Smuzhiyun  *************************/
1673*4882a593Smuzhiyun 
1674*4882a593Smuzhiyun /* see also page_chain_add and friends in drbd_receiver.c */
page_chain_next(struct page * page)1675*4882a593Smuzhiyun static inline struct page *page_chain_next(struct page *page)
1676*4882a593Smuzhiyun {
1677*4882a593Smuzhiyun 	return (struct page *)page_private(page);
1678*4882a593Smuzhiyun }
1679*4882a593Smuzhiyun #define page_chain_for_each(page) \
1680*4882a593Smuzhiyun 	for (; page && ({ prefetch(page_chain_next(page)); 1; }); \
1681*4882a593Smuzhiyun 			page = page_chain_next(page))
1682*4882a593Smuzhiyun #define page_chain_for_each_safe(page, n) \
1683*4882a593Smuzhiyun 	for (; page && ({ n = page_chain_next(page); 1; }); page = n)
1684*4882a593Smuzhiyun 
1685*4882a593Smuzhiyun 
drbd_peer_req_has_active_page(struct drbd_peer_request * peer_req)1686*4882a593Smuzhiyun static inline int drbd_peer_req_has_active_page(struct drbd_peer_request *peer_req)
1687*4882a593Smuzhiyun {
1688*4882a593Smuzhiyun 	struct page *page = peer_req->pages;
1689*4882a593Smuzhiyun 	page_chain_for_each(page) {
1690*4882a593Smuzhiyun 		if (page_count(page) > 1)
1691*4882a593Smuzhiyun 			return 1;
1692*4882a593Smuzhiyun 	}
1693*4882a593Smuzhiyun 	return 0;
1694*4882a593Smuzhiyun }
1695*4882a593Smuzhiyun 
drbd_read_state(struct drbd_device * device)1696*4882a593Smuzhiyun static inline union drbd_state drbd_read_state(struct drbd_device *device)
1697*4882a593Smuzhiyun {
1698*4882a593Smuzhiyun 	struct drbd_resource *resource = device->resource;
1699*4882a593Smuzhiyun 	union drbd_state rv;
1700*4882a593Smuzhiyun 
1701*4882a593Smuzhiyun 	rv.i = device->state.i;
1702*4882a593Smuzhiyun 	rv.susp = resource->susp;
1703*4882a593Smuzhiyun 	rv.susp_nod = resource->susp_nod;
1704*4882a593Smuzhiyun 	rv.susp_fen = resource->susp_fen;
1705*4882a593Smuzhiyun 
1706*4882a593Smuzhiyun 	return rv;
1707*4882a593Smuzhiyun }
1708*4882a593Smuzhiyun 
1709*4882a593Smuzhiyun enum drbd_force_detach_flags {
1710*4882a593Smuzhiyun 	DRBD_READ_ERROR,
1711*4882a593Smuzhiyun 	DRBD_WRITE_ERROR,
1712*4882a593Smuzhiyun 	DRBD_META_IO_ERROR,
1713*4882a593Smuzhiyun 	DRBD_FORCE_DETACH,
1714*4882a593Smuzhiyun };
1715*4882a593Smuzhiyun 
1716*4882a593Smuzhiyun #define __drbd_chk_io_error(m,f) __drbd_chk_io_error_(m,f, __func__)
__drbd_chk_io_error_(struct drbd_device * device,enum drbd_force_detach_flags df,const char * where)1717*4882a593Smuzhiyun static inline void __drbd_chk_io_error_(struct drbd_device *device,
1718*4882a593Smuzhiyun 		enum drbd_force_detach_flags df,
1719*4882a593Smuzhiyun 		const char *where)
1720*4882a593Smuzhiyun {
1721*4882a593Smuzhiyun 	enum drbd_io_error_p ep;
1722*4882a593Smuzhiyun 
1723*4882a593Smuzhiyun 	rcu_read_lock();
1724*4882a593Smuzhiyun 	ep = rcu_dereference(device->ldev->disk_conf)->on_io_error;
1725*4882a593Smuzhiyun 	rcu_read_unlock();
1726*4882a593Smuzhiyun 	switch (ep) {
1727*4882a593Smuzhiyun 	case EP_PASS_ON: /* FIXME would this be better named "Ignore"? */
1728*4882a593Smuzhiyun 		if (df == DRBD_READ_ERROR || df == DRBD_WRITE_ERROR) {
1729*4882a593Smuzhiyun 			if (__ratelimit(&drbd_ratelimit_state))
1730*4882a593Smuzhiyun 				drbd_err(device, "Local IO failed in %s.\n", where);
1731*4882a593Smuzhiyun 			if (device->state.disk > D_INCONSISTENT)
1732*4882a593Smuzhiyun 				_drbd_set_state(_NS(device, disk, D_INCONSISTENT), CS_HARD, NULL);
1733*4882a593Smuzhiyun 			break;
1734*4882a593Smuzhiyun 		}
1735*4882a593Smuzhiyun 		fallthrough;	/* for DRBD_META_IO_ERROR or DRBD_FORCE_DETACH */
1736*4882a593Smuzhiyun 	case EP_DETACH:
1737*4882a593Smuzhiyun 	case EP_CALL_HELPER:
1738*4882a593Smuzhiyun 		/* Remember whether we saw a READ or WRITE error.
1739*4882a593Smuzhiyun 		 *
1740*4882a593Smuzhiyun 		 * Recovery of the affected area for WRITE failure is covered
1741*4882a593Smuzhiyun 		 * by the activity log.
1742*4882a593Smuzhiyun 		 * READ errors may fall outside that area though. Certain READ
1743*4882a593Smuzhiyun 		 * errors can be "healed" by writing good data to the affected
1744*4882a593Smuzhiyun 		 * blocks, which triggers block re-allocation in lower layers.
1745*4882a593Smuzhiyun 		 *
1746*4882a593Smuzhiyun 		 * If we can not write the bitmap after a READ error,
1747*4882a593Smuzhiyun 		 * we may need to trigger a full sync (see w_go_diskless()).
1748*4882a593Smuzhiyun 		 *
1749*4882a593Smuzhiyun 		 * Force-detach is not really an IO error, but rather a
1750*4882a593Smuzhiyun 		 * desperate measure to try to deal with a completely
1751*4882a593Smuzhiyun 		 * unresponsive lower level IO stack.
1752*4882a593Smuzhiyun 		 * Still it should be treated as a WRITE error.
1753*4882a593Smuzhiyun 		 *
1754*4882a593Smuzhiyun 		 * Meta IO error is always WRITE error:
1755*4882a593Smuzhiyun 		 * we read meta data only once during attach,
1756*4882a593Smuzhiyun 		 * which will fail in case of errors.
1757*4882a593Smuzhiyun 		 */
1758*4882a593Smuzhiyun 		set_bit(WAS_IO_ERROR, &device->flags);
1759*4882a593Smuzhiyun 		if (df == DRBD_READ_ERROR)
1760*4882a593Smuzhiyun 			set_bit(WAS_READ_ERROR, &device->flags);
1761*4882a593Smuzhiyun 		if (df == DRBD_FORCE_DETACH)
1762*4882a593Smuzhiyun 			set_bit(FORCE_DETACH, &device->flags);
1763*4882a593Smuzhiyun 		if (device->state.disk > D_FAILED) {
1764*4882a593Smuzhiyun 			_drbd_set_state(_NS(device, disk, D_FAILED), CS_HARD, NULL);
1765*4882a593Smuzhiyun 			drbd_err(device,
1766*4882a593Smuzhiyun 				"Local IO failed in %s. Detaching...\n", where);
1767*4882a593Smuzhiyun 		}
1768*4882a593Smuzhiyun 		break;
1769*4882a593Smuzhiyun 	}
1770*4882a593Smuzhiyun }
1771*4882a593Smuzhiyun 
1772*4882a593Smuzhiyun /**
1773*4882a593Smuzhiyun  * drbd_chk_io_error: Handle the on_io_error setting, should be called from all io completion handlers
1774*4882a593Smuzhiyun  * @device:	 DRBD device.
1775*4882a593Smuzhiyun  * @error:	 Error code passed to the IO completion callback
1776*4882a593Smuzhiyun  * @forcedetach: Force detach. I.e. the error happened while accessing the meta data
1777*4882a593Smuzhiyun  *
1778*4882a593Smuzhiyun  * See also drbd_main.c:after_state_ch() if (os.disk > D_FAILED && ns.disk == D_FAILED)
1779*4882a593Smuzhiyun  */
1780*4882a593Smuzhiyun #define drbd_chk_io_error(m,e,f) drbd_chk_io_error_(m,e,f, __func__)
drbd_chk_io_error_(struct drbd_device * device,int error,enum drbd_force_detach_flags forcedetach,const char * where)1781*4882a593Smuzhiyun static inline void drbd_chk_io_error_(struct drbd_device *device,
1782*4882a593Smuzhiyun 	int error, enum drbd_force_detach_flags forcedetach, const char *where)
1783*4882a593Smuzhiyun {
1784*4882a593Smuzhiyun 	if (error) {
1785*4882a593Smuzhiyun 		unsigned long flags;
1786*4882a593Smuzhiyun 		spin_lock_irqsave(&device->resource->req_lock, flags);
1787*4882a593Smuzhiyun 		__drbd_chk_io_error_(device, forcedetach, where);
1788*4882a593Smuzhiyun 		spin_unlock_irqrestore(&device->resource->req_lock, flags);
1789*4882a593Smuzhiyun 	}
1790*4882a593Smuzhiyun }
1791*4882a593Smuzhiyun 
1792*4882a593Smuzhiyun 
1793*4882a593Smuzhiyun /**
1794*4882a593Smuzhiyun  * drbd_md_first_sector() - Returns the first sector number of the meta data area
1795*4882a593Smuzhiyun  * @bdev:	Meta data block device.
1796*4882a593Smuzhiyun  *
1797*4882a593Smuzhiyun  * BTW, for internal meta data, this happens to be the maximum capacity
1798*4882a593Smuzhiyun  * we could agree upon with our peer node.
1799*4882a593Smuzhiyun  */
drbd_md_first_sector(struct drbd_backing_dev * bdev)1800*4882a593Smuzhiyun static inline sector_t drbd_md_first_sector(struct drbd_backing_dev *bdev)
1801*4882a593Smuzhiyun {
1802*4882a593Smuzhiyun 	switch (bdev->md.meta_dev_idx) {
1803*4882a593Smuzhiyun 	case DRBD_MD_INDEX_INTERNAL:
1804*4882a593Smuzhiyun 	case DRBD_MD_INDEX_FLEX_INT:
1805*4882a593Smuzhiyun 		return bdev->md.md_offset + bdev->md.bm_offset;
1806*4882a593Smuzhiyun 	case DRBD_MD_INDEX_FLEX_EXT:
1807*4882a593Smuzhiyun 	default:
1808*4882a593Smuzhiyun 		return bdev->md.md_offset;
1809*4882a593Smuzhiyun 	}
1810*4882a593Smuzhiyun }
1811*4882a593Smuzhiyun 
1812*4882a593Smuzhiyun /**
1813*4882a593Smuzhiyun  * drbd_md_last_sector() - Return the last sector number of the meta data area
1814*4882a593Smuzhiyun  * @bdev:	Meta data block device.
1815*4882a593Smuzhiyun  */
drbd_md_last_sector(struct drbd_backing_dev * bdev)1816*4882a593Smuzhiyun static inline sector_t drbd_md_last_sector(struct drbd_backing_dev *bdev)
1817*4882a593Smuzhiyun {
1818*4882a593Smuzhiyun 	switch (bdev->md.meta_dev_idx) {
1819*4882a593Smuzhiyun 	case DRBD_MD_INDEX_INTERNAL:
1820*4882a593Smuzhiyun 	case DRBD_MD_INDEX_FLEX_INT:
1821*4882a593Smuzhiyun 		return bdev->md.md_offset + MD_4kB_SECT -1;
1822*4882a593Smuzhiyun 	case DRBD_MD_INDEX_FLEX_EXT:
1823*4882a593Smuzhiyun 	default:
1824*4882a593Smuzhiyun 		return bdev->md.md_offset + bdev->md.md_size_sect -1;
1825*4882a593Smuzhiyun 	}
1826*4882a593Smuzhiyun }
1827*4882a593Smuzhiyun 
1828*4882a593Smuzhiyun /* Returns the number of 512 byte sectors of the device */
drbd_get_capacity(struct block_device * bdev)1829*4882a593Smuzhiyun static inline sector_t drbd_get_capacity(struct block_device *bdev)
1830*4882a593Smuzhiyun {
1831*4882a593Smuzhiyun 	/* return bdev ? get_capacity(bdev->bd_disk) : 0; */
1832*4882a593Smuzhiyun 	return bdev ? i_size_read(bdev->bd_inode) >> 9 : 0;
1833*4882a593Smuzhiyun }
1834*4882a593Smuzhiyun 
1835*4882a593Smuzhiyun /**
1836*4882a593Smuzhiyun  * drbd_get_max_capacity() - Returns the capacity we announce to out peer
1837*4882a593Smuzhiyun  * @bdev:	Meta data block device.
1838*4882a593Smuzhiyun  *
1839*4882a593Smuzhiyun  * returns the capacity we announce to out peer.  we clip ourselves at the
1840*4882a593Smuzhiyun  * various MAX_SECTORS, because if we don't, current implementation will
1841*4882a593Smuzhiyun  * oops sooner or later
1842*4882a593Smuzhiyun  */
drbd_get_max_capacity(struct drbd_backing_dev * bdev)1843*4882a593Smuzhiyun static inline sector_t drbd_get_max_capacity(struct drbd_backing_dev *bdev)
1844*4882a593Smuzhiyun {
1845*4882a593Smuzhiyun 	sector_t s;
1846*4882a593Smuzhiyun 
1847*4882a593Smuzhiyun 	switch (bdev->md.meta_dev_idx) {
1848*4882a593Smuzhiyun 	case DRBD_MD_INDEX_INTERNAL:
1849*4882a593Smuzhiyun 	case DRBD_MD_INDEX_FLEX_INT:
1850*4882a593Smuzhiyun 		s = drbd_get_capacity(bdev->backing_bdev)
1851*4882a593Smuzhiyun 			? min_t(sector_t, DRBD_MAX_SECTORS_FLEX,
1852*4882a593Smuzhiyun 				drbd_md_first_sector(bdev))
1853*4882a593Smuzhiyun 			: 0;
1854*4882a593Smuzhiyun 		break;
1855*4882a593Smuzhiyun 	case DRBD_MD_INDEX_FLEX_EXT:
1856*4882a593Smuzhiyun 		s = min_t(sector_t, DRBD_MAX_SECTORS_FLEX,
1857*4882a593Smuzhiyun 				drbd_get_capacity(bdev->backing_bdev));
1858*4882a593Smuzhiyun 		/* clip at maximum size the meta device can support */
1859*4882a593Smuzhiyun 		s = min_t(sector_t, s,
1860*4882a593Smuzhiyun 			BM_EXT_TO_SECT(bdev->md.md_size_sect
1861*4882a593Smuzhiyun 				     - bdev->md.bm_offset));
1862*4882a593Smuzhiyun 		break;
1863*4882a593Smuzhiyun 	default:
1864*4882a593Smuzhiyun 		s = min_t(sector_t, DRBD_MAX_SECTORS,
1865*4882a593Smuzhiyun 				drbd_get_capacity(bdev->backing_bdev));
1866*4882a593Smuzhiyun 	}
1867*4882a593Smuzhiyun 	return s;
1868*4882a593Smuzhiyun }
1869*4882a593Smuzhiyun 
1870*4882a593Smuzhiyun /**
1871*4882a593Smuzhiyun  * drbd_md_ss() - Return the sector number of our meta data super block
1872*4882a593Smuzhiyun  * @bdev:	Meta data block device.
1873*4882a593Smuzhiyun  */
drbd_md_ss(struct drbd_backing_dev * bdev)1874*4882a593Smuzhiyun static inline sector_t drbd_md_ss(struct drbd_backing_dev *bdev)
1875*4882a593Smuzhiyun {
1876*4882a593Smuzhiyun 	const int meta_dev_idx = bdev->md.meta_dev_idx;
1877*4882a593Smuzhiyun 
1878*4882a593Smuzhiyun 	if (meta_dev_idx == DRBD_MD_INDEX_FLEX_EXT)
1879*4882a593Smuzhiyun 		return 0;
1880*4882a593Smuzhiyun 
1881*4882a593Smuzhiyun 	/* Since drbd08, internal meta data is always "flexible".
1882*4882a593Smuzhiyun 	 * position: last 4k aligned block of 4k size */
1883*4882a593Smuzhiyun 	if (meta_dev_idx == DRBD_MD_INDEX_INTERNAL ||
1884*4882a593Smuzhiyun 	    meta_dev_idx == DRBD_MD_INDEX_FLEX_INT)
1885*4882a593Smuzhiyun 		return (drbd_get_capacity(bdev->backing_bdev) & ~7ULL) - 8;
1886*4882a593Smuzhiyun 
1887*4882a593Smuzhiyun 	/* external, some index; this is the old fixed size layout */
1888*4882a593Smuzhiyun 	return MD_128MB_SECT * bdev->md.meta_dev_idx;
1889*4882a593Smuzhiyun }
1890*4882a593Smuzhiyun 
1891*4882a593Smuzhiyun static inline void
drbd_queue_work(struct drbd_work_queue * q,struct drbd_work * w)1892*4882a593Smuzhiyun drbd_queue_work(struct drbd_work_queue *q, struct drbd_work *w)
1893*4882a593Smuzhiyun {
1894*4882a593Smuzhiyun 	unsigned long flags;
1895*4882a593Smuzhiyun 	spin_lock_irqsave(&q->q_lock, flags);
1896*4882a593Smuzhiyun 	list_add_tail(&w->list, &q->q);
1897*4882a593Smuzhiyun 	spin_unlock_irqrestore(&q->q_lock, flags);
1898*4882a593Smuzhiyun 	wake_up(&q->q_wait);
1899*4882a593Smuzhiyun }
1900*4882a593Smuzhiyun 
1901*4882a593Smuzhiyun static inline void
drbd_queue_work_if_unqueued(struct drbd_work_queue * q,struct drbd_work * w)1902*4882a593Smuzhiyun drbd_queue_work_if_unqueued(struct drbd_work_queue *q, struct drbd_work *w)
1903*4882a593Smuzhiyun {
1904*4882a593Smuzhiyun 	unsigned long flags;
1905*4882a593Smuzhiyun 	spin_lock_irqsave(&q->q_lock, flags);
1906*4882a593Smuzhiyun 	if (list_empty_careful(&w->list))
1907*4882a593Smuzhiyun 		list_add_tail(&w->list, &q->q);
1908*4882a593Smuzhiyun 	spin_unlock_irqrestore(&q->q_lock, flags);
1909*4882a593Smuzhiyun 	wake_up(&q->q_wait);
1910*4882a593Smuzhiyun }
1911*4882a593Smuzhiyun 
1912*4882a593Smuzhiyun static inline void
drbd_device_post_work(struct drbd_device * device,int work_bit)1913*4882a593Smuzhiyun drbd_device_post_work(struct drbd_device *device, int work_bit)
1914*4882a593Smuzhiyun {
1915*4882a593Smuzhiyun 	if (!test_and_set_bit(work_bit, &device->flags)) {
1916*4882a593Smuzhiyun 		struct drbd_connection *connection =
1917*4882a593Smuzhiyun 			first_peer_device(device)->connection;
1918*4882a593Smuzhiyun 		struct drbd_work_queue *q = &connection->sender_work;
1919*4882a593Smuzhiyun 		if (!test_and_set_bit(DEVICE_WORK_PENDING, &connection->flags))
1920*4882a593Smuzhiyun 			wake_up(&q->q_wait);
1921*4882a593Smuzhiyun 	}
1922*4882a593Smuzhiyun }
1923*4882a593Smuzhiyun 
1924*4882a593Smuzhiyun extern void drbd_flush_workqueue(struct drbd_work_queue *work_queue);
1925*4882a593Smuzhiyun 
1926*4882a593Smuzhiyun /* To get the ack_receiver out of the blocking network stack,
1927*4882a593Smuzhiyun  * so it can change its sk_rcvtimeo from idle- to ping-timeout,
1928*4882a593Smuzhiyun  * and send a ping, we need to send a signal.
1929*4882a593Smuzhiyun  * Which signal we send is irrelevant. */
wake_ack_receiver(struct drbd_connection * connection)1930*4882a593Smuzhiyun static inline void wake_ack_receiver(struct drbd_connection *connection)
1931*4882a593Smuzhiyun {
1932*4882a593Smuzhiyun 	struct task_struct *task = connection->ack_receiver.task;
1933*4882a593Smuzhiyun 	if (task && get_t_state(&connection->ack_receiver) == RUNNING)
1934*4882a593Smuzhiyun 		send_sig(SIGXCPU, task, 1);
1935*4882a593Smuzhiyun }
1936*4882a593Smuzhiyun 
request_ping(struct drbd_connection * connection)1937*4882a593Smuzhiyun static inline void request_ping(struct drbd_connection *connection)
1938*4882a593Smuzhiyun {
1939*4882a593Smuzhiyun 	set_bit(SEND_PING, &connection->flags);
1940*4882a593Smuzhiyun 	wake_ack_receiver(connection);
1941*4882a593Smuzhiyun }
1942*4882a593Smuzhiyun 
1943*4882a593Smuzhiyun extern void *conn_prepare_command(struct drbd_connection *, struct drbd_socket *);
1944*4882a593Smuzhiyun extern void *drbd_prepare_command(struct drbd_peer_device *, struct drbd_socket *);
1945*4882a593Smuzhiyun extern int conn_send_command(struct drbd_connection *, struct drbd_socket *,
1946*4882a593Smuzhiyun 			     enum drbd_packet, unsigned int, void *,
1947*4882a593Smuzhiyun 			     unsigned int);
1948*4882a593Smuzhiyun extern int drbd_send_command(struct drbd_peer_device *, struct drbd_socket *,
1949*4882a593Smuzhiyun 			     enum drbd_packet, unsigned int, void *,
1950*4882a593Smuzhiyun 			     unsigned int);
1951*4882a593Smuzhiyun 
1952*4882a593Smuzhiyun extern int drbd_send_ping(struct drbd_connection *connection);
1953*4882a593Smuzhiyun extern int drbd_send_ping_ack(struct drbd_connection *connection);
1954*4882a593Smuzhiyun extern int drbd_send_state_req(struct drbd_peer_device *, union drbd_state, union drbd_state);
1955*4882a593Smuzhiyun extern int conn_send_state_req(struct drbd_connection *, union drbd_state, union drbd_state);
1956*4882a593Smuzhiyun 
drbd_thread_stop(struct drbd_thread * thi)1957*4882a593Smuzhiyun static inline void drbd_thread_stop(struct drbd_thread *thi)
1958*4882a593Smuzhiyun {
1959*4882a593Smuzhiyun 	_drbd_thread_stop(thi, false, true);
1960*4882a593Smuzhiyun }
1961*4882a593Smuzhiyun 
drbd_thread_stop_nowait(struct drbd_thread * thi)1962*4882a593Smuzhiyun static inline void drbd_thread_stop_nowait(struct drbd_thread *thi)
1963*4882a593Smuzhiyun {
1964*4882a593Smuzhiyun 	_drbd_thread_stop(thi, false, false);
1965*4882a593Smuzhiyun }
1966*4882a593Smuzhiyun 
drbd_thread_restart_nowait(struct drbd_thread * thi)1967*4882a593Smuzhiyun static inline void drbd_thread_restart_nowait(struct drbd_thread *thi)
1968*4882a593Smuzhiyun {
1969*4882a593Smuzhiyun 	_drbd_thread_stop(thi, true, false);
1970*4882a593Smuzhiyun }
1971*4882a593Smuzhiyun 
1972*4882a593Smuzhiyun /* counts how many answer packets packets we expect from our peer,
1973*4882a593Smuzhiyun  * for either explicit application requests,
1974*4882a593Smuzhiyun  * or implicit barrier packets as necessary.
1975*4882a593Smuzhiyun  * increased:
1976*4882a593Smuzhiyun  *  w_send_barrier
1977*4882a593Smuzhiyun  *  _req_mod(req, QUEUE_FOR_NET_WRITE or QUEUE_FOR_NET_READ);
1978*4882a593Smuzhiyun  *    it is much easier and equally valid to count what we queue for the
1979*4882a593Smuzhiyun  *    worker, even before it actually was queued or send.
1980*4882a593Smuzhiyun  *    (drbd_make_request_common; recovery path on read io-error)
1981*4882a593Smuzhiyun  * decreased:
1982*4882a593Smuzhiyun  *  got_BarrierAck (respective tl_clear, tl_clear_barrier)
1983*4882a593Smuzhiyun  *  _req_mod(req, DATA_RECEIVED)
1984*4882a593Smuzhiyun  *     [from receive_DataReply]
1985*4882a593Smuzhiyun  *  _req_mod(req, WRITE_ACKED_BY_PEER or RECV_ACKED_BY_PEER or NEG_ACKED)
1986*4882a593Smuzhiyun  *     [from got_BlockAck (P_WRITE_ACK, P_RECV_ACK)]
1987*4882a593Smuzhiyun  *     for some reason it is NOT decreased in got_NegAck,
1988*4882a593Smuzhiyun  *     but in the resulting cleanup code from report_params.
1989*4882a593Smuzhiyun  *     we should try to remember the reason for that...
1990*4882a593Smuzhiyun  *  _req_mod(req, SEND_FAILED or SEND_CANCELED)
1991*4882a593Smuzhiyun  *  _req_mod(req, CONNECTION_LOST_WHILE_PENDING)
1992*4882a593Smuzhiyun  *     [from tl_clear_barrier]
1993*4882a593Smuzhiyun  */
inc_ap_pending(struct drbd_device * device)1994*4882a593Smuzhiyun static inline void inc_ap_pending(struct drbd_device *device)
1995*4882a593Smuzhiyun {
1996*4882a593Smuzhiyun 	atomic_inc(&device->ap_pending_cnt);
1997*4882a593Smuzhiyun }
1998*4882a593Smuzhiyun 
1999*4882a593Smuzhiyun #define ERR_IF_CNT_IS_NEGATIVE(which, func, line)			\
2000*4882a593Smuzhiyun 	if (atomic_read(&device->which) < 0)				\
2001*4882a593Smuzhiyun 		drbd_err(device, "in %s:%d: " #which " = %d < 0 !\n",	\
2002*4882a593Smuzhiyun 			func, line,					\
2003*4882a593Smuzhiyun 			atomic_read(&device->which))
2004*4882a593Smuzhiyun 
2005*4882a593Smuzhiyun #define dec_ap_pending(device) _dec_ap_pending(device, __func__, __LINE__)
_dec_ap_pending(struct drbd_device * device,const char * func,int line)2006*4882a593Smuzhiyun static inline void _dec_ap_pending(struct drbd_device *device, const char *func, int line)
2007*4882a593Smuzhiyun {
2008*4882a593Smuzhiyun 	if (atomic_dec_and_test(&device->ap_pending_cnt))
2009*4882a593Smuzhiyun 		wake_up(&device->misc_wait);
2010*4882a593Smuzhiyun 	ERR_IF_CNT_IS_NEGATIVE(ap_pending_cnt, func, line);
2011*4882a593Smuzhiyun }
2012*4882a593Smuzhiyun 
2013*4882a593Smuzhiyun /* counts how many resync-related answers we still expect from the peer
2014*4882a593Smuzhiyun  *		     increase			decrease
2015*4882a593Smuzhiyun  * C_SYNC_TARGET sends P_RS_DATA_REQUEST (and expects P_RS_DATA_REPLY)
2016*4882a593Smuzhiyun  * C_SYNC_SOURCE sends P_RS_DATA_REPLY   (and expects P_WRITE_ACK with ID_SYNCER)
2017*4882a593Smuzhiyun  *					   (or P_NEG_ACK with ID_SYNCER)
2018*4882a593Smuzhiyun  */
inc_rs_pending(struct drbd_device * device)2019*4882a593Smuzhiyun static inline void inc_rs_pending(struct drbd_device *device)
2020*4882a593Smuzhiyun {
2021*4882a593Smuzhiyun 	atomic_inc(&device->rs_pending_cnt);
2022*4882a593Smuzhiyun }
2023*4882a593Smuzhiyun 
2024*4882a593Smuzhiyun #define dec_rs_pending(device) _dec_rs_pending(device, __func__, __LINE__)
_dec_rs_pending(struct drbd_device * device,const char * func,int line)2025*4882a593Smuzhiyun static inline void _dec_rs_pending(struct drbd_device *device, const char *func, int line)
2026*4882a593Smuzhiyun {
2027*4882a593Smuzhiyun 	atomic_dec(&device->rs_pending_cnt);
2028*4882a593Smuzhiyun 	ERR_IF_CNT_IS_NEGATIVE(rs_pending_cnt, func, line);
2029*4882a593Smuzhiyun }
2030*4882a593Smuzhiyun 
2031*4882a593Smuzhiyun /* counts how many answers we still need to send to the peer.
2032*4882a593Smuzhiyun  * increased on
2033*4882a593Smuzhiyun  *  receive_Data	unless protocol A;
2034*4882a593Smuzhiyun  *			we need to send a P_RECV_ACK (proto B)
2035*4882a593Smuzhiyun  *			or P_WRITE_ACK (proto C)
2036*4882a593Smuzhiyun  *  receive_RSDataReply (recv_resync_read) we need to send a P_WRITE_ACK
2037*4882a593Smuzhiyun  *  receive_DataRequest (receive_RSDataRequest) we need to send back P_DATA
2038*4882a593Smuzhiyun  *  receive_Barrier_*	we need to send a P_BARRIER_ACK
2039*4882a593Smuzhiyun  */
inc_unacked(struct drbd_device * device)2040*4882a593Smuzhiyun static inline void inc_unacked(struct drbd_device *device)
2041*4882a593Smuzhiyun {
2042*4882a593Smuzhiyun 	atomic_inc(&device->unacked_cnt);
2043*4882a593Smuzhiyun }
2044*4882a593Smuzhiyun 
2045*4882a593Smuzhiyun #define dec_unacked(device) _dec_unacked(device, __func__, __LINE__)
_dec_unacked(struct drbd_device * device,const char * func,int line)2046*4882a593Smuzhiyun static inline void _dec_unacked(struct drbd_device *device, const char *func, int line)
2047*4882a593Smuzhiyun {
2048*4882a593Smuzhiyun 	atomic_dec(&device->unacked_cnt);
2049*4882a593Smuzhiyun 	ERR_IF_CNT_IS_NEGATIVE(unacked_cnt, func, line);
2050*4882a593Smuzhiyun }
2051*4882a593Smuzhiyun 
2052*4882a593Smuzhiyun #define sub_unacked(device, n) _sub_unacked(device, n, __func__, __LINE__)
_sub_unacked(struct drbd_device * device,int n,const char * func,int line)2053*4882a593Smuzhiyun static inline void _sub_unacked(struct drbd_device *device, int n, const char *func, int line)
2054*4882a593Smuzhiyun {
2055*4882a593Smuzhiyun 	atomic_sub(n, &device->unacked_cnt);
2056*4882a593Smuzhiyun 	ERR_IF_CNT_IS_NEGATIVE(unacked_cnt, func, line);
2057*4882a593Smuzhiyun }
2058*4882a593Smuzhiyun 
is_sync_target_state(enum drbd_conns connection_state)2059*4882a593Smuzhiyun static inline bool is_sync_target_state(enum drbd_conns connection_state)
2060*4882a593Smuzhiyun {
2061*4882a593Smuzhiyun 	return	connection_state == C_SYNC_TARGET ||
2062*4882a593Smuzhiyun 		connection_state == C_PAUSED_SYNC_T;
2063*4882a593Smuzhiyun }
2064*4882a593Smuzhiyun 
is_sync_source_state(enum drbd_conns connection_state)2065*4882a593Smuzhiyun static inline bool is_sync_source_state(enum drbd_conns connection_state)
2066*4882a593Smuzhiyun {
2067*4882a593Smuzhiyun 	return	connection_state == C_SYNC_SOURCE ||
2068*4882a593Smuzhiyun 		connection_state == C_PAUSED_SYNC_S;
2069*4882a593Smuzhiyun }
2070*4882a593Smuzhiyun 
is_sync_state(enum drbd_conns connection_state)2071*4882a593Smuzhiyun static inline bool is_sync_state(enum drbd_conns connection_state)
2072*4882a593Smuzhiyun {
2073*4882a593Smuzhiyun 	return	is_sync_source_state(connection_state) ||
2074*4882a593Smuzhiyun 		is_sync_target_state(connection_state);
2075*4882a593Smuzhiyun }
2076*4882a593Smuzhiyun 
2077*4882a593Smuzhiyun /**
2078*4882a593Smuzhiyun  * get_ldev() - Increase the ref count on device->ldev. Returns 0 if there is no ldev
2079*4882a593Smuzhiyun  * @_device:		DRBD device.
2080*4882a593Smuzhiyun  * @_min_state:		Minimum device state required for success.
2081*4882a593Smuzhiyun  *
2082*4882a593Smuzhiyun  * You have to call put_ldev() when finished working with device->ldev.
2083*4882a593Smuzhiyun  */
2084*4882a593Smuzhiyun #define get_ldev_if_state(_device, _min_state)				\
2085*4882a593Smuzhiyun 	(_get_ldev_if_state((_device), (_min_state)) ?			\
2086*4882a593Smuzhiyun 	 ({ __acquire(x); true; }) : false)
2087*4882a593Smuzhiyun #define get_ldev(_device) get_ldev_if_state(_device, D_INCONSISTENT)
2088*4882a593Smuzhiyun 
put_ldev(struct drbd_device * device)2089*4882a593Smuzhiyun static inline void put_ldev(struct drbd_device *device)
2090*4882a593Smuzhiyun {
2091*4882a593Smuzhiyun 	enum drbd_disk_state disk_state = device->state.disk;
2092*4882a593Smuzhiyun 	/* We must check the state *before* the atomic_dec becomes visible,
2093*4882a593Smuzhiyun 	 * or we have a theoretical race where someone hitting zero,
2094*4882a593Smuzhiyun 	 * while state still D_FAILED, will then see D_DISKLESS in the
2095*4882a593Smuzhiyun 	 * condition below and calling into destroy, where he must not, yet. */
2096*4882a593Smuzhiyun 	int i = atomic_dec_return(&device->local_cnt);
2097*4882a593Smuzhiyun 
2098*4882a593Smuzhiyun 	/* This may be called from some endio handler,
2099*4882a593Smuzhiyun 	 * so we must not sleep here. */
2100*4882a593Smuzhiyun 
2101*4882a593Smuzhiyun 	__release(local);
2102*4882a593Smuzhiyun 	D_ASSERT(device, i >= 0);
2103*4882a593Smuzhiyun 	if (i == 0) {
2104*4882a593Smuzhiyun 		if (disk_state == D_DISKLESS)
2105*4882a593Smuzhiyun 			/* even internal references gone, safe to destroy */
2106*4882a593Smuzhiyun 			drbd_device_post_work(device, DESTROY_DISK);
2107*4882a593Smuzhiyun 		if (disk_state == D_FAILED)
2108*4882a593Smuzhiyun 			/* all application IO references gone. */
2109*4882a593Smuzhiyun 			if (!test_and_set_bit(GOING_DISKLESS, &device->flags))
2110*4882a593Smuzhiyun 				drbd_device_post_work(device, GO_DISKLESS);
2111*4882a593Smuzhiyun 		wake_up(&device->misc_wait);
2112*4882a593Smuzhiyun 	}
2113*4882a593Smuzhiyun }
2114*4882a593Smuzhiyun 
2115*4882a593Smuzhiyun #ifndef __CHECKER__
_get_ldev_if_state(struct drbd_device * device,enum drbd_disk_state mins)2116*4882a593Smuzhiyun static inline int _get_ldev_if_state(struct drbd_device *device, enum drbd_disk_state mins)
2117*4882a593Smuzhiyun {
2118*4882a593Smuzhiyun 	int io_allowed;
2119*4882a593Smuzhiyun 
2120*4882a593Smuzhiyun 	/* never get a reference while D_DISKLESS */
2121*4882a593Smuzhiyun 	if (device->state.disk == D_DISKLESS)
2122*4882a593Smuzhiyun 		return 0;
2123*4882a593Smuzhiyun 
2124*4882a593Smuzhiyun 	atomic_inc(&device->local_cnt);
2125*4882a593Smuzhiyun 	io_allowed = (device->state.disk >= mins);
2126*4882a593Smuzhiyun 	if (!io_allowed)
2127*4882a593Smuzhiyun 		put_ldev(device);
2128*4882a593Smuzhiyun 	return io_allowed;
2129*4882a593Smuzhiyun }
2130*4882a593Smuzhiyun #else
2131*4882a593Smuzhiyun extern int _get_ldev_if_state(struct drbd_device *device, enum drbd_disk_state mins);
2132*4882a593Smuzhiyun #endif
2133*4882a593Smuzhiyun 
2134*4882a593Smuzhiyun /* this throttles on-the-fly application requests
2135*4882a593Smuzhiyun  * according to max_buffers settings;
2136*4882a593Smuzhiyun  * maybe re-implement using semaphores? */
drbd_get_max_buffers(struct drbd_device * device)2137*4882a593Smuzhiyun static inline int drbd_get_max_buffers(struct drbd_device *device)
2138*4882a593Smuzhiyun {
2139*4882a593Smuzhiyun 	struct net_conf *nc;
2140*4882a593Smuzhiyun 	int mxb;
2141*4882a593Smuzhiyun 
2142*4882a593Smuzhiyun 	rcu_read_lock();
2143*4882a593Smuzhiyun 	nc = rcu_dereference(first_peer_device(device)->connection->net_conf);
2144*4882a593Smuzhiyun 	mxb = nc ? nc->max_buffers : 1000000;  /* arbitrary limit on open requests */
2145*4882a593Smuzhiyun 	rcu_read_unlock();
2146*4882a593Smuzhiyun 
2147*4882a593Smuzhiyun 	return mxb;
2148*4882a593Smuzhiyun }
2149*4882a593Smuzhiyun 
drbd_state_is_stable(struct drbd_device * device)2150*4882a593Smuzhiyun static inline int drbd_state_is_stable(struct drbd_device *device)
2151*4882a593Smuzhiyun {
2152*4882a593Smuzhiyun 	union drbd_dev_state s = device->state;
2153*4882a593Smuzhiyun 
2154*4882a593Smuzhiyun 	/* DO NOT add a default clause, we want the compiler to warn us
2155*4882a593Smuzhiyun 	 * for any newly introduced state we may have forgotten to add here */
2156*4882a593Smuzhiyun 
2157*4882a593Smuzhiyun 	switch ((enum drbd_conns)s.conn) {
2158*4882a593Smuzhiyun 	/* new io only accepted when there is no connection, ... */
2159*4882a593Smuzhiyun 	case C_STANDALONE:
2160*4882a593Smuzhiyun 	case C_WF_CONNECTION:
2161*4882a593Smuzhiyun 	/* ... or there is a well established connection. */
2162*4882a593Smuzhiyun 	case C_CONNECTED:
2163*4882a593Smuzhiyun 	case C_SYNC_SOURCE:
2164*4882a593Smuzhiyun 	case C_SYNC_TARGET:
2165*4882a593Smuzhiyun 	case C_VERIFY_S:
2166*4882a593Smuzhiyun 	case C_VERIFY_T:
2167*4882a593Smuzhiyun 	case C_PAUSED_SYNC_S:
2168*4882a593Smuzhiyun 	case C_PAUSED_SYNC_T:
2169*4882a593Smuzhiyun 	case C_AHEAD:
2170*4882a593Smuzhiyun 	case C_BEHIND:
2171*4882a593Smuzhiyun 		/* transitional states, IO allowed */
2172*4882a593Smuzhiyun 	case C_DISCONNECTING:
2173*4882a593Smuzhiyun 	case C_UNCONNECTED:
2174*4882a593Smuzhiyun 	case C_TIMEOUT:
2175*4882a593Smuzhiyun 	case C_BROKEN_PIPE:
2176*4882a593Smuzhiyun 	case C_NETWORK_FAILURE:
2177*4882a593Smuzhiyun 	case C_PROTOCOL_ERROR:
2178*4882a593Smuzhiyun 	case C_TEAR_DOWN:
2179*4882a593Smuzhiyun 	case C_WF_REPORT_PARAMS:
2180*4882a593Smuzhiyun 	case C_STARTING_SYNC_S:
2181*4882a593Smuzhiyun 	case C_STARTING_SYNC_T:
2182*4882a593Smuzhiyun 		break;
2183*4882a593Smuzhiyun 
2184*4882a593Smuzhiyun 		/* Allow IO in BM exchange states with new protocols */
2185*4882a593Smuzhiyun 	case C_WF_BITMAP_S:
2186*4882a593Smuzhiyun 		if (first_peer_device(device)->connection->agreed_pro_version < 96)
2187*4882a593Smuzhiyun 			return 0;
2188*4882a593Smuzhiyun 		break;
2189*4882a593Smuzhiyun 
2190*4882a593Smuzhiyun 		/* no new io accepted in these states */
2191*4882a593Smuzhiyun 	case C_WF_BITMAP_T:
2192*4882a593Smuzhiyun 	case C_WF_SYNC_UUID:
2193*4882a593Smuzhiyun 	case C_MASK:
2194*4882a593Smuzhiyun 		/* not "stable" */
2195*4882a593Smuzhiyun 		return 0;
2196*4882a593Smuzhiyun 	}
2197*4882a593Smuzhiyun 
2198*4882a593Smuzhiyun 	switch ((enum drbd_disk_state)s.disk) {
2199*4882a593Smuzhiyun 	case D_DISKLESS:
2200*4882a593Smuzhiyun 	case D_INCONSISTENT:
2201*4882a593Smuzhiyun 	case D_OUTDATED:
2202*4882a593Smuzhiyun 	case D_CONSISTENT:
2203*4882a593Smuzhiyun 	case D_UP_TO_DATE:
2204*4882a593Smuzhiyun 	case D_FAILED:
2205*4882a593Smuzhiyun 		/* disk state is stable as well. */
2206*4882a593Smuzhiyun 		break;
2207*4882a593Smuzhiyun 
2208*4882a593Smuzhiyun 	/* no new io accepted during transitional states */
2209*4882a593Smuzhiyun 	case D_ATTACHING:
2210*4882a593Smuzhiyun 	case D_NEGOTIATING:
2211*4882a593Smuzhiyun 	case D_UNKNOWN:
2212*4882a593Smuzhiyun 	case D_MASK:
2213*4882a593Smuzhiyun 		/* not "stable" */
2214*4882a593Smuzhiyun 		return 0;
2215*4882a593Smuzhiyun 	}
2216*4882a593Smuzhiyun 
2217*4882a593Smuzhiyun 	return 1;
2218*4882a593Smuzhiyun }
2219*4882a593Smuzhiyun 
drbd_suspended(struct drbd_device * device)2220*4882a593Smuzhiyun static inline int drbd_suspended(struct drbd_device *device)
2221*4882a593Smuzhiyun {
2222*4882a593Smuzhiyun 	struct drbd_resource *resource = device->resource;
2223*4882a593Smuzhiyun 
2224*4882a593Smuzhiyun 	return resource->susp || resource->susp_fen || resource->susp_nod;
2225*4882a593Smuzhiyun }
2226*4882a593Smuzhiyun 
may_inc_ap_bio(struct drbd_device * device)2227*4882a593Smuzhiyun static inline bool may_inc_ap_bio(struct drbd_device *device)
2228*4882a593Smuzhiyun {
2229*4882a593Smuzhiyun 	int mxb = drbd_get_max_buffers(device);
2230*4882a593Smuzhiyun 
2231*4882a593Smuzhiyun 	if (drbd_suspended(device))
2232*4882a593Smuzhiyun 		return false;
2233*4882a593Smuzhiyun 	if (atomic_read(&device->suspend_cnt))
2234*4882a593Smuzhiyun 		return false;
2235*4882a593Smuzhiyun 
2236*4882a593Smuzhiyun 	/* to avoid potential deadlock or bitmap corruption,
2237*4882a593Smuzhiyun 	 * in various places, we only allow new application io
2238*4882a593Smuzhiyun 	 * to start during "stable" states. */
2239*4882a593Smuzhiyun 
2240*4882a593Smuzhiyun 	/* no new io accepted when attaching or detaching the disk */
2241*4882a593Smuzhiyun 	if (!drbd_state_is_stable(device))
2242*4882a593Smuzhiyun 		return false;
2243*4882a593Smuzhiyun 
2244*4882a593Smuzhiyun 	/* since some older kernels don't have atomic_add_unless,
2245*4882a593Smuzhiyun 	 * and we are within the spinlock anyways, we have this workaround.  */
2246*4882a593Smuzhiyun 	if (atomic_read(&device->ap_bio_cnt) > mxb)
2247*4882a593Smuzhiyun 		return false;
2248*4882a593Smuzhiyun 	if (test_bit(BITMAP_IO, &device->flags))
2249*4882a593Smuzhiyun 		return false;
2250*4882a593Smuzhiyun 	return true;
2251*4882a593Smuzhiyun }
2252*4882a593Smuzhiyun 
inc_ap_bio_cond(struct drbd_device * device)2253*4882a593Smuzhiyun static inline bool inc_ap_bio_cond(struct drbd_device *device)
2254*4882a593Smuzhiyun {
2255*4882a593Smuzhiyun 	bool rv = false;
2256*4882a593Smuzhiyun 
2257*4882a593Smuzhiyun 	spin_lock_irq(&device->resource->req_lock);
2258*4882a593Smuzhiyun 	rv = may_inc_ap_bio(device);
2259*4882a593Smuzhiyun 	if (rv)
2260*4882a593Smuzhiyun 		atomic_inc(&device->ap_bio_cnt);
2261*4882a593Smuzhiyun 	spin_unlock_irq(&device->resource->req_lock);
2262*4882a593Smuzhiyun 
2263*4882a593Smuzhiyun 	return rv;
2264*4882a593Smuzhiyun }
2265*4882a593Smuzhiyun 
inc_ap_bio(struct drbd_device * device)2266*4882a593Smuzhiyun static inline void inc_ap_bio(struct drbd_device *device)
2267*4882a593Smuzhiyun {
2268*4882a593Smuzhiyun 	/* we wait here
2269*4882a593Smuzhiyun 	 *    as long as the device is suspended
2270*4882a593Smuzhiyun 	 *    until the bitmap is no longer on the fly during connection
2271*4882a593Smuzhiyun 	 *    handshake as long as we would exceed the max_buffer limit.
2272*4882a593Smuzhiyun 	 *
2273*4882a593Smuzhiyun 	 * to avoid races with the reconnect code,
2274*4882a593Smuzhiyun 	 * we need to atomic_inc within the spinlock. */
2275*4882a593Smuzhiyun 
2276*4882a593Smuzhiyun 	wait_event(device->misc_wait, inc_ap_bio_cond(device));
2277*4882a593Smuzhiyun }
2278*4882a593Smuzhiyun 
dec_ap_bio(struct drbd_device * device)2279*4882a593Smuzhiyun static inline void dec_ap_bio(struct drbd_device *device)
2280*4882a593Smuzhiyun {
2281*4882a593Smuzhiyun 	int mxb = drbd_get_max_buffers(device);
2282*4882a593Smuzhiyun 	int ap_bio = atomic_dec_return(&device->ap_bio_cnt);
2283*4882a593Smuzhiyun 
2284*4882a593Smuzhiyun 	D_ASSERT(device, ap_bio >= 0);
2285*4882a593Smuzhiyun 
2286*4882a593Smuzhiyun 	if (ap_bio == 0 && test_bit(BITMAP_IO, &device->flags)) {
2287*4882a593Smuzhiyun 		if (!test_and_set_bit(BITMAP_IO_QUEUED, &device->flags))
2288*4882a593Smuzhiyun 			drbd_queue_work(&first_peer_device(device)->
2289*4882a593Smuzhiyun 				connection->sender_work,
2290*4882a593Smuzhiyun 				&device->bm_io_work.w);
2291*4882a593Smuzhiyun 	}
2292*4882a593Smuzhiyun 
2293*4882a593Smuzhiyun 	/* this currently does wake_up for every dec_ap_bio!
2294*4882a593Smuzhiyun 	 * maybe rather introduce some type of hysteresis?
2295*4882a593Smuzhiyun 	 * e.g. (ap_bio == mxb/2 || ap_bio == 0) ? */
2296*4882a593Smuzhiyun 	if (ap_bio < mxb)
2297*4882a593Smuzhiyun 		wake_up(&device->misc_wait);
2298*4882a593Smuzhiyun }
2299*4882a593Smuzhiyun 
verify_can_do_stop_sector(struct drbd_device * device)2300*4882a593Smuzhiyun static inline bool verify_can_do_stop_sector(struct drbd_device *device)
2301*4882a593Smuzhiyun {
2302*4882a593Smuzhiyun 	return first_peer_device(device)->connection->agreed_pro_version >= 97 &&
2303*4882a593Smuzhiyun 		first_peer_device(device)->connection->agreed_pro_version != 100;
2304*4882a593Smuzhiyun }
2305*4882a593Smuzhiyun 
drbd_set_ed_uuid(struct drbd_device * device,u64 val)2306*4882a593Smuzhiyun static inline int drbd_set_ed_uuid(struct drbd_device *device, u64 val)
2307*4882a593Smuzhiyun {
2308*4882a593Smuzhiyun 	int changed = device->ed_uuid != val;
2309*4882a593Smuzhiyun 	device->ed_uuid = val;
2310*4882a593Smuzhiyun 	return changed;
2311*4882a593Smuzhiyun }
2312*4882a593Smuzhiyun 
drbd_queue_order_type(struct drbd_device * device)2313*4882a593Smuzhiyun static inline int drbd_queue_order_type(struct drbd_device *device)
2314*4882a593Smuzhiyun {
2315*4882a593Smuzhiyun 	/* sorry, we currently have no working implementation
2316*4882a593Smuzhiyun 	 * of distributed TCQ stuff */
2317*4882a593Smuzhiyun #ifndef QUEUE_ORDERED_NONE
2318*4882a593Smuzhiyun #define QUEUE_ORDERED_NONE 0
2319*4882a593Smuzhiyun #endif
2320*4882a593Smuzhiyun 	return QUEUE_ORDERED_NONE;
2321*4882a593Smuzhiyun }
2322*4882a593Smuzhiyun 
first_connection(struct drbd_resource * resource)2323*4882a593Smuzhiyun static inline struct drbd_connection *first_connection(struct drbd_resource *resource)
2324*4882a593Smuzhiyun {
2325*4882a593Smuzhiyun 	return list_first_entry_or_null(&resource->connections,
2326*4882a593Smuzhiyun 				struct drbd_connection, connections);
2327*4882a593Smuzhiyun }
2328*4882a593Smuzhiyun 
2329*4882a593Smuzhiyun #endif
2330