|
@@ -90,9 +90,15 @@ static void __pblk_end_io_erase(struct pblk *pblk, struct nvm_rq *rqd)
|
|
|
atomic_dec(&line->left_seblks);
|
|
|
|
|
|
if (rqd->error) {
|
|
|
+ trace_pblk_chunk_reset(pblk_disk_name(pblk),
|
|
|
+ &rqd->ppa_addr, PBLK_CHUNK_RESET_FAILED);
|
|
|
+
|
|
|
chunk->state = NVM_CHK_ST_OFFLINE;
|
|
|
pblk_mark_bb(pblk, line, rqd->ppa_addr);
|
|
|
} else {
|
|
|
+ trace_pblk_chunk_reset(pblk_disk_name(pblk),
|
|
|
+ &rqd->ppa_addr, PBLK_CHUNK_RESET_DONE);
|
|
|
+
|
|
|
chunk->state = NVM_CHK_ST_FREE;
|
|
|
}
|
|
|
|
|
@@ -923,6 +929,9 @@ static int pblk_blk_erase_sync(struct pblk *pblk, struct ppa_addr ppa)
|
|
|
struct nvm_rq rqd = {NULL};
|
|
|
int ret;
|
|
|
|
|
|
+ trace_pblk_chunk_reset(pblk_disk_name(pblk), &ppa,
|
|
|
+ PBLK_CHUNK_RESET_START);
|
|
|
+
|
|
|
pblk_setup_e_rq(pblk, &rqd, ppa);
|
|
|
|
|
|
/* The write thread schedules erases so that it minimizes disturbances
|
|
@@ -1736,6 +1745,9 @@ int pblk_blk_erase_async(struct pblk *pblk, struct ppa_addr ppa)
|
|
|
rqd->end_io = pblk_end_io_erase;
|
|
|
rqd->private = pblk;
|
|
|
|
|
|
+ trace_pblk_chunk_reset(pblk_disk_name(pblk),
|
|
|
+ &ppa, PBLK_CHUNK_RESET_START);
|
|
|
+
|
|
|
/* The write thread schedules erases so that it minimizes disturbances
|
|
|
* with writes. Thus, there is no need to take the LUN semaphore.
|
|
|
*/
|