2 * Copyright (C) 2015 IT University of Copenhagen (rrpc.h)
3 * Copyright (C) 2016 CNEX Labs
4 * Initial release: Matias Bjorling <matias@cnexlabs.com>
5 * Write buffering: Javier Gonzalez <javier@cnexlabs.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version
9 * 2 as published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * Implementation of a Physical Block-device target for Open-channel SSDs.
23 #include <linux/blkdev.h>
24 #include <linux/blk-mq.h>
25 #include <linux/bio.h>
26 #include <linux/module.h>
27 #include <linux/kthread.h>
28 #include <linux/vmalloc.h>
29 #include <linux/crc32.h>
30 #include <linux/uuid.h>
32 #include <linux/lightnvm.h>
34 /* Run only GC if less than 1/X blocks are free */
35 #define GC_LIMIT_INVERSE 5
36 #define GC_TIME_MSECS 1000
38 #define PBLK_SECTOR (512)
39 #define PBLK_EXPOSED_PAGE_SIZE (4096)
40 #define PBLK_MAX_REQ_ADDRS (64)
41 #define PBLK_MAX_REQ_ADDRS_PW (6)
43 #define PBLK_NR_CLOSE_JOBS (4)
45 #define PBLK_CACHE_NAME_LEN (DISK_NAME_LEN + 16)
47 #define PBLK_COMMAND_TIMEOUT_MS 30000
49 /* Max 512 LUNs per device */
50 #define PBLK_MAX_LUNS_BITMAP (4)
52 #define NR_PHY_IN_LOG (PBLK_EXPOSED_PAGE_SIZE / PBLK_SECTOR)
54 /* Static pool sizes */
55 #define PBLK_GEN_WS_POOL_SIZE (2)
57 #define PBLK_DEFAULT_OP (11)
61 PBLK_WRITE
= WRITE
,/* Write from write buffer */
62 PBLK_WRITE_INT
, /* Internal write - no write buffer */
63 PBLK_READ_RECOV
, /* Recovery read - errors allowed */
69 PBLK_IOTYPE_USER
= 1 << 0,
70 PBLK_IOTYPE_GC
= 1 << 1,
72 /* Write buffer flags */
73 PBLK_FLUSH_ENTRY
= 1 << 2,
74 PBLK_WRITTEN_DATA
= 1 << 3,
75 PBLK_SUBMITTED_ENTRY
= 1 << 4,
76 PBLK_WRITABLE_ENTRY
= 1 << 5,
80 PBLK_BLK_ST_OPEN
= 0x1,
81 PBLK_BLK_ST_CLOSED
= 0x2,
84 struct pblk_sec_meta
{
89 /* The number of GC lists and the rate-limiter states go together. This way the
90 * rate-limiter can dictate how much GC is needed based on resource utilization.
92 #define PBLK_GC_NR_LISTS 4
102 #define pblk_dma_meta_size (sizeof(struct pblk_sec_meta) * PBLK_MAX_REQ_ADDRS)
103 #define pblk_dma_ppa_size (sizeof(u64) * PBLK_MAX_REQ_ADDRS)
105 /* write buffer completion context */
107 struct list_head list
; /* Head for out-of-order completion */
109 unsigned long *lun_bitmap
; /* Luns used on current request */
111 unsigned int nr_valid
;
112 unsigned int nr_padded
;
118 unsigned long start_time
;
122 /* partial read context */
124 struct bio
*orig_bio
;
125 DECLARE_BITMAP(bitmap
, NVM_MAX_VLBA
);
126 unsigned int orig_nr_secs
;
127 unsigned int bio_init_idx
;
129 dma_addr_t dma_ppa_list
;
135 struct completion wait
;
139 /* Recovery context */
140 struct pblk_rec_ctx
{
143 struct work_struct ws_rec
;
148 struct bio_list bios
; /* Original bios - used for completion
149 * in REQ_FUA, REQ_FLUSH case
151 u64 lba
; /* Logic addr. associated with entry */
152 struct ppa_addr ppa
; /* Physic addr. associated with entry */
153 int flags
; /* Write context flags */
156 struct pblk_rb_entry
{
157 struct ppa_addr cacheline
; /* Cacheline for this entry */
158 void *data
; /* Pointer to data on this entry */
159 struct pblk_w_ctx w_ctx
; /* Context for this entry */
160 struct list_head index
; /* List head to enable indexes */
163 #define EMPTY_ENTRY (~0U)
165 struct pblk_rb_pages
{
168 struct list_head list
;
172 struct pblk_rb_entry
*entries
; /* Ring buffer entries */
173 unsigned int mem
; /* Write offset - points to next
174 * writable entry in memory
176 unsigned int subm
; /* Read offset - points to last entry
177 * that has been submitted to the media
180 unsigned int sync
; /* Synced - backpointer that signals
181 * the last submitted entry that has
182 * been successfully persisted to media
184 unsigned int flush_point
; /* Sync point - last entry that must be
185 * flushed to the media. Used with
186 * REQ_FLUSH and REQ_FUA
188 unsigned int l2p_update
; /* l2p update point - next entry for
189 * which l2p mapping will be updated to
190 * contain a device ppa address (instead
193 unsigned int nr_entries
; /* Number of entries in write buffer -
194 * must be a power of two
196 unsigned int seg_size
; /* Size of the data segments being
197 * stored on each entry. Typically this
201 struct list_head pages
; /* List of data pages */
203 spinlock_t w_lock
; /* Write lock */
204 spinlock_t s_lock
; /* Sync lock */
206 #ifdef CONFIG_NVM_PBLK_DEBUG
207 atomic_t inflight_flush_point
; /* Not served REQ_FLUSH | REQ_FUA */
211 #define PBLK_RECOVERY_SECTORS 16
214 struct ppa_addr bppa
;
215 struct semaphore wr_sem
;
219 struct pblk_line
*line
;
221 u64 paddr_list
[PBLK_MAX_REQ_ADDRS
];
222 u64 lba_list
[PBLK_MAX_REQ_ADDRS
];
225 struct list_head list
;
229 /* These states are not protected by a lock since (i) they are in the
230 * fast path, and (ii) they are not critical.
236 struct task_struct
*gc_ts
;
237 struct task_struct
*gc_writer_ts
;
238 struct task_struct
*gc_reader_ts
;
240 struct workqueue_struct
*gc_line_reader_wq
;
241 struct workqueue_struct
*gc_reader_wq
;
243 struct timer_list gc_timer
;
245 struct semaphore gc_sem
;
246 atomic_t read_inflight_gc
; /* Number of lines with inflight GC reads */
247 atomic_t pipeline_gc
; /* Number of lines in the GC pipeline -
248 * started reads to finished writes
252 struct list_head w_list
;
253 struct list_head r_list
;
261 unsigned int high
; /* Upper threshold for rate limiter (free run -
262 * user I/O rate limiter
264 unsigned int high_pw
; /* High rounded up as a power of 2 */
266 #define PBLK_USER_HIGH_THRS 8 /* Begin write limit at 12% available blks */
267 #define PBLK_USER_LOW_THRS 10 /* Aggressive GC at 10% available blocks */
269 int rb_windows_pw
; /* Number of rate windows in the write buffer
270 * given as a power-of-2. This guarantees that
271 * when user I/O is being rate limited, there
272 * will be reserved enough space for the GC to
273 * place its payload. A window is of
274 * pblk->max_write_pgs size, which in NVMe is
277 int rb_budget
; /* Total number of entries available for I/O */
278 int rb_user_max
; /* Max buffer entries available for user I/O */
279 int rb_gc_max
; /* Max buffer entries available for GC I/O */
280 int rb_gc_rsv
; /* Reserved buffer entries for GC I/O */
281 int rb_state
; /* Rate-limiter current state */
282 int rb_max_io
; /* Maximum size for an I/O giving the config */
284 atomic_t rb_user_cnt
; /* User I/O buffer counter */
285 atomic_t rb_gc_cnt
; /* GC I/O buffer counter */
286 atomic_t rb_space
; /* Space limit in case of reaching capacity */
288 int rsv_blocks
; /* Reserved blocks for GC */
293 atomic_t werr_lines
; /* Number of write error lines that needs gc */
295 struct timer_list u_timer
;
297 unsigned long long nr_secs
;
298 unsigned long total_blocks
;
300 atomic_t free_blocks
; /* Total number of free blocks (+ OP) */
301 atomic_t free_user_blocks
; /* Number of user free blocks (no OP) */
304 #define PBLK_LINE_EMPTY (~0U)
308 PBLK_LINETYPE_FREE
= 0,
309 PBLK_LINETYPE_LOG
= 1,
310 PBLK_LINETYPE_DATA
= 2,
313 PBLK_LINESTATE_NEW
= 9,
314 PBLK_LINESTATE_FREE
= 10,
315 PBLK_LINESTATE_OPEN
= 11,
316 PBLK_LINESTATE_CLOSED
= 12,
317 PBLK_LINESTATE_GC
= 13,
318 PBLK_LINESTATE_BAD
= 14,
319 PBLK_LINESTATE_CORRUPT
= 15,
322 PBLK_LINEGC_NONE
= 20,
323 PBLK_LINEGC_EMPTY
= 21,
324 PBLK_LINEGC_LOW
= 22,
325 PBLK_LINEGC_MID
= 23,
326 PBLK_LINEGC_HIGH
= 24,
327 PBLK_LINEGC_FULL
= 25,
328 PBLK_LINEGC_WERR
= 26
331 #define PBLK_MAGIC 0x70626c6b /*pblk*/
333 /* emeta/smeta persistent storage format versions:
334 * Changes in major version requires offline migration.
335 * Changes in minor version are handled automatically during
339 #define SMETA_VERSION_MAJOR (0)
340 #define SMETA_VERSION_MINOR (1)
342 #define EMETA_VERSION_MAJOR (0)
343 #define EMETA_VERSION_MINOR (2)
347 __le32 identifier
; /* pblk identifier */
348 __u8 uuid
[16]; /* instance uuid */
349 __le16 type
; /* line type */
350 __u8 version_major
; /* version major */
351 __u8 version_minor
; /* version minor */
352 __le32 id
; /* line id for current line */
356 struct line_header header
;
358 __le32 crc
; /* Full structure including struct crc */
359 /* Previous line metadata */
360 __le32 prev_id
; /* Line id for previous line */
362 /* Current line metadata */
363 __le64 seq_nr
; /* Sequence number for current line */
366 __le32 window_wr_lun
; /* Number of parallel LUNs to write */
375 * Metadata layout in media:
377 * 1. struct line_emeta
378 * 2. bad block bitmap (u64 * window_wr_lun)
379 * 3. write amplification counters
380 * Mid sectors (start at lbas_sector):
381 * 3. nr_lbas (u64) forming lba list
382 * Last sectors (start at vsc_sector):
383 * 4. u32 valid sector count (vsc) for all lines (~0U: free line)
386 struct line_header header
;
388 __le32 crc
; /* Full structure including struct crc */
390 /* Previous line metadata */
391 __le32 prev_id
; /* Line id for prev line */
393 /* Current line metadata */
394 __le64 seq_nr
; /* Sequence number for current line */
397 __le32 window_wr_lun
; /* Number of parallel LUNs to write */
399 /* Bookkeeping for recovery */
400 __le32 next_id
; /* Line id for next line */
401 __le64 nr_lbas
; /* Number of lbas mapped in line */
402 __le64 nr_valid_lbas
; /* Number of valid lbas mapped in line */
403 __le64 bb_bitmap
[]; /* Updated bad block bitmap for line */
407 /* Write amplification counters stored on media */
409 __le64 user
; /* Number of user written sectors */
410 __le64 gc
; /* Number of sectors written by GC*/
411 __le64 pad
; /* Number of padded sectors */
415 struct line_emeta
*buf
; /* emeta buffer in media format */
416 int mem
; /* Write offset - points to next
417 * writable entry in memory
419 atomic_t sync
; /* Synced - backpointer that signals the
420 * last entry that has been successfully
423 unsigned int nr_entries
; /* Number of emeta entries */
427 struct line_smeta
*buf
; /* smeta buffer in persistent format */
430 struct pblk_w_err_gc
{
437 unsigned int id
; /* Line number corresponds to the
440 unsigned int seq_nr
; /* Unique line sequence number */
442 int state
; /* PBLK_LINESTATE_X */
443 int type
; /* PBLK_LINETYPE_X */
444 int gc_group
; /* PBLK_LINEGC_X */
445 struct list_head list
; /* Free, GC lists */
447 unsigned long *lun_bitmap
; /* Bitmap for LUNs mapped in line */
449 struct nvm_chk_meta
*chks
; /* Chunks forming line */
451 struct pblk_smeta
*smeta
; /* Start metadata */
452 struct pblk_emeta
*emeta
; /* End medatada */
454 int meta_line
; /* Metadata line id */
455 int meta_distance
; /* Distance between data and metadata */
457 u64 smeta_ssec
; /* Sector where smeta starts */
458 u64 emeta_ssec
; /* Sector where emeta starts */
460 unsigned int sec_in_line
; /* Number of usable secs in line */
462 atomic_t blk_in_line
; /* Number of good blocks in line */
463 unsigned long *blk_bitmap
; /* Bitmap for valid/invalid blocks */
464 unsigned long *erase_bitmap
; /* Bitmap for erased blocks */
466 unsigned long *map_bitmap
; /* Bitmap for mapped sectors in line */
467 unsigned long *invalid_bitmap
; /* Bitmap for invalid sectors in line */
469 atomic_t left_eblks
; /* Blocks left for erasing */
470 atomic_t left_seblks
; /* Blocks left for sync erasing */
472 int left_msecs
; /* Sectors left for mapping */
473 unsigned int cur_sec
; /* Sector map pointer */
474 unsigned int nr_valid_lbas
; /* Number of valid lbas in line */
476 __le32
*vsc
; /* Valid sector count in line */
478 struct kref ref
; /* Write buffer L2P references */
480 struct pblk_w_err_gc
*w_err_gc
; /* Write error gc recovery metadata */
482 spinlock_t lock
; /* Necessary for invalid_bitmap only */
485 #define PBLK_DATA_LINES 4
488 PBLK_KMALLOC_META
= 1,
489 PBLK_VMALLOC_META
= 2,
493 PBLK_EMETA_TYPE_HEADER
= 1, /* struct line_emeta first sector */
494 PBLK_EMETA_TYPE_LLBA
= 2, /* lba list - type: __le64 */
495 PBLK_EMETA_TYPE_VSC
= 3, /* vsc list - type: __le32 */
498 struct pblk_line_mgmt
{
499 int nr_lines
; /* Total number of full lines */
500 int nr_free_lines
; /* Number of full lines in free list */
502 /* Free lists - use free_lock */
503 struct list_head free_list
; /* Full lines ready to use */
504 struct list_head corrupt_list
; /* Full lines corrupted */
505 struct list_head bad_list
; /* Full lines bad */
507 /* GC lists - use gc_lock */
508 struct list_head
*gc_lists
[PBLK_GC_NR_LISTS
];
509 struct list_head gc_high_list
; /* Full lines ready to GC, high isc */
510 struct list_head gc_mid_list
; /* Full lines ready to GC, mid isc */
511 struct list_head gc_low_list
; /* Full lines ready to GC, low isc */
513 struct list_head gc_werr_list
; /* Write err recovery list */
515 struct list_head gc_full_list
; /* Full lines ready to GC, no valid */
516 struct list_head gc_empty_list
; /* Full lines close, all valid */
518 struct pblk_line
*log_line
; /* Current FTL log line */
519 struct pblk_line
*data_line
; /* Current data line */
520 struct pblk_line
*log_next
; /* Next FTL log line */
521 struct pblk_line
*data_next
; /* Next data line */
523 struct list_head emeta_list
; /* Lines queued to schedule emeta */
525 __le32
*vsc_list
; /* Valid sector counts for all lines */
527 /* Metadata allocation type: VMALLOC | KMALLOC */
528 int emeta_alloc_type
;
530 /* Pre-allocated metadata for data lines */
531 struct pblk_smeta
*sline_meta
[PBLK_DATA_LINES
];
532 struct pblk_emeta
*eline_meta
[PBLK_DATA_LINES
];
533 unsigned long meta_bitmap
;
535 /* Helpers for fast bitmap calculations */
536 unsigned long *bb_template
;
537 unsigned long *bb_aux
;
539 unsigned long d_seq_nr
; /* Data line unique sequence number */
540 unsigned long l_seq_nr
; /* Log line unique sequence number */
542 spinlock_t free_lock
;
543 spinlock_t close_lock
;
547 struct pblk_line_meta
{
548 unsigned int smeta_len
; /* Total length for smeta */
549 unsigned int smeta_sec
; /* Sectors needed for smeta */
551 unsigned int emeta_len
[4]; /* Lengths for emeta:
553 * [1]: struct line_emeta +
554 * bb_bitmap + struct wa_counters
558 unsigned int emeta_sec
[4]; /* Sectors needed for emeta. Same layout
562 unsigned int emeta_bb
; /* Boundary for bb that affects emeta */
564 unsigned int vsc_list_len
; /* Length for vsc list */
565 unsigned int sec_bitmap_len
; /* Length for sector bitmap in line */
566 unsigned int blk_bitmap_len
; /* Length for block bitmap in line */
567 unsigned int lun_bitmap_len
; /* Length for lun bitmap in line */
569 unsigned int blk_per_line
; /* Number of blocks in a full line */
570 unsigned int sec_per_line
; /* Number of sectors in a line */
571 unsigned int dsec_per_line
; /* Number of data sectors in a line */
572 unsigned int min_blk_line
; /* Min. number of good blocks in line */
574 unsigned int mid_thrs
; /* Threshold for GC mid list */
575 unsigned int high_thrs
; /* Threshold for GC high list */
577 unsigned int meta_distance
; /* Distance between data and metadata */
581 PBLK_STATE_RUNNING
= 0,
582 PBLK_STATE_STOPPING
= 1,
583 PBLK_STATE_RECOVERING
= 2,
584 PBLK_STATE_STOPPED
= 3,
587 /* Internal format to support not power-of-2 device formats */
600 struct nvm_tgt_dev
*dev
;
601 struct gendisk
*disk
;
605 struct pblk_lun
*luns
;
607 struct pblk_line
*lines
; /* Line array */
608 struct pblk_line_mgmt l_mg
; /* Line management */
609 struct pblk_line_meta lm
; /* Line metadata */
611 struct nvm_addrf addrf
; /* Aligned address format */
612 struct pblk_addrf uaddrf
; /* Unaligned address format */
617 int state
; /* pblk line state */
619 int min_write_pgs
; /* Minimum amount of pages required by controller */
620 int max_write_pgs
; /* Maximum amount of pages supported by controller */
622 sector_t capacity
; /* Device capacity when bad blocks are subtracted */
624 int op
; /* Percentage of device used for over-provisioning */
625 int op_blks
; /* Number of blocks used for over-provisioning */
627 /* pblk provisioning values. Used by rate limiter */
632 unsigned char instance_uuid
[16];
634 /* Persistent write amplification counters, 4kb sector I/Os */
635 atomic64_t user_wa
; /* Sectors written by user */
636 atomic64_t gc_wa
; /* Sectors written by GC */
637 atomic64_t pad_wa
; /* Padded sectors written */
639 /* Reset values for delta write amplification measurements */
644 /* Counters used for calculating padding distribution */
645 atomic64_t
*pad_dist
; /* Padding distribution buckets */
646 u64 nr_flush_rst
; /* Flushes reset value for pad dist.*/
647 atomic64_t nr_flush
; /* Number of flush/fua I/O */
649 #ifdef CONFIG_NVM_PBLK_DEBUG
650 /* Non-persistent debug counters, 4kb sector I/Os */
651 atomic_long_t inflight_writes
; /* Inflight writes (user and gc) */
652 atomic_long_t padded_writes
; /* Sectors padded due to flush/fua */
653 atomic_long_t padded_wb
; /* Sectors padded in write buffer */
654 atomic_long_t req_writes
; /* Sectors stored on write buffer */
655 atomic_long_t sub_writes
; /* Sectors submitted from buffer */
656 atomic_long_t sync_writes
; /* Sectors synced to media */
657 atomic_long_t inflight_reads
; /* Inflight sector read requests */
658 atomic_long_t cache_reads
; /* Read requests that hit the cache */
659 atomic_long_t sync_reads
; /* Completed sector read requests */
660 atomic_long_t recov_writes
; /* Sectors submitted from recovery */
661 atomic_long_t recov_gc_writes
; /* Sectors submitted from write GC */
662 atomic_long_t recov_gc_reads
; /* Sectors submitted from read GC */
667 atomic_long_t read_failed
;
668 atomic_long_t read_empty
;
669 atomic_long_t read_high_ecc
;
670 atomic_long_t read_failed_gc
;
671 atomic_long_t write_failed
;
672 atomic_long_t erase_failed
;
674 atomic_t inflight_io
; /* General inflight I/O counter */
676 struct task_struct
*writer_ts
;
678 /* Simple translation map of logical addresses to physical addresses.
679 * The logical addresses is known by the host system, while the physical
680 * addresses are used when writing to the disk block device.
682 unsigned char *trans_map
;
683 spinlock_t trans_lock
;
685 struct list_head compl_list
;
687 spinlock_t resubmit_lock
; /* Resubmit list lock */
688 struct list_head resubmit_list
; /* Resubmit list for failed writes*/
690 mempool_t page_bio_pool
;
691 mempool_t gen_ws_pool
;
697 struct workqueue_struct
*close_wq
;
698 struct workqueue_struct
*bb_wq
;
699 struct workqueue_struct
*r_end_wq
;
701 struct timer_list wtimer
;
706 struct pblk_line_ws
{
708 struct pblk_line
*line
;
710 struct work_struct ws
;
713 #define pblk_g_rq_size (sizeof(struct nvm_rq) + sizeof(struct pblk_g_ctx))
714 #define pblk_w_rq_size (sizeof(struct nvm_rq) + sizeof(struct pblk_c_ctx))
716 #define pblk_err(pblk, fmt, ...) \
717 pr_err("pblk %s: " fmt, pblk->disk->disk_name, ##__VA_ARGS__)
718 #define pblk_info(pblk, fmt, ...) \
719 pr_info("pblk %s: " fmt, pblk->disk->disk_name, ##__VA_ARGS__)
720 #define pblk_warn(pblk, fmt, ...) \
721 pr_warn("pblk %s: " fmt, pblk->disk->disk_name, ##__VA_ARGS__)
722 #define pblk_debug(pblk, fmt, ...) \
723 pr_debug("pblk %s: " fmt, pblk->disk->disk_name, ##__VA_ARGS__)
726 * pblk ring buffer operations
728 int pblk_rb_init(struct pblk_rb
*rb
, struct pblk_rb_entry
*rb_entry_base
,
729 unsigned int power_size
, unsigned int power_seg_sz
);
730 unsigned int pblk_rb_calculate_size(unsigned int nr_entries
);
731 void *pblk_rb_entries_ref(struct pblk_rb
*rb
);
732 int pblk_rb_may_write_user(struct pblk_rb
*rb
, struct bio
*bio
,
733 unsigned int nr_entries
, unsigned int *pos
);
734 int pblk_rb_may_write_gc(struct pblk_rb
*rb
, unsigned int nr_entries
,
736 void pblk_rb_write_entry_user(struct pblk_rb
*rb
, void *data
,
737 struct pblk_w_ctx w_ctx
, unsigned int pos
);
738 void pblk_rb_write_entry_gc(struct pblk_rb
*rb
, void *data
,
739 struct pblk_w_ctx w_ctx
, struct pblk_line
*line
,
740 u64 paddr
, unsigned int pos
);
741 struct pblk_w_ctx
*pblk_rb_w_ctx(struct pblk_rb
*rb
, unsigned int pos
);
742 void pblk_rb_flush(struct pblk_rb
*rb
);
744 void pblk_rb_sync_l2p(struct pblk_rb
*rb
);
745 unsigned int pblk_rb_read_to_bio(struct pblk_rb
*rb
, struct nvm_rq
*rqd
,
746 unsigned int pos
, unsigned int nr_entries
,
748 int pblk_rb_copy_to_bio(struct pblk_rb
*rb
, struct bio
*bio
, sector_t lba
,
749 struct ppa_addr ppa
, int bio_iter
, bool advanced_bio
);
750 unsigned int pblk_rb_read_commit(struct pblk_rb
*rb
, unsigned int entries
);
752 unsigned int pblk_rb_sync_init(struct pblk_rb
*rb
, unsigned long *flags
);
753 unsigned int pblk_rb_sync_advance(struct pblk_rb
*rb
, unsigned int nr_entries
);
754 struct pblk_rb_entry
*pblk_rb_sync_scan_entry(struct pblk_rb
*rb
,
755 struct ppa_addr
*ppa
);
756 void pblk_rb_sync_end(struct pblk_rb
*rb
, unsigned long *flags
);
757 unsigned int pblk_rb_flush_point_count(struct pblk_rb
*rb
);
759 unsigned int pblk_rb_read_count(struct pblk_rb
*rb
);
760 unsigned int pblk_rb_sync_count(struct pblk_rb
*rb
);
761 unsigned int pblk_rb_wrap_pos(struct pblk_rb
*rb
, unsigned int pos
);
763 int pblk_rb_tear_down_check(struct pblk_rb
*rb
);
764 int pblk_rb_pos_oob(struct pblk_rb
*rb
, u64 pos
);
765 void pblk_rb_data_free(struct pblk_rb
*rb
);
766 ssize_t
pblk_rb_sysfs(struct pblk_rb
*rb
, char *buf
);
771 struct nvm_rq
*pblk_alloc_rqd(struct pblk
*pblk
, int type
);
772 void pblk_free_rqd(struct pblk
*pblk
, struct nvm_rq
*rqd
, int type
);
773 void pblk_set_sec_per_write(struct pblk
*pblk
, int sec_per_write
);
774 int pblk_setup_w_rec_rq(struct pblk
*pblk
, struct nvm_rq
*rqd
,
775 struct pblk_c_ctx
*c_ctx
);
776 void pblk_discard(struct pblk
*pblk
, struct bio
*bio
);
777 struct nvm_chk_meta
*pblk_chunk_get_info(struct pblk
*pblk
);
778 struct nvm_chk_meta
*pblk_chunk_get_off(struct pblk
*pblk
,
779 struct nvm_chk_meta
*lp
,
780 struct ppa_addr ppa
);
781 void pblk_log_write_err(struct pblk
*pblk
, struct nvm_rq
*rqd
);
782 void pblk_log_read_err(struct pblk
*pblk
, struct nvm_rq
*rqd
);
783 int pblk_submit_io(struct pblk
*pblk
, struct nvm_rq
*rqd
);
784 int pblk_submit_io_sync(struct pblk
*pblk
, struct nvm_rq
*rqd
);
785 int pblk_submit_meta_io(struct pblk
*pblk
, struct pblk_line
*meta_line
);
786 struct bio
*pblk_bio_map_addr(struct pblk
*pblk
, void *data
,
787 unsigned int nr_secs
, unsigned int len
,
788 int alloc_type
, gfp_t gfp_mask
);
789 struct pblk_line
*pblk_line_get(struct pblk
*pblk
);
790 struct pblk_line
*pblk_line_get_first_data(struct pblk
*pblk
);
791 struct pblk_line
*pblk_line_replace_data(struct pblk
*pblk
);
792 int pblk_line_recov_alloc(struct pblk
*pblk
, struct pblk_line
*line
);
793 void pblk_line_recov_close(struct pblk
*pblk
, struct pblk_line
*line
);
794 struct pblk_line
*pblk_line_get_data(struct pblk
*pblk
);
795 struct pblk_line
*pblk_line_get_erase(struct pblk
*pblk
);
796 int pblk_line_erase(struct pblk
*pblk
, struct pblk_line
*line
);
797 int pblk_line_is_full(struct pblk_line
*line
);
798 void pblk_line_free(struct pblk_line
*line
);
799 void pblk_line_close_meta(struct pblk
*pblk
, struct pblk_line
*line
);
800 void pblk_line_close(struct pblk
*pblk
, struct pblk_line
*line
);
801 void pblk_line_close_ws(struct work_struct
*work
);
802 void pblk_pipeline_stop(struct pblk
*pblk
);
803 void __pblk_pipeline_stop(struct pblk
*pblk
);
804 void __pblk_pipeline_flush(struct pblk
*pblk
);
805 void pblk_gen_run_ws(struct pblk
*pblk
, struct pblk_line
*line
, void *priv
,
806 void (*work
)(struct work_struct
*), gfp_t gfp_mask
,
807 struct workqueue_struct
*wq
);
808 u64
pblk_line_smeta_start(struct pblk
*pblk
, struct pblk_line
*line
);
809 int pblk_line_read_smeta(struct pblk
*pblk
, struct pblk_line
*line
);
810 int pblk_line_read_emeta(struct pblk
*pblk
, struct pblk_line
*line
,
812 int pblk_blk_erase_async(struct pblk
*pblk
, struct ppa_addr erase_ppa
);
813 void pblk_line_put(struct kref
*ref
);
814 void pblk_line_put_wq(struct kref
*ref
);
815 struct list_head
*pblk_line_gc_list(struct pblk
*pblk
, struct pblk_line
*line
);
816 u64
pblk_lookup_page(struct pblk
*pblk
, struct pblk_line
*line
);
817 void pblk_dealloc_page(struct pblk
*pblk
, struct pblk_line
*line
, int nr_secs
);
818 u64
pblk_alloc_page(struct pblk
*pblk
, struct pblk_line
*line
, int nr_secs
);
819 u64
__pblk_alloc_page(struct pblk
*pblk
, struct pblk_line
*line
, int nr_secs
);
820 int pblk_calc_secs(struct pblk
*pblk
, unsigned long secs_avail
,
821 unsigned long secs_to_flush
);
822 void pblk_up_page(struct pblk
*pblk
, struct ppa_addr
*ppa_list
, int nr_ppas
);
823 void pblk_down_rq(struct pblk
*pblk
, struct ppa_addr
*ppa_list
, int nr_ppas
,
824 unsigned long *lun_bitmap
);
825 void pblk_down_page(struct pblk
*pblk
, struct ppa_addr
*ppa_list
, int nr_ppas
);
826 void pblk_up_rq(struct pblk
*pblk
, struct ppa_addr
*ppa_list
, int nr_ppas
,
827 unsigned long *lun_bitmap
);
828 int pblk_bio_add_pages(struct pblk
*pblk
, struct bio
*bio
, gfp_t flags
,
830 void pblk_bio_free_pages(struct pblk
*pblk
, struct bio
*bio
, int off
,
832 void pblk_map_invalidate(struct pblk
*pblk
, struct ppa_addr ppa
);
833 void __pblk_map_invalidate(struct pblk
*pblk
, struct pblk_line
*line
,
835 void pblk_update_map(struct pblk
*pblk
, sector_t lba
, struct ppa_addr ppa
);
836 void pblk_update_map_cache(struct pblk
*pblk
, sector_t lba
,
837 struct ppa_addr ppa
);
838 void pblk_update_map_dev(struct pblk
*pblk
, sector_t lba
,
839 struct ppa_addr ppa
, struct ppa_addr entry_line
);
840 int pblk_update_map_gc(struct pblk
*pblk
, sector_t lba
, struct ppa_addr ppa
,
841 struct pblk_line
*gc_line
, u64 paddr
);
842 void pblk_lookup_l2p_rand(struct pblk
*pblk
, struct ppa_addr
*ppas
,
843 u64
*lba_list
, int nr_secs
);
844 void pblk_lookup_l2p_seq(struct pblk
*pblk
, struct ppa_addr
*ppas
,
845 sector_t blba
, int nr_secs
);
848 * pblk user I/O write path
850 int pblk_write_to_cache(struct pblk
*pblk
, struct bio
*bio
,
851 unsigned long flags
);
852 int pblk_write_gc_to_cache(struct pblk
*pblk
, struct pblk_gc_rq
*gc_rq
);
857 void pblk_map_erase_rq(struct pblk
*pblk
, struct nvm_rq
*rqd
,
858 unsigned int sentry
, unsigned long *lun_bitmap
,
859 unsigned int valid_secs
, struct ppa_addr
*erase_ppa
);
860 void pblk_map_rq(struct pblk
*pblk
, struct nvm_rq
*rqd
, unsigned int sentry
,
861 unsigned long *lun_bitmap
, unsigned int valid_secs
,
867 int pblk_write_ts(void *data
);
868 void pblk_write_timer_fn(struct timer_list
*t
);
869 void pblk_write_should_kick(struct pblk
*pblk
);
870 void pblk_write_kick(struct pblk
*pblk
);
875 extern struct bio_set pblk_bio_set
;
876 int pblk_submit_read(struct pblk
*pblk
, struct bio
*bio
);
877 int pblk_submit_read_gc(struct pblk
*pblk
, struct pblk_gc_rq
*gc_rq
);
881 struct pblk_line
*pblk_recov_l2p(struct pblk
*pblk
);
882 int pblk_recov_pad(struct pblk
*pblk
);
883 int pblk_recov_check_emeta(struct pblk
*pblk
, struct line_emeta
*emeta
);
888 #define PBLK_GC_MAX_READERS 8 /* Max number of outstanding GC reader jobs */
889 #define PBLK_GC_RQ_QD 128 /* Queue depth for inflight GC requests */
890 #define PBLK_GC_L_QD 4 /* Queue depth for inflight GC lines */
891 #define PBLK_GC_RSV_LINE 1 /* Reserved lines for GC */
893 int pblk_gc_init(struct pblk
*pblk
);
894 void pblk_gc_exit(struct pblk
*pblk
, bool graceful
);
895 void pblk_gc_should_start(struct pblk
*pblk
);
896 void pblk_gc_should_stop(struct pblk
*pblk
);
897 void pblk_gc_should_kick(struct pblk
*pblk
);
898 void pblk_gc_free_full_lines(struct pblk
*pblk
);
899 void pblk_gc_sysfs_state_show(struct pblk
*pblk
, int *gc_enabled
,
901 int pblk_gc_sysfs_force(struct pblk
*pblk
, int force
);
906 void pblk_rl_init(struct pblk_rl
*rl
, int budget
);
907 void pblk_rl_free(struct pblk_rl
*rl
);
908 void pblk_rl_update_rates(struct pblk_rl
*rl
);
909 int pblk_rl_high_thrs(struct pblk_rl
*rl
);
910 unsigned long pblk_rl_nr_free_blks(struct pblk_rl
*rl
);
911 unsigned long pblk_rl_nr_user_free_blks(struct pblk_rl
*rl
);
912 int pblk_rl_user_may_insert(struct pblk_rl
*rl
, int nr_entries
);
913 void pblk_rl_inserted(struct pblk_rl
*rl
, int nr_entries
);
914 void pblk_rl_user_in(struct pblk_rl
*rl
, int nr_entries
);
915 int pblk_rl_gc_may_insert(struct pblk_rl
*rl
, int nr_entries
);
916 void pblk_rl_gc_in(struct pblk_rl
*rl
, int nr_entries
);
917 void pblk_rl_out(struct pblk_rl
*rl
, int nr_user
, int nr_gc
);
918 int pblk_rl_max_io(struct pblk_rl
*rl
);
919 void pblk_rl_free_lines_inc(struct pblk_rl
*rl
, struct pblk_line
*line
);
920 void pblk_rl_free_lines_dec(struct pblk_rl
*rl
, struct pblk_line
*line
,
922 int pblk_rl_is_limit(struct pblk_rl
*rl
);
924 void pblk_rl_werr_line_in(struct pblk_rl
*rl
);
925 void pblk_rl_werr_line_out(struct pblk_rl
*rl
);
930 int pblk_sysfs_init(struct gendisk
*tdisk
);
931 void pblk_sysfs_exit(struct gendisk
*tdisk
);
933 static inline void *pblk_malloc(size_t size
, int type
, gfp_t flags
)
935 if (type
== PBLK_KMALLOC_META
)
936 return kmalloc(size
, flags
);
937 return vmalloc(size
);
940 static inline void pblk_mfree(void *ptr
, int type
)
942 if (type
== PBLK_KMALLOC_META
)
948 static inline struct nvm_rq
*nvm_rq_from_c_ctx(void *c_ctx
)
950 return c_ctx
- sizeof(struct nvm_rq
);
953 static inline void *emeta_to_bb(struct line_emeta
*emeta
)
955 return emeta
->bb_bitmap
;
958 static inline void *emeta_to_wa(struct pblk_line_meta
*lm
,
959 struct line_emeta
*emeta
)
961 return emeta
->bb_bitmap
+ lm
->blk_bitmap_len
;
964 static inline void *emeta_to_lbas(struct pblk
*pblk
, struct line_emeta
*emeta
)
966 return ((void *)emeta
+ pblk
->lm
.emeta_len
[1]);
969 static inline void *emeta_to_vsc(struct pblk
*pblk
, struct line_emeta
*emeta
)
971 return (emeta_to_lbas(pblk
, emeta
) + pblk
->lm
.emeta_len
[2]);
974 static inline int pblk_line_vsc(struct pblk_line
*line
)
976 return le32_to_cpu(*line
->vsc
);
979 static inline int pblk_pad_distance(struct pblk
*pblk
)
981 struct nvm_tgt_dev
*dev
= pblk
->dev
;
982 struct nvm_geo
*geo
= &dev
->geo
;
984 return geo
->mw_cunits
* geo
->all_luns
* geo
->ws_opt
;
987 static inline int pblk_ppa_to_line(struct ppa_addr p
)
992 static inline int pblk_ppa_to_pos(struct nvm_geo
*geo
, struct ppa_addr p
)
994 return p
.a
.lun
* geo
->num_ch
+ p
.a
.ch
;
997 static inline struct ppa_addr
addr_to_gen_ppa(struct pblk
*pblk
, u64 paddr
,
1000 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1001 struct nvm_geo
*geo
= &dev
->geo
;
1002 struct ppa_addr ppa
;
1004 if (geo
->version
== NVM_OCSSD_SPEC_12
) {
1005 struct nvm_addrf_12
*ppaf
= (struct nvm_addrf_12
*)&pblk
->addrf
;
1008 ppa
.g
.blk
= line_id
;
1009 ppa
.g
.pg
= (paddr
& ppaf
->pg_mask
) >> ppaf
->pg_offset
;
1010 ppa
.g
.lun
= (paddr
& ppaf
->lun_mask
) >> ppaf
->lun_offset
;
1011 ppa
.g
.ch
= (paddr
& ppaf
->ch_mask
) >> ppaf
->ch_offset
;
1012 ppa
.g
.pl
= (paddr
& ppaf
->pln_mask
) >> ppaf
->pln_offset
;
1013 ppa
.g
.sec
= (paddr
& ppaf
->sec_mask
) >> ppaf
->sec_offset
;
1015 struct pblk_addrf
*uaddrf
= &pblk
->uaddrf
;
1016 int secs
, chnls
, luns
;
1020 ppa
.m
.chk
= line_id
;
1022 paddr
= div_u64_rem(paddr
, uaddrf
->sec_stripe
, &secs
);
1025 paddr
= div_u64_rem(paddr
, uaddrf
->ch_stripe
, &chnls
);
1028 paddr
= div_u64_rem(paddr
, uaddrf
->lun_stripe
, &luns
);
1031 ppa
.m
.sec
+= uaddrf
->sec_stripe
* paddr
;
1037 static inline u64
pblk_dev_ppa_to_line_addr(struct pblk
*pblk
,
1040 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1041 struct nvm_geo
*geo
= &dev
->geo
;
1044 if (geo
->version
== NVM_OCSSD_SPEC_12
) {
1045 struct nvm_addrf_12
*ppaf
= (struct nvm_addrf_12
*)&pblk
->addrf
;
1047 paddr
= (u64
)p
.g
.ch
<< ppaf
->ch_offset
;
1048 paddr
|= (u64
)p
.g
.lun
<< ppaf
->lun_offset
;
1049 paddr
|= (u64
)p
.g
.pg
<< ppaf
->pg_offset
;
1050 paddr
|= (u64
)p
.g
.pl
<< ppaf
->pln_offset
;
1051 paddr
|= (u64
)p
.g
.sec
<< ppaf
->sec_offset
;
1053 struct pblk_addrf
*uaddrf
= &pblk
->uaddrf
;
1057 paddr
= (u64
)p
.m
.grp
* uaddrf
->sec_stripe
;
1058 paddr
+= (u64
)p
.m
.pu
* uaddrf
->sec_lun_stripe
;
1060 secs
= div_u64_rem(secs
, uaddrf
->sec_stripe
, &sec_stripe
);
1061 paddr
+= secs
* uaddrf
->sec_ws_stripe
;
1062 paddr
+= sec_stripe
;
1068 static inline struct ppa_addr
pblk_ppa32_to_ppa64(struct pblk
*pblk
, u32 ppa32
)
1070 struct ppa_addr ppa64
;
1075 ppa64
.ppa
= ADDR_EMPTY
;
1076 } else if (ppa32
& (1U << 31)) {
1077 ppa64
.c
.line
= ppa32
& ((~0U) >> 1);
1078 ppa64
.c
.is_cached
= 1;
1080 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1081 struct nvm_geo
*geo
= &dev
->geo
;
1083 if (geo
->version
== NVM_OCSSD_SPEC_12
) {
1084 struct nvm_addrf_12
*ppaf
=
1085 (struct nvm_addrf_12
*)&pblk
->addrf
;
1087 ppa64
.g
.ch
= (ppa32
& ppaf
->ch_mask
) >>
1089 ppa64
.g
.lun
= (ppa32
& ppaf
->lun_mask
) >>
1091 ppa64
.g
.blk
= (ppa32
& ppaf
->blk_mask
) >>
1093 ppa64
.g
.pg
= (ppa32
& ppaf
->pg_mask
) >>
1095 ppa64
.g
.pl
= (ppa32
& ppaf
->pln_mask
) >>
1097 ppa64
.g
.sec
= (ppa32
& ppaf
->sec_mask
) >>
1100 struct nvm_addrf
*lbaf
= &pblk
->addrf
;
1102 ppa64
.m
.grp
= (ppa32
& lbaf
->ch_mask
) >>
1104 ppa64
.m
.pu
= (ppa32
& lbaf
->lun_mask
) >>
1106 ppa64
.m
.chk
= (ppa32
& lbaf
->chk_mask
) >>
1108 ppa64
.m
.sec
= (ppa32
& lbaf
->sec_mask
) >>
1116 static inline u32
pblk_ppa64_to_ppa32(struct pblk
*pblk
, struct ppa_addr ppa64
)
1120 if (ppa64
.ppa
== ADDR_EMPTY
) {
1122 } else if (ppa64
.c
.is_cached
) {
1123 ppa32
|= ppa64
.c
.line
;
1126 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1127 struct nvm_geo
*geo
= &dev
->geo
;
1129 if (geo
->version
== NVM_OCSSD_SPEC_12
) {
1130 struct nvm_addrf_12
*ppaf
=
1131 (struct nvm_addrf_12
*)&pblk
->addrf
;
1133 ppa32
|= ppa64
.g
.ch
<< ppaf
->ch_offset
;
1134 ppa32
|= ppa64
.g
.lun
<< ppaf
->lun_offset
;
1135 ppa32
|= ppa64
.g
.blk
<< ppaf
->blk_offset
;
1136 ppa32
|= ppa64
.g
.pg
<< ppaf
->pg_offset
;
1137 ppa32
|= ppa64
.g
.pl
<< ppaf
->pln_offset
;
1138 ppa32
|= ppa64
.g
.sec
<< ppaf
->sec_offset
;
1140 struct nvm_addrf
*lbaf
= &pblk
->addrf
;
1142 ppa32
|= ppa64
.m
.grp
<< lbaf
->ch_offset
;
1143 ppa32
|= ppa64
.m
.pu
<< lbaf
->lun_offset
;
1144 ppa32
|= ppa64
.m
.chk
<< lbaf
->chk_offset
;
1145 ppa32
|= ppa64
.m
.sec
<< lbaf
->sec_offset
;
1152 static inline struct ppa_addr
pblk_trans_map_get(struct pblk
*pblk
,
1155 struct ppa_addr ppa
;
1157 if (pblk
->addrf_len
< 32) {
1158 u32
*map
= (u32
*)pblk
->trans_map
;
1160 ppa
= pblk_ppa32_to_ppa64(pblk
, map
[lba
]);
1162 struct ppa_addr
*map
= (struct ppa_addr
*)pblk
->trans_map
;
1170 static inline void pblk_trans_map_set(struct pblk
*pblk
, sector_t lba
,
1171 struct ppa_addr ppa
)
1173 if (pblk
->addrf_len
< 32) {
1174 u32
*map
= (u32
*)pblk
->trans_map
;
1176 map
[lba
] = pblk_ppa64_to_ppa32(pblk
, ppa
);
1178 u64
*map
= (u64
*)pblk
->trans_map
;
1184 static inline int pblk_ppa_empty(struct ppa_addr ppa_addr
)
1186 return (ppa_addr
.ppa
== ADDR_EMPTY
);
1189 static inline void pblk_ppa_set_empty(struct ppa_addr
*ppa_addr
)
1191 ppa_addr
->ppa
= ADDR_EMPTY
;
1194 static inline bool pblk_ppa_comp(struct ppa_addr lppa
, struct ppa_addr rppa
)
1196 return (lppa
.ppa
== rppa
.ppa
);
1199 static inline int pblk_addr_in_cache(struct ppa_addr ppa
)
1201 return (ppa
.ppa
!= ADDR_EMPTY
&& ppa
.c
.is_cached
);
1204 static inline int pblk_addr_to_cacheline(struct ppa_addr ppa
)
1209 static inline struct ppa_addr
pblk_cacheline_to_addr(int addr
)
1219 static inline u32
pblk_calc_meta_header_crc(struct pblk
*pblk
,
1220 struct line_header
*header
)
1224 crc
= crc32_le(crc
, (unsigned char *)header
+ sizeof(crc
),
1225 sizeof(struct line_header
) - sizeof(crc
));
1230 static inline u32
pblk_calc_smeta_crc(struct pblk
*pblk
,
1231 struct line_smeta
*smeta
)
1233 struct pblk_line_meta
*lm
= &pblk
->lm
;
1236 crc
= crc32_le(crc
, (unsigned char *)smeta
+
1237 sizeof(struct line_header
) + sizeof(crc
),
1239 sizeof(struct line_header
) - sizeof(crc
));
1244 static inline u32
pblk_calc_emeta_crc(struct pblk
*pblk
,
1245 struct line_emeta
*emeta
)
1247 struct pblk_line_meta
*lm
= &pblk
->lm
;
1250 crc
= crc32_le(crc
, (unsigned char *)emeta
+
1251 sizeof(struct line_header
) + sizeof(crc
),
1253 sizeof(struct line_header
) - sizeof(crc
));
1258 static inline int pblk_set_progr_mode(struct pblk
*pblk
, int type
)
1260 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1261 struct nvm_geo
*geo
= &dev
->geo
;
1264 if (geo
->version
== NVM_OCSSD_SPEC_20
)
1267 flags
= geo
->pln_mode
>> 1;
1269 if (type
== PBLK_WRITE
)
1270 flags
|= NVM_IO_SCRAMBLE_ENABLE
;
1276 PBLK_READ_RANDOM
= 0,
1277 PBLK_READ_SEQUENTIAL
= 1,
1280 static inline int pblk_set_read_mode(struct pblk
*pblk
, int type
)
1282 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1283 struct nvm_geo
*geo
= &dev
->geo
;
1286 if (geo
->version
== NVM_OCSSD_SPEC_20
)
1289 flags
= NVM_IO_SUSPEND
| NVM_IO_SCRAMBLE_ENABLE
;
1290 if (type
== PBLK_READ_SEQUENTIAL
)
1291 flags
|= geo
->pln_mode
>> 1;
1296 static inline int pblk_io_aligned(struct pblk
*pblk
, int nr_secs
)
1298 return !(nr_secs
% pblk
->min_write_pgs
);
1301 #ifdef CONFIG_NVM_PBLK_DEBUG
1302 static inline void print_ppa(struct pblk
*pblk
, struct ppa_addr
*p
,
1303 char *msg
, int error
)
1305 struct nvm_geo
*geo
= &pblk
->dev
->geo
;
1307 if (p
->c
.is_cached
) {
1308 pblk_err(pblk
, "ppa: (%s: %x) cache line: %llu\n",
1309 msg
, error
, (u64
)p
->c
.line
);
1310 } else if (geo
->version
== NVM_OCSSD_SPEC_12
) {
1311 pblk_err(pblk
, "ppa: (%s: %x):ch:%d,lun:%d,blk:%d,pg:%d,pl:%d,sec:%d\n",
1313 p
->g
.ch
, p
->g
.lun
, p
->g
.blk
,
1314 p
->g
.pg
, p
->g
.pl
, p
->g
.sec
);
1316 pblk_err(pblk
, "ppa: (%s: %x):ch:%d,lun:%d,chk:%d,sec:%d\n",
1318 p
->m
.grp
, p
->m
.pu
, p
->m
.chk
, p
->m
.sec
);
1322 static inline void pblk_print_failed_rqd(struct pblk
*pblk
, struct nvm_rq
*rqd
,
1327 if (rqd
->nr_ppas
== 1) {
1328 print_ppa(pblk
, &rqd
->ppa_addr
, "rqd", error
);
1332 while ((bit
= find_next_bit((void *)&rqd
->ppa_status
, rqd
->nr_ppas
,
1333 bit
+ 1)) < rqd
->nr_ppas
) {
1334 print_ppa(pblk
, &rqd
->ppa_list
[bit
], "rqd", error
);
1337 pblk_err(pblk
, "error:%d, ppa_status:%llx\n", error
, rqd
->ppa_status
);
1340 static inline int pblk_boundary_ppa_checks(struct nvm_tgt_dev
*tgt_dev
,
1341 struct ppa_addr
*ppas
, int nr_ppas
)
1343 struct nvm_geo
*geo
= &tgt_dev
->geo
;
1344 struct ppa_addr
*ppa
;
1347 for (i
= 0; i
< nr_ppas
; i
++) {
1350 if (geo
->version
== NVM_OCSSD_SPEC_12
) {
1351 if (!ppa
->c
.is_cached
&&
1352 ppa
->g
.ch
< geo
->num_ch
&&
1353 ppa
->g
.lun
< geo
->num_lun
&&
1354 ppa
->g
.pl
< geo
->num_pln
&&
1355 ppa
->g
.blk
< geo
->num_chk
&&
1356 ppa
->g
.pg
< geo
->num_pg
&&
1357 ppa
->g
.sec
< geo
->ws_min
)
1360 if (!ppa
->c
.is_cached
&&
1361 ppa
->m
.grp
< geo
->num_ch
&&
1362 ppa
->m
.pu
< geo
->num_lun
&&
1363 ppa
->m
.chk
< geo
->num_chk
&&
1364 ppa
->m
.sec
< geo
->clba
)
1368 print_ppa(tgt_dev
->q
->queuedata
, ppa
, "boundary", i
);
1375 static inline int pblk_check_io(struct pblk
*pblk
, struct nvm_rq
*rqd
)
1377 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1378 struct ppa_addr
*ppa_list
;
1380 ppa_list
= (rqd
->nr_ppas
> 1) ? rqd
->ppa_list
: &rqd
->ppa_addr
;
1382 if (pblk_boundary_ppa_checks(dev
, ppa_list
, rqd
->nr_ppas
)) {
1387 if (rqd
->opcode
== NVM_OP_PWRITE
) {
1388 struct pblk_line
*line
;
1389 struct ppa_addr ppa
;
1392 for (i
= 0; i
< rqd
->nr_ppas
; i
++) {
1394 line
= &pblk
->lines
[pblk_ppa_to_line(ppa
)];
1396 spin_lock(&line
->lock
);
1397 if (line
->state
!= PBLK_LINESTATE_OPEN
) {
1398 pblk_err(pblk
, "bad ppa: line:%d,state:%d\n",
1399 line
->id
, line
->state
);
1401 spin_unlock(&line
->lock
);
1404 spin_unlock(&line
->lock
);
1412 static inline int pblk_boundary_paddr_checks(struct pblk
*pblk
, u64 paddr
)
1414 struct pblk_line_meta
*lm
= &pblk
->lm
;
1416 if (paddr
> lm
->sec_per_line
)
1422 static inline unsigned int pblk_get_bi_idx(struct bio
*bio
)
1424 return bio
->bi_iter
.bi_idx
;
1427 static inline sector_t
pblk_get_lba(struct bio
*bio
)
1429 return bio
->bi_iter
.bi_sector
/ NR_PHY_IN_LOG
;
1432 static inline unsigned int pblk_get_secs(struct bio
*bio
)
1434 return bio
->bi_iter
.bi_size
/ PBLK_EXPOSED_PAGE_SIZE
;
1437 static inline void pblk_setup_uuid(struct pblk
*pblk
)
1442 memcpy(pblk
->instance_uuid
, uuid
.b
, 16);
1444 #endif /* PBLK_H_ */