block: Add and use op_stat_group() for indexing disk_stat fields.
[linux-block.git] / drivers / lightnvm / pblk-read.c
CommitLineData
a4bd217b
JG
1/*
2 * Copyright (C) 2016 CNEX Labs
3 * Initial release: Javier Gonzalez <javier@cnexlabs.com>
4 * Matias Bjorling <matias@cnexlabs.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * pblk-read.c - pblk's read path
16 */
17
18#include "pblk.h"
19
20/*
21 * There is no guarantee that the value read from cache has not been updated and
22 * resides at another location in the cache. We guarantee though that if the
23 * value is read from the cache, it belongs to the mapped lba. In order to
24 * guarantee and order between writes and reads are ordered, a flush must be
25 * issued.
26 */
27static int pblk_read_from_cache(struct pblk *pblk, struct bio *bio,
28 sector_t lba, struct ppa_addr ppa,
75cb8e93 29 int bio_iter, bool advanced_bio)
a4bd217b 30{
880eda54 31#ifdef CONFIG_NVM_PBLK_DEBUG
a4bd217b
JG
32 /* Callers must ensure that the ppa points to a cache address */
33 BUG_ON(pblk_ppa_empty(ppa));
34 BUG_ON(!pblk_addr_in_cache(ppa));
35#endif
36
75cb8e93
JG
37 return pblk_rb_copy_to_bio(&pblk->rwb, bio, lba, ppa,
38 bio_iter, advanced_bio);
a4bd217b
JG
39}
40
41static void pblk_read_ppalist_rq(struct pblk *pblk, struct nvm_rq *rqd,
87cc40bb
JG
42 struct bio *bio, sector_t blba,
43 unsigned long *read_bitmap)
a4bd217b 44{
a4809fee 45 struct pblk_sec_meta *meta_list = rqd->meta_list;
a4bd217b 46 struct ppa_addr ppas[PBLK_MAX_REQ_ADDRS];
a4bd217b 47 int nr_secs = rqd->nr_ppas;
75cb8e93 48 bool advanced_bio = false;
a4bd217b
JG
49 int i, j = 0;
50
a4bd217b
JG
51 pblk_lookup_l2p_seq(pblk, ppas, blba, nr_secs);
52
53 for (i = 0; i < nr_secs; i++) {
54 struct ppa_addr p = ppas[i];
55 sector_t lba = blba + i;
56
57retry:
58 if (pblk_ppa_empty(p)) {
59 WARN_ON(test_and_set_bit(i, read_bitmap));
a4809fee 60 meta_list[i].lba = cpu_to_le64(ADDR_EMPTY);
75cb8e93
JG
61
62 if (unlikely(!advanced_bio)) {
63 bio_advance(bio, (i) * PBLK_EXPOSED_PAGE_SIZE);
64 advanced_bio = true;
65 }
66
67 goto next;
a4bd217b
JG
68 }
69
70 /* Try to read from write buffer. The address is later checked
71 * on the write buffer to prevent retrieving overwritten data.
72 */
73 if (pblk_addr_in_cache(p)) {
75cb8e93
JG
74 if (!pblk_read_from_cache(pblk, bio, lba, p, i,
75 advanced_bio)) {
a4bd217b
JG
76 pblk_lookup_l2p_seq(pblk, &p, lba, 1);
77 goto retry;
78 }
79 WARN_ON(test_and_set_bit(i, read_bitmap));
a4809fee 80 meta_list[i].lba = cpu_to_le64(lba);
75cb8e93 81 advanced_bio = true;
880eda54 82#ifdef CONFIG_NVM_PBLK_DEBUG
db7ada33
JG
83 atomic_long_inc(&pblk->cache_reads);
84#endif
a4bd217b
JG
85 } else {
86 /* Read from media non-cached sectors */
87 rqd->ppa_list[j++] = p;
88 }
89
75cb8e93 90next:
a4bd217b
JG
91 if (advanced_bio)
92 bio_advance(bio, PBLK_EXPOSED_PAGE_SIZE);
93 }
94
f9c10152
JG
95 if (pblk_io_aligned(pblk, nr_secs))
96 rqd->flags = pblk_set_read_mode(pblk, PBLK_READ_SEQUENTIAL);
97 else
98 rqd->flags = pblk_set_read_mode(pblk, PBLK_READ_RANDOM);
99
880eda54 100#ifdef CONFIG_NVM_PBLK_DEBUG
a4bd217b
JG
101 atomic_long_add(nr_secs, &pblk->inflight_reads);
102#endif
103}
104
a4bd217b 105
03a34b2d
JG
106static void pblk_read_check_seq(struct pblk *pblk, struct nvm_rq *rqd,
107 sector_t blba)
a4809fee 108{
03a34b2d
JG
109 struct pblk_sec_meta *meta_lba_list = rqd->meta_list;
110 int nr_lbas = rqd->nr_ppas;
a4809fee
JG
111 int i;
112
113 for (i = 0; i < nr_lbas; i++) {
310df582 114 u64 lba = le64_to_cpu(meta_lba_list[i].lba);
a4809fee
JG
115
116 if (lba == ADDR_EMPTY)
117 continue;
118
03a34b2d 119 if (lba != blba + i) {
880eda54 120#ifdef CONFIG_NVM_PBLK_DEBUG
03a34b2d
JG
121 struct ppa_addr *p;
122
123 p = (nr_lbas == 1) ? &rqd->ppa_list[i] : &rqd->ppa_addr;
4e495a46 124 print_ppa(pblk, p, "seq", i);
03a34b2d 125#endif
4e495a46 126 pblk_err(pblk, "corrupted read LBA (%llu/%llu)\n",
03a34b2d
JG
127 lba, (u64)blba + i);
128 WARN_ON(1);
129 }
a4809fee
JG
130 }
131}
132
310df582
JG
133/*
134 * There can be holes in the lba list.
135 */
03a34b2d
JG
136static void pblk_read_check_rand(struct pblk *pblk, struct nvm_rq *rqd,
137 u64 *lba_list, int nr_lbas)
310df582 138{
03a34b2d 139 struct pblk_sec_meta *meta_lba_list = rqd->meta_list;
310df582
JG
140 int i, j;
141
142 for (i = 0, j = 0; i < nr_lbas; i++) {
143 u64 lba = lba_list[i];
144 u64 meta_lba;
145
146 if (lba == ADDR_EMPTY)
147 continue;
148
03a34b2d 149 meta_lba = le64_to_cpu(meta_lba_list[j].lba);
310df582
JG
150
151 if (lba != meta_lba) {
880eda54 152#ifdef CONFIG_NVM_PBLK_DEBUG
03a34b2d
JG
153 struct ppa_addr *p;
154 int nr_ppas = rqd->nr_ppas;
155
156 p = (nr_ppas == 1) ? &rqd->ppa_list[j] : &rqd->ppa_addr;
4e495a46 157 print_ppa(pblk, p, "seq", j);
03a34b2d 158#endif
4e495a46 159 pblk_err(pblk, "corrupted read LBA (%llu/%llu)\n",
310df582
JG
160 lba, meta_lba);
161 WARN_ON(1);
162 }
03a34b2d
JG
163
164 j++;
310df582 165 }
03a34b2d
JG
166
167 WARN_ONCE(j != rqd->nr_ppas, "pblk: corrupted random request\n");
310df582
JG
168}
169
7bd4d370
JG
170static void pblk_read_put_rqd_kref(struct pblk *pblk, struct nvm_rq *rqd)
171{
172 struct ppa_addr *ppa_list;
173 int i;
174
175 ppa_list = (rqd->nr_ppas > 1) ? rqd->ppa_list : &rqd->ppa_addr;
176
177 for (i = 0; i < rqd->nr_ppas; i++) {
178 struct ppa_addr ppa = ppa_list[i];
179 struct pblk_line *line;
180
b1bcfda1 181 line = &pblk->lines[pblk_ppa_to_line(ppa)];
7bd4d370
JG
182 kref_put(&line->ref, pblk_line_put_wq);
183 }
184}
185
186static void pblk_end_user_read(struct bio *bio)
187{
880eda54 188#ifdef CONFIG_NVM_PBLK_DEBUG
7bd4d370
JG
189 WARN_ONCE(bio->bi_status, "pblk: corrupted read bio\n");
190#endif
191 bio_endio(bio);
7bd4d370
JG
192}
193
194static void __pblk_end_io_read(struct pblk *pblk, struct nvm_rq *rqd,
195 bool put_line)
a4bd217b 196{
998ba629 197 struct nvm_tgt_dev *dev = pblk->dev;
084ec9ba 198 struct pblk_g_ctx *r_ctx = nvm_rq_to_pdu(rqd);
87cc40bb 199 struct bio *int_bio = rqd->bio;
998ba629
JG
200 unsigned long start_time = r_ctx->start_time;
201
ddcf35d3 202 generic_end_io_acct(dev->q, REQ_OP_READ, &pblk->disk->part0, start_time);
a4bd217b
JG
203
204 if (rqd->error)
205 pblk_log_read_err(pblk, rqd);
a4bd217b 206
03a34b2d 207 pblk_read_check_seq(pblk, rqd, r_ctx->lba);
a4809fee 208
87cc40bb
JG
209 if (int_bio)
210 bio_put(int_bio);
084ec9ba 211
7bd4d370
JG
212 if (put_line)
213 pblk_read_put_rqd_kref(pblk, rqd);
a4bd217b 214
880eda54 215#ifdef CONFIG_NVM_PBLK_DEBUG
a4bd217b
JG
216 atomic_long_add(rqd->nr_ppas, &pblk->sync_reads);
217 atomic_long_sub(rqd->nr_ppas, &pblk->inflight_reads);
218#endif
219
e2cddf20 220 pblk_free_rqd(pblk, rqd, PBLK_READ);
588726d3 221 atomic_dec(&pblk->inflight_io);
a4bd217b
JG
222}
223
7bd4d370
JG
224static void pblk_end_io_read(struct nvm_rq *rqd)
225{
226 struct pblk *pblk = rqd->private;
87cc40bb
JG
227 struct pblk_g_ctx *r_ctx = nvm_rq_to_pdu(rqd);
228 struct bio *bio = (struct bio *)r_ctx->private;
7bd4d370 229
87cc40bb 230 pblk_end_user_read(bio);
7bd4d370
JG
231 __pblk_end_io_read(pblk, rqd, true);
232}
233
11f6ad69 234static void pblk_end_partial_read(struct nvm_rq *rqd)
a4bd217b 235{
11f6ad69
HL
236 struct pblk *pblk = rqd->private;
237 struct pblk_g_ctx *r_ctx = nvm_rq_to_pdu(rqd);
238 struct pblk_pr_ctx *pr_ctx = r_ctx->private;
239 struct bio *new_bio = rqd->bio;
240 struct bio *bio = pr_ctx->orig_bio;
a4bd217b 241 struct bio_vec src_bv, dst_bv;
11f6ad69
HL
242 struct pblk_sec_meta *meta_list = rqd->meta_list;
243 int bio_init_idx = pr_ctx->bio_init_idx;
244 unsigned long *read_bitmap = pr_ctx->bitmap;
245 int nr_secs = pr_ctx->orig_nr_secs;
a4bd217b 246 int nr_holes = nr_secs - bitmap_weight(read_bitmap, nr_secs);
11f6ad69
HL
247 __le64 *lba_list_mem, *lba_list_media;
248 void *src_p, *dst_p;
249 int hole, i;
a4bd217b 250
0f9248cf 251 if (unlikely(nr_holes == 1)) {
7bd4d370
JG
252 struct ppa_addr ppa;
253
254 ppa = rqd->ppa_addr;
11f6ad69
HL
255 rqd->ppa_list = pr_ctx->ppa_ptr;
256 rqd->dma_ppa_list = pr_ctx->dma_ppa_list;
7bd4d370 257 rqd->ppa_list[0] = ppa;
a4bd217b
JG
258 }
259
11f6ad69
HL
260 /* Re-use allocated memory for intermediate lbas */
261 lba_list_mem = (((void *)rqd->ppa_list) + pblk_dma_ppa_size);
262 lba_list_media = (((void *)rqd->ppa_list) + 2 * pblk_dma_ppa_size);
263
a4809fee
JG
264 for (i = 0; i < nr_secs; i++) {
265 lba_list_media[i] = meta_list[i].lba;
266 meta_list[i].lba = lba_list_mem[i];
267 }
268
a4bd217b
JG
269 /* Fill the holes in the original bio */
270 i = 0;
271 hole = find_first_zero_bit(read_bitmap, nr_secs);
272 do {
b1bcfda1 273 int line_id = pblk_ppa_to_line(rqd->ppa_list[i]);
7bd4d370
JG
274 struct pblk_line *line = &pblk->lines[line_id];
275
276 kref_put(&line->ref, pblk_line_put);
277
a4809fee
JG
278 meta_list[hole].lba = lba_list_media[i];
279
a4bd217b 280 src_bv = new_bio->bi_io_vec[i++];
11f6ad69 281 dst_bv = bio->bi_io_vec[bio_init_idx + hole];
a4bd217b
JG
282
283 src_p = kmap_atomic(src_bv.bv_page);
284 dst_p = kmap_atomic(dst_bv.bv_page);
285
286 memcpy(dst_p + dst_bv.bv_offset,
287 src_p + src_bv.bv_offset,
288 PBLK_EXPOSED_PAGE_SIZE);
289
290 kunmap_atomic(src_p);
291 kunmap_atomic(dst_p);
292
b906bbb6 293 mempool_free(src_bv.bv_page, &pblk->page_bio_pool);
a4bd217b
JG
294
295 hole = find_next_zero_bit(read_bitmap, nr_secs, hole + 1);
296 } while (hole < nr_secs);
297
298 bio_put(new_bio);
11f6ad69 299 kfree(pr_ctx);
a4bd217b 300
87cc40bb
JG
301 /* restore original request */
302 rqd->bio = NULL;
a4bd217b 303 rqd->nr_ppas = nr_secs;
a4bd217b 304
11f6ad69 305 bio_endio(bio);
7bd4d370 306 __pblk_end_io_read(pblk, rqd, false);
11f6ad69 307}
a4bd217b 308
11f6ad69
HL
309static int pblk_setup_partial_read(struct pblk *pblk, struct nvm_rq *rqd,
310 unsigned int bio_init_idx,
311 unsigned long *read_bitmap,
312 int nr_holes)
313{
314 struct pblk_sec_meta *meta_list = rqd->meta_list;
315 struct pblk_g_ctx *r_ctx = nvm_rq_to_pdu(rqd);
316 struct pblk_pr_ctx *pr_ctx;
317 struct bio *new_bio, *bio = r_ctx->private;
318 __le64 *lba_list_mem;
319 int nr_secs = rqd->nr_ppas;
320 int i;
321
322 /* Re-use allocated memory for intermediate lbas */
323 lba_list_mem = (((void *)rqd->ppa_list) + pblk_dma_ppa_size);
324
325 new_bio = bio_alloc(GFP_KERNEL, nr_holes);
326
327 if (pblk_bio_add_pages(pblk, new_bio, GFP_KERNEL, nr_holes))
328 goto fail_bio_put;
329
330 if (nr_holes != new_bio->bi_vcnt) {
331 WARN_ONCE(1, "pblk: malformed bio\n");
332 goto fail_free_pages;
333 }
334
335 pr_ctx = kmalloc(sizeof(struct pblk_pr_ctx), GFP_KERNEL);
336 if (!pr_ctx)
337 goto fail_free_pages;
338
339 for (i = 0; i < nr_secs; i++)
340 lba_list_mem[i] = meta_list[i].lba;
341
342 new_bio->bi_iter.bi_sector = 0; /* internal bio */
343 bio_set_op_attrs(new_bio, REQ_OP_READ, 0);
344
345 rqd->bio = new_bio;
346 rqd->nr_ppas = nr_holes;
347 rqd->flags = pblk_set_read_mode(pblk, PBLK_READ_RANDOM);
348
349 pr_ctx->ppa_ptr = NULL;
350 pr_ctx->orig_bio = bio;
351 bitmap_copy(pr_ctx->bitmap, read_bitmap, NVM_MAX_VLBA);
352 pr_ctx->bio_init_idx = bio_init_idx;
353 pr_ctx->orig_nr_secs = nr_secs;
354 r_ctx->private = pr_ctx;
355
356 if (unlikely(nr_holes == 1)) {
357 pr_ctx->ppa_ptr = rqd->ppa_list;
358 pr_ctx->dma_ppa_list = rqd->dma_ppa_list;
359 rqd->ppa_addr = rqd->ppa_list[0];
360 }
361 return 0;
362
363fail_free_pages:
fbadca73 364 pblk_bio_free_pages(pblk, new_bio, 0, new_bio->bi_vcnt);
11f6ad69
HL
365fail_bio_put:
366 bio_put(new_bio);
367
368 return -ENOMEM;
369}
370
371static int pblk_partial_read_bio(struct pblk *pblk, struct nvm_rq *rqd,
372 unsigned int bio_init_idx,
373 unsigned long *read_bitmap, int nr_secs)
374{
375 int nr_holes;
376 int ret;
377
378 nr_holes = nr_secs - bitmap_weight(read_bitmap, nr_secs);
379
380 if (pblk_setup_partial_read(pblk, rqd, bio_init_idx, read_bitmap,
381 nr_holes))
382 return NVM_IO_ERR;
383
384 rqd->end_io = pblk_end_partial_read;
385
386 ret = pblk_submit_io(pblk, rqd);
387 if (ret) {
388 bio_put(rqd->bio);
389 pblk_err(pblk, "partial read IO submission failed\n");
390 goto err;
391 }
392
393 return NVM_IO_OK;
394
395err:
4e495a46 396 pblk_err(pblk, "failed to perform partial read\n");
11f6ad69
HL
397
398 /* Free allocated pages in new bio */
399 pblk_bio_free_pages(pblk, rqd->bio, 0, rqd->bio->bi_vcnt);
7bd4d370 400 __pblk_end_io_read(pblk, rqd, false);
a4bd217b
JG
401 return NVM_IO_ERR;
402}
403
87cc40bb 404static void pblk_read_rq(struct pblk *pblk, struct nvm_rq *rqd, struct bio *bio,
84454e6d 405 sector_t lba, unsigned long *read_bitmap)
a4bd217b 406{
a4809fee 407 struct pblk_sec_meta *meta_list = rqd->meta_list;
a4bd217b 408 struct ppa_addr ppa;
a4bd217b
JG
409
410 pblk_lookup_l2p_seq(pblk, &ppa, lba, 1);
411
880eda54 412#ifdef CONFIG_NVM_PBLK_DEBUG
a4bd217b
JG
413 atomic_long_inc(&pblk->inflight_reads);
414#endif
415
416retry:
417 if (pblk_ppa_empty(ppa)) {
418 WARN_ON(test_and_set_bit(0, read_bitmap));
a4809fee 419 meta_list[0].lba = cpu_to_le64(ADDR_EMPTY);
a4bd217b
JG
420 return;
421 }
422
423 /* Try to read from write buffer. The address is later checked on the
424 * write buffer to prevent retrieving overwritten data.
425 */
426 if (pblk_addr_in_cache(ppa)) {
75cb8e93 427 if (!pblk_read_from_cache(pblk, bio, lba, ppa, 0, 1)) {
a4bd217b
JG
428 pblk_lookup_l2p_seq(pblk, &ppa, lba, 1);
429 goto retry;
430 }
a4809fee 431
7bd4d370 432 WARN_ON(test_and_set_bit(0, read_bitmap));
a4809fee
JG
433 meta_list[0].lba = cpu_to_le64(lba);
434
880eda54 435#ifdef CONFIG_NVM_PBLK_DEBUG
7bd4d370 436 atomic_long_inc(&pblk->cache_reads);
db7ada33 437#endif
a4bd217b
JG
438 } else {
439 rqd->ppa_addr = ppa;
440 }
f9c10152
JG
441
442 rqd->flags = pblk_set_read_mode(pblk, PBLK_READ_RANDOM);
a4bd217b
JG
443}
444
445int pblk_submit_read(struct pblk *pblk, struct bio *bio)
446{
447 struct nvm_tgt_dev *dev = pblk->dev;
998ba629 448 struct request_queue *q = dev->q;
84454e6d 449 sector_t blba = pblk_get_lba(bio);
5bf1e1ee 450 unsigned int nr_secs = pblk_get_secs(bio);
a4809fee 451 struct pblk_g_ctx *r_ctx;
a4bd217b 452 struct nvm_rq *rqd;
a4bd217b 453 unsigned int bio_init_idx;
921aebfa 454 DECLARE_BITMAP(read_bitmap, NVM_MAX_VLBA);
a4bd217b
JG
455 int ret = NVM_IO_ERR;
456
84454e6d
JG
457 /* logic error: lba out-of-bounds. Ignore read request */
458 if (blba >= pblk->rl.nr_secs || nr_secs > PBLK_MAX_REQ_ADDRS) {
459 WARN(1, "pblk: read lba out of bounds (lba:%llu, nr:%d)\n",
460 (unsigned long long)blba, nr_secs);
a4bd217b 461 return NVM_IO_ERR;
84454e6d 462 }
a4bd217b 463
ddcf35d3
MC
464 generic_start_io_acct(q, REQ_OP_READ, bio_sectors(bio),
465 &pblk->disk->part0);
998ba629 466
921aebfa 467 bitmap_zero(read_bitmap, nr_secs);
a4bd217b 468
e2cddf20 469 rqd = pblk_alloc_rqd(pblk, PBLK_READ);
a4bd217b
JG
470
471 rqd->opcode = NVM_OP_PREAD;
a4bd217b 472 rqd->nr_ppas = nr_secs;
87cc40bb 473 rqd->bio = NULL; /* cloned bio if needed */
a4bd217b
JG
474 rqd->private = pblk;
475 rqd->end_io = pblk_end_io_read;
476
a4809fee 477 r_ctx = nvm_rq_to_pdu(rqd);
998ba629 478 r_ctx->start_time = jiffies;
a4809fee 479 r_ctx->lba = blba;
87cc40bb 480 r_ctx->private = bio; /* original bio */
a4809fee 481
a4bd217b
JG
482 /* Save the index for this bio's start. This is needed in case
483 * we need to fill a partial read.
484 */
485 bio_init_idx = pblk_get_bi_idx(bio);
486
63e3809c
JG
487 rqd->meta_list = nvm_dev_dma_alloc(dev->parent, GFP_KERNEL,
488 &rqd->dma_meta_list);
489 if (!rqd->meta_list) {
4e495a46 490 pblk_err(pblk, "not able to allocate ppa list\n");
63e3809c
JG
491 goto fail_rqd_free;
492 }
493
a4bd217b 494 if (nr_secs > 1) {
63e3809c
JG
495 rqd->ppa_list = rqd->meta_list + pblk_dma_meta_size;
496 rqd->dma_ppa_list = rqd->dma_meta_list + pblk_dma_meta_size;
a4bd217b 497
921aebfa 498 pblk_read_ppalist_rq(pblk, rqd, bio, blba, read_bitmap);
a4bd217b 499 } else {
921aebfa 500 pblk_read_rq(pblk, rqd, bio, blba, read_bitmap);
a4bd217b
JG
501 }
502
921aebfa 503 if (bitmap_full(read_bitmap, nr_secs)) {
588726d3 504 atomic_inc(&pblk->inflight_io);
7bd4d370 505 __pblk_end_io_read(pblk, rqd, false);
87cc40bb 506 return NVM_IO_DONE;
a4bd217b
JG
507 }
508
509 /* All sectors are to be read from the device */
921aebfa 510 if (bitmap_empty(read_bitmap, rqd->nr_ppas)) {
a4bd217b 511 struct bio *int_bio = NULL;
a4bd217b
JG
512
513 /* Clone read bio to deal with read errors internally */
b906bbb6 514 int_bio = bio_clone_fast(bio, GFP_KERNEL, &pblk_bio_set);
a4bd217b 515 if (!int_bio) {
4e495a46 516 pblk_err(pblk, "could not clone read bio\n");
998ba629 517 goto fail_end_io;
a4bd217b
JG
518 }
519
520 rqd->bio = int_bio;
a4bd217b 521
e13f421b 522 if (pblk_submit_io(pblk, rqd)) {
4e495a46 523 pblk_err(pblk, "read IO submission failed\n");
e13f421b 524 ret = NVM_IO_ERR;
998ba629 525 goto fail_end_io;
a4bd217b
JG
526 }
527
528 return NVM_IO_OK;
529 }
530
531 /* The read bio request could be partially filled by the write buffer,
532 * but there are some holes that need to be read from the drive.
533 */
11f6ad69
HL
534 ret = pblk_partial_read_bio(pblk, rqd, bio_init_idx, read_bitmap,
535 nr_secs);
536 if (ret)
537 goto fail_meta_free;
538
539 return NVM_IO_OK;
a4bd217b 540
11f6ad69
HL
541fail_meta_free:
542 nvm_dev_dma_free(dev->parent, rqd->meta_list, rqd->dma_meta_list);
a4bd217b 543fail_rqd_free:
e2cddf20 544 pblk_free_rqd(pblk, rqd, PBLK_READ);
a4bd217b 545 return ret;
998ba629
JG
546fail_end_io:
547 __pblk_end_io_read(pblk, rqd, false);
548 return ret;
a4bd217b
JG
549}
550
551static int read_ppalist_rq_gc(struct pblk *pblk, struct nvm_rq *rqd,
552 struct pblk_line *line, u64 *lba_list,
d340121e 553 u64 *paddr_list_gc, unsigned int nr_secs)
a4bd217b 554{
d340121e
JG
555 struct ppa_addr ppa_list_l2p[PBLK_MAX_REQ_ADDRS];
556 struct ppa_addr ppa_gc;
a4bd217b
JG
557 int valid_secs = 0;
558 int i;
559
d340121e 560 pblk_lookup_l2p_rand(pblk, ppa_list_l2p, lba_list, nr_secs);
a4bd217b
JG
561
562 for (i = 0; i < nr_secs; i++) {
d340121e
JG
563 if (lba_list[i] == ADDR_EMPTY)
564 continue;
565
566 ppa_gc = addr_to_gen_ppa(pblk, paddr_list_gc[i], line->id);
567 if (!pblk_ppa_comp(ppa_list_l2p[i], ppa_gc)) {
568 paddr_list_gc[i] = lba_list[i] = ADDR_EMPTY;
a4bd217b
JG
569 continue;
570 }
571
d340121e 572 rqd->ppa_list[valid_secs++] = ppa_list_l2p[i];
a4bd217b
JG
573 }
574
880eda54 575#ifdef CONFIG_NVM_PBLK_DEBUG
a4bd217b
JG
576 atomic_long_add(valid_secs, &pblk->inflight_reads);
577#endif
d340121e 578
a4bd217b
JG
579 return valid_secs;
580}
581
582static int read_rq_gc(struct pblk *pblk, struct nvm_rq *rqd,
d340121e
JG
583 struct pblk_line *line, sector_t lba,
584 u64 paddr_gc)
a4bd217b 585{
d340121e 586 struct ppa_addr ppa_l2p, ppa_gc;
a4bd217b
JG
587 int valid_secs = 0;
588
659226eb
DC
589 if (lba == ADDR_EMPTY)
590 goto out;
591
a4bd217b 592 /* logic error: lba out-of-bounds */
2a79efd8
DC
593 if (lba >= pblk->rl.nr_secs) {
594 WARN(1, "pblk: read lba out of bounds\n");
a4bd217b
JG
595 goto out;
596 }
597
a4bd217b 598 spin_lock(&pblk->trans_lock);
d340121e 599 ppa_l2p = pblk_trans_map_get(pblk, lba);
a4bd217b
JG
600 spin_unlock(&pblk->trans_lock);
601
d340121e
JG
602 ppa_gc = addr_to_gen_ppa(pblk, paddr_gc, line->id);
603 if (!pblk_ppa_comp(ppa_l2p, ppa_gc))
a4bd217b
JG
604 goto out;
605
d340121e 606 rqd->ppa_addr = ppa_l2p;
a4bd217b
JG
607 valid_secs = 1;
608
880eda54 609#ifdef CONFIG_NVM_PBLK_DEBUG
a4bd217b
JG
610 atomic_long_inc(&pblk->inflight_reads);
611#endif
612
613out:
614 return valid_secs;
615}
616
d340121e 617int pblk_submit_read_gc(struct pblk *pblk, struct pblk_gc_rq *gc_rq)
a4bd217b
JG
618{
619 struct nvm_tgt_dev *dev = pblk->dev;
620 struct nvm_geo *geo = &dev->geo;
a4bd217b
JG
621 struct bio *bio;
622 struct nvm_rq rqd;
d340121e
JG
623 int data_len;
624 int ret = NVM_IO_OK;
a4bd217b
JG
625
626 memset(&rqd, 0, sizeof(struct nvm_rq));
627
63e3809c
JG
628 rqd.meta_list = nvm_dev_dma_alloc(dev->parent, GFP_KERNEL,
629 &rqd.dma_meta_list);
630 if (!rqd.meta_list)
d340121e 631 return -ENOMEM;
63e3809c 632
d340121e 633 if (gc_rq->nr_secs > 1) {
63e3809c
JG
634 rqd.ppa_list = rqd.meta_list + pblk_dma_meta_size;
635 rqd.dma_ppa_list = rqd.dma_meta_list + pblk_dma_meta_size;
a4bd217b 636
d340121e
JG
637 gc_rq->secs_to_gc = read_ppalist_rq_gc(pblk, &rqd, gc_rq->line,
638 gc_rq->lba_list,
639 gc_rq->paddr_list,
640 gc_rq->nr_secs);
641 if (gc_rq->secs_to_gc == 1)
63e3809c 642 rqd.ppa_addr = rqd.ppa_list[0];
a4bd217b 643 } else {
d340121e
JG
644 gc_rq->secs_to_gc = read_rq_gc(pblk, &rqd, gc_rq->line,
645 gc_rq->lba_list[0],
646 gc_rq->paddr_list[0]);
a4bd217b
JG
647 }
648
d340121e 649 if (!(gc_rq->secs_to_gc))
a4bd217b
JG
650 goto out;
651
e46f4e48 652 data_len = (gc_rq->secs_to_gc) * geo->csecs;
d340121e 653 bio = pblk_bio_map_addr(pblk, gc_rq->data, gc_rq->secs_to_gc, data_len,
7d327a9e 654 PBLK_VMALLOC_META, GFP_KERNEL);
a4bd217b 655 if (IS_ERR(bio)) {
4e495a46
MB
656 pblk_err(pblk, "could not allocate GC bio (%lu)\n",
657 PTR_ERR(bio));
a4bd217b
JG
658 goto err_free_dma;
659 }
660
661 bio->bi_iter.bi_sector = 0; /* internal bio */
662 bio_set_op_attrs(bio, REQ_OP_READ, 0);
663
664 rqd.opcode = NVM_OP_PREAD;
d340121e 665 rqd.nr_ppas = gc_rq->secs_to_gc;
f9c10152 666 rqd.flags = pblk_set_read_mode(pblk, PBLK_READ_RANDOM);
a4bd217b
JG
667 rqd.bio = bio;
668
1a94b2d4 669 if (pblk_submit_io_sync(pblk, &rqd)) {
d340121e 670 ret = -EIO;
4e495a46 671 pblk_err(pblk, "GC read request failed\n");
7d327a9e 672 goto err_free_bio;
a4bd217b
JG
673 }
674
03a34b2d 675 pblk_read_check_rand(pblk, &rqd, gc_rq->lba_list, gc_rq->nr_secs);
310df582 676
588726d3 677 atomic_dec(&pblk->inflight_io);
a4bd217b
JG
678
679 if (rqd.error) {
680 atomic_long_inc(&pblk->read_failed_gc);
880eda54 681#ifdef CONFIG_NVM_PBLK_DEBUG
a4bd217b
JG
682 pblk_print_failed_rqd(pblk, &rqd, rqd.error);
683#endif
684 }
685
880eda54 686#ifdef CONFIG_NVM_PBLK_DEBUG
d340121e
JG
687 atomic_long_add(gc_rq->secs_to_gc, &pblk->sync_reads);
688 atomic_long_add(gc_rq->secs_to_gc, &pblk->recov_gc_reads);
689 atomic_long_sub(gc_rq->secs_to_gc, &pblk->inflight_reads);
a4bd217b
JG
690#endif
691
692out:
63e3809c 693 nvm_dev_dma_free(dev->parent, rqd.meta_list, rqd.dma_meta_list);
d340121e 694 return ret;
a4bd217b 695
7d327a9e
JG
696err_free_bio:
697 bio_put(bio);
a4bd217b 698err_free_dma:
63e3809c 699 nvm_dev_dma_free(dev->parent, rqd.meta_list, rqd.dma_meta_list);
d340121e 700 return ret;
a4bd217b 701}