Home
last modified time | relevance | path

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

12

/openbmc/linux/fs/btrfs/tests/
H A Dqgroup-tests.c238 old_roots = ctx.roots; in test_no_shared_qgroup()
239 ctx.roots = NULL; in test_no_shared_qgroup()
254 new_roots = ctx.roots; in test_no_shared_qgroup()
255 ctx.roots = NULL; in test_no_shared_qgroup()
279 old_roots = ctx.roots; in test_no_shared_qgroup()
280 ctx.roots = NULL; in test_no_shared_qgroup()
294 new_roots = ctx.roots; in test_no_shared_qgroup()
295 ctx.roots = NULL; in test_no_shared_qgroup()
350 old_roots = ctx.roots; in test_multiple_refs()
351 ctx.roots = NULL; in test_multiple_refs()
[all …]
/openbmc/linux/security/selinux/ss/
H A Dsidtab.c38 memset(s->roots, 0, sizeof(s->roots)); in sidtab_init()
164 if (!s->roots[0].ptr_leaf) { in sidtab_alloc_roots()
165 s->roots[0].ptr_leaf = kzalloc(SIDTAB_NODE_ALLOC_SIZE, in sidtab_alloc_roots()
167 if (!s->roots[0].ptr_leaf) in sidtab_alloc_roots()
171 if (!s->roots[l].ptr_inner) { in sidtab_alloc_roots()
172 s->roots[l].ptr_inner = kzalloc(SIDTAB_NODE_ALLOC_SIZE, in sidtab_alloc_roots()
174 if (!s->roots[l].ptr_inner) in sidtab_alloc_roots()
176 s->roots[l].ptr_inner->entries[0] = s->roots[l - 1]; in sidtab_alloc_roots()
196 entry = &s->roots[level]; in sidtab_do_lookup()
462 rc = sidtab_convert_tree(&params->target->roots[level], in sidtab_convert()
[all …]
H A Dsidtab.h80 union sidtab_entry_inner roots[SIDTAB_MAX_LEVEL + 1]; member
/openbmc/linux/lib/
H A Dbch.c543 unsigned int *roots) in find_affine4_roots() argument
572 return solve_linear_system(bch, rows, roots, 4); in find_affine4_roots()
579 unsigned int *roots) in find_poly_deg1_roots() argument
585 roots[n++] = mod_s(bch, GF_N(bch)-bch->a_log_tab[poly->c[0]]+ in find_poly_deg1_roots()
594 unsigned int *roots) in find_poly_deg2_roots() argument
623 roots[n++] = modulo(bch, 2*GF_N(bch)-l1- in find_poly_deg2_roots()
625 roots[n++] = modulo(bch, 2*GF_N(bch)-l1- in find_poly_deg2_roots()
636 unsigned int *roots) in find_poly_deg3_roots() argument
658 roots[n++] = a_ilog(bch, tmp[i]); in find_poly_deg3_roots()
669 unsigned int *roots) in find_poly_deg4_roots() argument
[all …]
/openbmc/u-boot/lib/
H A Dbch.c556 unsigned int *roots) in find_affine4_roots() argument
585 return solve_linear_system(bch, rows, roots, 4); in find_affine4_roots()
592 unsigned int *roots) in find_poly_deg1_roots() argument
598 roots[n++] = mod_s(bch, GF_N(bch)-bch->a_log_tab[poly->c[0]]+ in find_poly_deg1_roots()
607 unsigned int *roots) in find_poly_deg2_roots() argument
636 roots[n++] = modulo(bch, 2*GF_N(bch)-l1- in find_poly_deg2_roots()
638 roots[n++] = modulo(bch, 2*GF_N(bch)-l1- in find_poly_deg2_roots()
649 unsigned int *roots) in find_poly_deg3_roots() argument
671 roots[n++] = a_ilog(bch, tmp[i]); in find_poly_deg3_roots()
682 unsigned int *roots) in find_poly_deg4_roots() argument
[all …]
/openbmc/linux/drivers/md/
H A Ddm-verity-fec.c51 for (i = 0; i < v->fec->roots; i++) in fec_decode_rs8()
73 position = (index + rsb) * v->fec->roots; in fec_read_parity()
149 memcpy(&par_buf[par_buf_offset], &par[offset], v->fec->roots - par_buf_offset); in fec_decode_bufs()
164 offset += (v->fec->roots - par_buf_offset); in fec_decode_bufs()
166 if (offset < v->fec->io_size && (offset + v->fec->roots) > v->fec->io_size) { in fec_decode_bufs()
275 if (neras && *neras <= v->fec->roots) in fec_read_bufs()
293 if (neras && *neras <= v->fec->roots && in fec_read_bufs()
555 v->fec->roots); in verity_fec_status_table()
589 return init_rs_gfp(8, 0x11d, 0, 1, v->fec->roots, gfp_mask); in fec_rs_alloc()
658 v->fec->roots = num_c; in verity_fec_parse_opt_args()
[all …]
H A Ddm-verity-fec.h44 unsigned char roots; /* number of parity bytes, M-N of RS(M, N) */ member
/openbmc/linux/drivers/gpu/drm/
H A Ddrm_buddy.c131 mm->roots = kmalloc_array(mm->n_roots, in drm_buddy_init()
134 if (!mm->roots) in drm_buddy_init()
161 mm->roots[i] = root; in drm_buddy_init()
172 drm_block_free(mm, mm->roots[i]); in drm_buddy_init()
173 kfree(mm->roots); in drm_buddy_init()
192 WARN_ON(!drm_buddy_block_is_free(mm->roots[i])); in drm_buddy_fini()
193 drm_block_free(mm, mm->roots[i]); in drm_buddy_fini()
198 kfree(mm->roots); in drm_buddy_fini()
345 list_add_tail(&mm->roots[i]->tmp_link, &dfs); in alloc_range_bias()
577 list_add_tail(&mm->roots[i]->tmp_link, &dfs); in __drm_buddy_alloc_range()
/openbmc/linux/Documentation/core-api/
H A Dlibrs.rst47 * primitive element to generate roots = 1
48 * generator polynomial degree (number of roots) = 6
74 /* Parity buffer. Size = number of roots */
107 /* Parity buffer. Size = number of roots */
124 /* Parity buffer. Size = number of roots */
146 /* Parity buffer. Size = number of roots */
/openbmc/linux/fs/btrfs/
H A Dref-verify.c72 struct rb_root roots; member
242 while ((n = rb_first(&be->roots))) { in free_block_entry()
244 rb_erase(&re->node, &be->roots); in free_block_entry()
289 exist_re = insert_root_entry(&exist->roots, re); in add_block_entry()
302 be->roots = RB_ROOT; in add_block_entry()
306 insert_root_entry(&be->roots, re); in add_block_entry()
343 re = lookup_root_entry(&be->roots, ref_root); in add_tree_block()
421 re = lookup_root_entry(&be->roots, ref_root); in add_extent_data_ref()
644 for (n = rb_first(&be->roots); n; n = rb_next(n)) { in dump_block_entry()
809 tmp = insert_root_entry(&be->roots, re); in btrfs_ref_tree_mod()
[all …]
H A Dbackref.c1408 ASSERT(ctx->roots == NULL); in find_parent_nodes()
1603 if (ctx->roots && ref->count && ref->root_id && ref->parent == 0) { in find_parent_nodes()
1605 ret = ulist_add(ctx->roots, ref->root_id, 0, GFP_NOFS); in find_parent_nodes()
1758 if (!ctx->roots) { in btrfs_find_all_roots_safe()
1759 ctx->roots = ulist_alloc(GFP_NOFS); in btrfs_find_all_roots_safe()
1760 if (!ctx->roots) { in btrfs_find_all_roots_safe()
1777 ulist_free(ctx->roots); in btrfs_find_all_roots_safe()
1778 ctx->roots = NULL; in btrfs_find_all_roots_safe()
2423 ASSERT(ctx->roots == NULL); in iterate_extent_inodes()
2482 if (!ctx->roots) { in iterate_extent_inodes()
[all …]
H A Dqgroup.c1893 qrecord->old_roots = ctx.roots; in btrfs_qgroup_trace_extent_post()
2489 struct ulist *roots, struct ulist *tmp, in qgroup_update_refcnt() argument
2499 if (!roots) in qgroup_update_refcnt()
2502 while ((unode = ulist_next(roots, &uiter))) { in qgroup_update_refcnt()
2673 static int maybe_fs_roots(struct ulist *roots) in maybe_fs_roots() argument
2679 if (!roots || roots->nnodes == 0) in maybe_fs_roots()
2683 unode = ulist_next(roots, &uiter); in maybe_fs_roots()
2832 record->old_roots = ctx.roots; in btrfs_qgroup_account_extents()
2833 ctx.roots = NULL; in btrfs_qgroup_account_extents()
2846 new_roots = ctx.roots; in btrfs_qgroup_account_extents()
[all …]
H A Dbackref.h96 struct ulist *roots; member
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/
H A Djquery.treetable.js250 this.roots = [];
298 this.roots.push(node);
355 _ref = this.roots;
/openbmc/linux/include/drm/
H A Ddrm_buddy.h75 struct drm_buddy_block **roots; member
/openbmc/linux/Documentation/filesystems/
H A Dbtrfs.rst19 * Subvolumes (separate internal filesystem roots)
/openbmc/openbmc/poky/meta/recipes-devtools/go/go/
H A D0002-cmd-go-Allow-GOTOOLDIR-to-be-overridden-in-the-envir.patch6 to allow for split host/target build roots
/openbmc/linux/Documentation/trace/
H A Dosnoise-tracer.rst20 cause of any gap between two different reads of the time roots either on
171 The reason roots in the overhead of the entry and exit code that happens
/openbmc/linux/Documentation/admin-guide/device-mapper/
H A Dverity.rst108 Number of generator roots. This equals to the number of parity bytes in
109 the encoding data. For example, in RS(M, N) encoding, the number of roots
/openbmc/qemu/docs/system/i386/
H A Dnitro-enclave.rst18 which can be difficult for debugging due to its roots in security. The vsock
/openbmc/linux/arch/x86/kvm/mmu/
H A Dmmu.c5812 u64 addr, unsigned long roots) in kvm_mmu_invalidate_addr() argument
5816 WARN_ON_ONCE(roots & ~KVM_MMU_ROOTS_ALL); in kvm_mmu_invalidate_addr()
5830 if (roots & KVM_MMU_ROOT_CURRENT) in kvm_mmu_invalidate_addr()
5834 if (roots & KVM_MMU_ROOT_PREVIOUS(i)) in kvm_mmu_invalidate_addr()
5861 unsigned long roots = 0; in kvm_mmu_invpcid_gva() local
5865 roots |= KVM_MMU_ROOT_CURRENT; in kvm_mmu_invpcid_gva()
5870 roots |= KVM_MMU_ROOT_PREVIOUS(i); in kvm_mmu_invpcid_gva()
5873 if (roots) in kvm_mmu_invpcid_gva()
5874 kvm_mmu_invalidate_addr(vcpu, mmu, gva, roots); in kvm_mmu_invpcid_gva()
/openbmc/u-boot/board/st/stm32mp1/
H A DREADME216 example with 2 partitions, bootfs and roots:
/openbmc/linux/Documentation/kbuild/
H A Dkbuild.rst222 relocations required by build roots. This is not defined in the
/openbmc/linux/drivers/gpu/drm/tests/
H A Ddrm_buddy_test.c230 root = mm->roots[i]; in check_mm()
/openbmc/linux/Documentation/virt/kvm/x86/
H A Dmmu.rst361 - look up new shadow roots
367 - look up new shadow roots

12