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