pblk-map.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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-map.c - pblk's lba-ppa mapping strategy
  16. *
  17. */
  18. #include "pblk.h"
  19. static int pblk_map_page_data(struct pblk *pblk, unsigned int sentry,
  20. struct ppa_addr *ppa_list,
  21. unsigned long *lun_bitmap,
  22. struct pblk_sec_meta *meta_list,
  23. unsigned int valid_secs)
  24. {
  25. struct pblk_line *line = pblk_line_get_data(pblk);
  26. struct pblk_emeta *emeta;
  27. struct pblk_w_ctx *w_ctx;
  28. __le64 *lba_list;
  29. u64 paddr;
  30. int nr_secs = pblk->min_write_pgs;
  31. int i;
  32. if (pblk_line_is_full(line)) {
  33. struct pblk_line *prev_line = line;
  34. /* If we cannot allocate a new line, make sure to store metadata
  35. * on current line and then fail
  36. */
  37. line = pblk_line_replace_data(pblk);
  38. pblk_line_close_meta(pblk, prev_line);
  39. if (!line)
  40. return -EINTR;
  41. }
  42. emeta = line->emeta;
  43. lba_list = emeta_to_lbas(pblk, emeta->buf);
  44. paddr = pblk_alloc_page(pblk, line, nr_secs);
  45. for (i = 0; i < nr_secs; i++, paddr++) {
  46. __le64 addr_empty = cpu_to_le64(ADDR_EMPTY);
  47. /* ppa to be sent to the device */
  48. ppa_list[i] = addr_to_gen_ppa(pblk, paddr, line->id);
  49. /* Write context for target bio completion on write buffer. Note
  50. * that the write buffer is protected by the sync backpointer,
  51. * and a single writer thread have access to each specific entry
  52. * at a time. Thus, it is safe to modify the context for the
  53. * entry we are setting up for submission without taking any
  54. * lock or memory barrier.
  55. */
  56. if (i < valid_secs) {
  57. kref_get(&line->ref);
  58. w_ctx = pblk_rb_w_ctx(&pblk->rwb, sentry + i);
  59. w_ctx->ppa = ppa_list[i];
  60. meta_list[i].lba = cpu_to_le64(w_ctx->lba);
  61. lba_list[paddr] = cpu_to_le64(w_ctx->lba);
  62. if (lba_list[paddr] != addr_empty)
  63. line->nr_valid_lbas++;
  64. else
  65. atomic64_inc(&pblk->pad_wa);
  66. } else {
  67. lba_list[paddr] = meta_list[i].lba = addr_empty;
  68. __pblk_map_invalidate(pblk, line, paddr);
  69. }
  70. }
  71. pblk_down_rq(pblk, ppa_list, nr_secs, lun_bitmap);
  72. return 0;
  73. }
  74. void pblk_map_rq(struct pblk *pblk, struct nvm_rq *rqd, unsigned int sentry,
  75. unsigned long *lun_bitmap, unsigned int valid_secs,
  76. unsigned int off)
  77. {
  78. struct pblk_sec_meta *meta_list = rqd->meta_list;
  79. unsigned int map_secs;
  80. int min = pblk->min_write_pgs;
  81. int i;
  82. for (i = off; i < rqd->nr_ppas; i += min) {
  83. map_secs = (i + min > valid_secs) ? (valid_secs % min) : min;
  84. if (pblk_map_page_data(pblk, sentry + i, &rqd->ppa_list[i],
  85. lun_bitmap, &meta_list[i], map_secs)) {
  86. bio_put(rqd->bio);
  87. pblk_free_rqd(pblk, rqd, PBLK_WRITE);
  88. pblk_pipeline_stop(pblk);
  89. }
  90. }
  91. }
  92. /* only if erase_ppa is set, acquire erase semaphore */
  93. void pblk_map_erase_rq(struct pblk *pblk, struct nvm_rq *rqd,
  94. unsigned int sentry, unsigned long *lun_bitmap,
  95. unsigned int valid_secs, struct ppa_addr *erase_ppa)
  96. {
  97. struct nvm_tgt_dev *dev = pblk->dev;
  98. struct nvm_geo *geo = &dev->geo;
  99. struct pblk_line_meta *lm = &pblk->lm;
  100. struct pblk_sec_meta *meta_list = rqd->meta_list;
  101. struct pblk_line *e_line, *d_line;
  102. unsigned int map_secs;
  103. int min = pblk->min_write_pgs;
  104. int i, erase_lun;
  105. for (i = 0; i < rqd->nr_ppas; i += min) {
  106. map_secs = (i + min > valid_secs) ? (valid_secs % min) : min;
  107. if (pblk_map_page_data(pblk, sentry + i, &rqd->ppa_list[i],
  108. lun_bitmap, &meta_list[i], map_secs)) {
  109. bio_put(rqd->bio);
  110. pblk_free_rqd(pblk, rqd, PBLK_WRITE);
  111. pblk_pipeline_stop(pblk);
  112. }
  113. erase_lun = pblk_ppa_to_pos(geo, rqd->ppa_list[i]);
  114. /* line can change after page map. We might also be writing the
  115. * last line.
  116. */
  117. e_line = pblk_line_get_erase(pblk);
  118. if (!e_line)
  119. return pblk_map_rq(pblk, rqd, sentry, lun_bitmap,
  120. valid_secs, i + min);
  121. spin_lock(&e_line->lock);
  122. if (!test_bit(erase_lun, e_line->erase_bitmap)) {
  123. set_bit(erase_lun, e_line->erase_bitmap);
  124. atomic_dec(&e_line->left_eblks);
  125. *erase_ppa = rqd->ppa_list[i];
  126. erase_ppa->a.blk = e_line->id;
  127. spin_unlock(&e_line->lock);
  128. /* Avoid evaluating e_line->left_eblks */
  129. return pblk_map_rq(pblk, rqd, sentry, lun_bitmap,
  130. valid_secs, i + min);
  131. }
  132. spin_unlock(&e_line->lock);
  133. }
  134. d_line = pblk_line_get_data(pblk);
  135. /* line can change after page map. We might also be writing the
  136. * last line.
  137. */
  138. e_line = pblk_line_get_erase(pblk);
  139. if (!e_line)
  140. return;
  141. /* Erase blocks that are bad in this line but might not be in next */
  142. if (unlikely(pblk_ppa_empty(*erase_ppa)) &&
  143. bitmap_weight(d_line->blk_bitmap, lm->blk_per_line)) {
  144. int bit = -1;
  145. retry:
  146. bit = find_next_bit(d_line->blk_bitmap,
  147. lm->blk_per_line, bit + 1);
  148. if (bit >= lm->blk_per_line)
  149. return;
  150. spin_lock(&e_line->lock);
  151. if (test_bit(bit, e_line->erase_bitmap)) {
  152. spin_unlock(&e_line->lock);
  153. goto retry;
  154. }
  155. spin_unlock(&e_line->lock);
  156. set_bit(bit, e_line->erase_bitmap);
  157. atomic_dec(&e_line->left_eblks);
  158. *erase_ppa = pblk->luns[bit].bppa; /* set ch and lun */
  159. erase_ppa->a.blk = e_line->id;
  160. }
  161. }