Home
last modified time | relevance | path

Searched refs:btt (Results 1 – 14 of 14) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/nvdimm/
H A Dbtt.c255 static void btt_debugfs_init(struct btt *btt) in btt_debugfs_init() argument
260 btt->debugfs_dir = debugfs_create_dir(dev_name(&btt->nd_btt->dev), in btt_debugfs_init()
262 if (IS_ERR_OR_NULL(btt->debugfs_dir)) in btt_debugfs_init()
265 list_for_each_entry(arena, &btt->arena_list, list) { in btt_debugfs_init()
266 arena_debugfs_init(arena, btt->debugfs_dir, i); in btt_debugfs_init()
745 static struct arena_info *alloc_arena(struct btt *btt, size_t size, in alloc_arena() argument
755 arena->nd_btt = btt->nd_btt; in alloc_arena()
756 arena->sector_size = btt->sector_size; in alloc_arena()
764 arena->external_lbasize = btt->lbasize; in alloc_arena()
768 arena->version_major = btt->nd_btt->version_major; in alloc_arena()
[all …]
H A Dnd.h181 struct btt;
185 struct btt *btt; member
H A DMakefile12 nd_btt-y := btt.o
H A Dbtt.h219 struct btt { struct
/OK3568_Linux_fs/kernel/Documentation/driver-api/nvdimm/
H A Dnvdimm.rst42 LIBNVDIMM/LIBNDCTL: Block Translation Table "btt"
43 libnvdimm: btt layout
44 libndctl: btt creation example
229 LIBNVDIMM/NDCTL: Block Translation Table "btt"
786 LIBNVDIMM/LIBNDCTL: Block Translation Table "btt"
789 A BTT (design document: https://pmem.io/2014/09/23/btt.html) is a stacked
793 LIBNVDIMM: btt layout argument
812 LIBNDCTL: btt creation example argument
816 region. Each time this "seed" btt device is configured and enabled a new
822 struct ndctl_btt *btt;
[all …]
H A Dindex.rst11 btt
H A Dbtt.rst279 For example, the ndctl command line to setup a btt with a 4k sector size is::
/OK3568_Linux_fs/yocto/poky/meta/recipes-kernel/blktrace/
H A Dblktrace_git.bb30 # Makefile:42: recipe for target 'btt' failed
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/qemu/qemu/
H A D0006_let_dma_memory_read_write_function_take_MemTxAttrs_argument.patch311 btt = MIN(btt, dmah->dest_len);
313 DB_PRINT("reading %x bytes from %x\n", btt, dmah->src_addr);
314 - dma_memory_read(&address_space_memory, dmah->src_addr, buf, btt);
315 + dma_memory_read(&address_space_memory, dmah->src_addr, buf, btt,
317 dmah->src_len -= btt;
318 dmah->src_addr += btt;
320 DB_PRINT("writing %x bytes from %x\n", btt, dmah->dest_addr);
321 - dma_memory_write(&address_space_memory, dmah->dest_addr, buf, btt);
322 + dma_memory_write(&address_space_memory, dmah->dest_addr, buf, btt,
324 dmah->dest_len -= btt;
[all …]
/OK3568_Linux_fs/kernel/tools/testing/nvdimm/
H A DKbuild52 nd_btt-y := $(NVDIMM_SRC)/btt.o
/OK3568_Linux_fs/kernel/Documentation/admin-guide/kdump/
H A Dgdbmacros.txt82 define btt
100 document btt
/OK3568_Linux_fs/kernel/drivers/scsi/aic7xxx/
H A Daic79xx.h1021 uint8_t *btt; member
/OK3568_Linux_fs/yocto/poky/documentation/profile-manual/
H A Dusage.rst2575 (btt, blkiomon, etc) can be found in the /doc directory of the blktrace
/OK3568_Linux_fs/kernel/
H A DMAINTAINERS10021 F: drivers/nvdimm/btt*