blob: 90ae4ba8f9ee8898c34d9994c34cb0e860e91327 [file] [log] [blame]
Philipp Reisnerb411b362009-09-25 16:07:19 -07001/*
2 drbd_actlog.c
3
4 This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
5
6 Copyright (C) 2003-2008, LINBIT Information Technologies GmbH.
7 Copyright (C) 2003-2008, Philipp Reisner <philipp.reisner@linbit.com>.
8 Copyright (C) 2003-2008, Lars Ellenberg <lars.ellenberg@linbit.com>.
9
10 drbd is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
13 any later version.
14
15 drbd is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with drbd; see the file COPYING. If not, write to
22 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
24 */
25
26#include <linux/slab.h>
Lars Ellenberg7ad651b2011-02-21 13:21:03 +010027#include <linux/crc32c.h>
Philipp Reisnerb411b362009-09-25 16:07:19 -070028#include <linux/drbd.h>
Lars Ellenberg7ad651b2011-02-21 13:21:03 +010029#include <linux/drbd_limits.h>
30#include <linux/dynamic_debug.h>
Philipp Reisnerb411b362009-09-25 16:07:19 -070031#include "drbd_int.h"
Philipp Reisnerb411b362009-09-25 16:07:19 -070032#include "drbd_wrappers.h"
33
Lars Ellenberg85f103d2011-03-31 12:06:48 +020034
35enum al_transaction_types {
36 AL_TR_UPDATE = 0,
37 AL_TR_INITIALIZED = 0xffff
38};
Lars Ellenberg7ad651b2011-02-21 13:21:03 +010039/* all fields on disc in big endian */
40struct __packed al_transaction_on_disk {
41 /* don't we all like magic */
42 __be32 magic;
43
44 /* to identify the most recent transaction block
45 * in the on disk ring buffer */
46 __be32 tr_number;
47
48 /* checksum on the full 4k block, with this field set to 0. */
49 __be32 crc32c;
50
51 /* type of transaction, special transaction types like:
Lars Ellenberg85f103d2011-03-31 12:06:48 +020052 * purge-all, set-all-idle, set-all-active, ... to-be-defined
53 * see also enum al_transaction_types */
Lars Ellenberg7ad651b2011-02-21 13:21:03 +010054 __be16 transaction_type;
55
56 /* we currently allow only a few thousand extents,
57 * so 16bit will be enough for the slot number. */
58
59 /* how many updates in this transaction */
60 __be16 n_updates;
61
62 /* maximum slot number, "al-extents" in drbd.conf speak.
63 * Having this in each transaction should make reconfiguration
64 * of that parameter easier. */
65 __be16 context_size;
66
67 /* slot number the context starts with */
68 __be16 context_start_slot_nr;
69
70 /* Some reserved bytes. Expected usage is a 64bit counter of
71 * sectors-written since device creation, and other data generation tag
72 * supporting usage */
73 __be32 __reserved[4];
74
75 /* --- 36 byte used --- */
76
77 /* Reserve space for up to AL_UPDATES_PER_TRANSACTION changes
78 * in one transaction, then use the remaining byte in the 4k block for
79 * context information. "Flexible" number of updates per transaction
80 * does not help, as we have to account for the case when all update
81 * slots are used anyways, so it would only complicate code without
82 * additional benefit.
83 */
84 __be16 update_slot_nr[AL_UPDATES_PER_TRANSACTION];
85
86 /* but the extent number is 32bit, which at an extent size of 4 MiB
87 * allows to cover device sizes of up to 2**54 Byte (16 PiB) */
88 __be32 update_extent_nr[AL_UPDATES_PER_TRANSACTION];
89
90 /* --- 420 bytes used (36 + 64*6) --- */
91
92 /* 4096 - 420 = 3676 = 919 * 4 */
93 __be32 context[AL_CONTEXT_PER_TRANSACTION];
Philipp Reisnerb411b362009-09-25 16:07:19 -070094};
95
96struct update_odbm_work {
97 struct drbd_work w;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +020098 struct drbd_device *device;
Philipp Reisnerb411b362009-09-25 16:07:19 -070099 unsigned int enr;
100};
101
102struct update_al_work {
103 struct drbd_work w;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200104 struct drbd_device *device;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700105 struct completion event;
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100106 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700107};
108
Philipp Reisnerb411b362009-09-25 16:07:19 -0700109
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200110void *drbd_md_get_buffer(struct drbd_device *device)
Philipp Reisnercdfda632011-07-05 15:38:59 +0200111{
112 int r;
113
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200114 wait_event(device->misc_wait,
115 (r = atomic_cmpxchg(&device->md_io_in_use, 0, 1)) == 0 ||
116 device->state.disk <= D_FAILED);
Philipp Reisnercdfda632011-07-05 15:38:59 +0200117
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200118 return r ? NULL : page_address(device->md_io_page);
Philipp Reisnercdfda632011-07-05 15:38:59 +0200119}
120
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200121void drbd_md_put_buffer(struct drbd_device *device)
Philipp Reisnercdfda632011-07-05 15:38:59 +0200122{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200123 if (atomic_dec_and_test(&device->md_io_in_use))
124 wake_up(&device->misc_wait);
Philipp Reisnercdfda632011-07-05 15:38:59 +0200125}
126
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200127void wait_until_done_or_force_detached(struct drbd_device *device, struct drbd_backing_dev *bdev,
Philipp Reisner32db80f2012-02-22 11:51:57 +0100128 unsigned int *done)
Philipp Reisnercdfda632011-07-05 15:38:59 +0200129{
Philipp Reisner32db80f2012-02-22 11:51:57 +0100130 long dt;
131
132 rcu_read_lock();
133 dt = rcu_dereference(bdev->disk_conf)->disk_timeout;
134 rcu_read_unlock();
135 dt = dt * HZ / 10;
136 if (dt == 0)
137 dt = MAX_SCHEDULE_TIMEOUT;
138
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200139 dt = wait_event_timeout(device->misc_wait,
140 *done || test_bit(FORCE_DETACH, &device->flags), dt);
Lars Ellenberge34b6772012-09-27 15:07:11 +0200141 if (dt == 0) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200142 drbd_err(device, "meta-data IO operation timed out\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200143 drbd_chk_io_error(device, 1, DRBD_FORCE_DETACH);
Lars Ellenberge34b6772012-09-27 15:07:11 +0200144 }
Philipp Reisnercdfda632011-07-05 15:38:59 +0200145}
146
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200147static int _drbd_md_sync_page_io(struct drbd_device *device,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700148 struct drbd_backing_dev *bdev,
149 struct page *page, sector_t sector,
150 int rw, int size)
151{
152 struct bio *bio;
Andreas Gruenbacherac29f402010-12-13 02:20:47 +0100153 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700154
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200155 device->md_io.done = 0;
156 device->md_io.error = -ENODEV;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700157
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200158 if ((rw & WRITE) && !test_bit(MD_NO_FUA, &device->flags))
Lars Ellenberg86e1e982011-06-28 13:22:48 +0200159 rw |= REQ_FUA | REQ_FLUSH;
Jens Axboe721a9602011-03-09 11:56:30 +0100160 rw |= REQ_SYNC;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700161
Lars Ellenbergda4a75d2011-02-23 17:02:01 +0100162 bio = bio_alloc_drbd(GFP_NOIO);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700163 bio->bi_bdev = bdev->md_bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700164 bio->bi_iter.bi_sector = sector;
Andreas Gruenbacherac29f402010-12-13 02:20:47 +0100165 err = -EIO;
166 if (bio_add_page(bio, page, size, 0) != size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700167 goto out;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200168 bio->bi_private = &device->md_io;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700169 bio->bi_end_io = drbd_md_io_complete;
170 bio->bi_rw = rw;
171
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200172 if (!(rw & WRITE) && device->state.disk == D_DISKLESS && device->ldev == NULL)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +0100173 /* special case, drbd_md_read() during drbd_adm_attach(): no get_ldev */
174 ;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200175 else if (!get_ldev_if_state(device, D_ATTACHING)) {
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +0100176 /* Corresponding put_ldev in drbd_md_io_complete() */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200177 drbd_err(device, "ASSERT FAILED: get_ldev_if_state() == 1 in _drbd_md_sync_page_io()\n");
Philipp Reisnercdfda632011-07-05 15:38:59 +0200178 err = -ENODEV;
179 goto out;
180 }
181
182 bio_get(bio); /* one bio_put() is in the completion handler */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200183 atomic_inc(&device->md_io_in_use); /* drbd_md_put_buffer() is in the completion handler */
184 if (drbd_insert_fault(device, (rw & WRITE) ? DRBD_FAULT_MD_WR : DRBD_FAULT_MD_RD))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700185 bio_endio(bio, -EIO);
186 else
187 submit_bio(rw, bio);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200188 wait_until_done_or_force_detached(device, bdev, &device->md_io.done);
Andreas Gruenbacherac29f402010-12-13 02:20:47 +0100189 if (bio_flagged(bio, BIO_UPTODATE))
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200190 err = device->md_io.error;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700191
Philipp Reisnerb411b362009-09-25 16:07:19 -0700192 out:
193 bio_put(bio);
Andreas Gruenbacherac29f402010-12-13 02:20:47 +0100194 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700195}
196
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200197int drbd_md_sync_page_io(struct drbd_device *device, struct drbd_backing_dev *bdev,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700198 sector_t sector, int rw)
199{
Andreas Gruenbacher3fbf4d22010-12-13 02:25:41 +0100200 int err;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200201 struct page *iop = device->md_io_page;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700202
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200203 D_ASSERT(device, atomic_read(&device->md_io_in_use) == 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700204
205 BUG_ON(!bdev->md_bdev);
206
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200207 drbd_dbg(device, "meta_data io: %s [%d]:%s(,%llus,%s) %pS\n",
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100208 current->comm, current->pid, __func__,
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +0100209 (unsigned long long)sector, (rw & WRITE) ? "WRITE" : "READ",
210 (void*)_RET_IP_ );
Philipp Reisnerb411b362009-09-25 16:07:19 -0700211
212 if (sector < drbd_md_first_sector(bdev) ||
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100213 sector + 7 > drbd_md_last_sector(bdev))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200214 drbd_alert(device, "%s [%d]:%s(,%llus,%s) out of range md access!\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -0700215 current->comm, current->pid, __func__,
216 (unsigned long long)sector, (rw & WRITE) ? "WRITE" : "READ");
217
Lars Ellenbergae8bf312013-03-19 18:16:43 +0100218 /* we do all our meta data IO in aligned 4k blocks. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200219 err = _drbd_md_sync_page_io(device, bdev, iop, sector, rw, 4096);
Andreas Gruenbacher3fbf4d22010-12-13 02:25:41 +0100220 if (err) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200221 drbd_err(device, "drbd_md_sync_page_io(,%llus,%s) failed with error %d\n",
Andreas Gruenbacher935be262011-08-19 13:47:31 +0200222 (unsigned long long)sector, (rw & WRITE) ? "WRITE" : "READ", err);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700223 }
Andreas Gruenbacher3fbf4d22010-12-13 02:25:41 +0100224 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700225}
226
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200227static struct bm_extent *find_active_resync_extent(struct drbd_device *device, unsigned int enr)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700228{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700229 struct lc_element *tmp;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200230 tmp = lc_find(device->resync, enr/AL_EXT_PER_BM_SECT);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700231 if (unlikely(tmp != NULL)) {
232 struct bm_extent *bm_ext = lc_entry(tmp, struct bm_extent, lce);
Lars Ellenberg6c3c43552013-03-19 18:16:53 +0100233 if (test_bit(BME_NO_WRITES, &bm_ext->flags))
234 return bm_ext;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700235 }
Lars Ellenberg6c3c43552013-03-19 18:16:53 +0100236 return NULL;
237}
238
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200239static struct lc_element *_al_get(struct drbd_device *device, unsigned int enr, bool nonblock)
Lars Ellenberg6c3c43552013-03-19 18:16:53 +0100240{
241 struct lc_element *al_ext;
242 struct bm_extent *bm_ext;
243 int wake;
244
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200245 spin_lock_irq(&device->al_lock);
246 bm_ext = find_active_resync_extent(device, enr);
Lars Ellenberg6c3c43552013-03-19 18:16:53 +0100247 if (bm_ext) {
248 wake = !test_and_set_bit(BME_PRIORITY, &bm_ext->flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200249 spin_unlock_irq(&device->al_lock);
Lars Ellenberg6c3c43552013-03-19 18:16:53 +0100250 if (wake)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200251 wake_up(&device->al_wait);
Lars Ellenberg6c3c43552013-03-19 18:16:53 +0100252 return NULL;
253 }
254 if (nonblock)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200255 al_ext = lc_try_get(device->act_log, enr);
Lars Ellenberg6c3c43552013-03-19 18:16:53 +0100256 else
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200257 al_ext = lc_get(device->act_log, enr);
258 spin_unlock_irq(&device->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700259 return al_ext;
260}
261
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200262bool drbd_al_begin_io_fastpath(struct drbd_device *device, struct drbd_interval *i)
Lars Ellenbergb5bc8e02013-03-19 18:16:52 +0100263{
264 /* for bios crossing activity log extent boundaries,
265 * we may need to activate two extents in one go */
266 unsigned first = i->sector >> (AL_EXTENT_SHIFT-9);
267 unsigned last = i->size == 0 ? first : (i->sector + (i->size >> 9) - 1) >> (AL_EXTENT_SHIFT-9);
Lars Ellenbergb5bc8e02013-03-19 18:16:52 +0100268
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200269 D_ASSERT(device, (unsigned)(last - first) <= 1);
270 D_ASSERT(device, atomic_read(&device->local_cnt) > 0);
Lars Ellenbergb5bc8e02013-03-19 18:16:52 +0100271
272 /* FIXME figure out a fast path for bios crossing AL extent boundaries */
273 if (first != last)
274 return false;
275
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200276 return _al_get(device, first, true);
Lars Ellenbergb5bc8e02013-03-19 18:16:52 +0100277}
278
Rashika Kheriaa99efaf2013-12-19 15:13:37 +0530279static
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200280bool drbd_al_begin_io_prepare(struct drbd_device *device, struct drbd_interval *i)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700281{
Lars Ellenberg77265472011-03-31 16:00:51 +0200282 /* for bios crossing activity log extent boundaries,
283 * we may need to activate two extents in one go */
Lars Ellenberge15766e2011-04-01 10:38:30 +0200284 unsigned first = i->sector >> (AL_EXTENT_SHIFT-9);
Lars Ellenberg81a35372012-07-30 09:00:54 +0200285 unsigned last = i->size == 0 ? first : (i->sector + (i->size >> 9) - 1) >> (AL_EXTENT_SHIFT-9);
Lars Ellenberge15766e2011-04-01 10:38:30 +0200286 unsigned enr;
Lars Ellenbergebfd5d82013-03-19 18:16:49 +0100287 bool need_transaction = false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700288
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200289 D_ASSERT(device, first <= last);
290 D_ASSERT(device, atomic_read(&device->local_cnt) > 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700291
Lars Ellenbergebfd5d82013-03-19 18:16:49 +0100292 for (enr = first; enr <= last; enr++) {
293 struct lc_element *al_ext;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200294 wait_event(device->al_wait,
295 (al_ext = _al_get(device, enr, false)) != NULL);
Lars Ellenbergebfd5d82013-03-19 18:16:49 +0100296 if (al_ext->lc_number != enr)
297 need_transaction = true;
298 }
Lars Ellenbergb5bc8e02013-03-19 18:16:52 +0100299 return need_transaction;
300}
Lars Ellenbergebfd5d82013-03-19 18:16:49 +0100301
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200302static int al_write_transaction(struct drbd_device *device, bool delegate);
Lars Ellenbergb5bc8e02013-03-19 18:16:52 +0100303
304/* When called through generic_make_request(), we must delegate
305 * activity log I/O to the worker thread: a further request
306 * submitted via generic_make_request() within the same task
307 * would be queued on current->bio_list, and would only start
308 * after this function returns (see generic_make_request()).
309 *
310 * However, if we *are* the worker, we must not delegate to ourselves.
311 */
312
313/*
314 * @delegate: delegate activity log I/O to the worker thread
315 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200316void drbd_al_begin_io_commit(struct drbd_device *device, bool delegate)
Lars Ellenbergb5bc8e02013-03-19 18:16:52 +0100317{
318 bool locked = false;
319
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200320 BUG_ON(delegate && current == first_peer_device(device)->connection->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700321
Lars Ellenberg7dc1d672011-05-03 16:49:20 +0200322 /* Serialize multiple transactions.
323 * This uses test_and_set_bit, memory barrier is implicit.
324 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200325 wait_event(device->al_wait,
326 device->act_log->pending_changes == 0 ||
327 (locked = lc_try_lock_for_transaction(device->act_log)));
Lars Ellenberg7dc1d672011-05-03 16:49:20 +0200328
329 if (locked) {
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100330 /* Double check: it may have been committed by someone else,
331 * while we have been waiting for the lock. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200332 if (device->act_log->pending_changes) {
Philipp Reisner9a51ab12012-02-20 21:53:28 +0100333 bool write_al_updates;
334
335 rcu_read_lock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200336 write_al_updates = rcu_dereference(device->ldev->disk_conf)->al_updates;
Philipp Reisner9a51ab12012-02-20 21:53:28 +0100337 rcu_read_unlock();
338
Lars Ellenbergb5bc8e02013-03-19 18:16:52 +0100339 if (write_al_updates)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200340 al_write_transaction(device, delegate);
341 spin_lock_irq(&device->al_lock);
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100342 /* FIXME
Philipp Reisner1b7ab152011-07-15 17:19:02 +0200343 if (err)
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100344 we need an "lc_cancel" here;
345 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200346 lc_committed(device->act_log);
347 spin_unlock_irq(&device->al_lock);
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100348 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200349 lc_unlock(device->act_log);
350 wake_up(&device->al_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700351 }
352}
353
Lars Ellenbergb5bc8e02013-03-19 18:16:52 +0100354/*
355 * @delegate: delegate activity log I/O to the worker thread
356 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200357void drbd_al_begin_io(struct drbd_device *device, struct drbd_interval *i, bool delegate)
Lars Ellenbergb5bc8e02013-03-19 18:16:52 +0100358{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200359 BUG_ON(delegate && current == first_peer_device(device)->connection->worker.task);
Lars Ellenbergb5bc8e02013-03-19 18:16:52 +0100360
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200361 if (drbd_al_begin_io_prepare(device, i))
362 drbd_al_begin_io_commit(device, delegate);
Lars Ellenbergb5bc8e02013-03-19 18:16:52 +0100363}
364
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200365int drbd_al_begin_io_nonblock(struct drbd_device *device, struct drbd_interval *i)
Lars Ellenberg08a1dda2013-03-19 18:16:56 +0100366{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200367 struct lru_cache *al = device->act_log;
Lars Ellenberg08a1dda2013-03-19 18:16:56 +0100368 /* for bios crossing activity log extent boundaries,
369 * we may need to activate two extents in one go */
370 unsigned first = i->sector >> (AL_EXTENT_SHIFT-9);
371 unsigned last = i->size == 0 ? first : (i->sector + (i->size >> 9) - 1) >> (AL_EXTENT_SHIFT-9);
372 unsigned nr_al_extents;
373 unsigned available_update_slots;
374 unsigned enr;
375
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200376 D_ASSERT(device, first <= last);
Lars Ellenberg08a1dda2013-03-19 18:16:56 +0100377
378 nr_al_extents = 1 + last - first; /* worst case: all touched extends are cold. */
379 available_update_slots = min(al->nr_elements - al->used,
380 al->max_pending_changes - al->pending_changes);
381
382 /* We want all necessary updates for a given request within the same transaction
383 * We could first check how many updates are *actually* needed,
384 * and use that instead of the worst-case nr_al_extents */
385 if (available_update_slots < nr_al_extents)
386 return -EWOULDBLOCK;
387
388 /* Is resync active in this area? */
389 for (enr = first; enr <= last; enr++) {
390 struct lc_element *tmp;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200391 tmp = lc_find(device->resync, enr/AL_EXT_PER_BM_SECT);
Lars Ellenberg08a1dda2013-03-19 18:16:56 +0100392 if (unlikely(tmp != NULL)) {
393 struct bm_extent *bm_ext = lc_entry(tmp, struct bm_extent, lce);
394 if (test_bit(BME_NO_WRITES, &bm_ext->flags)) {
Lars Ellenberg0b6ef412013-03-27 14:08:49 +0100395 if (!test_and_set_bit(BME_PRIORITY, &bm_ext->flags))
Lars Ellenberg08a1dda2013-03-19 18:16:56 +0100396 return -EBUSY;
397 return -EWOULDBLOCK;
398 }
399 }
400 }
401
402 /* Checkout the refcounts.
403 * Given that we checked for available elements and update slots above,
404 * this has to be successful. */
405 for (enr = first; enr <= last; enr++) {
406 struct lc_element *al_ext;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200407 al_ext = lc_get_cumulative(device->act_log, enr);
Lars Ellenberg08a1dda2013-03-19 18:16:56 +0100408 if (!al_ext)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200409 drbd_info(device, "LOGIC BUG for enr=%u\n", enr);
Lars Ellenberg08a1dda2013-03-19 18:16:56 +0100410 }
411 return 0;
412}
413
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200414void drbd_al_complete_io(struct drbd_device *device, struct drbd_interval *i)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700415{
Lars Ellenberge15766e2011-04-01 10:38:30 +0200416 /* for bios crossing activity log extent boundaries,
417 * we may need to activate two extents in one go */
418 unsigned first = i->sector >> (AL_EXTENT_SHIFT-9);
Lars Ellenberg81a35372012-07-30 09:00:54 +0200419 unsigned last = i->size == 0 ? first : (i->sector + (i->size >> 9) - 1) >> (AL_EXTENT_SHIFT-9);
Lars Ellenberge15766e2011-04-01 10:38:30 +0200420 unsigned enr;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700421 struct lc_element *extent;
422 unsigned long flags;
423
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200424 D_ASSERT(device, first <= last);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200425 spin_lock_irqsave(&device->al_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700426
Lars Ellenberge15766e2011-04-01 10:38:30 +0200427 for (enr = first; enr <= last; enr++) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200428 extent = lc_find(device->act_log, enr);
Lars Ellenberge15766e2011-04-01 10:38:30 +0200429 if (!extent) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200430 drbd_err(device, "al_complete_io() called on inactive extent %u\n", enr);
Lars Ellenberge15766e2011-04-01 10:38:30 +0200431 continue;
432 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200433 lc_put(device->act_log, extent);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700434 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200435 spin_unlock_irqrestore(&device->al_lock, flags);
436 wake_up(&device->al_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700437}
438
Lars Ellenberg19f843a2010-12-15 08:59:11 +0100439#if (PAGE_SHIFT + 3) < (AL_EXTENT_SHIFT - BM_BLOCK_SHIFT)
440/* Currently BM_BLOCK_SHIFT, BM_EXT_SHIFT and AL_EXTENT_SHIFT
441 * are still coupled, or assume too much about their relation.
442 * Code below will not work if this is violated.
443 * Will be cleaned up with some followup patch.
444 */
445# error FIXME
446#endif
447
448static unsigned int al_extent_to_bm_page(unsigned int al_enr)
449{
450 return al_enr >>
451 /* bit to page */
452 ((PAGE_SHIFT + 3) -
453 /* al extent number to bit */
454 (AL_EXTENT_SHIFT - BM_BLOCK_SHIFT));
455}
456
457static unsigned int rs_extent_to_bm_page(unsigned int rs_enr)
458{
459 return rs_enr >>
460 /* bit to page */
461 ((PAGE_SHIFT + 3) -
Lars Ellenbergacb104c32011-04-28 07:58:24 +0200462 /* resync extent number to bit */
Lars Ellenberg19f843a2010-12-15 08:59:11 +0100463 (BM_EXT_SHIFT - BM_BLOCK_SHIFT));
464}
465
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200466static sector_t al_tr_number_to_on_disk_sector(struct drbd_device *device)
Lars Ellenbergae8bf312013-03-19 18:16:43 +0100467{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200468 const unsigned int stripes = device->ldev->md.al_stripes;
469 const unsigned int stripe_size_4kB = device->ldev->md.al_stripe_size_4k;
Lars Ellenbergae8bf312013-03-19 18:16:43 +0100470
471 /* transaction number, modulo on-disk ring buffer wrap around */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200472 unsigned int t = device->al_tr_number % (device->ldev->md.al_size_4k);
Lars Ellenbergae8bf312013-03-19 18:16:43 +0100473
474 /* ... to aligned 4k on disk block */
475 t = ((t % stripes) * stripe_size_4kB) + t/stripes;
476
477 /* ... to 512 byte sector in activity log */
478 t *= 8;
479
480 /* ... plus offset to the on disk position */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200481 return device->ldev->md.md_offset + device->ldev->md.al_offset + t;
Lars Ellenbergae8bf312013-03-19 18:16:43 +0100482}
483
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100484static int
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200485_al_write_transaction(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700486{
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100487 struct al_transaction_on_disk *buffer;
488 struct lc_element *e;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700489 sector_t sector;
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100490 int i, mx;
491 unsigned extent_nr;
492 unsigned crc = 0;
Philipp Reisner1b7ab152011-07-15 17:19:02 +0200493 int err = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700494
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200495 if (!get_ldev(device)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200496 drbd_err(device, "disk is %s, cannot start al transaction\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200497 drbd_disk_str(device->state.disk));
Philipp Reisner1b7ab152011-07-15 17:19:02 +0200498 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700499 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700500
Lars Ellenberg6719fb02010-10-18 23:04:07 +0200501 /* The bitmap write may have failed, causing a state change. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200502 if (device->state.disk < D_INCONSISTENT) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200503 drbd_err(device,
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100504 "disk is %s, cannot write al transaction\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200505 drbd_disk_str(device->state.disk));
506 put_ldev(device);
Philipp Reisner1b7ab152011-07-15 17:19:02 +0200507 return -EIO;
Lars Ellenberg6719fb02010-10-18 23:04:07 +0200508 }
509
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200510 buffer = drbd_md_get_buffer(device); /* protects md_io_buffer, al_tr_cycle, ... */
Philipp Reisnercdfda632011-07-05 15:38:59 +0200511 if (!buffer) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200512 drbd_err(device, "disk failed while waiting for md_io buffer\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200513 put_ldev(device);
Philipp Reisner1b7ab152011-07-15 17:19:02 +0200514 return -ENODEV;
Philipp Reisnercdfda632011-07-05 15:38:59 +0200515 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700516
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100517 memset(buffer, 0, sizeof(*buffer));
518 buffer->magic = cpu_to_be32(DRBD_AL_MAGIC);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200519 buffer->tr_number = cpu_to_be32(device->al_tr_number);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700520
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100521 i = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700522
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100523 /* Even though no one can start to change this list
524 * once we set the LC_LOCKED -- from drbd_al_begin_io(),
525 * lc_try_lock_for_transaction() --, someone may still
526 * be in the process of changing it. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200527 spin_lock_irq(&device->al_lock);
528 list_for_each_entry(e, &device->act_log->to_be_changed, list) {
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100529 if (i == AL_UPDATES_PER_TRANSACTION) {
530 i++;
531 break;
532 }
533 buffer->update_slot_nr[i] = cpu_to_be16(e->lc_index);
534 buffer->update_extent_nr[i] = cpu_to_be32(e->lc_new_number);
535 if (e->lc_number != LC_FREE)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200536 drbd_bm_mark_for_writeout(device,
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100537 al_extent_to_bm_page(e->lc_number));
538 i++;
539 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200540 spin_unlock_irq(&device->al_lock);
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100541 BUG_ON(i > AL_UPDATES_PER_TRANSACTION);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700542
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100543 buffer->n_updates = cpu_to_be16(i);
544 for ( ; i < AL_UPDATES_PER_TRANSACTION; i++) {
545 buffer->update_slot_nr[i] = cpu_to_be16(-1);
546 buffer->update_extent_nr[i] = cpu_to_be32(LC_FREE);
547 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700548
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200549 buffer->context_size = cpu_to_be16(device->act_log->nr_elements);
550 buffer->context_start_slot_nr = cpu_to_be16(device->al_tr_cycle);
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100551
552 mx = min_t(int, AL_CONTEXT_PER_TRANSACTION,
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200553 device->act_log->nr_elements - device->al_tr_cycle);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700554 for (i = 0; i < mx; i++) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200555 unsigned idx = device->al_tr_cycle + i;
556 extent_nr = lc_element_by_index(device->act_log, idx)->lc_number;
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100557 buffer->context[i] = cpu_to_be32(extent_nr);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700558 }
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100559 for (; i < AL_CONTEXT_PER_TRANSACTION; i++)
560 buffer->context[i] = cpu_to_be32(LC_FREE);
561
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200562 device->al_tr_cycle += AL_CONTEXT_PER_TRANSACTION;
563 if (device->al_tr_cycle >= device->act_log->nr_elements)
564 device->al_tr_cycle = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700565
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200566 sector = al_tr_number_to_on_disk_sector(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700567
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100568 crc = crc32c(0, buffer, 4096);
569 buffer->crc32c = cpu_to_be32(crc);
570
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200571 if (drbd_bm_write_hinted(device))
Philipp Reisner1b7ab152011-07-15 17:19:02 +0200572 err = -EIO;
Lars Ellenbergb5bc8e02013-03-19 18:16:52 +0100573 else {
574 bool write_al_updates;
575 rcu_read_lock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200576 write_al_updates = rcu_dereference(device->ldev->disk_conf)->al_updates;
Lars Ellenbergb5bc8e02013-03-19 18:16:52 +0100577 rcu_read_unlock();
578 if (write_al_updates) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200579 if (drbd_md_sync_page_io(device, device->ldev, sector, WRITE)) {
Lars Ellenbergb5bc8e02013-03-19 18:16:52 +0100580 err = -EIO;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200581 drbd_chk_io_error(device, 1, DRBD_META_IO_ERROR);
Lars Ellenbergb5bc8e02013-03-19 18:16:52 +0100582 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200583 device->al_tr_number++;
584 device->al_writ_cnt++;
Lars Ellenbergb5bc8e02013-03-19 18:16:52 +0100585 }
586 }
Lars Ellenberg7ad651b2011-02-21 13:21:03 +0100587 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700588
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200589 drbd_md_put_buffer(device);
590 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700591
Philipp Reisner1b7ab152011-07-15 17:19:02 +0200592 return err;
593}
594
595
596static int w_al_write_transaction(struct drbd_work *w, int unused)
597{
598 struct update_al_work *aw = container_of(w, struct update_al_work, w);
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200599 struct drbd_device *device = aw->device;
Philipp Reisner1b7ab152011-07-15 17:19:02 +0200600 int err;
601
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200602 err = _al_write_transaction(device);
Philipp Reisner1b7ab152011-07-15 17:19:02 +0200603 aw->err = err;
604 complete(&aw->event);
605
606 return err != -EIO ? err : 0;
607}
608
609/* Calls from worker context (see w_restart_disk_io()) need to write the
610 transaction directly. Others came through generic_make_request(),
611 those need to delegate it to the worker. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200612static int al_write_transaction(struct drbd_device *device, bool delegate)
Philipp Reisner1b7ab152011-07-15 17:19:02 +0200613{
Lars Ellenberg56392d22013-03-19 18:16:48 +0100614 if (delegate) {
615 struct update_al_work al_work;
616 init_completion(&al_work.event);
617 al_work.w.cb = w_al_write_transaction;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200618 al_work.device = device;
619 drbd_queue_work_front(&first_peer_device(device)->connection->sender_work,
620 &al_work.w);
Lars Ellenberg56392d22013-03-19 18:16:48 +0100621 wait_for_completion(&al_work.event);
622 return al_work.err;
623 } else
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200624 return _al_write_transaction(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700625}
626
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200627static int _try_lc_del(struct drbd_device *device, struct lc_element *al_ext)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700628{
629 int rv;
630
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200631 spin_lock_irq(&device->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700632 rv = (al_ext->refcnt == 0);
633 if (likely(rv))
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200634 lc_del(device->act_log, al_ext);
635 spin_unlock_irq(&device->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700636
637 return rv;
638}
639
640/**
641 * drbd_al_shrink() - Removes all active extents form the activity log
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200642 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700643 *
644 * Removes all active extents form the activity log, waiting until
645 * the reference count of each entry dropped to 0 first, of course.
646 *
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200647 * You need to lock device->act_log with lc_try_lock() / lc_unlock()
Philipp Reisnerb411b362009-09-25 16:07:19 -0700648 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200649void drbd_al_shrink(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700650{
651 struct lc_element *al_ext;
652 int i;
653
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200654 D_ASSERT(device, test_bit(__LC_LOCKED, &device->act_log->flags));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700655
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200656 for (i = 0; i < device->act_log->nr_elements; i++) {
657 al_ext = lc_element_by_index(device->act_log, i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700658 if (al_ext->lc_number == LC_FREE)
659 continue;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200660 wait_event(device->al_wait, _try_lc_del(device, al_ext));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700661 }
662
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200663 wake_up(&device->al_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700664}
665
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200666int drbd_initialize_al(struct drbd_device *device, void *buffer)
Philipp Reisnerd752b262013-06-25 16:50:08 +0200667{
668 struct al_transaction_on_disk *al = buffer;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200669 struct drbd_md *md = &device->ldev->md;
Philipp Reisnerd752b262013-06-25 16:50:08 +0200670 sector_t al_base = md->md_offset + md->al_offset;
671 int al_size_4k = md->al_stripes * md->al_stripe_size_4k;
672 int i;
673
674 memset(al, 0, 4096);
675 al->magic = cpu_to_be32(DRBD_AL_MAGIC);
676 al->transaction_type = cpu_to_be16(AL_TR_INITIALIZED);
677 al->crc32c = cpu_to_be32(crc32c(0, al, 4096));
678
679 for (i = 0; i < al_size_4k; i++) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200680 int err = drbd_md_sync_page_io(device, device->ldev, al_base + i * 8, WRITE);
Philipp Reisnerd752b262013-06-25 16:50:08 +0200681 if (err)
682 return err;
683 }
684 return 0;
685}
686
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100687static int w_update_odbm(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700688{
689 struct update_odbm_work *udw = container_of(w, struct update_odbm_work, w);
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200690 struct drbd_device *device = udw->device;
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +0100691 struct sib_info sib = { .sib_reason = SIB_SYNC_PROGRESS, };
Philipp Reisnerb411b362009-09-25 16:07:19 -0700692
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200693 if (!get_ldev(device)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700694 if (__ratelimit(&drbd_ratelimit_state))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200695 drbd_warn(device, "Can not update on disk bitmap, local IO disabled.\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700696 kfree(udw);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100697 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700698 }
699
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200700 drbd_bm_write_page(device, rs_extent_to_bm_page(udw->enr));
701 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700702
703 kfree(udw);
704
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200705 if (drbd_bm_total_weight(device) <= device->rs_failed) {
706 switch (device->state.conn) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700707 case C_SYNC_SOURCE: case C_SYNC_TARGET:
708 case C_PAUSED_SYNC_S: case C_PAUSED_SYNC_T:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200709 drbd_resync_finished(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700710 default:
711 /* nothing to do */
712 break;
713 }
714 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200715 drbd_bcast_event(device, &sib);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700716
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100717 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700718}
719
720
721/* ATTENTION. The AL's extents are 4MB each, while the extents in the
722 * resync LRU-cache are 16MB each.
723 * The caller of this function has to hold an get_ldev() reference.
724 *
725 * TODO will be obsoleted once we have a caching lru of the on disk bitmap
726 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200727static void drbd_try_clear_on_disk_bm(struct drbd_device *device, sector_t sector,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700728 int count, int success)
729{
730 struct lc_element *e;
731 struct update_odbm_work *udw;
732
733 unsigned int enr;
734
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200735 D_ASSERT(device, atomic_read(&device->local_cnt));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700736
737 /* I simply assume that a sector/size pair never crosses
738 * a 16 MB extent border. (Currently this is true...) */
739 enr = BM_SECT_TO_EXT(sector);
740
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200741 e = lc_get(device->resync, enr);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700742 if (e) {
743 struct bm_extent *ext = lc_entry(e, struct bm_extent, lce);
744 if (ext->lce.lc_number == enr) {
745 if (success)
746 ext->rs_left -= count;
747 else
748 ext->rs_failed += count;
749 if (ext->rs_left < ext->rs_failed) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200750 drbd_warn(device, "BAD! sector=%llus enr=%u rs_left=%d "
Philipp Reisner975b2972011-11-17 10:11:47 +0100751 "rs_failed=%d count=%d cstate=%s\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -0700752 (unsigned long long)sector,
753 ext->lce.lc_number, ext->rs_left,
Philipp Reisner975b2972011-11-17 10:11:47 +0100754 ext->rs_failed, count,
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200755 drbd_conn_str(device->state.conn));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700756
Philipp Reisner975b2972011-11-17 10:11:47 +0100757 /* We don't expect to be able to clear more bits
758 * than have been set when we originally counted
759 * the set bits to cache that value in ext->rs_left.
760 * Whatever the reason (disconnect during resync,
761 * delayed local completion of an application write),
762 * try to fix it up by recounting here. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200763 ext->rs_left = drbd_bm_e_weight(device, enr);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700764 }
765 } else {
766 /* Normally this element should be in the cache,
767 * since drbd_rs_begin_io() pulled it already in.
768 *
769 * But maybe an application write finished, and we set
770 * something outside the resync lru_cache in sync.
771 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200772 int rs_left = drbd_bm_e_weight(device, enr);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700773 if (ext->flags != 0) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200774 drbd_warn(device, "changing resync lce: %d[%u;%02lx]"
Philipp Reisnerb411b362009-09-25 16:07:19 -0700775 " -> %d[%u;00]\n",
776 ext->lce.lc_number, ext->rs_left,
777 ext->flags, enr, rs_left);
778 ext->flags = 0;
779 }
780 if (ext->rs_failed) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200781 drbd_warn(device, "Kicking resync_lru element enr=%u "
Philipp Reisnerb411b362009-09-25 16:07:19 -0700782 "out with rs_failed=%d\n",
783 ext->lce.lc_number, ext->rs_failed);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700784 }
785 ext->rs_left = rs_left;
786 ext->rs_failed = success ? 0 : count;
Lars Ellenberg46a15bc2011-02-21 13:21:01 +0100787 /* we don't keep a persistent log of the resync lru,
788 * we can commit any change right away. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200789 lc_committed(device->resync);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700790 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200791 lc_put(device->resync, &ext->lce);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700792 /* no race, we are within the al_lock! */
793
794 if (ext->rs_left == ext->rs_failed) {
795 ext->rs_failed = 0;
796
797 udw = kmalloc(sizeof(*udw), GFP_ATOMIC);
798 if (udw) {
799 udw->enr = ext->lce.lc_number;
800 udw->w.cb = w_update_odbm;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200801 udw->device = device;
802 drbd_queue_work_front(&first_peer_device(device)->connection->sender_work,
803 &udw->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700804 } else {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200805 drbd_warn(device, "Could not kmalloc an udw\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700806 }
807 }
808 } else {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200809 drbd_err(device, "lc_get() failed! locked=%d/%d flags=%lu\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200810 device->resync_locked,
811 device->resync->nr_elements,
812 device->resync->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700813 }
814}
815
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200816void drbd_advance_rs_marks(struct drbd_device *device, unsigned long still_to_go)
Lars Ellenbergc6ea14d2010-11-05 09:23:37 +0100817{
818 unsigned long now = jiffies;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200819 unsigned long last = device->rs_mark_time[device->rs_last_mark];
820 int next = (device->rs_last_mark + 1) % DRBD_SYNC_MARKS;
Lars Ellenbergc6ea14d2010-11-05 09:23:37 +0100821 if (time_after_eq(now, last + DRBD_SYNC_MARK_STEP)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200822 if (device->rs_mark_left[device->rs_last_mark] != still_to_go &&
823 device->state.conn != C_PAUSED_SYNC_T &&
824 device->state.conn != C_PAUSED_SYNC_S) {
825 device->rs_mark_time[next] = now;
826 device->rs_mark_left[next] = still_to_go;
827 device->rs_last_mark = next;
Lars Ellenbergc6ea14d2010-11-05 09:23:37 +0100828 }
829 }
830}
831
Philipp Reisnerb411b362009-09-25 16:07:19 -0700832/* clear the bit corresponding to the piece of storage in question:
833 * size byte of data starting from sector. Only clear a bits of the affected
834 * one ore more _aligned_ BM_BLOCK_SIZE blocks.
835 *
836 * called by worker on C_SYNC_TARGET and receiver on SyncSource.
837 *
838 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200839void __drbd_set_in_sync(struct drbd_device *device, sector_t sector, int size,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700840 const char *file, const unsigned int line)
841{
842 /* Is called from worker and receiver context _only_ */
843 unsigned long sbnr, ebnr, lbnr;
844 unsigned long count = 0;
845 sector_t esector, nr_sectors;
846 int wake_up = 0;
847 unsigned long flags;
848
Andreas Gruenbacherc670a392011-02-21 12:41:39 +0100849 if (size <= 0 || !IS_ALIGNED(size, 512) || size > DRBD_MAX_BIO_SIZE) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200850 drbd_err(device, "drbd_set_in_sync: sector=%llus size=%d nonsense!\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -0700851 (unsigned long long)sector, size);
852 return;
853 }
Philipp Reisner518a4d52012-10-19 14:21:22 +0200854
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200855 if (!get_ldev(device))
Philipp Reisner518a4d52012-10-19 14:21:22 +0200856 return; /* no disk, no metadata, no bitmap to clear bits in */
857
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200858 nr_sectors = drbd_get_capacity(device->this_bdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700859 esector = sector + (size >> 9) - 1;
860
Andreas Gruenbacher841ce242010-12-15 19:31:20 +0100861 if (!expect(sector < nr_sectors))
Philipp Reisner518a4d52012-10-19 14:21:22 +0200862 goto out;
Andreas Gruenbacher841ce242010-12-15 19:31:20 +0100863 if (!expect(esector < nr_sectors))
864 esector = nr_sectors - 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700865
866 lbnr = BM_SECT_TO_BIT(nr_sectors-1);
867
868 /* we clear it (in sync).
869 * round up start sector, round down end sector. we make sure we only
870 * clear full, aligned, BM_BLOCK_SIZE (4K) blocks */
871 if (unlikely(esector < BM_SECT_PER_BIT-1))
Philipp Reisner518a4d52012-10-19 14:21:22 +0200872 goto out;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700873 if (unlikely(esector == (nr_sectors-1)))
874 ebnr = lbnr;
875 else
876 ebnr = BM_SECT_TO_BIT(esector - (BM_SECT_PER_BIT-1));
877 sbnr = BM_SECT_TO_BIT(sector + BM_SECT_PER_BIT-1);
878
Philipp Reisnerb411b362009-09-25 16:07:19 -0700879 if (sbnr > ebnr)
Philipp Reisner518a4d52012-10-19 14:21:22 +0200880 goto out;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700881
882 /*
883 * ok, (capacity & 7) != 0 sometimes, but who cares...
884 * we count rs_{total,left} in bits, not sectors.
885 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200886 count = drbd_bm_clear_bits(device, sbnr, ebnr);
Philipp Reisner518a4d52012-10-19 14:21:22 +0200887 if (count) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200888 drbd_advance_rs_marks(device, drbd_bm_total_weight(device));
889 spin_lock_irqsave(&device->al_lock, flags);
890 drbd_try_clear_on_disk_bm(device, sector, count, true);
891 spin_unlock_irqrestore(&device->al_lock, flags);
Lars Ellenberg1d7734a2010-08-11 21:21:50 +0200892
Philipp Reisnerb411b362009-09-25 16:07:19 -0700893 /* just wake_up unconditional now, various lc_chaged(),
894 * lc_put() in drbd_try_clear_on_disk_bm(). */
895 wake_up = 1;
896 }
Philipp Reisner518a4d52012-10-19 14:21:22 +0200897out:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200898 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700899 if (wake_up)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200900 wake_up(&device->al_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700901}
902
903/*
904 * this is intended to set one request worth of data out of sync.
905 * affects at least 1 bit,
Lars Ellenberg1816a2b2010-11-11 15:19:07 +0100906 * and at most 1+DRBD_MAX_BIO_SIZE/BM_BLOCK_SIZE bits.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700907 *
908 * called by tl_clear and drbd_send_dblock (==drbd_make_request).
909 * so this can be _any_ process.
910 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200911int __drbd_set_out_of_sync(struct drbd_device *device, sector_t sector, int size,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700912 const char *file, const unsigned int line)
913{
Philipp Reisner376694a2011-11-07 10:54:28 +0100914 unsigned long sbnr, ebnr, flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700915 sector_t esector, nr_sectors;
Philipp Reisner73a01a12010-10-27 14:33:00 +0200916 unsigned int enr, count = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700917 struct lc_element *e;
918
Lars Ellenberg81a35372012-07-30 09:00:54 +0200919 /* this should be an empty REQ_FLUSH */
920 if (size == 0)
921 return 0;
922
923 if (size < 0 || !IS_ALIGNED(size, 512) || size > DRBD_MAX_BIO_SIZE) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200924 drbd_err(device, "sector: %llus, size: %d\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -0700925 (unsigned long long)sector, size);
Philipp Reisner73a01a12010-10-27 14:33:00 +0200926 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700927 }
928
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200929 if (!get_ldev(device))
Philipp Reisner73a01a12010-10-27 14:33:00 +0200930 return 0; /* no disk, no metadata, no bitmap to set bits in */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700931
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200932 nr_sectors = drbd_get_capacity(device->this_bdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700933 esector = sector + (size >> 9) - 1;
934
Andreas Gruenbacher841ce242010-12-15 19:31:20 +0100935 if (!expect(sector < nr_sectors))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700936 goto out;
Andreas Gruenbacher841ce242010-12-15 19:31:20 +0100937 if (!expect(esector < nr_sectors))
938 esector = nr_sectors - 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700939
Philipp Reisnerb411b362009-09-25 16:07:19 -0700940 /* we set it out of sync,
941 * we do not need to round anything here */
942 sbnr = BM_SECT_TO_BIT(sector);
943 ebnr = BM_SECT_TO_BIT(esector);
944
Philipp Reisnerb411b362009-09-25 16:07:19 -0700945 /* ok, (capacity & 7) != 0 sometimes, but who cares...
946 * we count rs_{total,left} in bits, not sectors. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200947 spin_lock_irqsave(&device->al_lock, flags);
948 count = drbd_bm_set_bits(device, sbnr, ebnr);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700949
950 enr = BM_SECT_TO_EXT(sector);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200951 e = lc_find(device->resync, enr);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700952 if (e)
953 lc_entry(e, struct bm_extent, lce)->rs_left += count;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200954 spin_unlock_irqrestore(&device->al_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700955
956out:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200957 put_ldev(device);
Philipp Reisner73a01a12010-10-27 14:33:00 +0200958
959 return count;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700960}
961
962static
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200963struct bm_extent *_bme_get(struct drbd_device *device, unsigned int enr)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700964{
965 struct lc_element *e;
966 struct bm_extent *bm_ext;
967 int wakeup = 0;
968 unsigned long rs_flags;
969
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200970 spin_lock_irq(&device->al_lock);
971 if (device->resync_locked > device->resync->nr_elements/2) {
972 spin_unlock_irq(&device->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700973 return NULL;
974 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200975 e = lc_get(device->resync, enr);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700976 bm_ext = e ? lc_entry(e, struct bm_extent, lce) : NULL;
977 if (bm_ext) {
978 if (bm_ext->lce.lc_number != enr) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200979 bm_ext->rs_left = drbd_bm_e_weight(device, enr);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700980 bm_ext->rs_failed = 0;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200981 lc_committed(device->resync);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700982 wakeup = 1;
983 }
984 if (bm_ext->lce.refcnt == 1)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200985 device->resync_locked++;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700986 set_bit(BME_NO_WRITES, &bm_ext->flags);
987 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200988 rs_flags = device->resync->flags;
989 spin_unlock_irq(&device->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700990 if (wakeup)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200991 wake_up(&device->al_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700992
993 if (!bm_ext) {
994 if (rs_flags & LC_STARVING)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200995 drbd_warn(device, "Have to wait for element"
Philipp Reisnerb411b362009-09-25 16:07:19 -0700996 " (resync LRU too small?)\n");
Lars Ellenberg46a15bc2011-02-21 13:21:01 +0100997 BUG_ON(rs_flags & LC_LOCKED);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700998 }
999
1000 return bm_ext;
1001}
1002
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001003static int _is_in_al(struct drbd_device *device, unsigned int enr)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001004{
Lars Ellenberg46a15bc2011-02-21 13:21:01 +01001005 int rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001006
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001007 spin_lock_irq(&device->al_lock);
1008 rv = lc_is_used(device->act_log, enr);
1009 spin_unlock_irq(&device->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001010
Philipp Reisnerb411b362009-09-25 16:07:19 -07001011 return rv;
1012}
1013
1014/**
1015 * drbd_rs_begin_io() - Gets an extent in the resync LRU cache and sets it to BME_LOCKED
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001016 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001017 * @sector: The sector number.
1018 *
Lars Ellenberg80a40e42010-08-11 23:28:00 +02001019 * This functions sleeps on al_wait. Returns 0 on success, -EINTR if interrupted.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001020 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001021int drbd_rs_begin_io(struct drbd_device *device, sector_t sector)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001022{
1023 unsigned int enr = BM_SECT_TO_EXT(sector);
1024 struct bm_extent *bm_ext;
1025 int i, sig;
Philipp Reisnerf91ab622010-11-09 13:59:41 +01001026 int sa = 200; /* Step aside 200 times, then grab the extent and let app-IO wait.
1027 200 times -> 20 seconds. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001028
Philipp Reisnerf91ab622010-11-09 13:59:41 +01001029retry:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001030 sig = wait_event_interruptible(device->al_wait,
1031 (bm_ext = _bme_get(device, enr)));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001032 if (sig)
Lars Ellenberg80a40e42010-08-11 23:28:00 +02001033 return -EINTR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001034
1035 if (test_bit(BME_LOCKED, &bm_ext->flags))
Lars Ellenberg80a40e42010-08-11 23:28:00 +02001036 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001037
1038 for (i = 0; i < AL_EXT_PER_BM_SECT; i++) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001039 sig = wait_event_interruptible(device->al_wait,
1040 !_is_in_al(device, enr * AL_EXT_PER_BM_SECT + i) ||
Philipp Reisnerc507f462010-11-22 15:49:17 +01001041 test_bit(BME_PRIORITY, &bm_ext->flags));
Philipp Reisnerf91ab622010-11-09 13:59:41 +01001042
1043 if (sig || (test_bit(BME_PRIORITY, &bm_ext->flags) && sa)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001044 spin_lock_irq(&device->al_lock);
1045 if (lc_put(device->resync, &bm_ext->lce) == 0) {
Philipp Reisnerf91ab622010-11-09 13:59:41 +01001046 bm_ext->flags = 0; /* clears BME_NO_WRITES and eventually BME_PRIORITY */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001047 device->resync_locked--;
1048 wake_up(&device->al_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001049 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001050 spin_unlock_irq(&device->al_lock);
Philipp Reisnerf91ab622010-11-09 13:59:41 +01001051 if (sig)
1052 return -EINTR;
1053 if (schedule_timeout_interruptible(HZ/10))
1054 return -EINTR;
Philipp Reisnerc507f462010-11-22 15:49:17 +01001055 if (sa && --sa == 0)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001056 drbd_warn(device, "drbd_rs_begin_io() stepped aside for 20sec."
Philipp Reisnerc507f462010-11-22 15:49:17 +01001057 "Resync stalled?\n");
Philipp Reisnerf91ab622010-11-09 13:59:41 +01001058 goto retry;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001059 }
1060 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001061 set_bit(BME_LOCKED, &bm_ext->flags);
Lars Ellenberg80a40e42010-08-11 23:28:00 +02001062 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001063}
1064
1065/**
1066 * drbd_try_rs_begin_io() - Gets an extent in the resync LRU cache, does not sleep
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001067 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001068 * @sector: The sector number.
1069 *
1070 * Gets an extent in the resync LRU cache, sets it to BME_NO_WRITES, then
1071 * tries to set it to BME_LOCKED. Returns 0 upon success, and -EAGAIN
1072 * if there is still application IO going on in this area.
1073 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001074int drbd_try_rs_begin_io(struct drbd_device *device, sector_t sector)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001075{
1076 unsigned int enr = BM_SECT_TO_EXT(sector);
1077 const unsigned int al_enr = enr*AL_EXT_PER_BM_SECT;
1078 struct lc_element *e;
1079 struct bm_extent *bm_ext;
1080 int i;
1081
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001082 spin_lock_irq(&device->al_lock);
1083 if (device->resync_wenr != LC_FREE && device->resync_wenr != enr) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001084 /* in case you have very heavy scattered io, it may
1085 * stall the syncer undefined if we give up the ref count
1086 * when we try again and requeue.
1087 *
1088 * if we don't give up the refcount, but the next time
1089 * we are scheduled this extent has been "synced" by new
1090 * application writes, we'd miss the lc_put on the
1091 * extent we keep the refcount on.
1092 * so we remembered which extent we had to try again, and
1093 * if the next requested one is something else, we do
1094 * the lc_put here...
1095 * we also have to wake_up
1096 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001097 e = lc_find(device->resync, device->resync_wenr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001098 bm_ext = e ? lc_entry(e, struct bm_extent, lce) : NULL;
1099 if (bm_ext) {
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001100 D_ASSERT(device, !test_bit(BME_LOCKED, &bm_ext->flags));
1101 D_ASSERT(device, test_bit(BME_NO_WRITES, &bm_ext->flags));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001102 clear_bit(BME_NO_WRITES, &bm_ext->flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001103 device->resync_wenr = LC_FREE;
1104 if (lc_put(device->resync, &bm_ext->lce) == 0)
1105 device->resync_locked--;
1106 wake_up(&device->al_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001107 } else {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001108 drbd_alert(device, "LOGIC BUG\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07001109 }
1110 }
1111 /* TRY. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001112 e = lc_try_get(device->resync, enr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001113 bm_ext = e ? lc_entry(e, struct bm_extent, lce) : NULL;
1114 if (bm_ext) {
1115 if (test_bit(BME_LOCKED, &bm_ext->flags))
1116 goto proceed;
1117 if (!test_and_set_bit(BME_NO_WRITES, &bm_ext->flags)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001118 device->resync_locked++;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001119 } else {
1120 /* we did set the BME_NO_WRITES,
1121 * but then could not set BME_LOCKED,
1122 * so we tried again.
1123 * drop the extra reference. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001124 bm_ext->lce.refcnt--;
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001125 D_ASSERT(device, bm_ext->lce.refcnt > 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001126 }
1127 goto check_al;
1128 } else {
1129 /* do we rather want to try later? */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001130 if (device->resync_locked > device->resync->nr_elements-3)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001131 goto try_again;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001132 /* Do or do not. There is no try. -- Yoda */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001133 e = lc_get(device->resync, enr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001134 bm_ext = e ? lc_entry(e, struct bm_extent, lce) : NULL;
1135 if (!bm_ext) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001136 const unsigned long rs_flags = device->resync->flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001137 if (rs_flags & LC_STARVING)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001138 drbd_warn(device, "Have to wait for element"
Philipp Reisnerb411b362009-09-25 16:07:19 -07001139 " (resync LRU too small?)\n");
Lars Ellenberg46a15bc2011-02-21 13:21:01 +01001140 BUG_ON(rs_flags & LC_LOCKED);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001141 goto try_again;
1142 }
1143 if (bm_ext->lce.lc_number != enr) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001144 bm_ext->rs_left = drbd_bm_e_weight(device, enr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001145 bm_ext->rs_failed = 0;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001146 lc_committed(device->resync);
1147 wake_up(&device->al_wait);
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001148 D_ASSERT(device, test_bit(BME_LOCKED, &bm_ext->flags) == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001149 }
1150 set_bit(BME_NO_WRITES, &bm_ext->flags);
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001151 D_ASSERT(device, bm_ext->lce.refcnt == 1);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001152 device->resync_locked++;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001153 goto check_al;
1154 }
1155check_al:
Philipp Reisnerb411b362009-09-25 16:07:19 -07001156 for (i = 0; i < AL_EXT_PER_BM_SECT; i++) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001157 if (lc_is_used(device->act_log, al_enr+i))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001158 goto try_again;
1159 }
1160 set_bit(BME_LOCKED, &bm_ext->flags);
1161proceed:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001162 device->resync_wenr = LC_FREE;
1163 spin_unlock_irq(&device->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001164 return 0;
1165
1166try_again:
Philipp Reisnerb411b362009-09-25 16:07:19 -07001167 if (bm_ext)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001168 device->resync_wenr = enr;
1169 spin_unlock_irq(&device->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001170 return -EAGAIN;
1171}
1172
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001173void drbd_rs_complete_io(struct drbd_device *device, sector_t sector)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001174{
1175 unsigned int enr = BM_SECT_TO_EXT(sector);
1176 struct lc_element *e;
1177 struct bm_extent *bm_ext;
1178 unsigned long flags;
1179
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001180 spin_lock_irqsave(&device->al_lock, flags);
1181 e = lc_find(device->resync, enr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001182 bm_ext = e ? lc_entry(e, struct bm_extent, lce) : NULL;
1183 if (!bm_ext) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001184 spin_unlock_irqrestore(&device->al_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001185 if (__ratelimit(&drbd_ratelimit_state))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001186 drbd_err(device, "drbd_rs_complete_io() called, but extent not found\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07001187 return;
1188 }
1189
1190 if (bm_ext->lce.refcnt == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001191 spin_unlock_irqrestore(&device->al_lock, flags);
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001192 drbd_err(device, "drbd_rs_complete_io(,%llu [=%u]) called, "
Philipp Reisnerb411b362009-09-25 16:07:19 -07001193 "but refcnt is 0!?\n",
1194 (unsigned long long)sector, enr);
1195 return;
1196 }
1197
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001198 if (lc_put(device->resync, &bm_ext->lce) == 0) {
Philipp Reisnere3555d82010-11-07 15:56:29 +01001199 bm_ext->flags = 0; /* clear BME_LOCKED, BME_NO_WRITES and BME_PRIORITY */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001200 device->resync_locked--;
1201 wake_up(&device->al_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001202 }
1203
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001204 spin_unlock_irqrestore(&device->al_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001205}
1206
1207/**
1208 * drbd_rs_cancel_all() - Removes all extents from the resync LRU (even BME_LOCKED)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001209 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001210 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001211void drbd_rs_cancel_all(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001212{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001213 spin_lock_irq(&device->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001214
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001215 if (get_ldev_if_state(device, D_FAILED)) { /* Makes sure ->resync is there. */
1216 lc_reset(device->resync);
1217 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001218 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001219 device->resync_locked = 0;
1220 device->resync_wenr = LC_FREE;
1221 spin_unlock_irq(&device->al_lock);
1222 wake_up(&device->al_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001223}
1224
1225/**
1226 * drbd_rs_del_all() - Gracefully remove all extents from the resync LRU
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001227 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001228 *
1229 * Returns 0 upon success, -EAGAIN if at least one reference count was
1230 * not zero.
1231 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001232int drbd_rs_del_all(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001233{
1234 struct lc_element *e;
1235 struct bm_extent *bm_ext;
1236 int i;
1237
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001238 spin_lock_irq(&device->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001239
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001240 if (get_ldev_if_state(device, D_FAILED)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001241 /* ok, ->resync is there. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001242 for (i = 0; i < device->resync->nr_elements; i++) {
1243 e = lc_element_by_index(device->resync, i);
Philipp Reisnerb2b163d2010-04-02 08:40:33 +02001244 bm_ext = lc_entry(e, struct bm_extent, lce);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001245 if (bm_ext->lce.lc_number == LC_FREE)
1246 continue;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001247 if (bm_ext->lce.lc_number == device->resync_wenr) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001248 drbd_info(device, "dropping %u in drbd_rs_del_all, apparently"
Philipp Reisnerb411b362009-09-25 16:07:19 -07001249 " got 'synced' by application io\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001250 device->resync_wenr);
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001251 D_ASSERT(device, !test_bit(BME_LOCKED, &bm_ext->flags));
1252 D_ASSERT(device, test_bit(BME_NO_WRITES, &bm_ext->flags));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001253 clear_bit(BME_NO_WRITES, &bm_ext->flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001254 device->resync_wenr = LC_FREE;
1255 lc_put(device->resync, &bm_ext->lce);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001256 }
1257 if (bm_ext->lce.refcnt != 0) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001258 drbd_info(device, "Retrying drbd_rs_del_all() later. "
Philipp Reisnerb411b362009-09-25 16:07:19 -07001259 "refcnt=%d\n", bm_ext->lce.refcnt);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001260 put_ldev(device);
1261 spin_unlock_irq(&device->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001262 return -EAGAIN;
1263 }
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001264 D_ASSERT(device, !test_bit(BME_LOCKED, &bm_ext->flags));
1265 D_ASSERT(device, !test_bit(BME_NO_WRITES, &bm_ext->flags));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001266 lc_del(device->resync, &bm_ext->lce);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001267 }
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001268 D_ASSERT(device, device->resync->used == 0);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001269 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001270 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001271 spin_unlock_irq(&device->al_lock);
1272 wake_up(&device->al_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001273
1274 return 0;
1275}
1276
1277/**
1278 * drbd_rs_failed_io() - Record information on a failure to resync the specified blocks
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001279 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001280 * @sector: The sector number.
1281 * @size: Size of failed IO operation, in byte.
1282 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001283void drbd_rs_failed_io(struct drbd_device *device, sector_t sector, int size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001284{
1285 /* Is called from worker and receiver context _only_ */
1286 unsigned long sbnr, ebnr, lbnr;
1287 unsigned long count;
1288 sector_t esector, nr_sectors;
1289 int wake_up = 0;
1290
Andreas Gruenbacherc670a392011-02-21 12:41:39 +01001291 if (size <= 0 || !IS_ALIGNED(size, 512) || size > DRBD_MAX_BIO_SIZE) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001292 drbd_err(device, "drbd_rs_failed_io: sector=%llus size=%d nonsense!\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07001293 (unsigned long long)sector, size);
1294 return;
1295 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001296 nr_sectors = drbd_get_capacity(device->this_bdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001297 esector = sector + (size >> 9) - 1;
1298
Andreas Gruenbacher841ce242010-12-15 19:31:20 +01001299 if (!expect(sector < nr_sectors))
1300 return;
1301 if (!expect(esector < nr_sectors))
1302 esector = nr_sectors - 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001303
1304 lbnr = BM_SECT_TO_BIT(nr_sectors-1);
1305
1306 /*
1307 * round up start sector, round down end sector. we make sure we only
1308 * handle full, aligned, BM_BLOCK_SIZE (4K) blocks */
1309 if (unlikely(esector < BM_SECT_PER_BIT-1))
1310 return;
1311 if (unlikely(esector == (nr_sectors-1)))
1312 ebnr = lbnr;
1313 else
1314 ebnr = BM_SECT_TO_BIT(esector - (BM_SECT_PER_BIT-1));
1315 sbnr = BM_SECT_TO_BIT(sector + BM_SECT_PER_BIT-1);
1316
1317 if (sbnr > ebnr)
1318 return;
1319
1320 /*
1321 * ok, (capacity & 7) != 0 sometimes, but who cares...
1322 * we count rs_{total,left} in bits, not sectors.
1323 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001324 spin_lock_irq(&device->al_lock);
1325 count = drbd_bm_count_bits(device, sbnr, ebnr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001326 if (count) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001327 device->rs_failed += count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001328
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001329 if (get_ldev(device)) {
1330 drbd_try_clear_on_disk_bm(device, sector, count, false);
1331 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001332 }
1333
1334 /* just wake_up unconditional now, various lc_chaged(),
1335 * lc_put() in drbd_try_clear_on_disk_bm(). */
1336 wake_up = 1;
1337 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001338 spin_unlock_irq(&device->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001339 if (wake_up)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001340 wake_up(&device->al_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001341}