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_EMETA_TYPE_HEADER
= 1, /* struct line_emeta first sector */
486 PBLK_EMETA_TYPE_LLBA
= 2, /* lba list - type: __le64 */
487 PBLK_EMETA_TYPE_VSC
= 3, /* vsc list - type: __le32 */
490 struct pblk_line_mgmt
{
491 int nr_lines
; /* Total number of full lines */
492 int nr_free_lines
; /* Number of full lines in free list */
494 /* Free lists - use free_lock */
495 struct list_head free_list
; /* Full lines ready to use */
496 struct list_head corrupt_list
; /* Full lines corrupted */
497 struct list_head bad_list
; /* Full lines bad */
499 /* GC lists - use gc_lock */
500 struct list_head
*gc_lists
[PBLK_GC_NR_LISTS
];
501 struct list_head gc_high_list
; /* Full lines ready to GC, high isc */
502 struct list_head gc_mid_list
; /* Full lines ready to GC, mid isc */
503 struct list_head gc_low_list
; /* Full lines ready to GC, low isc */
505 struct list_head gc_werr_list
; /* Write err recovery list */
507 struct list_head gc_full_list
; /* Full lines ready to GC, no valid */
508 struct list_head gc_empty_list
; /* Full lines close, all valid */
510 struct pblk_line
*log_line
; /* Current FTL log line */
511 struct pblk_line
*data_line
; /* Current data line */
512 struct pblk_line
*log_next
; /* Next FTL log line */
513 struct pblk_line
*data_next
; /* Next data line */
515 struct list_head emeta_list
; /* Lines queued to schedule emeta */
517 __le32
*vsc_list
; /* Valid sector counts for all lines */
519 /* Pre-allocated metadata for data lines */
520 struct pblk_smeta
*sline_meta
[PBLK_DATA_LINES
];
521 struct pblk_emeta
*eline_meta
[PBLK_DATA_LINES
];
522 unsigned long meta_bitmap
;
524 /* Cache and mempool for map/invalid bitmaps */
525 struct kmem_cache
*bitmap_cache
;
526 mempool_t
*bitmap_pool
;
528 /* Helpers for fast bitmap calculations */
529 unsigned long *bb_template
;
530 unsigned long *bb_aux
;
532 unsigned long d_seq_nr
; /* Data line unique sequence number */
533 unsigned long l_seq_nr
; /* Log line unique sequence number */
535 spinlock_t free_lock
;
536 spinlock_t close_lock
;
540 struct pblk_line_meta
{
541 unsigned int smeta_len
; /* Total length for smeta */
542 unsigned int smeta_sec
; /* Sectors needed for smeta */
544 unsigned int emeta_len
[4]; /* Lengths for emeta:
546 * [1]: struct line_emeta +
547 * bb_bitmap + struct wa_counters
551 unsigned int emeta_sec
[4]; /* Sectors needed for emeta. Same layout
555 unsigned int emeta_bb
; /* Boundary for bb that affects emeta */
557 unsigned int vsc_list_len
; /* Length for vsc list */
558 unsigned int sec_bitmap_len
; /* Length for sector bitmap in line */
559 unsigned int blk_bitmap_len
; /* Length for block bitmap in line */
560 unsigned int lun_bitmap_len
; /* Length for lun bitmap in line */
562 unsigned int blk_per_line
; /* Number of blocks in a full line */
563 unsigned int sec_per_line
; /* Number of sectors in a line */
564 unsigned int dsec_per_line
; /* Number of data sectors in a line */
565 unsigned int min_blk_line
; /* Min. number of good blocks in line */
567 unsigned int mid_thrs
; /* Threshold for GC mid list */
568 unsigned int high_thrs
; /* Threshold for GC high list */
570 unsigned int meta_distance
; /* Distance between data and metadata */
574 PBLK_STATE_RUNNING
= 0,
575 PBLK_STATE_STOPPING
= 1,
576 PBLK_STATE_RECOVERING
= 2,
577 PBLK_STATE_STOPPED
= 3,
580 /* Internal format to support not power-of-2 device formats */
593 struct nvm_tgt_dev
*dev
;
594 struct gendisk
*disk
;
598 struct pblk_lun
*luns
;
600 struct pblk_line
*lines
; /* Line array */
601 struct pblk_line_mgmt l_mg
; /* Line management */
602 struct pblk_line_meta lm
; /* Line metadata */
604 struct nvm_addrf addrf
; /* Aligned address format */
605 struct pblk_addrf uaddrf
; /* Unaligned address format */
610 int state
; /* pblk line state */
612 int min_write_pgs
; /* Minimum amount of pages required by controller */
613 int min_write_pgs_data
; /* Minimum amount of payload pages */
614 int max_write_pgs
; /* Maximum amount of pages supported by controller */
615 int oob_meta_size
; /* Size of OOB sector metadata */
617 sector_t capacity
; /* Device capacity when bad blocks are subtracted */
619 int op
; /* Percentage of device used for over-provisioning */
620 int op_blks
; /* Number of blocks used for over-provisioning */
622 /* pblk provisioning values. Used by rate limiter */
627 guid_t instance_uuid
;
629 /* Persistent write amplification counters, 4kb sector I/Os */
630 atomic64_t user_wa
; /* Sectors written by user */
631 atomic64_t gc_wa
; /* Sectors written by GC */
632 atomic64_t pad_wa
; /* Padded sectors written */
634 /* Reset values for delta write amplification measurements */
639 /* Counters used for calculating padding distribution */
640 atomic64_t
*pad_dist
; /* Padding distribution buckets */
641 u64 nr_flush_rst
; /* Flushes reset value for pad dist.*/
642 atomic64_t nr_flush
; /* Number of flush/fua I/O */
644 #ifdef CONFIG_NVM_PBLK_DEBUG
645 /* Non-persistent debug counters, 4kb sector I/Os */
646 atomic_long_t inflight_writes
; /* Inflight writes (user and gc) */
647 atomic_long_t padded_writes
; /* Sectors padded due to flush/fua */
648 atomic_long_t padded_wb
; /* Sectors padded in write buffer */
649 atomic_long_t req_writes
; /* Sectors stored on write buffer */
650 atomic_long_t sub_writes
; /* Sectors submitted from buffer */
651 atomic_long_t sync_writes
; /* Sectors synced to media */
652 atomic_long_t inflight_reads
; /* Inflight sector read requests */
653 atomic_long_t cache_reads
; /* Read requests that hit the cache */
654 atomic_long_t sync_reads
; /* Completed sector read requests */
655 atomic_long_t recov_writes
; /* Sectors submitted from recovery */
656 atomic_long_t recov_gc_writes
; /* Sectors submitted from write GC */
657 atomic_long_t recov_gc_reads
; /* Sectors submitted from read GC */
662 atomic_long_t read_failed
;
663 atomic_long_t read_empty
;
664 atomic_long_t read_high_ecc
;
665 atomic_long_t read_failed_gc
;
666 atomic_long_t write_failed
;
667 atomic_long_t erase_failed
;
669 atomic_t inflight_io
; /* General inflight I/O counter */
671 struct task_struct
*writer_ts
;
673 /* Simple translation map of logical addresses to physical addresses.
674 * The logical addresses is known by the host system, while the physical
675 * addresses are used when writing to the disk block device.
677 unsigned char *trans_map
;
678 spinlock_t trans_lock
;
680 struct list_head compl_list
;
682 spinlock_t resubmit_lock
; /* Resubmit list lock */
683 struct list_head resubmit_list
; /* Resubmit list for failed writes*/
685 mempool_t page_bio_pool
;
686 mempool_t gen_ws_pool
;
692 struct workqueue_struct
*close_wq
;
693 struct workqueue_struct
*bb_wq
;
694 struct workqueue_struct
*r_end_wq
;
696 struct timer_list wtimer
;
701 struct pblk_line_ws
{
703 struct pblk_line
*line
;
705 struct work_struct ws
;
708 #define pblk_g_rq_size (sizeof(struct nvm_rq) + sizeof(struct pblk_g_ctx))
709 #define pblk_w_rq_size (sizeof(struct nvm_rq) + sizeof(struct pblk_c_ctx))
711 #define pblk_err(pblk, fmt, ...) \
712 pr_err("pblk %s: " fmt, pblk->disk->disk_name, ##__VA_ARGS__)
713 #define pblk_info(pblk, fmt, ...) \
714 pr_info("pblk %s: " fmt, pblk->disk->disk_name, ##__VA_ARGS__)
715 #define pblk_warn(pblk, fmt, ...) \
716 pr_warn("pblk %s: " fmt, pblk->disk->disk_name, ##__VA_ARGS__)
717 #define pblk_debug(pblk, fmt, ...) \
718 pr_debug("pblk %s: " fmt, pblk->disk->disk_name, ##__VA_ARGS__)
721 * pblk ring buffer operations
723 int pblk_rb_init(struct pblk_rb
*rb
, unsigned int size
, unsigned int threshold
,
724 unsigned int seg_sz
);
725 int pblk_rb_may_write_user(struct pblk_rb
*rb
, struct bio
*bio
,
726 unsigned int nr_entries
, unsigned int *pos
);
727 int pblk_rb_may_write_gc(struct pblk_rb
*rb
, unsigned int nr_entries
,
729 void pblk_rb_write_entry_user(struct pblk_rb
*rb
, void *data
,
730 struct pblk_w_ctx w_ctx
, unsigned int pos
);
731 void pblk_rb_write_entry_gc(struct pblk_rb
*rb
, void *data
,
732 struct pblk_w_ctx w_ctx
, struct pblk_line
*line
,
733 u64 paddr
, unsigned int pos
);
734 struct pblk_w_ctx
*pblk_rb_w_ctx(struct pblk_rb
*rb
, unsigned int pos
);
735 void pblk_rb_flush(struct pblk_rb
*rb
);
737 void pblk_rb_sync_l2p(struct pblk_rb
*rb
);
738 unsigned int pblk_rb_read_to_bio(struct pblk_rb
*rb
, struct nvm_rq
*rqd
,
739 unsigned int pos
, unsigned int nr_entries
,
741 int pblk_rb_copy_to_bio(struct pblk_rb
*rb
, struct bio
*bio
, sector_t lba
,
742 struct ppa_addr ppa
);
743 unsigned int pblk_rb_read_commit(struct pblk_rb
*rb
, unsigned int entries
);
745 unsigned int pblk_rb_sync_init(struct pblk_rb
*rb
, unsigned long *flags
);
746 unsigned int pblk_rb_sync_advance(struct pblk_rb
*rb
, unsigned int nr_entries
);
747 unsigned int pblk_rb_ptr_wrap(struct pblk_rb
*rb
, unsigned int p
,
748 unsigned int nr_entries
);
749 void pblk_rb_sync_end(struct pblk_rb
*rb
, unsigned long *flags
);
750 unsigned int pblk_rb_flush_point_count(struct pblk_rb
*rb
);
752 unsigned int pblk_rb_read_count(struct pblk_rb
*rb
);
753 unsigned int pblk_rb_sync_count(struct pblk_rb
*rb
);
754 unsigned int pblk_rb_wrap_pos(struct pblk_rb
*rb
, unsigned int pos
);
756 int pblk_rb_tear_down_check(struct pblk_rb
*rb
);
757 int pblk_rb_pos_oob(struct pblk_rb
*rb
, u64 pos
);
758 void pblk_rb_free(struct pblk_rb
*rb
);
759 ssize_t
pblk_rb_sysfs(struct pblk_rb
*rb
, char *buf
);
764 struct nvm_rq
*pblk_alloc_rqd(struct pblk
*pblk
, int type
);
765 void pblk_free_rqd(struct pblk
*pblk
, struct nvm_rq
*rqd
, int type
);
766 int pblk_alloc_rqd_meta(struct pblk
*pblk
, struct nvm_rq
*rqd
);
767 void pblk_free_rqd_meta(struct pblk
*pblk
, struct nvm_rq
*rqd
);
768 void pblk_set_sec_per_write(struct pblk
*pblk
, int sec_per_write
);
769 int pblk_setup_w_rec_rq(struct pblk
*pblk
, struct nvm_rq
*rqd
,
770 struct pblk_c_ctx
*c_ctx
);
771 void pblk_discard(struct pblk
*pblk
, struct bio
*bio
);
772 struct nvm_chk_meta
*pblk_get_chunk_meta(struct pblk
*pblk
);
773 struct nvm_chk_meta
*pblk_chunk_get_off(struct pblk
*pblk
,
774 struct nvm_chk_meta
*lp
,
775 struct ppa_addr ppa
);
776 void pblk_log_write_err(struct pblk
*pblk
, struct nvm_rq
*rqd
);
777 void pblk_log_read_err(struct pblk
*pblk
, struct nvm_rq
*rqd
);
778 int pblk_submit_io(struct pblk
*pblk
, struct nvm_rq
*rqd
, void *buf
);
779 int pblk_submit_io_sync(struct pblk
*pblk
, struct nvm_rq
*rqd
, void *buf
);
780 int pblk_submit_meta_io(struct pblk
*pblk
, struct pblk_line
*meta_line
);
781 void pblk_check_chunk_state_update(struct pblk
*pblk
, struct nvm_rq
*rqd
);
782 struct pblk_line
*pblk_line_get(struct pblk
*pblk
);
783 struct pblk_line
*pblk_line_get_first_data(struct pblk
*pblk
);
784 struct pblk_line
*pblk_line_replace_data(struct pblk
*pblk
);
785 void pblk_ppa_to_line_put(struct pblk
*pblk
, struct ppa_addr ppa
);
786 void pblk_rq_to_line_put(struct pblk
*pblk
, struct nvm_rq
*rqd
);
787 int pblk_line_recov_alloc(struct pblk
*pblk
, struct pblk_line
*line
);
788 void pblk_line_recov_close(struct pblk
*pblk
, struct pblk_line
*line
);
789 struct pblk_line
*pblk_line_get_data(struct pblk
*pblk
);
790 struct pblk_line
*pblk_line_get_erase(struct pblk
*pblk
);
791 int pblk_line_erase(struct pblk
*pblk
, struct pblk_line
*line
);
792 int pblk_line_is_full(struct pblk_line
*line
);
793 void pblk_line_free(struct pblk_line
*line
);
794 void pblk_line_close_meta(struct pblk
*pblk
, struct pblk_line
*line
);
795 void pblk_line_close(struct pblk
*pblk
, struct pblk_line
*line
);
796 void pblk_line_close_ws(struct work_struct
*work
);
797 void pblk_pipeline_stop(struct pblk
*pblk
);
798 void __pblk_pipeline_stop(struct pblk
*pblk
);
799 void __pblk_pipeline_flush(struct pblk
*pblk
);
800 void pblk_gen_run_ws(struct pblk
*pblk
, struct pblk_line
*line
, void *priv
,
801 void (*work
)(struct work_struct
*), gfp_t gfp_mask
,
802 struct workqueue_struct
*wq
);
803 u64
pblk_line_smeta_start(struct pblk
*pblk
, struct pblk_line
*line
);
804 int pblk_line_smeta_read(struct pblk
*pblk
, struct pblk_line
*line
);
805 int pblk_line_emeta_read(struct pblk
*pblk
, struct pblk_line
*line
,
807 int pblk_blk_erase_async(struct pblk
*pblk
, struct ppa_addr erase_ppa
);
808 void pblk_line_put(struct kref
*ref
);
809 void pblk_line_put_wq(struct kref
*ref
);
810 struct list_head
*pblk_line_gc_list(struct pblk
*pblk
, struct pblk_line
*line
);
811 u64
pblk_lookup_page(struct pblk
*pblk
, struct pblk_line
*line
);
812 void pblk_dealloc_page(struct pblk
*pblk
, struct pblk_line
*line
, int nr_secs
);
813 u64
pblk_alloc_page(struct pblk
*pblk
, struct pblk_line
*line
, int nr_secs
);
814 u64
__pblk_alloc_page(struct pblk
*pblk
, struct pblk_line
*line
, int nr_secs
);
815 int pblk_calc_secs(struct pblk
*pblk
, unsigned long secs_avail
,
816 unsigned long secs_to_flush
, bool skip_meta
);
817 void pblk_down_rq(struct pblk
*pblk
, struct ppa_addr ppa
,
818 unsigned long *lun_bitmap
);
819 void pblk_down_chunk(struct pblk
*pblk
, struct ppa_addr ppa
);
820 void pblk_up_chunk(struct pblk
*pblk
, struct ppa_addr ppa
);
821 void pblk_up_rq(struct pblk
*pblk
, unsigned long *lun_bitmap
);
822 int pblk_bio_add_pages(struct pblk
*pblk
, struct bio
*bio
, gfp_t flags
,
824 void pblk_bio_free_pages(struct pblk
*pblk
, struct bio
*bio
, int off
,
826 void pblk_map_invalidate(struct pblk
*pblk
, struct ppa_addr ppa
);
827 void __pblk_map_invalidate(struct pblk
*pblk
, struct pblk_line
*line
,
829 void pblk_update_map(struct pblk
*pblk
, sector_t lba
, struct ppa_addr ppa
);
830 void pblk_update_map_cache(struct pblk
*pblk
, sector_t lba
,
831 struct ppa_addr ppa
);
832 void pblk_update_map_dev(struct pblk
*pblk
, sector_t lba
,
833 struct ppa_addr ppa
, struct ppa_addr entry_line
);
834 int pblk_update_map_gc(struct pblk
*pblk
, sector_t lba
, struct ppa_addr ppa
,
835 struct pblk_line
*gc_line
, u64 paddr
);
836 void pblk_lookup_l2p_rand(struct pblk
*pblk
, struct ppa_addr
*ppas
,
837 u64
*lba_list
, int nr_secs
);
838 int pblk_lookup_l2p_seq(struct pblk
*pblk
, struct ppa_addr
*ppas
,
839 sector_t blba
, int nr_secs
, bool *from_cache
);
840 void *pblk_get_meta_for_writes(struct pblk
*pblk
, struct nvm_rq
*rqd
);
841 void pblk_get_packed_meta(struct pblk
*pblk
, struct nvm_rq
*rqd
);
844 * pblk user I/O write path
846 void pblk_write_to_cache(struct pblk
*pblk
, struct bio
*bio
,
847 unsigned long flags
);
848 int pblk_write_gc_to_cache(struct pblk
*pblk
, struct pblk_gc_rq
*gc_rq
);
853 int pblk_map_erase_rq(struct pblk
*pblk
, struct nvm_rq
*rqd
,
854 unsigned int sentry
, unsigned long *lun_bitmap
,
855 unsigned int valid_secs
, struct ppa_addr
*erase_ppa
);
856 int pblk_map_rq(struct pblk
*pblk
, struct nvm_rq
*rqd
, unsigned int sentry
,
857 unsigned long *lun_bitmap
, unsigned int valid_secs
,
863 int pblk_write_ts(void *data
);
864 void pblk_write_timer_fn(struct timer_list
*t
);
865 void pblk_write_should_kick(struct pblk
*pblk
);
866 void pblk_write_kick(struct pblk
*pblk
);
871 extern struct bio_set pblk_bio_set
;
872 void pblk_submit_read(struct pblk
*pblk
, struct bio
*bio
);
873 int pblk_submit_read_gc(struct pblk
*pblk
, struct pblk_gc_rq
*gc_rq
);
877 struct pblk_line
*pblk_recov_l2p(struct pblk
*pblk
);
878 int pblk_recov_pad(struct pblk
*pblk
);
879 int pblk_recov_check_emeta(struct pblk
*pblk
, struct line_emeta
*emeta
);
884 #define PBLK_GC_MAX_READERS 8 /* Max number of outstanding GC reader jobs */
885 #define PBLK_GC_RQ_QD 128 /* Queue depth for inflight GC requests */
886 #define PBLK_GC_L_QD 4 /* Queue depth for inflight GC lines */
888 int pblk_gc_init(struct pblk
*pblk
);
889 void pblk_gc_exit(struct pblk
*pblk
, bool graceful
);
890 void pblk_gc_should_start(struct pblk
*pblk
);
891 void pblk_gc_should_stop(struct pblk
*pblk
);
892 void pblk_gc_should_kick(struct pblk
*pblk
);
893 void pblk_gc_free_full_lines(struct pblk
*pblk
);
894 void pblk_gc_sysfs_state_show(struct pblk
*pblk
, int *gc_enabled
,
896 int pblk_gc_sysfs_force(struct pblk
*pblk
, int force
);
897 void pblk_put_line_back(struct pblk
*pblk
, struct pblk_line
*line
);
902 void pblk_rl_init(struct pblk_rl
*rl
, int budget
, int threshold
);
903 void pblk_rl_free(struct pblk_rl
*rl
);
904 void pblk_rl_update_rates(struct pblk_rl
*rl
);
905 int pblk_rl_high_thrs(struct pblk_rl
*rl
);
906 unsigned long pblk_rl_nr_free_blks(struct pblk_rl
*rl
);
907 unsigned long pblk_rl_nr_user_free_blks(struct pblk_rl
*rl
);
908 int pblk_rl_user_may_insert(struct pblk_rl
*rl
, int nr_entries
);
909 void pblk_rl_inserted(struct pblk_rl
*rl
, int nr_entries
);
910 void pblk_rl_user_in(struct pblk_rl
*rl
, int nr_entries
);
911 int pblk_rl_gc_may_insert(struct pblk_rl
*rl
, int nr_entries
);
912 void pblk_rl_gc_in(struct pblk_rl
*rl
, int nr_entries
);
913 void pblk_rl_out(struct pblk_rl
*rl
, int nr_user
, int nr_gc
);
914 int pblk_rl_max_io(struct pblk_rl
*rl
);
915 void pblk_rl_free_lines_inc(struct pblk_rl
*rl
, struct pblk_line
*line
);
916 void pblk_rl_free_lines_dec(struct pblk_rl
*rl
, struct pblk_line
*line
,
918 int pblk_rl_is_limit(struct pblk_rl
*rl
);
920 void pblk_rl_werr_line_in(struct pblk_rl
*rl
);
921 void pblk_rl_werr_line_out(struct pblk_rl
*rl
);
926 int pblk_sysfs_init(struct gendisk
*tdisk
);
927 void pblk_sysfs_exit(struct gendisk
*tdisk
);
929 static inline struct nvm_rq
*nvm_rq_from_c_ctx(void *c_ctx
)
931 return c_ctx
- sizeof(struct nvm_rq
);
934 static inline void *emeta_to_bb(struct line_emeta
*emeta
)
936 return emeta
->bb_bitmap
;
939 static inline void *emeta_to_wa(struct pblk_line_meta
*lm
,
940 struct line_emeta
*emeta
)
942 return emeta
->bb_bitmap
+ lm
->blk_bitmap_len
;
945 static inline void *emeta_to_lbas(struct pblk
*pblk
, struct line_emeta
*emeta
)
947 return ((void *)emeta
+ pblk
->lm
.emeta_len
[1]);
950 static inline void *emeta_to_vsc(struct pblk
*pblk
, struct line_emeta
*emeta
)
952 return (emeta_to_lbas(pblk
, emeta
) + pblk
->lm
.emeta_len
[2]);
955 static inline int pblk_line_vsc(struct pblk_line
*line
)
957 return le32_to_cpu(*line
->vsc
);
960 static inline int pblk_ppa_to_line_id(struct ppa_addr p
)
965 static inline struct pblk_line
*pblk_ppa_to_line(struct pblk
*pblk
,
968 return &pblk
->lines
[pblk_ppa_to_line_id(p
)];
971 static inline int pblk_ppa_to_pos(struct nvm_geo
*geo
, struct ppa_addr p
)
973 return p
.a
.lun
* geo
->num_ch
+ p
.a
.ch
;
976 static inline struct ppa_addr
addr_to_gen_ppa(struct pblk
*pblk
, u64 paddr
,
979 struct nvm_tgt_dev
*dev
= pblk
->dev
;
980 struct nvm_geo
*geo
= &dev
->geo
;
983 if (geo
->version
== NVM_OCSSD_SPEC_12
) {
984 struct nvm_addrf_12
*ppaf
= (struct nvm_addrf_12
*)&pblk
->addrf
;
988 ppa
.g
.pg
= (paddr
& ppaf
->pg_mask
) >> ppaf
->pg_offset
;
989 ppa
.g
.lun
= (paddr
& ppaf
->lun_mask
) >> ppaf
->lun_offset
;
990 ppa
.g
.ch
= (paddr
& ppaf
->ch_mask
) >> ppaf
->ch_offset
;
991 ppa
.g
.pl
= (paddr
& ppaf
->pln_mask
) >> ppaf
->pln_offset
;
992 ppa
.g
.sec
= (paddr
& ppaf
->sec_mask
) >> ppaf
->sec_offset
;
994 struct pblk_addrf
*uaddrf
= &pblk
->uaddrf
;
995 int secs
, chnls
, luns
;
1001 paddr
= div_u64_rem(paddr
, uaddrf
->sec_stripe
, &secs
);
1004 paddr
= div_u64_rem(paddr
, uaddrf
->ch_stripe
, &chnls
);
1007 paddr
= div_u64_rem(paddr
, uaddrf
->lun_stripe
, &luns
);
1010 ppa
.m
.sec
+= uaddrf
->sec_stripe
* paddr
;
1016 static inline struct nvm_chk_meta
*pblk_dev_ppa_to_chunk(struct pblk
*pblk
,
1019 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1020 struct nvm_geo
*geo
= &dev
->geo
;
1021 struct pblk_line
*line
= pblk_ppa_to_line(pblk
, p
);
1022 int pos
= pblk_ppa_to_pos(geo
, p
);
1024 return &line
->chks
[pos
];
1027 static inline u64
pblk_dev_ppa_to_chunk_addr(struct pblk
*pblk
,
1030 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1032 return dev_to_chunk_addr(dev
->parent
, &pblk
->addrf
, p
);
1035 static inline u64
pblk_dev_ppa_to_line_addr(struct pblk
*pblk
,
1038 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1039 struct nvm_geo
*geo
= &dev
->geo
;
1042 if (geo
->version
== NVM_OCSSD_SPEC_12
) {
1043 struct nvm_addrf_12
*ppaf
= (struct nvm_addrf_12
*)&pblk
->addrf
;
1045 paddr
= (u64
)p
.g
.ch
<< ppaf
->ch_offset
;
1046 paddr
|= (u64
)p
.g
.lun
<< ppaf
->lun_offset
;
1047 paddr
|= (u64
)p
.g
.pg
<< ppaf
->pg_offset
;
1048 paddr
|= (u64
)p
.g
.pl
<< ppaf
->pln_offset
;
1049 paddr
|= (u64
)p
.g
.sec
<< ppaf
->sec_offset
;
1051 struct pblk_addrf
*uaddrf
= &pblk
->uaddrf
;
1055 paddr
= (u64
)p
.m
.grp
* uaddrf
->sec_stripe
;
1056 paddr
+= (u64
)p
.m
.pu
* uaddrf
->sec_lun_stripe
;
1058 secs
= div_u64_rem(secs
, uaddrf
->sec_stripe
, &sec_stripe
);
1059 paddr
+= secs
* uaddrf
->sec_ws_stripe
;
1060 paddr
+= sec_stripe
;
1066 static inline struct ppa_addr
pblk_ppa32_to_ppa64(struct pblk
*pblk
, u32 ppa32
)
1068 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1070 return nvm_ppa32_to_ppa64(dev
->parent
, &pblk
->addrf
, ppa32
);
1073 static inline u32
pblk_ppa64_to_ppa32(struct pblk
*pblk
, struct ppa_addr ppa64
)
1075 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1077 return nvm_ppa64_to_ppa32(dev
->parent
, &pblk
->addrf
, ppa64
);
1080 static inline struct ppa_addr
pblk_trans_map_get(struct pblk
*pblk
,
1083 struct ppa_addr ppa
;
1085 if (pblk
->addrf_len
< 32) {
1086 u32
*map
= (u32
*)pblk
->trans_map
;
1088 ppa
= pblk_ppa32_to_ppa64(pblk
, map
[lba
]);
1090 struct ppa_addr
*map
= (struct ppa_addr
*)pblk
->trans_map
;
1098 static inline void pblk_trans_map_set(struct pblk
*pblk
, sector_t lba
,
1099 struct ppa_addr ppa
)
1101 if (pblk
->addrf_len
< 32) {
1102 u32
*map
= (u32
*)pblk
->trans_map
;
1104 map
[lba
] = pblk_ppa64_to_ppa32(pblk
, ppa
);
1106 u64
*map
= (u64
*)pblk
->trans_map
;
1112 static inline int pblk_ppa_empty(struct ppa_addr ppa_addr
)
1114 return (ppa_addr
.ppa
== ADDR_EMPTY
);
1117 static inline void pblk_ppa_set_empty(struct ppa_addr
*ppa_addr
)
1119 ppa_addr
->ppa
= ADDR_EMPTY
;
1122 static inline bool pblk_ppa_comp(struct ppa_addr lppa
, struct ppa_addr rppa
)
1124 return (lppa
.ppa
== rppa
.ppa
);
1127 static inline int pblk_addr_in_cache(struct ppa_addr ppa
)
1129 return (ppa
.ppa
!= ADDR_EMPTY
&& ppa
.c
.is_cached
);
1132 static inline int pblk_addr_to_cacheline(struct ppa_addr ppa
)
1137 static inline struct ppa_addr
pblk_cacheline_to_addr(int addr
)
1147 static inline u32
pblk_calc_meta_header_crc(struct pblk
*pblk
,
1148 struct line_header
*header
)
1152 crc
= crc32_le(crc
, (unsigned char *)header
+ sizeof(crc
),
1153 sizeof(struct line_header
) - sizeof(crc
));
1158 static inline u32
pblk_calc_smeta_crc(struct pblk
*pblk
,
1159 struct line_smeta
*smeta
)
1161 struct pblk_line_meta
*lm
= &pblk
->lm
;
1164 crc
= crc32_le(crc
, (unsigned char *)smeta
+
1165 sizeof(struct line_header
) + sizeof(crc
),
1167 sizeof(struct line_header
) - sizeof(crc
));
1172 static inline u32
pblk_calc_emeta_crc(struct pblk
*pblk
,
1173 struct line_emeta
*emeta
)
1175 struct pblk_line_meta
*lm
= &pblk
->lm
;
1178 crc
= crc32_le(crc
, (unsigned char *)emeta
+
1179 sizeof(struct line_header
) + sizeof(crc
),
1181 sizeof(struct line_header
) - sizeof(crc
));
1186 static inline int pblk_io_aligned(struct pblk
*pblk
, int nr_secs
)
1188 return !(nr_secs
% pblk
->min_write_pgs
);
1191 #ifdef CONFIG_NVM_PBLK_DEBUG
1192 static inline void print_ppa(struct pblk
*pblk
, struct ppa_addr
*p
,
1193 char *msg
, int error
)
1195 struct nvm_geo
*geo
= &pblk
->dev
->geo
;
1197 if (p
->c
.is_cached
) {
1198 pblk_err(pblk
, "ppa: (%s: %x) cache line: %llu\n",
1199 msg
, error
, (u64
)p
->c
.line
);
1200 } else if (geo
->version
== NVM_OCSSD_SPEC_12
) {
1201 pblk_err(pblk
, "ppa: (%s: %x):ch:%d,lun:%d,blk:%d,pg:%d,pl:%d,sec:%d\n",
1203 p
->g
.ch
, p
->g
.lun
, p
->g
.blk
,
1204 p
->g
.pg
, p
->g
.pl
, p
->g
.sec
);
1206 pblk_err(pblk
, "ppa: (%s: %x):ch:%d,lun:%d,chk:%d,sec:%d\n",
1208 p
->m
.grp
, p
->m
.pu
, p
->m
.chk
, p
->m
.sec
);
1212 static inline void pblk_print_failed_rqd(struct pblk
*pblk
, struct nvm_rq
*rqd
,
1217 if (rqd
->nr_ppas
== 1) {
1218 print_ppa(pblk
, &rqd
->ppa_addr
, "rqd", error
);
1222 while ((bit
= find_next_bit((void *)&rqd
->ppa_status
, rqd
->nr_ppas
,
1223 bit
+ 1)) < rqd
->nr_ppas
) {
1224 print_ppa(pblk
, &rqd
->ppa_list
[bit
], "rqd", error
);
1227 pblk_err(pblk
, "error:%d, ppa_status:%llx\n", error
, rqd
->ppa_status
);
1230 static inline int pblk_boundary_ppa_checks(struct nvm_tgt_dev
*tgt_dev
,
1231 struct ppa_addr
*ppas
, int nr_ppas
)
1233 struct nvm_geo
*geo
= &tgt_dev
->geo
;
1234 struct ppa_addr
*ppa
;
1237 for (i
= 0; i
< nr_ppas
; i
++) {
1240 if (geo
->version
== NVM_OCSSD_SPEC_12
) {
1241 if (!ppa
->c
.is_cached
&&
1242 ppa
->g
.ch
< geo
->num_ch
&&
1243 ppa
->g
.lun
< geo
->num_lun
&&
1244 ppa
->g
.pl
< geo
->num_pln
&&
1245 ppa
->g
.blk
< geo
->num_chk
&&
1246 ppa
->g
.pg
< geo
->num_pg
&&
1247 ppa
->g
.sec
< geo
->ws_min
)
1250 if (!ppa
->c
.is_cached
&&
1251 ppa
->m
.grp
< geo
->num_ch
&&
1252 ppa
->m
.pu
< geo
->num_lun
&&
1253 ppa
->m
.chk
< geo
->num_chk
&&
1254 ppa
->m
.sec
< geo
->clba
)
1258 print_ppa(tgt_dev
->q
->queuedata
, ppa
, "boundary", i
);
1265 static inline int pblk_check_io(struct pblk
*pblk
, struct nvm_rq
*rqd
)
1267 struct nvm_tgt_dev
*dev
= pblk
->dev
;
1268 struct ppa_addr
*ppa_list
= nvm_rq_to_ppa_list(rqd
);
1270 if (pblk_boundary_ppa_checks(dev
, ppa_list
, rqd
->nr_ppas
)) {
1275 if (rqd
->opcode
== NVM_OP_PWRITE
) {
1276 struct pblk_line
*line
;
1279 for (i
= 0; i
< rqd
->nr_ppas
; i
++) {
1280 line
= pblk_ppa_to_line(pblk
, ppa_list
[i
]);
1282 spin_lock(&line
->lock
);
1283 if (line
->state
!= PBLK_LINESTATE_OPEN
) {
1284 pblk_err(pblk
, "bad ppa: line:%d,state:%d\n",
1285 line
->id
, line
->state
);
1287 spin_unlock(&line
->lock
);
1290 spin_unlock(&line
->lock
);
1298 static inline int pblk_boundary_paddr_checks(struct pblk
*pblk
, u64 paddr
)
1300 struct pblk_line_meta
*lm
= &pblk
->lm
;
1302 if (paddr
> lm
->sec_per_line
)
1308 static inline unsigned int pblk_get_bi_idx(struct bio
*bio
)
1310 return bio
->bi_iter
.bi_idx
;
1313 static inline sector_t
pblk_get_lba(struct bio
*bio
)
1315 return bio
->bi_iter
.bi_sector
/ NR_PHY_IN_LOG
;
1318 static inline unsigned int pblk_get_secs(struct bio
*bio
)
1320 return bio
->bi_iter
.bi_size
/ PBLK_EXPOSED_PAGE_SIZE
;
1323 static inline char *pblk_disk_name(struct pblk
*pblk
)
1325 struct gendisk
*disk
= pblk
->disk
;
1327 return disk
->disk_name
;
1330 static inline unsigned int pblk_get_min_chks(struct pblk
*pblk
)
1332 struct pblk_line_meta
*lm
= &pblk
->lm
;
1333 /* In a worst-case scenario every line will have OP invalid sectors.
1334 * We will then need a minimum of 1/OP lines to free up a single line
1337 return DIV_ROUND_UP(100, pblk
->op
) * lm
->blk_per_line
;
1340 static inline struct pblk_sec_meta
*pblk_get_meta(struct pblk
*pblk
,
1341 void *meta
, int index
)
1344 max_t(int, sizeof(struct pblk_sec_meta
), pblk
->oob_meta_size
)
1348 static inline int pblk_dma_meta_size(struct pblk
*pblk
)
1350 return max_t(int, sizeof(struct pblk_sec_meta
), pblk
->oob_meta_size
)
1354 static inline int pblk_is_oob_meta_supported(struct pblk
*pblk
)
1356 return pblk
->oob_meta_size
>= sizeof(struct pblk_sec_meta
);
1358 #endif /* PBLK_H_ */