Home
last modified time | relevance | path

Searched refs:arena (Results 1 – 25 of 25) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/nvdimm/
H A Dbtt.c27 static struct device *to_dev(struct arena_info *arena) in to_dev() argument
29 return &arena->nd_btt->dev; in to_dev()
37 static int arena_read_bytes(struct arena_info *arena, resource_size_t offset, in arena_read_bytes() argument
40 struct nd_btt *nd_btt = arena->nd_btt; in arena_read_bytes()
48 static int arena_write_bytes(struct arena_info *arena, resource_size_t offset, in arena_write_bytes() argument
51 struct nd_btt *nd_btt = arena->nd_btt; in arena_write_bytes()
59 static int btt_info_write(struct arena_info *arena, struct btt_sb *super) in btt_info_write() argument
68 dev_WARN_ONCE(to_dev(arena), !IS_ALIGNED(arena->infooff, 512), in btt_info_write()
69 "arena->infooff: %#llx is unaligned\n", arena->infooff); in btt_info_write()
70 dev_WARN_ONCE(to_dev(arena), !IS_ALIGNED(arena->info2off, 512), in btt_info_write()
[all …]
/OK3568_Linux_fs/kernel/arch/alpha/kernel/
H A Dpci_iommu.c63 struct pci_iommu_arena *arena; in iommu_arena_new_node() local
77 arena = memblock_alloc_node(sizeof(*arena), align, nid); in iommu_arena_new_node()
78 if (!NODE_DATA(nid) || !arena) { in iommu_arena_new_node()
82 arena = memblock_alloc(sizeof(*arena), SMP_CACHE_BYTES); in iommu_arena_new_node()
83 if (!arena) in iommu_arena_new_node()
85 sizeof(*arena)); in iommu_arena_new_node()
88 arena->ptes = memblock_alloc_node(sizeof(*arena), align, nid); in iommu_arena_new_node()
89 if (!NODE_DATA(nid) || !arena->ptes) { in iommu_arena_new_node()
93 arena->ptes = memblock_alloc(mem_size, align); in iommu_arena_new_node()
94 if (!arena->ptes) in iommu_arena_new_node()
[all …]
H A Dcore_titan.c584 struct pci_iommu_arena *arena; member
601 aper->arena = agp->hose->sg_pci; in titan_agp_setup()
603 aper->pg_start = iommu_reserve(aper->arena, aper->pg_count, in titan_agp_setup()
612 aper->arena->dma_base + aper->pg_start * PAGE_SIZE; in titan_agp_setup()
625 status = iommu_release(aper->arena, aper->pg_start, aper->pg_count); in titan_agp_cleanup()
629 iommu_unbind(aper->arena, aper->pg_start, aper->pg_count); in titan_agp_cleanup()
630 status = iommu_release(aper->arena, aper->pg_start, in titan_agp_cleanup()
686 return iommu_bind(aper->arena, aper->pg_start + pg_start, in titan_agp_bind_memory()
694 return iommu_unbind(aper->arena, aper->pg_start + pg_start, in titan_agp_unbind_memory()
702 unsigned long baddr = addr - aper->arena->dma_base; in titan_agp_translate()
[all …]
H A Dcore_marvel.c901 struct pci_iommu_arena *arena; member
917 aper->arena = agp->hose->sg_pci; in marvel_agp_setup()
919 aper->pg_start = iommu_reserve(aper->arena, aper->pg_count, in marvel_agp_setup()
929 aper->arena->dma_base + aper->pg_start * PAGE_SIZE; in marvel_agp_setup()
942 status = iommu_release(aper->arena, aper->pg_start, aper->pg_count); in marvel_agp_cleanup()
946 iommu_unbind(aper->arena, aper->pg_start, aper->pg_count); in marvel_agp_cleanup()
947 status = iommu_release(aper->arena, aper->pg_start, in marvel_agp_cleanup()
1025 return iommu_bind(aper->arena, aper->pg_start + pg_start, in marvel_agp_bind_memory()
1033 return iommu_unbind(aper->arena, aper->pg_start + pg_start, in marvel_agp_unbind_memory()
1041 unsigned long baddr = addr - aper->arena->dma_base; in marvel_agp_translate()
[all …]
H A Dcore_cia.c356 struct pci_iommu_arena *arena = pci_isa_hose->sg_isa; in verify_tb_operation() local
375 addr0 = arena->dma_base; in verify_tb_operation()
449 cia_pci_tbi(arena->hose, 0, -1); in verify_tb_operation()
464 arena->ptes[4] = pte0; in verify_tb_operation()
488 arena->ptes[5] = pte0; in verify_tb_operation()
501 arena->align_entry = 4; in verify_tb_operation()
524 arena->ptes[4] = 0; in verify_tb_operation()
525 arena->ptes[5] = 0; in verify_tb_operation()
539 alpha_mv.mv_pci_tbi(arena->hose, 0, -1); in verify_tb_operation()
/OK3568_Linux_fs/kernel/Documentation/driver-api/nvdimm/
H A Dbtt.rst35 Each arena follows the same layout for its metadata, and all references in an
36 arena are internal to it (with the exception of one field that points to the
37 next arena). The following depicts the "On-disk" metadata layout::
105 ABA Arena Block Address - Block offset/number within an arena
106 Premap ABA The block offset into an arena, which was decided upon by range
112 arena.
117 the external LBA at 768G. This falls into the second arena, and of the 512G
118 worth of blocks that this arena contributes, this block is at 256G. Thus, the
157 While 'nfree' describes the number of concurrent IOs an arena can process
183 The RTT is a simple, per arena table with 'nfree' entries. Every reader inserts
[all …]
/OK3568_Linux_fs/buildroot/package/libopenssl/
H A D0003-Introduce-the-OPENSSL_NO_MADVISE-to-disable-call-to-.patch17 if (mlock(sh.arena, sh.arena_size) < 0)
22 if (madvise(sh.arena, sh.arena_size, MADV_DONTDUMP) < 0)
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/sequence/io/detail/
H A Dmanip.hpp49 struct arena struct
51 ~arena() in ~arena() argument
67 static arena ar; // our arena in attach()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/
H A Dmalloc.h88 int arena; /* non-mmapped space allocated from system */ member
105 size_t arena; /* non-mmapped space allocated from system */ member
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/
H A Dmalloc.h88 int arena; /* non-mmapped space allocated from system */ member
105 size_t arena; /* non-mmapped space allocated from system */ member
/OK3568_Linux_fs/buildroot/package/glibc/2.28-69-g1e5c5303a522764d7e9d2302a60e4a32cdb902f1/
H A D0002-malloc-Initiate-tcache-shutdown-even-without-allocat.patch37 /* Free all of the entries and the tcache itself back to the arena
/OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/qt5/qtwebengine/chromium/
H A D0014-chromium-musl-Avoid-mallinfo-APIs-on-non-glibc-linux.patch27 return minfo.hblkhd + minfo.arena;
/OK3568_Linux_fs/u-boot/include/
H A Dmalloc.h597 int arena; /* total space allocated from system */ member
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.memory-test37 malloc arena, video buffer, log buffer, etc. If you let it, it
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/info/
H A Dlibc.info-135192 This probe is triggered after the main arena is extended by calling
5198 This probe is triggered after the size of the main arena is
5230 obtain the requested amount of memory from the arena in use, before
5231 they call ‘arena_get_retry’ to select an alternate arena in which
5247 called to select the alternate arena in which to retry an
5249 of an alternate arena. This probe is redundant, but much easier to
5255 arena in which allocation failed.
5259 additional arena (not the main arena), but before the arena is
5261 list of arenas. The arena’s ‘malloc_state’ internal data structure
5267 arena to reuse, and (temporarily) reserved it for exclusive use.
[all …]
H A Dlibc.info-16591 area is internally referred to as an "arena".
7093 from the system when an arena needs to be extended. It also
7095 arena. This provides the necessary hysteresis in heap size
H A Dlibc.info-22269 ‘size_t arena
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/info/
H A Dlibc.info-135192 This probe is triggered after the main arena is extended by calling
5198 This probe is triggered after the size of the main arena is
5230 obtain the requested amount of memory from the arena in use, before
5231 they call ‘arena_get_retry’ to select an alternate arena in which
5247 called to select the alternate arena in which to retry an
5249 of an alternate arena. This probe is redundant, but much easier to
5255 arena in which allocation failed.
5259 additional arena (not the main arena), but before the arena is
5261 list of arenas. The arena’s ‘malloc_state’ internal data structure
5267 arena to reuse, and (temporarily) reserved it for exclusive use.
[all …]
H A Dlibc.info-16591 area is internally referred to as an "arena".
7093 from the system when an arena needs to be extended. It also
7095 arena. This provides the necessary hysteresis in heap size
H A Dlibc.info-22269 ‘size_t arena
/OK3568_Linux_fs/u-boot/common/
H A Ddlmalloc.src594 int arena; /* total space allocated from system */
685 * When sbrk is called to extend the top of the arena to satisfy
693 so that the end of the arena is always a system page boundary.
1567 #define sbrked_mem (current_mallinfo.arena)
2097 or the base of its memory arena.)
H A Ddlmalloc.c698 #define sbrked_mem (current_mallinfo.arena)
/OK3568_Linux_fs/kernel/Documentation/arm64/
H A Darm-acpi.rst63 Linux is in any way secondary to Microsoft in this arena. The move of
/OK3568_Linux_fs/external/xserver/
H A DChangeLog6295 constrained to the visible area even though the panning arena was much
/OK3568_Linux_fs/recovery/
HDrootfs.cpio.gz107070100A8AEB0000041ED0000000000000000000000116841B48100000000000000FD0000000200000000000000000000000200000000.�07070100A8B07C000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000900000000.gitkeep��07070100A8B07D000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000B00000000.skip_fsck����07070100A8AEB10000A1FF0000000000000000000000016841B0B600000007000000FD0000000200000000000000000000000400000000bin���usr/bin�07070100A8B07E000081A400000000000000000000000168412635000001CC000000FD0000000200000000000000000000001100000000busybox. ...