diff options
Diffstat (limited to 'drivers/lightnvm/pblk-rb.c')
| -rw-r--r-- | drivers/lightnvm/pblk-rb.c | 24 | 
1 files changed, 12 insertions, 12 deletions
diff --git a/drivers/lightnvm/pblk-rb.c b/drivers/lightnvm/pblk-rb.c index 55e9442a99e2..f6eec0212dfc 100644 --- a/drivers/lightnvm/pblk-rb.c +++ b/drivers/lightnvm/pblk-rb.c @@ -111,7 +111,7 @@ int pblk_rb_init(struct pblk_rb *rb, struct pblk_rb_entry *rb_entry_base,  	} while (iter > 0);  	up_write(&pblk_rb_lock); -#ifdef CONFIG_NVM_DEBUG +#ifdef CONFIG_NVM_PBLK_DEBUG  	atomic_set(&rb->inflight_flush_point, 0);  #endif @@ -308,7 +308,7 @@ void pblk_rb_write_entry_user(struct pblk_rb *rb, void *data,  	entry = &rb->entries[ring_pos];  	flags = READ_ONCE(entry->w_ctx.flags); -#ifdef CONFIG_NVM_DEBUG +#ifdef CONFIG_NVM_PBLK_DEBUG  	/* Caller must guarantee that the entry is free */  	BUG_ON(!(flags & PBLK_WRITABLE_ENTRY));  #endif @@ -332,7 +332,7 @@ void pblk_rb_write_entry_gc(struct pblk_rb *rb, void *data,  	entry = &rb->entries[ring_pos];  	flags = READ_ONCE(entry->w_ctx.flags); -#ifdef CONFIG_NVM_DEBUG +#ifdef CONFIG_NVM_PBLK_DEBUG  	/* Caller must guarantee that the entry is free */  	BUG_ON(!(flags & PBLK_WRITABLE_ENTRY));  #endif @@ -362,7 +362,7 @@ static int pblk_rb_flush_point_set(struct pblk_rb *rb, struct bio *bio,  		return 0;  	} -#ifdef CONFIG_NVM_DEBUG +#ifdef CONFIG_NVM_PBLK_DEBUG  	atomic_inc(&rb->inflight_flush_point);  #endif @@ -547,7 +547,7 @@ try:  		page = virt_to_page(entry->data);  		if (!page) { -			pr_err("pblk: could not allocate write bio page\n"); +			pblk_err(pblk, "could not allocate write bio page\n");  			flags &= ~PBLK_WRITTEN_DATA;  			flags |= PBLK_SUBMITTED_ENTRY;  			/* Release flags on context. Protect from writes */ @@ -557,7 +557,7 @@ try:  		if (bio_add_pc_page(q, bio, page, rb->seg_size, 0) !=  								rb->seg_size) { -			pr_err("pblk: could not add page to write bio\n"); +			pblk_err(pblk, "could not add page to write bio\n");  			flags &= ~PBLK_WRITTEN_DATA;  			flags |= PBLK_SUBMITTED_ENTRY;  			/* Release flags on context. Protect from writes */ @@ -576,19 +576,19 @@ try:  	if (pad) {  		if (pblk_bio_add_pages(pblk, bio, GFP_KERNEL, pad)) { -			pr_err("pblk: could not pad page in write bio\n"); +			pblk_err(pblk, "could not pad page in write bio\n");  			return NVM_IO_ERR;  		}  		if (pad < pblk->min_write_pgs)  			atomic64_inc(&pblk->pad_dist[pad - 1]);  		else -			pr_warn("pblk: padding more than min. sectors\n"); +			pblk_warn(pblk, "padding more than min. sectors\n");  		atomic64_add(pad, &pblk->pad_wa);  	} -#ifdef CONFIG_NVM_DEBUG +#ifdef CONFIG_NVM_PBLK_DEBUG  	atomic_long_add(pad, &pblk->padded_writes);  #endif @@ -613,7 +613,7 @@ int pblk_rb_copy_to_bio(struct pblk_rb *rb, struct bio *bio, sector_t lba,  	int ret = 1; -#ifdef CONFIG_NVM_DEBUG +#ifdef CONFIG_NVM_PBLK_DEBUG  	/* Caller must ensure that the access will not cause an overflow */  	BUG_ON(pos >= rb->nr_entries);  #endif @@ -820,7 +820,7 @@ ssize_t pblk_rb_sysfs(struct pblk_rb *rb, char *buf)  			rb->subm,  			rb->sync,  			rb->l2p_update, -#ifdef CONFIG_NVM_DEBUG +#ifdef CONFIG_NVM_PBLK_DEBUG  			atomic_read(&rb->inflight_flush_point),  #else  			0, @@ -838,7 +838,7 @@ ssize_t pblk_rb_sysfs(struct pblk_rb *rb, char *buf)  			rb->subm,  			rb->sync,  			rb->l2p_update, -#ifdef CONFIG_NVM_DEBUG +#ifdef CONFIG_NVM_PBLK_DEBUG  			atomic_read(&rb->inflight_flush_point),  #else  			0,  |