2 * Block Translation Table
3 * Copyright (c) 2014-2015, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 #include <linux/highmem.h>
15 #include <linux/debugfs.h>
16 #include <linux/blkdev.h>
17 #include <linux/module.h>
18 #include <linux/device.h>
19 #include <linux/mutex.h>
20 #include <linux/hdreg.h>
21 #include <linux/genhd.h>
22 #include <linux/sizes.h>
23 #include <linux/ndctl.h>
26 #include <linux/backing-dev.h>
30 enum log_ent_request
{
35 static struct device
*to_dev(struct arena_info
*arena
)
37 return &arena
->nd_btt
->dev
;
40 static u64
adjust_initial_offset(struct nd_btt
*nd_btt
, u64 offset
)
42 return offset
+ nd_btt
->initial_offset
;
45 static int arena_read_bytes(struct arena_info
*arena
, resource_size_t offset
,
46 void *buf
, size_t n
, unsigned long flags
)
48 struct nd_btt
*nd_btt
= arena
->nd_btt
;
49 struct nd_namespace_common
*ndns
= nd_btt
->ndns
;
51 /* arena offsets may be shifted from the base of the device */
52 offset
= adjust_initial_offset(nd_btt
, offset
);
53 return nvdimm_read_bytes(ndns
, offset
, buf
, n
, flags
);
56 static int arena_write_bytes(struct arena_info
*arena
, resource_size_t offset
,
57 void *buf
, size_t n
, unsigned long flags
)
59 struct nd_btt
*nd_btt
= arena
->nd_btt
;
60 struct nd_namespace_common
*ndns
= nd_btt
->ndns
;
62 /* arena offsets may be shifted from the base of the device */
63 offset
= adjust_initial_offset(nd_btt
, offset
);
64 return nvdimm_write_bytes(ndns
, offset
, buf
, n
, flags
);
67 static int btt_info_write(struct arena_info
*arena
, struct btt_sb
*super
)
72 * infooff and info2off should always be at least 512B aligned.
73 * We rely on that to make sure rw_bytes does error clearing
74 * correctly, so make sure that is the case.
76 dev_WARN_ONCE(to_dev(arena
), !IS_ALIGNED(arena
->infooff
, 512),
77 "arena->infooff: %#llx is unaligned\n", arena
->infooff
);
78 dev_WARN_ONCE(to_dev(arena
), !IS_ALIGNED(arena
->info2off
, 512),
79 "arena->info2off: %#llx is unaligned\n", arena
->info2off
);
81 ret
= arena_write_bytes(arena
, arena
->info2off
, super
,
82 sizeof(struct btt_sb
), 0);
86 return arena_write_bytes(arena
, arena
->infooff
, super
,
87 sizeof(struct btt_sb
), 0);
90 static int btt_info_read(struct arena_info
*arena
, struct btt_sb
*super
)
92 return arena_read_bytes(arena
, arena
->infooff
, super
,
93 sizeof(struct btt_sb
), 0);
97 * 'raw' version of btt_map write
99 * mapping is in little-endian
100 * mapping contains 'E' and 'Z' flags as desired
102 static int __btt_map_write(struct arena_info
*arena
, u32 lba
, __le32 mapping
,
105 u64 ns_off
= arena
->mapoff
+ (lba
* MAP_ENT_SIZE
);
107 if (unlikely(lba
>= arena
->external_nlba
))
108 dev_err_ratelimited(to_dev(arena
),
109 "%s: lba %#x out of range (max: %#x)\n",
110 __func__
, lba
, arena
->external_nlba
);
111 return arena_write_bytes(arena
, ns_off
, &mapping
, MAP_ENT_SIZE
, flags
);
114 static int btt_map_write(struct arena_info
*arena
, u32 lba
, u32 mapping
,
115 u32 z_flag
, u32 e_flag
, unsigned long rwb_flags
)
121 * This 'mapping' is supposed to be just the LBA mapping, without
122 * any flags set, so strip the flag bits.
124 mapping
= ent_lba(mapping
);
126 ze
= (z_flag
<< 1) + e_flag
;
130 * We want to set neither of the Z or E flags, and
131 * in the actual layout, this means setting the bit
132 * positions of both to '1' to indicate a 'normal'
135 mapping
|= MAP_ENT_NORMAL
;
138 mapping
|= (1 << MAP_ERR_SHIFT
);
141 mapping
|= (1 << MAP_TRIM_SHIFT
);
145 * The case where Z and E are both sent in as '1' could be
146 * construed as a valid 'normal' case, but we decide not to,
149 dev_err_ratelimited(to_dev(arena
),
150 "Invalid use of Z and E flags\n");
154 mapping_le
= cpu_to_le32(mapping
);
155 return __btt_map_write(arena
, lba
, mapping_le
, rwb_flags
);
158 static int btt_map_read(struct arena_info
*arena
, u32 lba
, u32
*mapping
,
159 int *trim
, int *error
, unsigned long rwb_flags
)
163 u32 raw_mapping
, postmap
, ze
, z_flag
, e_flag
;
164 u64 ns_off
= arena
->mapoff
+ (lba
* MAP_ENT_SIZE
);
166 if (unlikely(lba
>= arena
->external_nlba
))
167 dev_err_ratelimited(to_dev(arena
),
168 "%s: lba %#x out of range (max: %#x)\n",
169 __func__
, lba
, arena
->external_nlba
);
171 ret
= arena_read_bytes(arena
, ns_off
, &in
, MAP_ENT_SIZE
, rwb_flags
);
175 raw_mapping
= le32_to_cpu(in
);
177 z_flag
= ent_z_flag(raw_mapping
);
178 e_flag
= ent_e_flag(raw_mapping
);
179 ze
= (z_flag
<< 1) + e_flag
;
180 postmap
= ent_lba(raw_mapping
);
182 /* Reuse the {z,e}_flag variables for *trim and *error */
188 /* Initial state. Return postmap = premap */
214 static int btt_log_group_read(struct arena_info
*arena
, u32 lane
,
215 struct log_group
*log
)
217 return arena_read_bytes(arena
,
218 arena
->logoff
+ (lane
* LOG_GRP_SIZE
), log
,
222 static struct dentry
*debugfs_root
;
224 static void arena_debugfs_init(struct arena_info
*a
, struct dentry
*parent
,
230 /* If for some reason, parent bttN was not created, exit */
234 snprintf(dirname
, 32, "arena%d", idx
);
235 d
= debugfs_create_dir(dirname
, parent
);
236 if (IS_ERR_OR_NULL(d
))
240 debugfs_create_x64("size", S_IRUGO
, d
, &a
->size
);
241 debugfs_create_x64("external_lba_start", S_IRUGO
, d
,
242 &a
->external_lba_start
);
243 debugfs_create_x32("internal_nlba", S_IRUGO
, d
, &a
->internal_nlba
);
244 debugfs_create_u32("internal_lbasize", S_IRUGO
, d
,
245 &a
->internal_lbasize
);
246 debugfs_create_x32("external_nlba", S_IRUGO
, d
, &a
->external_nlba
);
247 debugfs_create_u32("external_lbasize", S_IRUGO
, d
,
248 &a
->external_lbasize
);
249 debugfs_create_u32("nfree", S_IRUGO
, d
, &a
->nfree
);
250 debugfs_create_u16("version_major", S_IRUGO
, d
, &a
->version_major
);
251 debugfs_create_u16("version_minor", S_IRUGO
, d
, &a
->version_minor
);
252 debugfs_create_x64("nextoff", S_IRUGO
, d
, &a
->nextoff
);
253 debugfs_create_x64("infooff", S_IRUGO
, d
, &a
->infooff
);
254 debugfs_create_x64("dataoff", S_IRUGO
, d
, &a
->dataoff
);
255 debugfs_create_x64("mapoff", S_IRUGO
, d
, &a
->mapoff
);
256 debugfs_create_x64("logoff", S_IRUGO
, d
, &a
->logoff
);
257 debugfs_create_x64("info2off", S_IRUGO
, d
, &a
->info2off
);
258 debugfs_create_x32("flags", S_IRUGO
, d
, &a
->flags
);
259 debugfs_create_u32("log_index_0", S_IRUGO
, d
, &a
->log_index
[0]);
260 debugfs_create_u32("log_index_1", S_IRUGO
, d
, &a
->log_index
[1]);
263 static void btt_debugfs_init(struct btt
*btt
)
266 struct arena_info
*arena
;
268 btt
->debugfs_dir
= debugfs_create_dir(dev_name(&btt
->nd_btt
->dev
),
270 if (IS_ERR_OR_NULL(btt
->debugfs_dir
))
273 list_for_each_entry(arena
, &btt
->arena_list
, list
) {
274 arena_debugfs_init(arena
, btt
->debugfs_dir
, i
);
279 static u32
log_seq(struct log_group
*log
, int log_idx
)
281 return le32_to_cpu(log
->ent
[log_idx
].seq
);
285 * This function accepts two log entries, and uses the
286 * sequence number to find the 'older' entry.
287 * It also updates the sequence number in this old entry to
288 * make it the 'new' one if the mark_flag is set.
289 * Finally, it returns which of the entries was the older one.
291 * TODO The logic feels a bit kludge-y. make it better..
293 static int btt_log_get_old(struct arena_info
*a
, struct log_group
*log
)
295 int idx0
= a
->log_index
[0];
296 int idx1
= a
->log_index
[1];
300 * the first ever time this is seen, the entry goes into [0]
301 * the next time, the following logic works out to put this
302 * (next) entry into [1]
304 if (log_seq(log
, idx0
) == 0) {
305 log
->ent
[idx0
].seq
= cpu_to_le32(1);
309 if (log_seq(log
, idx0
) == log_seq(log
, idx1
))
311 if (log_seq(log
, idx0
) + log_seq(log
, idx1
) > 5)
314 if (log_seq(log
, idx0
) < log_seq(log
, idx1
)) {
315 if ((log_seq(log
, idx1
) - log_seq(log
, idx0
)) == 1)
320 if ((log_seq(log
, idx0
) - log_seq(log
, idx1
)) == 1)
330 * This function copies the desired (old/new) log entry into ent if
331 * it is not NULL. It returns the sub-slot number (0 or 1)
332 * where the desired log entry was found. Negative return values
335 static int btt_log_read(struct arena_info
*arena
, u32 lane
,
336 struct log_entry
*ent
, int old_flag
)
339 int old_ent
, ret_ent
;
340 struct log_group log
;
342 ret
= btt_log_group_read(arena
, lane
, &log
);
346 old_ent
= btt_log_get_old(arena
, &log
);
347 if (old_ent
< 0 || old_ent
> 1) {
348 dev_err(to_dev(arena
),
349 "log corruption (%d): lane %d seq [%d, %d]\n",
350 old_ent
, lane
, log
.ent
[arena
->log_index
[0]].seq
,
351 log
.ent
[arena
->log_index
[1]].seq
);
352 /* TODO set error state? */
356 ret_ent
= (old_flag
? old_ent
: (1 - old_ent
));
359 memcpy(ent
, &log
.ent
[arena
->log_index
[ret_ent
]], LOG_ENT_SIZE
);
365 * This function commits a log entry to media
366 * It does _not_ prepare the freelist entry for the next write
367 * btt_flog_write is the wrapper for updating the freelist elements
369 static int __btt_log_write(struct arena_info
*arena
, u32 lane
,
370 u32 sub
, struct log_entry
*ent
, unsigned long flags
)
373 u32 group_slot
= arena
->log_index
[sub
];
374 unsigned int log_half
= LOG_ENT_SIZE
/ 2;
378 ns_off
= arena
->logoff
+ (lane
* LOG_GRP_SIZE
) +
379 (group_slot
* LOG_ENT_SIZE
);
380 /* split the 16B write into atomic, durable halves */
381 ret
= arena_write_bytes(arena
, ns_off
, src
, log_half
, flags
);
387 return arena_write_bytes(arena
, ns_off
, src
, log_half
, flags
);
390 static int btt_flog_write(struct arena_info
*arena
, u32 lane
, u32 sub
,
391 struct log_entry
*ent
)
395 ret
= __btt_log_write(arena
, lane
, sub
, ent
, NVDIMM_IO_ATOMIC
);
399 /* prepare the next free entry */
400 arena
->freelist
[lane
].sub
= 1 - arena
->freelist
[lane
].sub
;
401 if (++(arena
->freelist
[lane
].seq
) == 4)
402 arena
->freelist
[lane
].seq
= 1;
403 if (ent_e_flag(ent
->old_map
))
404 arena
->freelist
[lane
].has_err
= 1;
405 arena
->freelist
[lane
].block
= le32_to_cpu(ent_lba(ent
->old_map
));
411 * This function initializes the BTT map to the initial state, which is
412 * all-zeroes, and indicates an identity mapping
414 static int btt_map_init(struct arena_info
*arena
)
419 size_t chunk_size
= SZ_2M
;
420 size_t mapsize
= arena
->logoff
- arena
->mapoff
;
422 zerobuf
= kzalloc(chunk_size
, GFP_KERNEL
);
427 * mapoff should always be at least 512B aligned. We rely on that to
428 * make sure rw_bytes does error clearing correctly, so make sure that
431 dev_WARN_ONCE(to_dev(arena
), !IS_ALIGNED(arena
->mapoff
, 512),
432 "arena->mapoff: %#llx is unaligned\n", arena
->mapoff
);
435 size_t size
= min(mapsize
, chunk_size
);
437 dev_WARN_ONCE(to_dev(arena
), size
< 512,
438 "chunk size: %#zx is unaligned\n", size
);
439 ret
= arena_write_bytes(arena
, arena
->mapoff
+ offset
, zerobuf
,
455 * This function initializes the BTT log with 'fake' entries pointing
456 * to the initial reserved set of blocks as being free
458 static int btt_log_init(struct arena_info
*arena
)
460 size_t logsize
= arena
->info2off
- arena
->logoff
;
461 size_t chunk_size
= SZ_4K
, offset
= 0;
462 struct log_entry ent
;
467 zerobuf
= kzalloc(chunk_size
, GFP_KERNEL
);
471 * logoff should always be at least 512B aligned. We rely on that to
472 * make sure rw_bytes does error clearing correctly, so make sure that
475 dev_WARN_ONCE(to_dev(arena
), !IS_ALIGNED(arena
->logoff
, 512),
476 "arena->logoff: %#llx is unaligned\n", arena
->logoff
);
479 size_t size
= min(logsize
, chunk_size
);
481 dev_WARN_ONCE(to_dev(arena
), size
< 512,
482 "chunk size: %#zx is unaligned\n", size
);
483 ret
= arena_write_bytes(arena
, arena
->logoff
+ offset
, zerobuf
,
493 for (i
= 0; i
< arena
->nfree
; i
++) {
494 ent
.lba
= cpu_to_le32(i
);
495 ent
.old_map
= cpu_to_le32(arena
->external_nlba
+ i
);
496 ent
.new_map
= cpu_to_le32(arena
->external_nlba
+ i
);
497 ent
.seq
= cpu_to_le32(LOG_SEQ_INIT
);
498 ret
= __btt_log_write(arena
, i
, 0, &ent
, 0);
508 static u64
to_namespace_offset(struct arena_info
*arena
, u64 lba
)
510 return arena
->dataoff
+ ((u64
)lba
* arena
->internal_lbasize
);
513 static int arena_clear_freelist_error(struct arena_info
*arena
, u32 lane
)
517 if (arena
->freelist
[lane
].has_err
) {
518 void *zero_page
= page_address(ZERO_PAGE(0));
519 u32 lba
= arena
->freelist
[lane
].block
;
520 u64 nsoff
= to_namespace_offset(arena
, lba
);
521 unsigned long len
= arena
->sector_size
;
523 mutex_lock(&arena
->err_lock
);
526 unsigned long chunk
= min(len
, PAGE_SIZE
);
528 ret
= arena_write_bytes(arena
, nsoff
, zero_page
,
535 arena
->freelist
[lane
].has_err
= 0;
537 mutex_unlock(&arena
->err_lock
);
542 static int btt_freelist_init(struct arena_info
*arena
)
545 struct log_entry log_new
;
546 u32 i
, map_entry
, log_oldmap
, log_newmap
;
548 arena
->freelist
= kcalloc(arena
->nfree
, sizeof(struct free_entry
),
550 if (!arena
->freelist
)
553 for (i
= 0; i
< arena
->nfree
; i
++) {
554 new = btt_log_read(arena
, i
, &log_new
, LOG_NEW_ENT
);
558 /* old and new map entries with any flags stripped out */
559 log_oldmap
= ent_lba(le32_to_cpu(log_new
.old_map
));
560 log_newmap
= ent_lba(le32_to_cpu(log_new
.new_map
));
562 /* sub points to the next one to be overwritten */
563 arena
->freelist
[i
].sub
= 1 - new;
564 arena
->freelist
[i
].seq
= nd_inc_seq(le32_to_cpu(log_new
.seq
));
565 arena
->freelist
[i
].block
= log_oldmap
;
568 * FIXME: if error clearing fails during init, we want to make
571 if (ent_e_flag(log_new
.old_map
) &&
572 !ent_normal(log_new
.old_map
)) {
573 arena
->freelist
[i
].has_err
= 1;
574 ret
= arena_clear_freelist_error(arena
, i
);
576 dev_err_ratelimited(to_dev(arena
),
577 "Unable to clear known errors\n");
580 /* This implies a newly created or untouched flog entry */
581 if (log_oldmap
== log_newmap
)
584 /* Check if map recovery is needed */
585 ret
= btt_map_read(arena
, le32_to_cpu(log_new
.lba
), &map_entry
,
591 * The map_entry from btt_read_map is stripped of any flag bits,
592 * so use the stripped out versions from the log as well for
593 * testing whether recovery is needed. For restoration, use the
594 * 'raw' version of the log entries as that captured what we
595 * were going to write originally.
597 if ((log_newmap
!= map_entry
) && (log_oldmap
== map_entry
)) {
599 * Last transaction wrote the flog, but wasn't able
600 * to complete the map write. So fix up the map.
602 ret
= btt_map_write(arena
, le32_to_cpu(log_new
.lba
),
603 le32_to_cpu(log_new
.new_map
), 0, 0, 0);
612 static bool ent_is_padding(struct log_entry
*ent
)
614 return (ent
->lba
== 0) && (ent
->old_map
== 0) && (ent
->new_map
== 0)
619 * Detecting valid log indices: We read a log group (see the comments in btt.h
620 * for a description of a 'log_group' and its 'slots'), and iterate over its
621 * four slots. We expect that a padding slot will be all-zeroes, and use this
622 * to detect a padding slot vs. an actual entry.
624 * If a log_group is in the initial state, i.e. hasn't been used since the
625 * creation of this BTT layout, it will have three of the four slots with
626 * zeroes. We skip over these log_groups for the detection of log_index. If
627 * all log_groups are in the initial state (i.e. the BTT has never been
628 * written to), it is safe to assume the 'new format' of log entries in slots
631 static int log_set_indices(struct arena_info
*arena
)
633 bool idx_set
= false, initial_state
= true;
634 int ret
, log_index
[2] = {-1, -1};
635 u32 i
, j
, next_idx
= 0;
636 struct log_group log
;
639 for (i
= 0; i
< arena
->nfree
; i
++) {
640 ret
= btt_log_group_read(arena
, i
, &log
);
644 for (j
= 0; j
< 4; j
++) {
646 if (ent_is_padding(&log
.ent
[j
])) {
650 /* Skip if index has been recorded */
651 if ((next_idx
== 1) &&
654 /* valid entry, record index */
655 log_index
[next_idx
] = j
;
659 /* two valid entries found */
661 } else if (next_idx
> 2) {
662 /* too many valid indices */
667 * once the indices have been set, just verify
668 * that all subsequent log groups are either in
669 * their initial state or follow the same
672 if (j
== log_index
[0]) {
673 /* entry must be 'valid' */
674 if (ent_is_padding(&log
.ent
[j
]))
676 } else if (j
== log_index
[1]) {
679 * log_index[1] can be padding if the
680 * lane never got used and it is still
681 * in the initial state (three 'padding'
685 /* entry must be invalid (padding) */
686 if (!ent_is_padding(&log
.ent
[j
]))
692 * If any of the log_groups have more than one valid,
693 * non-padding entry, then the we are no longer in the
697 initial_state
= false;
701 if (!initial_state
&& !idx_set
)
705 * If all the entries in the log were in the initial state,
706 * assume new padding scheme
712 * Only allow the known permutations of log/padding indices,
713 * i.e. (0, 1), and (0, 2)
715 if ((log_index
[0] == 0) && ((log_index
[1] == 1) || (log_index
[1] == 2)))
716 ; /* known index possibilities */
718 dev_err(to_dev(arena
), "Found an unknown padding scheme\n");
722 arena
->log_index
[0] = log_index
[0];
723 arena
->log_index
[1] = log_index
[1];
724 dev_dbg(to_dev(arena
), "log_index_0 = %d\n", log_index
[0]);
725 dev_dbg(to_dev(arena
), "log_index_1 = %d\n", log_index
[1]);
729 static int btt_rtt_init(struct arena_info
*arena
)
731 arena
->rtt
= kcalloc(arena
->nfree
, sizeof(u32
), GFP_KERNEL
);
732 if (arena
->rtt
== NULL
)
738 static int btt_maplocks_init(struct arena_info
*arena
)
742 arena
->map_locks
= kcalloc(arena
->nfree
, sizeof(struct aligned_lock
),
744 if (!arena
->map_locks
)
747 for (i
= 0; i
< arena
->nfree
; i
++)
748 spin_lock_init(&arena
->map_locks
[i
].lock
);
753 static struct arena_info
*alloc_arena(struct btt
*btt
, size_t size
,
754 size_t start
, size_t arena_off
)
756 struct arena_info
*arena
;
757 u64 logsize
, mapsize
, datasize
;
758 u64 available
= size
;
760 arena
= kzalloc(sizeof(struct arena_info
), GFP_KERNEL
);
763 arena
->nd_btt
= btt
->nd_btt
;
764 arena
->sector_size
= btt
->sector_size
;
765 mutex_init(&arena
->err_lock
);
771 arena
->external_lba_start
= start
;
772 arena
->external_lbasize
= btt
->lbasize
;
773 arena
->internal_lbasize
= roundup(arena
->external_lbasize
,
774 INT_LBASIZE_ALIGNMENT
);
775 arena
->nfree
= BTT_DEFAULT_NFREE
;
776 arena
->version_major
= btt
->nd_btt
->version_major
;
777 arena
->version_minor
= btt
->nd_btt
->version_minor
;
779 if (available
% BTT_PG_SIZE
)
780 available
-= (available
% BTT_PG_SIZE
);
782 /* Two pages are reserved for the super block and its copy */
783 available
-= 2 * BTT_PG_SIZE
;
785 /* The log takes a fixed amount of space based on nfree */
786 logsize
= roundup(arena
->nfree
* LOG_GRP_SIZE
, BTT_PG_SIZE
);
787 available
-= logsize
;
789 /* Calculate optimal split between map and data area */
790 arena
->internal_nlba
= div_u64(available
- BTT_PG_SIZE
,
791 arena
->internal_lbasize
+ MAP_ENT_SIZE
);
792 arena
->external_nlba
= arena
->internal_nlba
- arena
->nfree
;
794 mapsize
= roundup((arena
->external_nlba
* MAP_ENT_SIZE
), BTT_PG_SIZE
);
795 datasize
= available
- mapsize
;
797 /* 'Absolute' values, relative to start of storage space */
798 arena
->infooff
= arena_off
;
799 arena
->dataoff
= arena
->infooff
+ BTT_PG_SIZE
;
800 arena
->mapoff
= arena
->dataoff
+ datasize
;
801 arena
->logoff
= arena
->mapoff
+ mapsize
;
802 arena
->info2off
= arena
->logoff
+ logsize
;
804 /* Default log indices are (0,1) */
805 arena
->log_index
[0] = 0;
806 arena
->log_index
[1] = 1;
810 static void free_arenas(struct btt
*btt
)
812 struct arena_info
*arena
, *next
;
814 list_for_each_entry_safe(arena
, next
, &btt
->arena_list
, list
) {
815 list_del(&arena
->list
);
817 kfree(arena
->map_locks
);
818 kfree(arena
->freelist
);
819 debugfs_remove_recursive(arena
->debugfs_dir
);
825 * This function reads an existing valid btt superblock and
826 * populates the corresponding arena_info struct
828 static void parse_arena_meta(struct arena_info
*arena
, struct btt_sb
*super
,
831 arena
->internal_nlba
= le32_to_cpu(super
->internal_nlba
);
832 arena
->internal_lbasize
= le32_to_cpu(super
->internal_lbasize
);
833 arena
->external_nlba
= le32_to_cpu(super
->external_nlba
);
834 arena
->external_lbasize
= le32_to_cpu(super
->external_lbasize
);
835 arena
->nfree
= le32_to_cpu(super
->nfree
);
836 arena
->version_major
= le16_to_cpu(super
->version_major
);
837 arena
->version_minor
= le16_to_cpu(super
->version_minor
);
839 arena
->nextoff
= (super
->nextoff
== 0) ? 0 : (arena_off
+
840 le64_to_cpu(super
->nextoff
));
841 arena
->infooff
= arena_off
;
842 arena
->dataoff
= arena_off
+ le64_to_cpu(super
->dataoff
);
843 arena
->mapoff
= arena_off
+ le64_to_cpu(super
->mapoff
);
844 arena
->logoff
= arena_off
+ le64_to_cpu(super
->logoff
);
845 arena
->info2off
= arena_off
+ le64_to_cpu(super
->info2off
);
847 arena
->size
= (le64_to_cpu(super
->nextoff
) > 0)
848 ? (le64_to_cpu(super
->nextoff
))
849 : (arena
->info2off
- arena
->infooff
+ BTT_PG_SIZE
);
851 arena
->flags
= le32_to_cpu(super
->flags
);
854 static int discover_arenas(struct btt
*btt
)
857 struct arena_info
*arena
;
858 struct btt_sb
*super
;
859 size_t remaining
= btt
->rawsize
;
864 super
= kzalloc(sizeof(*super
), GFP_KERNEL
);
869 /* Alloc memory for arena */
870 arena
= alloc_arena(btt
, 0, 0, 0);
876 arena
->infooff
= cur_off
;
877 ret
= btt_info_read(arena
, super
);
881 if (!nd_btt_arena_is_valid(btt
->nd_btt
, super
)) {
882 if (remaining
== btt
->rawsize
) {
883 btt
->init_state
= INIT_NOTFOUND
;
884 dev_info(to_dev(arena
), "No existing arenas\n");
887 dev_err(to_dev(arena
),
888 "Found corrupted metadata!\n");
894 arena
->external_lba_start
= cur_nlba
;
895 parse_arena_meta(arena
, super
, cur_off
);
897 ret
= log_set_indices(arena
);
899 dev_err(to_dev(arena
),
900 "Unable to deduce log/padding indices\n");
904 ret
= btt_freelist_init(arena
);
908 ret
= btt_rtt_init(arena
);
912 ret
= btt_maplocks_init(arena
);
916 list_add_tail(&arena
->list
, &btt
->arena_list
);
918 remaining
-= arena
->size
;
919 cur_off
+= arena
->size
;
920 cur_nlba
+= arena
->external_nlba
;
923 if (arena
->nextoff
== 0)
926 btt
->num_arenas
= num_arenas
;
927 btt
->nlba
= cur_nlba
;
928 btt
->init_state
= INIT_READY
;
941 static int create_arenas(struct btt
*btt
)
943 size_t remaining
= btt
->rawsize
;
947 struct arena_info
*arena
;
948 size_t arena_size
= min_t(u64
, ARENA_MAX_SIZE
, remaining
);
950 remaining
-= arena_size
;
951 if (arena_size
< ARENA_MIN_SIZE
)
954 arena
= alloc_arena(btt
, arena_size
, btt
->nlba
, cur_off
);
959 btt
->nlba
+= arena
->external_nlba
;
960 if (remaining
>= ARENA_MIN_SIZE
)
961 arena
->nextoff
= arena
->size
;
964 cur_off
+= arena_size
;
965 list_add_tail(&arena
->list
, &btt
->arena_list
);
972 * This function completes arena initialization by writing
974 * It is only called for an uninitialized arena when a write
975 * to that arena occurs for the first time.
977 static int btt_arena_write_layout(struct arena_info
*arena
)
981 struct btt_sb
*super
;
982 struct nd_btt
*nd_btt
= arena
->nd_btt
;
983 const u8
*parent_uuid
= nd_dev_to_uuid(&nd_btt
->ndns
->dev
);
985 ret
= btt_map_init(arena
);
989 ret
= btt_log_init(arena
);
993 super
= kzalloc(sizeof(struct btt_sb
), GFP_NOIO
);
997 strncpy(super
->signature
, BTT_SIG
, BTT_SIG_LEN
);
998 memcpy(super
->uuid
, nd_btt
->uuid
, 16);
999 memcpy(super
->parent_uuid
, parent_uuid
, 16);
1000 super
->flags
= cpu_to_le32(arena
->flags
);
1001 super
->version_major
= cpu_to_le16(arena
->version_major
);
1002 super
->version_minor
= cpu_to_le16(arena
->version_minor
);
1003 super
->external_lbasize
= cpu_to_le32(arena
->external_lbasize
);
1004 super
->external_nlba
= cpu_to_le32(arena
->external_nlba
);
1005 super
->internal_lbasize
= cpu_to_le32(arena
->internal_lbasize
);
1006 super
->internal_nlba
= cpu_to_le32(arena
->internal_nlba
);
1007 super
->nfree
= cpu_to_le32(arena
->nfree
);
1008 super
->infosize
= cpu_to_le32(sizeof(struct btt_sb
));
1009 super
->nextoff
= cpu_to_le64(arena
->nextoff
);
1011 * Subtract arena->infooff (arena start) so numbers are relative
1014 super
->dataoff
= cpu_to_le64(arena
->dataoff
- arena
->infooff
);
1015 super
->mapoff
= cpu_to_le64(arena
->mapoff
- arena
->infooff
);
1016 super
->logoff
= cpu_to_le64(arena
->logoff
- arena
->infooff
);
1017 super
->info2off
= cpu_to_le64(arena
->info2off
- arena
->infooff
);
1020 sum
= nd_sb_checksum((struct nd_gen_sb
*) super
);
1021 super
->checksum
= cpu_to_le64(sum
);
1023 ret
= btt_info_write(arena
, super
);
1030 * This function completes the initialization for the BTT namespace
1031 * such that it is ready to accept IOs
1033 static int btt_meta_init(struct btt
*btt
)
1036 struct arena_info
*arena
;
1038 mutex_lock(&btt
->init_lock
);
1039 list_for_each_entry(arena
, &btt
->arena_list
, list
) {
1040 ret
= btt_arena_write_layout(arena
);
1044 ret
= btt_freelist_init(arena
);
1048 ret
= btt_rtt_init(arena
);
1052 ret
= btt_maplocks_init(arena
);
1057 btt
->init_state
= INIT_READY
;
1060 mutex_unlock(&btt
->init_lock
);
1064 static u32
btt_meta_size(struct btt
*btt
)
1066 return btt
->lbasize
- btt
->sector_size
;
1070 * This function calculates the arena in which the given LBA lies
1071 * by doing a linear walk. This is acceptable since we expect only
1072 * a few arenas. If we have backing devices that get much larger,
1073 * we can construct a balanced binary tree of arenas at init time
1074 * so that this range search becomes faster.
1076 static int lba_to_arena(struct btt
*btt
, sector_t sector
, __u32
*premap
,
1077 struct arena_info
**arena
)
1079 struct arena_info
*arena_list
;
1080 __u64 lba
= div_u64(sector
<< SECTOR_SHIFT
, btt
->sector_size
);
1082 list_for_each_entry(arena_list
, &btt
->arena_list
, list
) {
1083 if (lba
< arena_list
->external_nlba
) {
1084 *arena
= arena_list
;
1088 lba
-= arena_list
->external_nlba
;
1095 * The following (lock_map, unlock_map) are mostly just to improve
1096 * readability, since they index into an array of locks
1098 static void lock_map(struct arena_info
*arena
, u32 premap
)
1099 __acquires(&arena
->map_locks
[idx
].lock
)
1101 u32 idx
= (premap
* MAP_ENT_SIZE
/ L1_CACHE_BYTES
) % arena
->nfree
;
1103 spin_lock(&arena
->map_locks
[idx
].lock
);
1106 static void unlock_map(struct arena_info
*arena
, u32 premap
)
1107 __releases(&arena
->map_locks
[idx
].lock
)
1109 u32 idx
= (premap
* MAP_ENT_SIZE
/ L1_CACHE_BYTES
) % arena
->nfree
;
1111 spin_unlock(&arena
->map_locks
[idx
].lock
);
1114 static int btt_data_read(struct arena_info
*arena
, struct page
*page
,
1115 unsigned int off
, u32 lba
, u32 len
)
1118 u64 nsoff
= to_namespace_offset(arena
, lba
);
1119 void *mem
= kmap_atomic(page
);
1121 ret
= arena_read_bytes(arena
, nsoff
, mem
+ off
, len
, NVDIMM_IO_ATOMIC
);
1127 static int btt_data_write(struct arena_info
*arena
, u32 lba
,
1128 struct page
*page
, unsigned int off
, u32 len
)
1131 u64 nsoff
= to_namespace_offset(arena
, lba
);
1132 void *mem
= kmap_atomic(page
);
1134 ret
= arena_write_bytes(arena
, nsoff
, mem
+ off
, len
, NVDIMM_IO_ATOMIC
);
1140 static void zero_fill_data(struct page
*page
, unsigned int off
, u32 len
)
1142 void *mem
= kmap_atomic(page
);
1144 memset(mem
+ off
, 0, len
);
1148 #ifdef CONFIG_BLK_DEV_INTEGRITY
1149 static int btt_rw_integrity(struct btt
*btt
, struct bio_integrity_payload
*bip
,
1150 struct arena_info
*arena
, u32 postmap
, int rw
)
1152 unsigned int len
= btt_meta_size(btt
);
1159 meta_nsoff
= to_namespace_offset(arena
, postmap
) + btt
->sector_size
;
1162 unsigned int cur_len
;
1166 bv
= bvec_iter_bvec(bip
->bip_vec
, bip
->bip_iter
);
1168 * The 'bv' obtained from bvec_iter_bvec has its .bv_len and
1169 * .bv_offset already adjusted for iter->bi_bvec_done, and we
1170 * can use those directly
1173 cur_len
= min(len
, bv
.bv_len
);
1174 mem
= kmap_atomic(bv
.bv_page
);
1176 ret
= arena_write_bytes(arena
, meta_nsoff
,
1177 mem
+ bv
.bv_offset
, cur_len
,
1180 ret
= arena_read_bytes(arena
, meta_nsoff
,
1181 mem
+ bv
.bv_offset
, cur_len
,
1189 meta_nsoff
+= cur_len
;
1190 if (!bvec_iter_advance(bip
->bip_vec
, &bip
->bip_iter
, cur_len
))
1197 #else /* CONFIG_BLK_DEV_INTEGRITY */
1198 static int btt_rw_integrity(struct btt
*btt
, struct bio_integrity_payload
*bip
,
1199 struct arena_info
*arena
, u32 postmap
, int rw
)
1205 static int btt_read_pg(struct btt
*btt
, struct bio_integrity_payload
*bip
,
1206 struct page
*page
, unsigned int off
, sector_t sector
,
1211 struct arena_info
*arena
= NULL
;
1212 u32 lane
= 0, premap
, postmap
;
1217 lane
= nd_region_acquire_lane(btt
->nd_region
);
1219 ret
= lba_to_arena(btt
, sector
, &premap
, &arena
);
1223 cur_len
= min(btt
->sector_size
, len
);
1225 ret
= btt_map_read(arena
, premap
, &postmap
, &t_flag
, &e_flag
,
1231 * We loop to make sure that the post map LBA didn't change
1232 * from under us between writing the RTT and doing the actual
1240 zero_fill_data(page
, off
, cur_len
);
1249 arena
->rtt
[lane
] = RTT_VALID
| postmap
;
1251 * Barrier to make sure this write is not reordered
1252 * to do the verification map_read before the RTT store
1256 ret
= btt_map_read(arena
, premap
, &new_map
, &new_t
,
1257 &new_e
, NVDIMM_IO_ATOMIC
);
1261 if ((postmap
== new_map
) && (t_flag
== new_t
) &&
1270 ret
= btt_data_read(arena
, page
, off
, postmap
, cur_len
);
1274 /* Media error - set the e_flag */
1275 rc
= btt_map_write(arena
, premap
, postmap
, 0, 1,
1281 ret
= btt_rw_integrity(btt
, bip
, arena
, postmap
, READ
);
1286 arena
->rtt
[lane
] = RTT_INVALID
;
1287 nd_region_release_lane(btt
->nd_region
, lane
);
1291 sector
+= btt
->sector_size
>> SECTOR_SHIFT
;
1297 arena
->rtt
[lane
] = RTT_INVALID
;
1299 nd_region_release_lane(btt
->nd_region
, lane
);
1304 * Normally, arena_{read,write}_bytes will take care of the initial offset
1305 * adjustment, but in the case of btt_is_badblock, where we query is_bad_pmem,
1306 * we need the final, raw namespace offset here
1308 static bool btt_is_badblock(struct btt
*btt
, struct arena_info
*arena
,
1311 u64 nsoff
= adjust_initial_offset(arena
->nd_btt
,
1312 to_namespace_offset(arena
, postmap
));
1313 sector_t phys_sector
= nsoff
>> 9;
1315 return is_bad_pmem(btt
->phys_bb
, phys_sector
, arena
->internal_lbasize
);
1318 static int btt_write_pg(struct btt
*btt
, struct bio_integrity_payload
*bip
,
1319 sector_t sector
, struct page
*page
, unsigned int off
,
1323 struct arena_info
*arena
= NULL
;
1324 u32 premap
= 0, old_postmap
, new_postmap
, lane
= 0, i
;
1325 struct log_entry log
;
1333 lane
= nd_region_acquire_lane(btt
->nd_region
);
1335 ret
= lba_to_arena(btt
, sector
, &premap
, &arena
);
1338 cur_len
= min(btt
->sector_size
, len
);
1340 if ((arena
->flags
& IB_FLAG_ERROR_MASK
) != 0) {
1345 if (btt_is_badblock(btt
, arena
, arena
->freelist
[lane
].block
))
1346 arena
->freelist
[lane
].has_err
= 1;
1348 if (mutex_is_locked(&arena
->err_lock
)
1349 || arena
->freelist
[lane
].has_err
) {
1350 nd_region_release_lane(btt
->nd_region
, lane
);
1352 ret
= arena_clear_freelist_error(arena
, lane
);
1356 /* OK to acquire a different lane/free block */
1360 new_postmap
= arena
->freelist
[lane
].block
;
1362 /* Wait if the new block is being read from */
1363 for (i
= 0; i
< arena
->nfree
; i
++)
1364 while (arena
->rtt
[i
] == (RTT_VALID
| new_postmap
))
1368 if (new_postmap
>= arena
->internal_nlba
) {
1373 ret
= btt_data_write(arena
, new_postmap
, page
, off
, cur_len
);
1378 ret
= btt_rw_integrity(btt
, bip
, arena
, new_postmap
,
1384 lock_map(arena
, premap
);
1385 ret
= btt_map_read(arena
, premap
, &old_postmap
, NULL
, &e_flag
,
1389 if (old_postmap
>= arena
->internal_nlba
) {
1394 set_e_flag(old_postmap
);
1396 log
.lba
= cpu_to_le32(premap
);
1397 log
.old_map
= cpu_to_le32(old_postmap
);
1398 log
.new_map
= cpu_to_le32(new_postmap
);
1399 log
.seq
= cpu_to_le32(arena
->freelist
[lane
].seq
);
1400 sub
= arena
->freelist
[lane
].sub
;
1401 ret
= btt_flog_write(arena
, lane
, sub
, &log
);
1405 ret
= btt_map_write(arena
, premap
, new_postmap
, 0, 0,
1410 unlock_map(arena
, premap
);
1411 nd_region_release_lane(btt
->nd_region
, lane
);
1414 ret
= arena_clear_freelist_error(arena
, lane
);
1421 sector
+= btt
->sector_size
>> SECTOR_SHIFT
;
1427 unlock_map(arena
, premap
);
1429 nd_region_release_lane(btt
->nd_region
, lane
);
1433 static int btt_do_bvec(struct btt
*btt
, struct bio_integrity_payload
*bip
,
1434 struct page
*page
, unsigned int len
, unsigned int off
,
1435 unsigned int op
, sector_t sector
)
1439 if (!op_is_write(op
)) {
1440 ret
= btt_read_pg(btt
, bip
, page
, off
, sector
, len
);
1441 flush_dcache_page(page
);
1443 flush_dcache_page(page
);
1444 ret
= btt_write_pg(btt
, bip
, sector
, page
, off
, len
);
1450 static blk_qc_t
btt_make_request(struct request_queue
*q
, struct bio
*bio
)
1452 struct bio_integrity_payload
*bip
= bio_integrity(bio
);
1453 struct btt
*btt
= q
->queuedata
;
1454 struct bvec_iter iter
;
1455 unsigned long start
;
1456 struct bio_vec bvec
;
1460 if (!bio_integrity_prep(bio
))
1461 return BLK_QC_T_NONE
;
1463 do_acct
= nd_iostat_start(bio
, &start
);
1464 bio_for_each_segment(bvec
, bio
, iter
) {
1465 unsigned int len
= bvec
.bv_len
;
1467 if (len
> PAGE_SIZE
|| len
< btt
->sector_size
||
1468 len
% btt
->sector_size
) {
1469 dev_err_ratelimited(&btt
->nd_btt
->dev
,
1470 "unaligned bio segment (len: %d)\n", len
);
1471 bio
->bi_status
= BLK_STS_IOERR
;
1475 err
= btt_do_bvec(btt
, bip
, bvec
.bv_page
, len
, bvec
.bv_offset
,
1476 bio_op(bio
), iter
.bi_sector
);
1478 dev_err(&btt
->nd_btt
->dev
,
1479 "io error in %s sector %lld, len %d,\n",
1480 (op_is_write(bio_op(bio
))) ? "WRITE" :
1482 (unsigned long long) iter
.bi_sector
, len
);
1483 bio
->bi_status
= errno_to_blk_status(err
);
1488 nd_iostat_end(bio
, start
);
1491 return BLK_QC_T_NONE
;
1494 static int btt_rw_page(struct block_device
*bdev
, sector_t sector
,
1495 struct page
*page
, unsigned int op
)
1497 struct btt
*btt
= bdev
->bd_disk
->private_data
;
1501 len
= hpage_nr_pages(page
) * PAGE_SIZE
;
1502 rc
= btt_do_bvec(btt
, NULL
, page
, len
, 0, op
, sector
);
1504 page_endio(page
, op_is_write(op
), 0);
1510 static int btt_getgeo(struct block_device
*bd
, struct hd_geometry
*geo
)
1512 /* some standard values */
1513 geo
->heads
= 1 << 6;
1514 geo
->sectors
= 1 << 5;
1515 geo
->cylinders
= get_capacity(bd
->bd_disk
) >> 11;
1519 static const struct block_device_operations btt_fops
= {
1520 .owner
= THIS_MODULE
,
1521 .rw_page
= btt_rw_page
,
1522 .getgeo
= btt_getgeo
,
1523 .revalidate_disk
= nvdimm_revalidate_disk
,
1526 static int btt_blk_init(struct btt
*btt
)
1528 struct nd_btt
*nd_btt
= btt
->nd_btt
;
1529 struct nd_namespace_common
*ndns
= nd_btt
->ndns
;
1531 /* create a new disk and request queue for btt */
1532 btt
->btt_queue
= blk_alloc_queue(GFP_KERNEL
);
1533 if (!btt
->btt_queue
)
1536 btt
->btt_disk
= alloc_disk(0);
1537 if (!btt
->btt_disk
) {
1538 blk_cleanup_queue(btt
->btt_queue
);
1542 nvdimm_namespace_disk_name(ndns
, btt
->btt_disk
->disk_name
);
1543 btt
->btt_disk
->first_minor
= 0;
1544 btt
->btt_disk
->fops
= &btt_fops
;
1545 btt
->btt_disk
->private_data
= btt
;
1546 btt
->btt_disk
->queue
= btt
->btt_queue
;
1547 btt
->btt_disk
->flags
= GENHD_FL_EXT_DEVT
;
1548 btt
->btt_disk
->queue
->backing_dev_info
->capabilities
|=
1549 BDI_CAP_SYNCHRONOUS_IO
;
1551 blk_queue_make_request(btt
->btt_queue
, btt_make_request
);
1552 blk_queue_logical_block_size(btt
->btt_queue
, btt
->sector_size
);
1553 blk_queue_max_hw_sectors(btt
->btt_queue
, UINT_MAX
);
1554 blk_queue_flag_set(QUEUE_FLAG_NONROT
, btt
->btt_queue
);
1555 btt
->btt_queue
->queuedata
= btt
;
1557 if (btt_meta_size(btt
)) {
1558 int rc
= nd_integrity_init(btt
->btt_disk
, btt_meta_size(btt
));
1561 del_gendisk(btt
->btt_disk
);
1562 put_disk(btt
->btt_disk
);
1563 blk_cleanup_queue(btt
->btt_queue
);
1567 set_capacity(btt
->btt_disk
, btt
->nlba
* btt
->sector_size
>> 9);
1568 device_add_disk(&btt
->nd_btt
->dev
, btt
->btt_disk
, NULL
);
1569 btt
->nd_btt
->size
= btt
->nlba
* (u64
)btt
->sector_size
;
1570 revalidate_disk(btt
->btt_disk
);
1575 static void btt_blk_cleanup(struct btt
*btt
)
1577 del_gendisk(btt
->btt_disk
);
1578 put_disk(btt
->btt_disk
);
1579 blk_cleanup_queue(btt
->btt_queue
);
1583 * btt_init - initialize a block translation table for the given device
1584 * @nd_btt: device with BTT geometry and backing device info
1585 * @rawsize: raw size in bytes of the backing device
1586 * @lbasize: lba size of the backing device
1587 * @uuid: A uuid for the backing device - this is stored on media
1588 * @maxlane: maximum number of parallel requests the device can handle
1590 * Initialize a Block Translation Table on a backing device to provide
1591 * single sector power fail atomicity.
1597 * Pointer to a new struct btt on success, NULL on failure.
1599 static struct btt
*btt_init(struct nd_btt
*nd_btt
, unsigned long long rawsize
,
1600 u32 lbasize
, u8
*uuid
, struct nd_region
*nd_region
)
1604 struct nd_namespace_io
*nsio
;
1605 struct device
*dev
= &nd_btt
->dev
;
1607 btt
= devm_kzalloc(dev
, sizeof(struct btt
), GFP_KERNEL
);
1611 btt
->nd_btt
= nd_btt
;
1612 btt
->rawsize
= rawsize
;
1613 btt
->lbasize
= lbasize
;
1614 btt
->sector_size
= ((lbasize
>= 4096) ? 4096 : 512);
1615 INIT_LIST_HEAD(&btt
->arena_list
);
1616 mutex_init(&btt
->init_lock
);
1617 btt
->nd_region
= nd_region
;
1618 nsio
= to_nd_namespace_io(&nd_btt
->ndns
->dev
);
1619 btt
->phys_bb
= &nsio
->bb
;
1621 ret
= discover_arenas(btt
);
1623 dev_err(dev
, "init: error in arena_discover: %d\n", ret
);
1627 if (btt
->init_state
!= INIT_READY
&& nd_region
->ro
) {
1628 dev_warn(dev
, "%s is read-only, unable to init btt metadata\n",
1629 dev_name(&nd_region
->dev
));
1631 } else if (btt
->init_state
!= INIT_READY
) {
1632 btt
->num_arenas
= (rawsize
/ ARENA_MAX_SIZE
) +
1633 ((rawsize
% ARENA_MAX_SIZE
) ? 1 : 0);
1634 dev_dbg(dev
, "init: %d arenas for %llu rawsize\n",
1635 btt
->num_arenas
, rawsize
);
1637 ret
= create_arenas(btt
);
1639 dev_info(dev
, "init: create_arenas: %d\n", ret
);
1643 ret
= btt_meta_init(btt
);
1645 dev_err(dev
, "init: error in meta_init: %d\n", ret
);
1650 ret
= btt_blk_init(btt
);
1652 dev_err(dev
, "init: error in blk_init: %d\n", ret
);
1656 btt_debugfs_init(btt
);
1662 * btt_fini - de-initialize a BTT
1663 * @btt: the BTT handle that was generated by btt_init
1665 * De-initialize a Block Translation Table on device removal
1670 static void btt_fini(struct btt
*btt
)
1673 btt_blk_cleanup(btt
);
1675 debugfs_remove_recursive(btt
->debugfs_dir
);
1679 int nvdimm_namespace_attach_btt(struct nd_namespace_common
*ndns
)
1681 struct nd_btt
*nd_btt
= to_nd_btt(ndns
->claim
);
1682 struct nd_region
*nd_region
;
1683 struct btt_sb
*btt_sb
;
1687 if (!nd_btt
->uuid
|| !nd_btt
->ndns
|| !nd_btt
->lbasize
) {
1688 dev_dbg(&nd_btt
->dev
, "incomplete btt configuration\n");
1692 btt_sb
= devm_kzalloc(&nd_btt
->dev
, sizeof(*btt_sb
), GFP_KERNEL
);
1697 * If this returns < 0, that is ok as it just means there wasn't
1698 * an existing BTT, and we're creating a new one. We still need to
1699 * call this as we need the version dependent fields in nd_btt to be
1700 * set correctly based on the holder class
1702 nd_btt_version(nd_btt
, ndns
, btt_sb
);
1704 rawsize
= nvdimm_namespace_capacity(ndns
) - nd_btt
->initial_offset
;
1705 if (rawsize
< ARENA_MIN_SIZE
) {
1706 dev_dbg(&nd_btt
->dev
, "%s must be at least %ld bytes\n",
1707 dev_name(&ndns
->dev
),
1708 ARENA_MIN_SIZE
+ nd_btt
->initial_offset
);
1711 nd_region
= to_nd_region(nd_btt
->dev
.parent
);
1712 btt
= btt_init(nd_btt
, rawsize
, nd_btt
->lbasize
, nd_btt
->uuid
,
1720 EXPORT_SYMBOL(nvdimm_namespace_attach_btt
);
1722 int nvdimm_namespace_detach_btt(struct nd_btt
*nd_btt
)
1724 struct btt
*btt
= nd_btt
->btt
;
1731 EXPORT_SYMBOL(nvdimm_namespace_detach_btt
);
1733 static int __init
nd_btt_init(void)
1737 debugfs_root
= debugfs_create_dir("btt", NULL
);
1738 if (IS_ERR_OR_NULL(debugfs_root
))
1744 static void __exit
nd_btt_exit(void)
1746 debugfs_remove_recursive(debugfs_root
);
1749 MODULE_ALIAS_ND_DEVICE(ND_DEVICE_BTT
);
1750 MODULE_AUTHOR("Vishal Verma <vishal.l.verma@linux.intel.com>");
1751 MODULE_LICENSE("GPL v2");
1752 module_init(nd_btt_init
);
1753 module_exit(nd_btt_exit
);