1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright (C) 2015 IT University of Copenhagen (rrpc.h)
4 * Copyright (C) 2016 CNEX Labs
5 * Initial release: Matias Bjorling <matias@cnexlabs.com>
6 * Write buffering: Javier Gonzalez <javier@cnexlabs.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License version
10 * 2 as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * Implementation of a Physical Block-device target for Open-channel SSDs.
24 #include <linux/blkdev.h>
25 #include <linux/blk-mq.h>
26 #include <linux/bio.h>
27 #include <linux/module.h>
28 #include <linux/kthread.h>
29 #include <linux/vmalloc.h>
30 #include <linux/crc32.h>
31 #include <linux/uuid.h>
33 #include <linux/lightnvm.h>
35 /* Run only GC if less than 1/X blocks are free */
36 #define GC_LIMIT_INVERSE 5
37 #define GC_TIME_MSECS 1000
39 #define PBLK_SECTOR (512)
40 #define PBLK_EXPOSED_PAGE_SIZE (4096)
42 #define PBLK_NR_CLOSE_JOBS (4)
44 #define PBLK_CACHE_NAME_LEN (DISK_NAME_LEN + 16)
46 /* Max 512 LUNs per device */
47 #define PBLK_MAX_LUNS_BITMAP (4)
49 #define NR_PHY_IN_LOG (PBLK_EXPOSED_PAGE_SIZE / PBLK_SECTOR)
51 /* Static pool sizes */
52 #define PBLK_GEN_WS_POOL_SIZE (2)
54 #define PBLK_DEFAULT_OP (11)
58 PBLK_WRITE
= WRITE
,/* Write from write buffer */
59 PBLK_WRITE_INT
, /* Internal write - no write buffer */
60 PBLK_READ_RECOV
, /* Recovery read - errors allowed */
66 PBLK_IOTYPE_USER
= 1 << 0,
67 PBLK_IOTYPE_GC
= 1 << 1,
69 /* Write buffer flags */
70 PBLK_FLUSH_ENTRY
= 1 << 2,
71 PBLK_WRITTEN_DATA
= 1 << 3,
72 PBLK_SUBMITTED_ENTRY
= 1 << 4,
73 PBLK_WRITABLE_ENTRY
= 1 << 5,
77 PBLK_BLK_ST_OPEN
= 0x1,
78 PBLK_BLK_ST_CLOSED
= 0x2,
82 PBLK_CHUNK_RESET_START
,
83 PBLK_CHUNK_RESET_DONE
,
84 PBLK_CHUNK_RESET_FAILED
,
87 struct pblk_sec_meta
{
92 /* The number of GC lists and the rate-limiter states go together. This way the
93 * rate-limiter can dictate how much GC is needed based on resource utilization.
95 #define PBLK_GC_NR_LISTS 4
105 #define pblk_dma_ppa_size (sizeof(u64) * NVM_MAX_VLBA)
107 /* write buffer completion context */
109 struct list_head list
; /* Head for out-of-order completion */
111 unsigned long *lun_bitmap
; /* Luns used on current request */
113 unsigned int nr_valid
;
114 unsigned int nr_padded
;
120 unsigned long start_time
;
127 struct completion wait
;
131 /* Recovery context */
132 struct pblk_rec_ctx
{
135 struct work_struct ws_rec
;
140 struct bio_list bios
; /* Original bios - used for completion
141 * in REQ_FUA, REQ_FLUSH case
143 u64 lba
; /* Logic addr. associated with entry */
144 struct ppa_addr ppa
; /* Physic addr. associated with entry */
145 int flags
; /* Write context flags */
148 struct pblk_rb_entry
{
149 struct ppa_addr cacheline
; /* Cacheline for this entry */
150 void *data
; /* Pointer to data on this entry */
151 struct pblk_w_ctx w_ctx
; /* Context for this entry */
152 struct list_head index
; /* List head to enable indexes */
155 #define EMPTY_ENTRY (~0U)
157 struct pblk_rb_pages
{
160 struct list_head list
;
164 struct pblk_rb_entry
*entries
; /* Ring buffer entries */
165 unsigned int mem
; /* Write offset - points to next
166 * writable entry in memory
168 unsigned int subm
; /* Read offset - points to last entry
169 * that has been submitted to the media
172 unsigned int sync
; /* Synced - backpointer that signals
173 * the last submitted entry that has
174 * been successfully persisted to media
176 unsigned int flush_point
; /* Sync point - last entry that must be
177 * flushed to the media. Used with
178 * REQ_FLUSH and REQ_FUA
180 unsigned int l2p_update
; /* l2p update point - next entry for
181 * which l2p mapping will be updated to
182 * contain a device ppa address (instead
185 unsigned int nr_entries
; /* Number of entries in write buffer -
186 * must be a power of two
188 unsigned int seg_size
; /* Size of the data segments being
189 * stored on each entry. Typically this
193 unsigned int back_thres
; /* Threshold that shall be maintained by
194 * the backpointer in order to respect
195 * geo->mw_cunits on a per chunk basis
198 struct list_head pages
; /* List of data pages */
200 spinlock_t w_lock
; /* Write lock */
201 spinlock_t s_lock
; /* Sync lock */
203 #ifdef CONFIG_NVM_PBLK_DEBUG
204 atomic_t inflight_flush_point
; /* Not served REQ_FLUSH | REQ_FUA */
208 #define PBLK_RECOVERY_SECTORS 16
211 struct ppa_addr bppa
;
212 struct semaphore wr_sem
;
216 struct pblk_line
*line
;
218 u64 paddr_list
[NVM_MAX_VLBA
];
219 u64 lba_list
[NVM_MAX_VLBA
];
222 struct list_head list
;
226 /* These states are not protected by a lock since (i) they are in the
227 * fast path, and (ii) they are not critical.
233 struct task_struct
*gc_ts
;
234 struct task_struct
*gc_writer_ts
;
235 struct task_struct
*gc_reader_ts
;
237 struct workqueue_struct
*gc_line_reader_wq
;
238 struct workqueue_struct
*gc_reader_wq
;
240 struct timer_list gc_timer
;
242 struct semaphore gc_sem
;
243 atomic_t read_inflight_gc
; /* Number of lines with inflight GC reads */
244 atomic_t pipeline_gc
; /* Number of lines in the GC pipeline -
245 * started reads to finished writes
249 struct list_head w_list
;
250 struct list_head r_list
;
258 unsigned int high
; /* Upper threshold for rate limiter (free run -
259 * user I/O rate limiter
261 unsigned int high_pw
; /* High rounded up as a power of 2 */
263 #define PBLK_USER_HIGH_THRS 8 /* Begin write limit at 12% available blks */
264 #define PBLK_USER_LOW_THRS 10 /* Aggressive GC at 10% available blocks */
266 int rb_windows_pw
; /* Number of rate windows in the write buffer
267 * given as a power-of-2. This guarantees that
268 * when user I/O is being rate limited, there
269 * will be reserved enough space for the GC to
270 * place its payload. A window is of
271 * pblk->max_write_pgs size, which in NVMe is
274 int rb_budget
; /* Total number of entries available for I/O */
275 int rb_user_max
; /* Max buffer entries available for user I/O */
276 int rb_gc_max
; /* Max buffer entries available for GC I/O */
277 int rb_gc_rsv
; /* Reserved buffer entries for GC I/O */
278 int rb_state
; /* Rate-limiter current state */
279 int rb_max_io
; /* Maximum size for an I/O giving the config */
281 atomic_t rb_user_cnt
; /* User I/O buffer counter */
282 atomic_t rb_gc_cnt
; /* GC I/O buffer counter */
283 atomic_t rb_space
; /* Space limit in case of reaching capacity */
285 int rsv_blocks
; /* Reserved blocks for GC */
290 atomic_t werr_lines
; /* Number of write error lines that needs gc */
292 struct timer_list u_timer
;
294 unsigned long total_blocks
;
296 atomic_t free_blocks
; /* Total number of free blocks (+ OP) */
297 atomic_t free_user_blocks
; /* Number of user free blocks (no OP) */
300 #define PBLK_LINE_EMPTY (~0U)
304 PBLK_LINETYPE_FREE
= 0,
305 PBLK_LINETYPE_LOG
= 1,
306 PBLK_LINETYPE_DATA
= 2,
309 PBLK_LINESTATE_NEW
= 9,
310 PBLK_LINESTATE_FREE
= 10,
311 PBLK_LINESTATE_OPEN
= 11,
312 PBLK_LINESTATE_CLOSED
= 12,
313 PBLK_LINESTATE_GC
= 13,
314 PBLK_LINESTATE_BAD
= 14,
315 PBLK_LINESTATE_CORRUPT
= 15,
318 PBLK_LINEGC_NONE
= 20,
319 PBLK_LINEGC_EMPTY
= 21,
320 PBLK_LINEGC_LOW
= 22,
321 PBLK_LINEGC_MID
= 23,
322 PBLK_LINEGC_HIGH
= 24,
323 PBLK_LINEGC_FULL
= 25,
324 PBLK_LINEGC_WERR
= 26
327 #define PBLK_MAGIC 0x70626c6b /*pblk*/
329 /* emeta/smeta persistent storage format versions:
330 * Changes in major version requires offline migration.
331 * Changes in minor version are handled automatically during
335 #define SMETA_VERSION_MAJOR (0)
336 #define SMETA_VERSION_MINOR (1)
338 #define EMETA_VERSION_MAJOR (0)
339 #define EMETA_VERSION_MINOR (2)
343 __le32 identifier
; /* pblk identifier */
344 __u8 uuid
[16]; /* instance uuid */
345 __le16 type
; /* line type */
346 __u8 version_major
; /* version major */
347 __u8 version_minor
; /* version minor */
348 __le32 id
; /* line id for current line */
352 struct line_header header
;
354 __le32 crc
; /* Full structure including struct crc */
355 /* Previous line metadata */
356 __le32 prev_id
; /* Line id for previous line */
358 /* Current line metadata */
359 __le64 seq_nr
; /* Sequence number for current line */
362 __le32 window_wr_lun
; /* Number of parallel LUNs to write */
371 * Metadata layout in media:
373 * 1. struct line_emeta
374 * 2. bad block bitmap (u64 * window_wr_lun)
375 * 3. write amplification counters
376 * Mid sectors (start at lbas_sector):
377 * 3. nr_lbas (u64) forming lba list
378 * Last sectors (start at vsc_sector):
379 * 4. u32 valid sector count (vsc) for all lines (~0U: free line)
382 struct line_header header
;
384 __le32 crc
; /* Full structure including struct crc */
386 /* Previous line metadata */
387 __le32 prev_id
; /* Line id for prev line */
389 /* Current line metadata */
390 __le64 seq_nr
; /* Sequence number for current line */
393 __le32 window_wr_lun
; /* Number of parallel LUNs to write */
395 /* Bookkeeping for recovery */
396 __le32 next_id
; /* Line id for next line */
397 __le64 nr_lbas
; /* Number of lbas mapped in line */
398 __le64 nr_valid_lbas
; /* Number of valid lbas mapped in line */
399 __le64 bb_bitmap
[]; /* Updated bad block bitmap for line */
403 /* Write amplification counters stored on media */
405 __le64 user
; /* Number of user written sectors */
406 __le64 gc
; /* Number of sectors written by GC*/
407 __le64 pad
; /* Number of padded sectors */
411 struct line_emeta
*buf
; /* emeta buffer in media format */
412 int mem
; /* Write offset - points to next
413 * writable entry in memory
415 atomic_t sync
; /* Synced - backpointer that signals the
416 * last entry that has been successfully
419 unsigned int nr_entries
; /* Number of emeta entries */
423 struct line_smeta
*buf
; /* smeta buffer in persistent format */
426 struct pblk_w_err_gc
{
434 unsigned int id
; /* Line number corresponds to the
437 unsigned int seq_nr
; /* Unique line sequence number */
439 int state
; /* PBLK_LINESTATE_X */
440 int type
; /* PBLK_LINETYPE_X */
441 int gc_group
; /* PBLK_LINEGC_X */
442 struct list_head list
; /* Free, GC lists */
444 unsigned long *lun_bitmap
; /* Bitmap for LUNs mapped in line */
446 struct nvm_chk_meta
*chks
; /* Chunks forming line */
448 struct pblk_smeta
*smeta
; /* Start metadata */
449 struct pblk_emeta
*emeta
; /* End medatada */
451 int meta_line
; /* Metadata line id */
452 int meta_distance
; /* Distance between data and metadata */
454 u64 emeta_ssec
; /* Sector where emeta starts */
456 unsigned int sec_in_line
; /* Number of usable secs in line */
458 atomic_t blk_in_line
; /* Number of good blocks in line */
459 unsigned long *blk_bitmap
; /* Bitmap for valid/invalid blocks */
460 unsigned long *erase_bitmap
; /* Bitmap for erased blocks */
462 unsigned long *map_bitmap
; /* Bitmap for mapped sectors in line */
463 unsigned long *invalid_bitmap
; /* Bitmap for invalid sectors in line */
465 atomic_t left_eblks
; /* Blocks left for erasing */
466 atomic_t left_seblks
; /* Blocks left for sync erasing */
468 int left_msecs
; /* Sectors left for mapping */
469 unsigned int cur_sec
; /* Sector map pointer */
470 unsigned int nr_valid_lbas
; /* Number of valid lbas in line */
472 __le32
*vsc
; /* Valid sector count in line */
474 struct kref ref
; /* Write buffer L2P references */
475 atomic_t sec_to_update
; /* Outstanding L2P updates to ppa */
477 struct pblk_w_err_gc
*w_err_gc
; /* Write error gc recovery metadata */
479 spinlock_t lock
; /* Necessary for invalid_bitmap only */
482 #define PBLK_DATA_LINES 4
485 PBLK_KMALLOC_META
= 1,
486 PBLK_VMALLOC_META
= 2,
490 PBLK_EMETA_TYPE_HEADER
= 1, /* struct line_emeta first sector */
491 PBLK_EMETA_TYPE_LLBA
= 2, /* lba list - type: __le64 */
492 PBLK_EMETA_TYPE_VSC
= 3, /* vsc list - type: __le32 */
495 struct pblk_line_mgmt
{
496 int nr_lines
; /* Total number of full lines */
497 int nr_free_lines
; /* Number of full lines in free list */
499 /* Free lists - use free_lock */
500 struct list_head free_list
; /* Full lines ready to use */
501 struct list_head corrupt_list
; /* Full lines corrupted */
502 struct list_head bad_list
; /* Full lines bad */
504 /* GC lists - use gc_lock */
505 struct list_head
*gc_lists
[PBLK_GC_NR_LISTS
];
506 struct list_head gc_high_list
; /* Full lines ready to GC, high isc */
507 struct list_head gc_mid_list
; /* Full lines ready to GC, mid isc */
508 struct list_head gc_low_list
; /* Full lines ready to GC, low isc */
510 struct list_head gc_werr_list
; /* Write err recovery list */
512 struct list_head gc_full_list
; /* Full lines ready to GC, no valid */
513 struct list_head gc_empty_list
; /* Full lines close, all valid */
515 struct pblk_line
*log_line
; /* Current FTL log line */
516 struct pblk_line
*data_line
; /* Current data line */
517 struct pblk_line
*log_next
; /* Next FTL log line */
518 struct pblk_line
*data_next
; /* Next data line */
520 struct list_head emeta_list
; /* Lines queued to schedule emeta */
522 __le32
*vsc_list
; /* Valid sector counts for all lines */
524 /* Metadata allocation type: VMALLOC | KMALLOC */
525 int emeta_alloc_type
;
527 /* Pre-allocated metadata for data lines */
528 struct pblk_smeta
*sline_meta
[PBLK_DATA_LINES
];
529 struct pblk_emeta
*eline_meta
[PBLK_DATA_LINES
];
530 unsigned long meta_bitmap
;
532 /* Cache and mempool for map/invalid bitmaps */
533 struct kmem_cache
*bitmap_cache
;
534 mempool_t
*bitmap_pool
;
536 /* Helpers for fast bitmap calculations */
537 unsigned long *bb_template
;
538 unsigned long *bb_aux
;
540 unsigned long d_seq_nr
; /* Data line unique sequence number */
541 unsigned long l_seq_nr
; /* Log line unique sequence number */
543 spinlock_t free_lock
;
544 spinlock_t close_lock
;
548 struct pblk_line_meta
{
549 unsigned int smeta_len
; /* Total length for smeta */
550 unsigned int smeta_sec
; /* Sectors needed for smeta */
552 unsigned int emeta_len
[4]; /* Lengths for emeta:
554 * [1]: struct line_emeta +
555 * bb_bitmap + struct wa_counters
559 unsigned int emeta_sec
[4]; /* Sectors needed for emeta. Same layout
563 unsigned int emeta_bb
; /* Boundary for bb that affects emeta */
565 unsigned int vsc_list_len
; /* Length for vsc list */
566 unsigned int sec_bitmap_len
; /* Length for sector bitmap in line */
567 unsigned int blk_bitmap_len
; /* Length for block bitmap in line */
568 unsigned int lun_bitmap_len
; /* Length for lun bitmap in line */
570 unsigned int blk_per_line
; /* Number of blocks in a full line */
571 unsigned int sec_per_line
; /* Number of sectors in a line */
572 unsigned int dsec_per_line
; /* Number of data sectors in a line */
573 unsigned int min_blk_line
; /* Min. number of good blocks in line */
575 unsigned int mid_thrs
; /* Threshold for GC mid list */
576 unsigned int high_thrs
; /* Threshold for GC high list */
578 unsigned int meta_distance
; /* Distance between data and metadata */
582 PBLK_STATE_RUNNING
= 0,
583 PBLK_STATE_STOPPING
= 1,
584 PBLK_STATE_RECOVERING
= 2,
585 PBLK_STATE_STOPPED
= 3,
588 /* Internal format to support not power-of-2 device formats */
601 struct nvm_tgt_dev
*dev
;
602 struct gendisk
*disk
;
606 struct pblk_lun
*luns
;
608 struct pblk_line
*lines
; /* Line array */
609 struct pblk_line_mgmt l_mg
; /* Line management */
610 struct pblk_line_meta lm
; /* Line metadata */
612 struct nvm_addrf addrf
; /* Aligned address format */
613 struct pblk_addrf uaddrf
; /* Unaligned address format */
618 int state
; /* pblk line state */
620 int min_write_pgs
; /* Minimum amount of pages required by controller */
621 int min_write_pgs_data
; /* Minimum amount of payload pages */
622 int max_write_pgs
; /* Maximum amount of pages supported by controller */
623 int oob_meta_size
; /* Size of OOB sector metadata */
625 sector_t capacity
; /* Device capacity when bad blocks are subtracted */
627 int op
; /* Percentage of device used for over-provisioning */
628 int op_blks
; /* Number of blocks used for over-provisioning */
630 /* pblk provisioning values. Used by rate limiter */
635 guid_t instance_uuid
;
637 /* Persistent write amplification counters, 4kb sector I/Os */
638 atomic64_t user_wa
; /* Sectors written by user */
639 atomic64_t gc_wa
; /* Sectors written by GC */
640 atomic64_t pad_wa
; /* Padded sectors written */
642 /* Reset values for delta write amplification measurements */
647 /* Counters used for calculating padding distribution */
648 atomic64_t
*pad_dist
; /* Padding distribution buckets */
649 u64 nr_flush_rst
; /* Flushes reset value for pad dist.*/
650 atomic64_t nr_flush
; /* Number of flush/fua I/O */
652 #ifdef CONFIG_NVM_PBLK_DEBUG
653 /* Non-persistent debug counters, 4kb sector I/Os */
654 atomic_long_t inflight_writes
; /* Inflight writes (user and gc) */
655 atomic_long_t padded_writes
; /* Sectors padded due to flush/fua */
656 atomic_long_t padded_wb
; /* Sectors padded in write buffer */
657 atomic_long_t req_writes
; /* Sectors stored on write buffer */
658 atomic_long_t sub_writes
; /* Sectors submitted from buffer */
659 atomic_long_t sync_writes
; /* Sectors synced to media */
660 atomic_long_t inflight_reads
; /* Inflight sector read requests */
661 atomic_long_t cache_reads
; /* Read requests that hit the cache */
662 atomic_long_t sync_reads
; /* Completed sector read requests */
663 atomic_long_t recov_writes
; /* Sectors submitted from recovery */
664 atomic_long_t recov_gc_writes
; /* Sectors submitted from write GC */
665 atomic_long_t recov_gc_reads
; /* Sectors submitted from read GC */
670 atomic_long_t read_failed
;
671 atomic_long_t read_empty
;
672 atomic_long_t read_high_ecc
;
673 atomic_long_t read_failed_gc
;
674 atomic_long_t write_failed
;
675 atomic_long_t erase_failed
;
677 atomic_t inflight_io
; /* General inflight I/O counter */
679 struct task_struct
*writer_ts
;
681 /* Simple translation map of logical addresses to physical addresses.
682 * The logical addresses is known by the host system, while the physical
683 * addresses are used when writing to the disk block device.
685 unsigned char *trans_map
;
686 spinlock_t trans_lock
;
688 struct list_head compl_list
;
690 spinlock_t resubmit_lock
; /* Resubmit list lock */
691 struct list_head resubmit_list
; /* Resubmit list for failed writes*/
693 mempool_t page_bio_pool
;
694 mempool_t gen_ws_pool
;
700 struct workqueue_struct
*close_wq
;
701 struct workqueue_struct
*bb_wq
;
702 struct workqueue_struct
*r_end_wq
;
704 struct timer_list wtimer
;
709 struct pblk_line_ws
{
711 struct pblk_line
*line
;
713 struct work_struct ws
;
716 #define pblk_g_rq_size (sizeof(struct nvm_rq) + sizeof(struct pblk_g_ctx))
717 #define pblk_w_rq_size (sizeof(struct nvm_rq) + sizeof(struct pblk_c_ctx))
719 #define pblk_err(pblk, fmt, ...) \
720 pr_err("pblk %s: " fmt, pblk->disk->disk_name, ##__VA_ARGS__)
721 #define pblk_info(pblk, fmt, ...) \
722 pr_info("pblk %s: " fmt, pblk->disk->disk_name, ##__VA_ARGS__)
723 #define pblk_warn(pblk, fmt, ...) \
724 pr_warn("pblk %s: " fmt, pblk->disk->disk_name, ##__VA_ARGS__)
725 #define pblk_debug(pblk, fmt, ...) \
726 pr_debug("pblk %s: " fmt, pblk->disk->disk_name, ##__VA_ARGS__)
729 * pblk ring buffer operations
731 int pblk_rb_init(struct pblk_rb
*rb
, unsigned int size
, unsigned int threshold
,
732 unsigned int seg_sz
);
733 int pblk_rb_may_write_user(struct pblk_rb
*rb
, struct bio
*bio
,
734 unsigned int nr_entries
, unsigned int *pos
);
735 int pblk_rb_may_write_gc(struct pblk_rb
*rb
, unsigned int nr_entries
,
737 void pblk_rb_write_entry_user(struct pblk_rb
*rb
, void *data
,
738 struct pblk_w_ctx w_ctx
, unsigned int pos
);
739 void pblk_rb_write_entry_gc(struct pblk_rb
*rb
, void *data
,
740 struct pblk_w_ctx w_ctx
, struct pblk_line
*line
,
741 u64 paddr
, unsigned int pos
);
742 struct pblk_w_ctx
*pblk_rb_w_ctx(struct pblk_rb
*rb
, unsigned int pos
);
743 void pblk_rb_flush(struct pblk_rb
*rb
);
745 void pblk_rb_sync_l2p(struct pblk_rb
*rb
);
746 unsigned int pblk_rb_read_to_bio(struct pblk_rb
*rb
, struct nvm_rq
*rqd
,
747 unsigned int pos
, unsigned int nr_entries
,
749 int pblk_rb_copy_to_bio(struct pblk_rb
*rb
, struct bio
*bio
, sector_t lba
,
750 struct ppa_addr ppa
);
751 unsigned int pblk_rb_read_commit(struct pblk_rb
*rb
, unsigned int entries
);
753 unsigned int pblk_rb_sync_init(struct pblk_rb
*rb
, unsigned long *flags
);
754 unsigned int pblk_rb_sync_advance(struct pblk_rb
*rb
, unsigned int nr_entries
);
755 unsigned int pblk_rb_ptr_wrap(struct pblk_rb
*rb
, unsigned int p
,
756 unsigned int nr_entries
);
757 void pblk_rb_sync_end(struct pblk_rb
*rb
, unsigned long *flags
);
758 unsigned int pblk_rb_flush_point_count(struct pblk_rb
*rb
);
760 unsigned int pblk_rb_read_count(struct pblk_rb
*rb
);
761 unsigned int pblk_rb_sync_count(struct pblk_rb
*rb
);
762 unsigned int pblk_rb_wrap_pos(struct pblk_rb
*rb
, unsigned int pos
);
764 int pblk_rb_tear_down_check(struct pblk_rb
*rb
);
765 int pblk_rb_pos_oob(struct pblk_rb
*rb
, u64 pos
);
766 void pblk_rb_free(struct pblk_rb
*rb
);
767 ssize_t
pblk_rb_sysfs(struct pblk_rb
*rb
, char *buf
);
772 struct nvm_rq
*pblk_alloc_rqd(struct pblk
*pblk
, int type
);
773 void pblk_free_rqd(struct pblk
*pblk
, struct nvm_rq
*rqd
, int type
);
774 int pblk_alloc_rqd_meta(struct pblk
*pblk
, struct nvm_rq
*rqd
);
775 void pblk_free_rqd_meta(struct pblk
*pblk
, struct nvm_rq
*rqd
);
776 void pblk_set_sec_per_write(struct pblk
*pblk
, int sec_per_write
);
777 int pblk_setup_w_rec_rq(struct pblk
*pblk
, struct nvm_rq
*rqd
,
778 struct pblk_c_ctx
*c_ctx
);
779 void pblk_discard(struct pblk
*pblk
, struct bio
*bio
);
780 struct nvm_chk_meta
*pblk_get_chunk_meta(struct pblk
*pblk
);
781 struct nvm_chk_meta
*pblk_chunk_get_off(struct pblk
*pblk
,
782 struct nvm_chk_meta
*lp
,
783 struct ppa_addr ppa
);
784 void pblk_log_write_err(struct pblk
*pblk
, struct nvm_rq
*rqd
);
785 void pblk_log_read_err(struct pblk
*pblk
, struct nvm_rq
*rqd
);
786 int pblk_submit_io(struct pblk
*pblk
, struct nvm_rq
*rqd
);
787 int pblk_submit_io_sync(struct pblk
*pblk
, struct nvm_rq
*rqd
);
788 int pblk_submit_io_sync_sem(struct pblk
*pblk
, struct nvm_rq
*rqd
);
789 int pblk_submit_meta_io(struct pblk
*pblk
, struct pblk_line
*meta_line
);
790 void pblk_check_chunk_state_update(struct pblk
*pblk
, struct nvm_rq
*rqd
);
791 struct bio
*pblk_bio_map_addr(struct pblk
*pblk
, void *data
,
792 unsigned int nr_secs
, unsigned int len
,
793 int alloc_type
, gfp_t gfp_mask
);
794 struct pblk_line
*pblk_line_get(struct pblk
*pblk
);
795 struct pblk_line
*pblk_line_get_first_data(struct pblk
*pblk
);
796 struct pblk_line
*pblk_line_replace_data(struct pblk
*pblk
);
797 void pblk_ppa_to_line_put(struct pblk
*pblk
, struct ppa_addr ppa
);
798 void pblk_rq_to_line_put(struct pblk
*pblk
, struct nvm_rq
*rqd
);
799 int pblk_line_recov_alloc(struct pblk
*pblk
, struct pblk_line
*line
);
800 void pblk_line_recov_close(struct pblk
*pblk
, struct pblk_line
*line
);
801 struct pblk_line
*pblk_line_get_data(struct pblk
*pblk
);
802 struct pblk_line
*pblk_line_get_erase(struct pblk
*pblk
);
803 int pblk_line_erase(struct pblk
*pblk
, struct pblk_line
*line
);
804 int pblk_line_is_full(struct pblk_line
*line
);
805 void pblk_line_free(struct pblk_line
*line
);
806 void pblk_line_close_meta(struct pblk
*pblk
, struct pblk_line
*line
);
807 void pblk_line_close(struct pblk
*pblk
, struct pblk_line
*line
);
808 void pblk_line_close_ws(struct work_struct
*work
);
809 void pblk_pipeline_stop(struct pblk
*pblk
);
810 void __pblk_pipeline_stop(struct pblk
*pblk
);
811 void __pblk_pipeline_flush(struct pblk
*pblk
);
812 void pblk_gen_run_ws(struct pblk
*pblk
, struct pblk_line
*line
, void *priv
,
813 void (*work
)(struct work_struct
*), gfp_t gfp_mask
,
814 struct workqueue_struct
*wq
);
815 u64
pblk_line_smeta_start(struct pblk
*pblk
, struct pblk_line
*line
);
816 int pblk_line_smeta_read(struct pblk
*pblk
, struct pblk_line
*line
);
817 int pblk_line_emeta_read(struct pblk
*pblk
, struct pblk_line
*line
,
819 int pblk_blk_erase_async(struct pblk
*pblk
, struct ppa_addr erase_ppa
);
820 void pblk_line_put(struct kref
*ref
);
821 void pblk_line_put_wq(struct kref
*ref
);
822 struct list_head
*pblk_line_gc_list(struct pblk
*pblk
, struct pblk_line
*line
);
823 u64
pblk_lookup_page(struct pblk
*pblk
, struct pblk_line
*line
);
824 void pblk_dealloc_page(struct pblk
*pblk
, struct pblk_line
*line
, int nr_secs
);
825 u64
pblk_alloc_page(struct pblk
*pblk
, struct pblk_line
*line
, int nr_secs
);
826 u64
__pblk_alloc_page(struct pblk
*pblk
, struct pblk_line
*line
, int nr_secs
);
827 int pblk_calc_secs(struct pblk
*pblk
, unsigned long secs_avail
,
828 unsigned long secs_to_flush
, bool skip_meta
);
829 void pblk_down_rq(struct pblk
*pblk
, struct ppa_addr ppa
,
830 unsigned long *lun_bitmap
);
831 void pblk_down_chunk(struct pblk
*pblk
, struct ppa_addr ppa
);
832 void pblk_up_chunk(struct pblk
*pblk
, struct ppa_addr ppa
);
833 void pblk_up_rq(struct pblk
*pblk
, unsigned long *lun_bitmap
);
834 int pblk_bio_add_pages(struct pblk
*pblk
, struct bio
*bio
, gfp_t flags
,
836 void pblk_bio_free_pages(struct pblk
*pblk
, struct bio
*bio
, int off
,
838 void pblk_map_invalidate(struct pblk
*pblk
, struct ppa_addr ppa
);
839 void __pblk_map_invalidate(struct pblk
*pblk
, struct pblk_line
*line
,
841 void pblk_update_map(struct pblk
*pblk
, sector_t lba
, struct ppa_addr ppa
);
842 void pblk_update_map_cache(struct pblk
*pblk
, sector_t lba
,
843 struct ppa_addr ppa
);
844 void pblk_update_map_dev(struct pblk
*pblk
, sector_t lba
,
845 struct ppa_addr ppa
, struct ppa_addr entry_line
);
846 int pblk_update_map_gc(struct pblk
*pblk
, sector_t lba
, struct ppa_addr ppa
,
847 struct pblk_line
*gc_line
, u64 paddr
);
848 void pblk_lookup_l2p_rand(struct pblk
*pblk
, struct ppa_addr
*ppas
,
849 u64
*lba_list
, int nr_secs
);
850 int pblk_lookup_l2p_seq(struct pblk
*pblk
, struct ppa_addr
*ppas
,
851 sector_t blba
, int nr_secs
, bool *from_cache
);
852 void *pblk_get_meta_for_writes(struct pblk
*pblk
, struct nvm_rq
*rqd
);
853 void pblk_get_packed_meta(struct pblk
*pblk
, struct nvm_rq
*rqd
);
856 * pblk user I/O write path
858 void pblk_write_to_cache(struct pblk
*pblk
, struct bio
*bio
,
859 unsigned long flags
);
860 int pblk_write_gc_to_cache(struct pblk
*pblk
, struct pblk_gc_rq
*gc_rq
);
865 int pblk_map_erase_rq(struct pblk
*pblk
, struct nvm_rq
*rqd
,
866 unsigned int sentry
, unsigned long *lun_bitmap
,
867 unsigned int valid_secs
, struct ppa_addr
*erase_ppa
);
868 int pblk_map_rq(struct pblk
*pblk
, struct nvm_rq
*rqd
, unsigned int sentry
,
869 unsigned long *lun_bitmap
, unsigned int valid_secs
,
875 int pblk_write_ts(void *data
);
876 void pblk_write_timer_fn(struct timer_list
*t
);
877 void pblk_write_should_kick(struct pblk
*pblk
);
878 void pblk_write_kick(struct pblk
*pblk
);
883 extern struct bio_set pblk_bio_set
;
884 void pblk_submit_read(struct pblk
*pblk
, struct bio
*bio
);
885 int pblk_submit_read_gc(struct pblk
*pblk
, struct pblk_gc_rq
*gc_rq
);
889 struct pblk_line
*pblk_recov_l2p(struct pblk
*pblk
);
890 int pblk_recov_pad(struct pblk
*pblk
);
891 int pblk_recov_check_emeta(struct pblk
*pblk
, struct line_emeta
*emeta
);
896 #define PBLK_GC_MAX_READERS 8 /* Max number of outstanding GC reader jobs */
897 #define PBLK_GC_RQ_QD 128 /* Queue depth for inflight GC requests */
898 #define PBLK_GC_L_QD 4 /* Queue depth for inflight GC lines */
900 int pblk_gc_init(struct pblk
*pblk
);
901 void pblk_gc_exit(struct pblk
*pblk
, bool graceful
);
902 void pblk_gc_should_start(struct pblk
*pblk
);
903 void pblk_gc_should_stop(struct pblk
*pblk
);
904 void pblk_gc_should_kick(struct pblk
*pblk
);
905 void pblk_gc_free_full_lines(struct pblk
*pblk
);
906 void pblk_gc_sysfs_state_show(struct pblk
*pblk
, int *gc_enabled
,
908 int pblk_gc_sysfs_force(struct pblk
*pblk
, int force
);
909 void pblk_put_line_back(struct pblk
*pblk
, struct pblk_line
*line
);
914 void pblk_rl_init(struct pblk_rl
*rl
, int budget
, int threshold
);
915 void pblk_rl_free(struct pblk_rl
*rl
);
916 void pblk_rl_update_rates(struct pblk_rl
*rl
);
917 int pblk_rl_high_thrs(struct pblk_rl
*rl
);
918 unsigned long pblk_rl_nr_free_blks(struct pblk_rl
*rl
);
919 unsigned long pblk_rl_nr_user_free_blks(struct pblk_rl
*rl
);
920 int pblk_rl_user_may_insert(struct pblk_rl
*rl
, int nr_entries
);
921 void pblk_rl_inserted(struct pblk_rl
*rl
, int nr_entries
);
922 void pblk_rl_user_in(struct pblk_rl
*rl
, int nr_entries
);
923 int pblk_rl_gc_may_insert(struct pblk_rl
*rl
, int nr_entries
);
924 void pblk_rl_gc_in(struct pblk_rl
*rl
, int nr_entries
);
925 void pblk_rl_out(struct pblk_rl
*rl
, int nr_user
, int nr_gc
);
926 int pblk_rl_max_io(struct pblk_rl
*rl
);
927 void pblk_rl_free_lines_inc(struct pblk_rl
*rl
, struct pblk_line
*line
);
928 void pblk_rl_free_lines_dec(struct pblk_rl
*rl
, struct pblk_line
*line
,
930 int pblk_rl_is_limit(struct pblk_rl
*rl
);
932 void pblk_rl_werr_line_in(struct pblk_rl
*rl
);
933 void pblk_rl_werr_line_out(struct pblk_rl
*rl
);
938 int pblk_sysfs_init(struct gendisk
*tdisk
);
939 void pblk_sysfs_exit(struct gendisk
*tdisk
);
941 static inline void *pblk_malloc(size_t size
, int type
, gfp_t flags
)
943 if (type
== PBLK_KMALLOC_META
)
944 return kmalloc(size
, flags
);
945 return vmalloc(size
);
948 static inline void pblk_mfree(void *ptr
, int type
)
950 if (type
== PBLK_KMALLOC_META
)
956 static inline struct nvm_rq
*nvm_rq_from_c_ctx(void *c_ctx
)
958 return c_ctx
- sizeof(struct nvm_rq
);
961 static inline void *emeta_to_bb(struct line_emeta
*emeta
)
963 return emeta
->bb_bitmap
;
966 static inline void *emeta_to_wa(struct pblk_line_meta
*lm
,
967 struct line_emeta
*emeta
)
969 return emeta
->bb_bitmap
+ lm
->blk_bitmap_len
;
972 static inline void *emeta_to_lbas(struct pblk
*pblk
, struct line_emeta
*emeta
)
974 return ((void *)emeta
+ pblk
->lm
.emeta_len
[1]);
977 static inline void *emeta_to_vsc(struct pblk
*pblk
, struct line_emeta
*emeta
)
979 return (emeta_to_lbas(pblk
, emeta
) + pblk
->lm
.emeta_len
[2]);
982 static inline int pblk_line_vsc(struct pblk_line
*line
)
984 return le32_to_cpu(*line
->vsc
);
987 static inline int pblk_ppa_to_line_id(struct ppa_addr p
)
992 static inline struct pblk_line
*pblk_ppa_to_line(struct pblk
*pblk
,
995 return &pblk
->lines
[pblk_ppa_to_line_id(p
)];
998 static inline int pblk_ppa_to_pos(struct nvm_geo
*geo
, struct ppa_addr p
)
1000 return p
.a
.lun
* geo
->num_ch
+ p
.a
.ch
;
1003 static inline struct ppa_addr
addr_to_gen_ppa(struct pblk
*pblk
, u64 paddr
,
1006 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1007 struct nvm_geo
*geo
= &dev
->geo
;
1008 struct ppa_addr ppa
;
1010 if (geo
->version
== NVM_OCSSD_SPEC_12
) {
1011 struct nvm_addrf_12
*ppaf
= (struct nvm_addrf_12
*)&pblk
->addrf
;
1014 ppa
.g
.blk
= line_id
;
1015 ppa
.g
.pg
= (paddr
& ppaf
->pg_mask
) >> ppaf
->pg_offset
;
1016 ppa
.g
.lun
= (paddr
& ppaf
->lun_mask
) >> ppaf
->lun_offset
;
1017 ppa
.g
.ch
= (paddr
& ppaf
->ch_mask
) >> ppaf
->ch_offset
;
1018 ppa
.g
.pl
= (paddr
& ppaf
->pln_mask
) >> ppaf
->pln_offset
;
1019 ppa
.g
.sec
= (paddr
& ppaf
->sec_mask
) >> ppaf
->sec_offset
;
1021 struct pblk_addrf
*uaddrf
= &pblk
->uaddrf
;
1022 int secs
, chnls
, luns
;
1026 ppa
.m
.chk
= line_id
;
1028 paddr
= div_u64_rem(paddr
, uaddrf
->sec_stripe
, &secs
);
1031 paddr
= div_u64_rem(paddr
, uaddrf
->ch_stripe
, &chnls
);
1034 paddr
= div_u64_rem(paddr
, uaddrf
->lun_stripe
, &luns
);
1037 ppa
.m
.sec
+= uaddrf
->sec_stripe
* paddr
;
1043 static inline struct nvm_chk_meta
*pblk_dev_ppa_to_chunk(struct pblk
*pblk
,
1046 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1047 struct nvm_geo
*geo
= &dev
->geo
;
1048 struct pblk_line
*line
= pblk_ppa_to_line(pblk
, p
);
1049 int pos
= pblk_ppa_to_pos(geo
, p
);
1051 return &line
->chks
[pos
];
1054 static inline u64
pblk_dev_ppa_to_chunk_addr(struct pblk
*pblk
,
1057 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1059 return dev_to_chunk_addr(dev
->parent
, &pblk
->addrf
, p
);
1062 static inline u64
pblk_dev_ppa_to_line_addr(struct pblk
*pblk
,
1065 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1066 struct nvm_geo
*geo
= &dev
->geo
;
1069 if (geo
->version
== NVM_OCSSD_SPEC_12
) {
1070 struct nvm_addrf_12
*ppaf
= (struct nvm_addrf_12
*)&pblk
->addrf
;
1072 paddr
= (u64
)p
.g
.ch
<< ppaf
->ch_offset
;
1073 paddr
|= (u64
)p
.g
.lun
<< ppaf
->lun_offset
;
1074 paddr
|= (u64
)p
.g
.pg
<< ppaf
->pg_offset
;
1075 paddr
|= (u64
)p
.g
.pl
<< ppaf
->pln_offset
;
1076 paddr
|= (u64
)p
.g
.sec
<< ppaf
->sec_offset
;
1078 struct pblk_addrf
*uaddrf
= &pblk
->uaddrf
;
1082 paddr
= (u64
)p
.m
.grp
* uaddrf
->sec_stripe
;
1083 paddr
+= (u64
)p
.m
.pu
* uaddrf
->sec_lun_stripe
;
1085 secs
= div_u64_rem(secs
, uaddrf
->sec_stripe
, &sec_stripe
);
1086 paddr
+= secs
* uaddrf
->sec_ws_stripe
;
1087 paddr
+= sec_stripe
;
1093 static inline struct ppa_addr
pblk_ppa32_to_ppa64(struct pblk
*pblk
, u32 ppa32
)
1095 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1097 return nvm_ppa32_to_ppa64(dev
->parent
, &pblk
->addrf
, ppa32
);
1100 static inline u32
pblk_ppa64_to_ppa32(struct pblk
*pblk
, struct ppa_addr ppa64
)
1102 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1104 return nvm_ppa64_to_ppa32(dev
->parent
, &pblk
->addrf
, ppa64
);
1107 static inline struct ppa_addr
pblk_trans_map_get(struct pblk
*pblk
,
1110 struct ppa_addr ppa
;
1112 if (pblk
->addrf_len
< 32) {
1113 u32
*map
= (u32
*)pblk
->trans_map
;
1115 ppa
= pblk_ppa32_to_ppa64(pblk
, map
[lba
]);
1117 struct ppa_addr
*map
= (struct ppa_addr
*)pblk
->trans_map
;
1125 static inline void pblk_trans_map_set(struct pblk
*pblk
, sector_t lba
,
1126 struct ppa_addr ppa
)
1128 if (pblk
->addrf_len
< 32) {
1129 u32
*map
= (u32
*)pblk
->trans_map
;
1131 map
[lba
] = pblk_ppa64_to_ppa32(pblk
, ppa
);
1133 u64
*map
= (u64
*)pblk
->trans_map
;
1139 static inline int pblk_ppa_empty(struct ppa_addr ppa_addr
)
1141 return (ppa_addr
.ppa
== ADDR_EMPTY
);
1144 static inline void pblk_ppa_set_empty(struct ppa_addr
*ppa_addr
)
1146 ppa_addr
->ppa
= ADDR_EMPTY
;
1149 static inline bool pblk_ppa_comp(struct ppa_addr lppa
, struct ppa_addr rppa
)
1151 return (lppa
.ppa
== rppa
.ppa
);
1154 static inline int pblk_addr_in_cache(struct ppa_addr ppa
)
1156 return (ppa
.ppa
!= ADDR_EMPTY
&& ppa
.c
.is_cached
);
1159 static inline int pblk_addr_to_cacheline(struct ppa_addr ppa
)
1164 static inline struct ppa_addr
pblk_cacheline_to_addr(int addr
)
1174 static inline u32
pblk_calc_meta_header_crc(struct pblk
*pblk
,
1175 struct line_header
*header
)
1179 crc
= crc32_le(crc
, (unsigned char *)header
+ sizeof(crc
),
1180 sizeof(struct line_header
) - sizeof(crc
));
1185 static inline u32
pblk_calc_smeta_crc(struct pblk
*pblk
,
1186 struct line_smeta
*smeta
)
1188 struct pblk_line_meta
*lm
= &pblk
->lm
;
1191 crc
= crc32_le(crc
, (unsigned char *)smeta
+
1192 sizeof(struct line_header
) + sizeof(crc
),
1194 sizeof(struct line_header
) - sizeof(crc
));
1199 static inline u32
pblk_calc_emeta_crc(struct pblk
*pblk
,
1200 struct line_emeta
*emeta
)
1202 struct pblk_line_meta
*lm
= &pblk
->lm
;
1205 crc
= crc32_le(crc
, (unsigned char *)emeta
+
1206 sizeof(struct line_header
) + sizeof(crc
),
1208 sizeof(struct line_header
) - sizeof(crc
));
1213 static inline int pblk_io_aligned(struct pblk
*pblk
, int nr_secs
)
1215 return !(nr_secs
% pblk
->min_write_pgs
);
1218 #ifdef CONFIG_NVM_PBLK_DEBUG
1219 static inline void print_ppa(struct pblk
*pblk
, struct ppa_addr
*p
,
1220 char *msg
, int error
)
1222 struct nvm_geo
*geo
= &pblk
->dev
->geo
;
1224 if (p
->c
.is_cached
) {
1225 pblk_err(pblk
, "ppa: (%s: %x) cache line: %llu\n",
1226 msg
, error
, (u64
)p
->c
.line
);
1227 } else if (geo
->version
== NVM_OCSSD_SPEC_12
) {
1228 pblk_err(pblk
, "ppa: (%s: %x):ch:%d,lun:%d,blk:%d,pg:%d,pl:%d,sec:%d\n",
1230 p
->g
.ch
, p
->g
.lun
, p
->g
.blk
,
1231 p
->g
.pg
, p
->g
.pl
, p
->g
.sec
);
1233 pblk_err(pblk
, "ppa: (%s: %x):ch:%d,lun:%d,chk:%d,sec:%d\n",
1235 p
->m
.grp
, p
->m
.pu
, p
->m
.chk
, p
->m
.sec
);
1239 static inline void pblk_print_failed_rqd(struct pblk
*pblk
, struct nvm_rq
*rqd
,
1244 if (rqd
->nr_ppas
== 1) {
1245 print_ppa(pblk
, &rqd
->ppa_addr
, "rqd", error
);
1249 while ((bit
= find_next_bit((void *)&rqd
->ppa_status
, rqd
->nr_ppas
,
1250 bit
+ 1)) < rqd
->nr_ppas
) {
1251 print_ppa(pblk
, &rqd
->ppa_list
[bit
], "rqd", error
);
1254 pblk_err(pblk
, "error:%d, ppa_status:%llx\n", error
, rqd
->ppa_status
);
1257 static inline int pblk_boundary_ppa_checks(struct nvm_tgt_dev
*tgt_dev
,
1258 struct ppa_addr
*ppas
, int nr_ppas
)
1260 struct nvm_geo
*geo
= &tgt_dev
->geo
;
1261 struct ppa_addr
*ppa
;
1264 for (i
= 0; i
< nr_ppas
; i
++) {
1267 if (geo
->version
== NVM_OCSSD_SPEC_12
) {
1268 if (!ppa
->c
.is_cached
&&
1269 ppa
->g
.ch
< geo
->num_ch
&&
1270 ppa
->g
.lun
< geo
->num_lun
&&
1271 ppa
->g
.pl
< geo
->num_pln
&&
1272 ppa
->g
.blk
< geo
->num_chk
&&
1273 ppa
->g
.pg
< geo
->num_pg
&&
1274 ppa
->g
.sec
< geo
->ws_min
)
1277 if (!ppa
->c
.is_cached
&&
1278 ppa
->m
.grp
< geo
->num_ch
&&
1279 ppa
->m
.pu
< geo
->num_lun
&&
1280 ppa
->m
.chk
< geo
->num_chk
&&
1281 ppa
->m
.sec
< geo
->clba
)
1285 print_ppa(tgt_dev
->q
->queuedata
, ppa
, "boundary", i
);
1292 static inline int pblk_check_io(struct pblk
*pblk
, struct nvm_rq
*rqd
)
1294 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1295 struct ppa_addr
*ppa_list
= nvm_rq_to_ppa_list(rqd
);
1297 if (pblk_boundary_ppa_checks(dev
, ppa_list
, rqd
->nr_ppas
)) {
1302 if (rqd
->opcode
== NVM_OP_PWRITE
) {
1303 struct pblk_line
*line
;
1306 for (i
= 0; i
< rqd
->nr_ppas
; i
++) {
1307 line
= pblk_ppa_to_line(pblk
, ppa_list
[i
]);
1309 spin_lock(&line
->lock
);
1310 if (line
->state
!= PBLK_LINESTATE_OPEN
) {
1311 pblk_err(pblk
, "bad ppa: line:%d,state:%d\n",
1312 line
->id
, line
->state
);
1314 spin_unlock(&line
->lock
);
1317 spin_unlock(&line
->lock
);
1325 static inline int pblk_boundary_paddr_checks(struct pblk
*pblk
, u64 paddr
)
1327 struct pblk_line_meta
*lm
= &pblk
->lm
;
1329 if (paddr
> lm
->sec_per_line
)
1335 static inline unsigned int pblk_get_bi_idx(struct bio
*bio
)
1337 return bio
->bi_iter
.bi_idx
;
1340 static inline sector_t
pblk_get_lba(struct bio
*bio
)
1342 return bio
->bi_iter
.bi_sector
/ NR_PHY_IN_LOG
;
1345 static inline unsigned int pblk_get_secs(struct bio
*bio
)
1347 return bio
->bi_iter
.bi_size
/ PBLK_EXPOSED_PAGE_SIZE
;
1350 static inline char *pblk_disk_name(struct pblk
*pblk
)
1352 struct gendisk
*disk
= pblk
->disk
;
1354 return disk
->disk_name
;
1357 static inline unsigned int pblk_get_min_chks(struct pblk
*pblk
)
1359 struct pblk_line_meta
*lm
= &pblk
->lm
;
1360 /* In a worst-case scenario every line will have OP invalid sectors.
1361 * We will then need a minimum of 1/OP lines to free up a single line
1364 return DIV_ROUND_UP(100, pblk
->op
) * lm
->blk_per_line
;
1367 static inline struct pblk_sec_meta
*pblk_get_meta(struct pblk
*pblk
,
1368 void *meta
, int index
)
1371 max_t(int, sizeof(struct pblk_sec_meta
), pblk
->oob_meta_size
)
1375 static inline int pblk_dma_meta_size(struct pblk
*pblk
)
1377 return max_t(int, sizeof(struct pblk_sec_meta
), pblk
->oob_meta_size
)
1381 static inline int pblk_is_oob_meta_supported(struct pblk
*pblk
)
1383 return pblk
->oob_meta_size
>= sizeof(struct pblk_sec_meta
);
1385 #endif /* PBLK_H_ */