/kernel/linux/linux-6.6/lib/kunit/ |
H A D | executor_test.c | 49 struct kunit_suite_set got; in filter_suites_test() local 56 got = kunit_filter_suites(&suite_set, "suite2", NULL, NULL, &err); in filter_suites_test() 57 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, got.start); in filter_suites_test() 59 free_suite_set_at_end(test, &got); in filter_suites_test() 62 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, got.start[0]); in filter_suites_test() 63 KUNIT_EXPECT_STREQ(test, (const char *)got.start[0]->name, "suite2"); in filter_suites_test() 66 KUNIT_ASSERT_EQ(test, got.end - got.start, 1); in filter_suites_test() 75 struct kunit_suite_set got; in filter_suites_test_glob_test() local 82 got in filter_suites_test_glob_test() 104 struct kunit_suite_set got; filter_suites_to_empty_test() local 156 struct kunit_suite_set got; filter_attr_test() local 194 struct kunit_suite_set got; filter_attr_empty_test() local 215 struct kunit_suite_set got; filter_attr_skip_test() local [all...] |
/kernel/linux/linux-6.6/arch/x86/lib/ |
H A D | insn.c | 117 * to point to the (first) opcode. No effect if @insn->prefixes.got 131 if (prefixes->got) in insn_get_prefixes() 190 insn->rex_prefix.got = 1; in insn_get_prefixes() 238 insn->vex_prefix.got = 1; in insn_get_prefixes() 240 prefixes->got = 1; in insn_get_prefixes() 255 * Sets @insn->opcode.value = opcode1. No effect if @insn->opcode.got 268 if (opcode->got) in insn_get_opcode() 271 if (!insn->prefixes.got) { in insn_get_opcode() 314 opcode->got = 1; in insn_get_opcode() 327 * (prefixes and opcode(s)). No effect if @insn->modrm.got i [all...] |
/kernel/linux/linux-6.6/tools/arch/x86/lib/ |
H A D | insn.c | 117 * to point to the (first) opcode. No effect if @insn->prefixes.got 131 if (prefixes->got) in insn_get_prefixes() 190 insn->rex_prefix.got = 1; in insn_get_prefixes() 238 insn->vex_prefix.got = 1; in insn_get_prefixes() 240 prefixes->got = 1; in insn_get_prefixes() 255 * Sets @insn->opcode.value = opcode1. No effect if @insn->opcode.got 268 if (opcode->got) in insn_get_opcode() 271 if (!insn->prefixes.got) { in insn_get_opcode() 314 opcode->got = 1; in insn_get_opcode() 327 * (prefixes and opcode(s)). No effect if @insn->modrm.got i [all...] |
/kernel/linux/linux-5.10/arch/x86/lib/ |
H A D | insn.c | 101 * to point to the (first) opcode. No effect if @insn->prefixes.got 115 if (prefixes->got) in insn_get_prefixes() 175 insn->rex_prefix.got = 1; in insn_get_prefixes() 223 insn->vex_prefix.got = 1; in insn_get_prefixes() 225 prefixes->got = 1; in insn_get_prefixes() 240 * Sets @insn->opcode.value = opcode1. No effect if @insn->opcode.got 253 if (opcode->got) in insn_get_opcode() 256 if (!insn->prefixes.got) { in insn_get_opcode() 299 opcode->got = 1; in insn_get_opcode() 312 * (prefixes and opcode(s)). No effect if @insn->modrm.got i [all...] |
/kernel/linux/linux-5.10/tools/arch/x86/lib/ |
H A D | insn.c | 101 * to point to the (first) opcode. No effect if @insn->prefixes.got 115 if (prefixes->got) in insn_get_prefixes() 175 insn->rex_prefix.got = 1; in insn_get_prefixes() 223 insn->vex_prefix.got = 1; in insn_get_prefixes() 225 prefixes->got = 1; in insn_get_prefixes() 240 * Sets @insn->opcode.value = opcode1. No effect if @insn->opcode.got 253 if (opcode->got) in insn_get_opcode() 256 if (!insn->prefixes.got) { in insn_get_opcode() 299 opcode->got = 1; in insn_get_opcode() 312 * (prefixes and opcode(s)). No effect if @insn->modrm.got i [all...] |
/kernel/linux/linux-5.10/arch/riscv/kernel/ |
H A D | module-sections.c | 15 struct mod_section *got_sec = &mod->arch.got; in module_emit_got_entry() 17 struct got_entry *got = get_got_entry(val, got_sec); in module_emit_got_entry() local 19 if (got) in module_emit_got_entry() 20 return (unsigned long)got; in module_emit_got_entry() 23 got = (struct got_entry *)got_sec->shdr->sh_addr; in module_emit_got_entry() 24 got[i] = emit_got_entry(val); in module_emit_got_entry() 29 return (unsigned long)&got[i]; in module_emit_got_entry() 98 * Find the empty .got and .plt sections. in module_frob_arch_sections() 103 else if (!strcmp(secstrings + sechdrs[i].sh_name, ".got")) in module_frob_arch_sections() 104 mod->arch.got in module_frob_arch_sections() [all...] |
/kernel/linux/linux-6.6/arch/riscv/kernel/ |
H A D | module-sections.c | 15 struct mod_section *got_sec = &mod->arch.got; in module_emit_got_entry() 17 struct got_entry *got = get_got_entry(val, got_sec); in module_emit_got_entry() local 19 if (got) in module_emit_got_entry() 20 return (unsigned long)got; in module_emit_got_entry() 23 got = (struct got_entry *)got_sec->shdr->sh_addr; in module_emit_got_entry() 24 got[i] = emit_got_entry(val); in module_emit_got_entry() 29 return (unsigned long)&got[i]; in module_emit_got_entry() 98 * Find the empty .got and .plt sections. in module_frob_arch_sections() 103 else if (!strcmp(secstrings + sechdrs[i].sh_name, ".got")) in module_frob_arch_sections() 104 mod->arch.got in module_frob_arch_sections() [all...] |
/kernel/linux/linux-5.10/fs/xfs/libxfs/ |
H A D | xfs_bmap.c | 1277 struct xfs_bmbt_irec got; in xfs_bmap_first_unused() local 1297 for_each_xfs_iext(ifp, &icur, &got) { in xfs_bmap_first_unused() 1301 if (got.br_startoff >= lowest + len && in xfs_bmap_first_unused() 1302 got.br_startoff - max >= len) in xfs_bmap_first_unused() 1304 lastaddr = got.br_startoff + got.br_blockcount; in xfs_bmap_first_unused() 1326 struct xfs_bmbt_irec got; in xfs_bmap_last_before() local 1348 if (!xfs_iext_lookup_extent_before(ip, ifp, last_block, &icur, &got)) in xfs_bmap_last_before() 1496 struct xfs_bmbt_irec *new = &bma->got; in xfs_bmap_add_extent_delay_real() 3225 if (!isnullstartblock(ap->got in xfs_bmap_adjacent() 3765 xfs_bmapi_trim_map( struct xfs_bmbt_irec *mval, struct xfs_bmbt_irec *got, xfs_fileoff_t *bno, xfs_filblks_t len, xfs_fileoff_t obno, xfs_fileoff_t end, int n, int flags) xfs_bmapi_trim_map() argument 3876 struct xfs_bmbt_irec got; xfs_bmapi_read() local 3959 xfs_bmapi_reserve_delalloc( struct xfs_inode *ip, int whichfork, xfs_fileoff_t off, xfs_filblks_t len, xfs_filblks_t prealloc, struct xfs_bmbt_irec *got, struct xfs_iext_cursor *icur, int eof) xfs_bmapi_reserve_delalloc() argument 4632 struct xfs_bmbt_irec got; xfs_bmapi_remap() local 4788 xfs_bmap_del_extent_delay( struct xfs_inode *ip, int whichfork, struct xfs_iext_cursor *icur, struct xfs_bmbt_irec *got, struct xfs_bmbt_irec *del) xfs_bmap_del_extent_delay() argument 4917 xfs_bmap_del_extent_cow( struct xfs_inode *ip, struct xfs_iext_cursor *icur, struct xfs_bmbt_irec *got, struct xfs_bmbt_irec *del) xfs_bmap_del_extent_cow() argument 5007 struct xfs_bmbt_irec got; /* current extent entry */ xfs_bmap_del_extent_real() local 5268 struct xfs_bmbt_irec got; /* current extent record */ __xfs_bunmapi() local 5615 xfs_bmse_can_merge( struct xfs_bmbt_irec *left, struct xfs_bmbt_irec *got, xfs_fileoff_t shift) xfs_bmse_can_merge() argument 5647 xfs_bmse_merge( struct xfs_trans *tp, struct xfs_inode *ip, int whichfork, xfs_fileoff_t shift, struct xfs_iext_cursor *icur, struct xfs_bmbt_irec *got, struct xfs_bmbt_irec *left, struct xfs_btree_cur *cur, int *logflags) xfs_bmse_merge() argument 5728 xfs_bmap_shift_update_extent( struct xfs_trans *tp, struct xfs_inode *ip, int whichfork, struct xfs_iext_cursor *icur, struct xfs_bmbt_irec *got, struct xfs_btree_cur *cur, int *logflags, xfs_fileoff_t startoff) xfs_bmap_shift_update_extent() argument 5781 struct xfs_bmbt_irec got, prev; xfs_bmap_collapse_extents() local 5866 struct xfs_bmbt_irec got; xfs_bmap_can_insert_extents() local 5898 struct xfs_bmbt_irec got, next; xfs_bmap_insert_extents() local 6000 struct xfs_bmbt_irec got; xfs_bmap_split_extent() local [all...] |
/kernel/linux/linux-6.6/fs/xfs/libxfs/ |
H A D | xfs_bmap.c | 1235 struct xfs_bmbt_irec got; in xfs_bmap_first_unused() local 1253 for_each_xfs_iext(ifp, &icur, &got) { in xfs_bmap_first_unused() 1257 if (got.br_startoff >= lowest + len && in xfs_bmap_first_unused() 1258 got.br_startoff - max >= len) in xfs_bmap_first_unused() 1260 lastaddr = got.br_startoff + got.br_blockcount; in xfs_bmap_first_unused() 1282 struct xfs_bmbt_irec got; in xfs_bmap_last_before() local 1302 if (!xfs_iext_lookup_extent_before(ip, ifp, last_block, &icur, &got)) in xfs_bmap_last_before() 1416 struct xfs_bmbt_irec *new = &bma->got; in xfs_bmap_add_extent_delay_real() 3133 if (!isnullstartblock(ap->got in xfs_bmap_adjacent() 3765 xfs_bmapi_trim_map( struct xfs_bmbt_irec *mval, struct xfs_bmbt_irec *got, xfs_fileoff_t *bno, xfs_filblks_t len, xfs_fileoff_t obno, xfs_fileoff_t end, int n, uint32_t flags) xfs_bmapi_trim_map() argument 3876 struct xfs_bmbt_irec got; xfs_bmapi_read() local 3957 xfs_bmapi_reserve_delalloc( struct xfs_inode *ip, int whichfork, xfs_fileoff_t off, xfs_filblks_t len, xfs_filblks_t prealloc, struct xfs_bmbt_irec *got, struct xfs_iext_cursor *icur, int eof) xfs_bmapi_reserve_delalloc() argument 4646 struct xfs_bmbt_irec got; xfs_bmapi_remap() local 4800 xfs_bmap_del_extent_delay( struct xfs_inode *ip, int whichfork, struct xfs_iext_cursor *icur, struct xfs_bmbt_irec *got, struct xfs_bmbt_irec *del) xfs_bmap_del_extent_delay() argument 4928 xfs_bmap_del_extent_cow( struct xfs_inode *ip, struct xfs_iext_cursor *icur, struct xfs_bmbt_irec *got, struct xfs_bmbt_irec *del) xfs_bmap_del_extent_cow() argument 5018 struct xfs_bmbt_irec got; /* current extent entry */ xfs_bmap_del_extent_real() local 5270 struct xfs_bmbt_irec got; /* current extent record */ __xfs_bunmapi() local 5587 xfs_bmse_can_merge( struct xfs_bmbt_irec *left, struct xfs_bmbt_irec *got, xfs_fileoff_t shift) xfs_bmse_can_merge() argument 5619 xfs_bmse_merge( struct xfs_trans *tp, struct xfs_inode *ip, int whichfork, xfs_fileoff_t shift, struct xfs_iext_cursor *icur, struct xfs_bmbt_irec *got, struct xfs_bmbt_irec *left, struct xfs_btree_cur *cur, int *logflags) xfs_bmse_merge() argument 5700 xfs_bmap_shift_update_extent( struct xfs_trans *tp, struct xfs_inode *ip, int whichfork, struct xfs_iext_cursor *icur, struct xfs_bmbt_irec *got, struct xfs_btree_cur *cur, int *logflags, xfs_fileoff_t startoff) xfs_bmap_shift_update_extent() argument 5753 struct xfs_bmbt_irec got, prev; xfs_bmap_collapse_extents() local 5836 struct xfs_bmbt_irec got; xfs_bmap_can_insert_extents() local 5868 struct xfs_bmbt_irec got, next; xfs_bmap_insert_extents() local 5968 struct xfs_bmbt_irec got; xfs_bmap_split_extent() local [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/prog_tests/ |
H A D | test_strncmp.c | 30 int got; in strncmp_full_str_cmp() local 37 got = trigger_strncmp(skel); in strncmp_full_str_cmp() 38 ASSERT_EQ(got, exp, name); in strncmp_full_str_cmp() 47 int err, got; in test_strncmp_ret() local 67 got = trigger_strncmp(skel); in test_strncmp_ret() 68 ASSERT_EQ(got, -1, "strncmp: empty str"); in test_strncmp_ret() 72 got = trigger_strncmp(skel); in test_strncmp_ret() 73 ASSERT_EQ(got, 0, "strncmp: same str"); in test_strncmp_ret() 78 got = trigger_strncmp(skel); in test_strncmp_ret() 79 ASSERT_EQ(got, in test_strncmp_ret() [all...] |
/kernel/linux/linux-5.10/arch/x86/boot/compressed/ |
H A D | vmlinux.lds.S | 83 .got.plt (INFO) : { 84 *(.got.plt) 86 ASSERT(SIZEOF(.got.plt) == 0 || 88 SIZEOF(.got.plt) == 0x18, 90 SIZEOF(.got.plt) == 0xc, 98 .got : { 99 *(.got) 101 ASSERT(SIZEOF(.got) == 0, "Unexpected GOT entries detected!")
|
/kernel/linux/linux-6.6/arch/x86/boot/compressed/ |
H A D | vmlinux.lds.S | 86 .got.plt (INFO) : { 87 *(.got.plt) 89 ASSERT(SIZEOF(.got.plt) == 0 || 91 SIZEOF(.got.plt) == 0x18, 93 SIZEOF(.got.plt) == 0xc, 101 .got : { 102 *(.got) 104 ASSERT(SIZEOF(.got) == 0, "Unexpected GOT entries detected!")
|
/kernel/linux/linux-5.10/drivers/infiniband/hw/qib/ |
H A D | qib_user_pages.c | 98 size_t got; in qib_get_user_pages() local 110 for (got = 0; got < num_pages; got += ret) { in qib_get_user_pages() 111 ret = pin_user_pages(start_page + got * PAGE_SIZE, in qib_get_user_pages() 112 num_pages - got, in qib_get_user_pages() 114 p + got, NULL); in qib_get_user_pages() 124 __qib_release_user_pages(p, got, 0); in qib_get_user_pages()
|
/kernel/linux/linux-6.6/drivers/infiniband/hw/qib/ |
H A D | qib_user_pages.c | 98 size_t got; in qib_get_user_pages() local 110 for (got = 0; got < num_pages; got += ret) { in qib_get_user_pages() 111 ret = pin_user_pages(start_page + got * PAGE_SIZE, in qib_get_user_pages() 112 num_pages - got, in qib_get_user_pages() 114 p + got); in qib_get_user_pages() 124 __qib_release_user_pages(p, got, 0); in qib_get_user_pages()
|
/kernel/linux/linux-5.10/arch/loongarch/kernel/ |
H A D | module-sections.c | 14 struct mod_section *got_sec = &mod->arch.got; in module_emit_got_entry() 16 struct got_entry *got = get_got_entry(val, sechdrs, got_sec); in module_emit_got_entry() local 18 if (got) in module_emit_got_entry() 19 return (Elf_Addr)got; in module_emit_got_entry() 22 got = (struct got_entry *)sechdrs[got_sec->shndx].sh_addr; in module_emit_got_entry() 23 got[i] = emit_got_entry(val); in module_emit_got_entry() 35 return (Elf_Addr)&got[i]; in module_emit_got_entry() 114 if (!strcmp(secstrings + sechdrs[i].sh_name, ".got")) in module_frob_arch_sections() 115 mod->arch.got.shndx = i; in module_frob_arch_sections() 124 if (!mod->arch.got in module_frob_arch_sections() [all...] |
/kernel/linux/linux-6.6/arch/loongarch/kernel/ |
H A D | module-sections.c | 14 struct mod_section *got_sec = &mod->arch.got; in module_emit_got_entry() 16 struct got_entry *got = get_got_entry(val, sechdrs, got_sec); in module_emit_got_entry() local 18 if (got) in module_emit_got_entry() 19 return (Elf_Addr)got; in module_emit_got_entry() 22 got = (struct got_entry *)sechdrs[got_sec->shndx].sh_addr; in module_emit_got_entry() 23 got[i] = emit_got_entry(val); in module_emit_got_entry() 35 return (Elf_Addr)&got[i]; in module_emit_got_entry() 114 if (!strcmp(secstrings + sechdrs[i].sh_name, ".got")) in module_frob_arch_sections() 115 mod->arch.got.shndx = i; in module_frob_arch_sections() 124 if (!mod->arch.got in module_frob_arch_sections() [all...] |
/kernel/linux/linux-5.10/fs/xfs/ |
H A D | xfs_reflink.c | 248 struct xfs_bmbt_irec got; in xfs_reflink_convert_cow_locked() local 253 if (!xfs_iext_lookup_extent(ip, ip->i_cowfp, offset_fsb, &icur, &got)) in xfs_reflink_convert_cow_locked() 257 if (got.br_startoff >= offset_fsb + count_fsb) in xfs_reflink_convert_cow_locked() 259 if (got.br_state == XFS_EXT_NORM) in xfs_reflink_convert_cow_locked() 261 if (WARN_ON_ONCE(isnullstartblock(got.br_startblock))) in xfs_reflink_convert_cow_locked() 264 xfs_trim_extent(&got, offset_fsb, count_fsb); in xfs_reflink_convert_cow_locked() 265 if (!got.br_blockcount) in xfs_reflink_convert_cow_locked() 268 got.br_state = XFS_EXT_NORM; in xfs_reflink_convert_cow_locked() 270 XFS_COW_FORK, &icur, &dummy_cur, &got, in xfs_reflink_convert_cow_locked() 274 } while (xfs_iext_next_extent(ip->i_cowfp, &icur, &got)); in xfs_reflink_convert_cow_locked() 465 struct xfs_bmbt_irec got, del; xfs_reflink_cancel_cow_blocks() local 602 struct xfs_bmbt_irec got, del; xfs_reflink_end_cow_extent() local 1361 struct xfs_bmbt_irec got; xfs_reflink_inode_has_shared_extents() local [all...] |
/kernel/linux/linux-5.10/arch/alpha/kernel/ |
H A D | module.c | 59 bits above 256 to store the got offset for this reloc. */ in process_reloc_for_got() 69 Elf64_Shdr *esechdrs, *symtab, *s, *got; in module_frob_arch_sections() local 73 symtab = got = NULL; in module_frob_arch_sections() 81 else if (!strcmp(".got", secstrings + s->sh_name)) { in module_frob_arch_sections() 82 got = s; in module_frob_arch_sections() 90 if (!got) { in module_frob_arch_sections() 91 printk(KERN_ERR "module %s: no got section\n", me->name); in module_frob_arch_sections() 104 got->sh_size = 0; in module_frob_arch_sections() 105 got->sh_addralign = 8; in module_frob_arch_sections() 106 got in module_frob_arch_sections() 141 unsigned long got, gp; apply_relocate_add() local [all...] |
/kernel/linux/linux-6.6/arch/alpha/kernel/ |
H A D | module.c | 59 bits above 256 to store the got offset for this reloc. */ in process_reloc_for_got() 69 Elf64_Shdr *esechdrs, *symtab, *s, *got; in module_frob_arch_sections() local 73 symtab = got = NULL; in module_frob_arch_sections() 81 else if (!strcmp(".got", secstrings + s->sh_name)) { in module_frob_arch_sections() 82 got = s; in module_frob_arch_sections() 90 if (!got) { in module_frob_arch_sections() 91 printk(KERN_ERR "module %s: no got section\n", me->name); in module_frob_arch_sections() 104 got->sh_size = 0; in module_frob_arch_sections() 105 got->sh_addralign = 8; in module_frob_arch_sections() 106 got in module_frob_arch_sections() 141 unsigned long got, gp; apply_relocate_add() local [all...] |
/kernel/linux/linux-5.10/arch/arm/boot/compressed/ |
H A D | vmlinux.lds.S | 30 * of the text/got segments. 69 .got.plt : { *(.got.plt) } 72 .got : { *(.got) } 84 *(.got)
|
/kernel/linux/linux-6.6/arch/arm/boot/compressed/ |
H A D | vmlinux.lds.S | 31 * of the text/got segments. 71 .got.plt : { *(.got.plt) } 74 .got : { *(.got) } 86 *(.got)
|
/kernel/linux/linux-6.6/fs/xfs/ |
H A D | xfs_reflink.c | 251 struct xfs_bmbt_irec got; in xfs_reflink_convert_cow_locked() local 256 if (!xfs_iext_lookup_extent(ip, ip->i_cowfp, offset_fsb, &icur, &got)) in xfs_reflink_convert_cow_locked() 260 if (got.br_startoff >= offset_fsb + count_fsb) in xfs_reflink_convert_cow_locked() 262 if (got.br_state == XFS_EXT_NORM) in xfs_reflink_convert_cow_locked() 264 if (WARN_ON_ONCE(isnullstartblock(got.br_startblock))) in xfs_reflink_convert_cow_locked() 267 xfs_trim_extent(&got, offset_fsb, count_fsb); in xfs_reflink_convert_cow_locked() 268 if (!got.br_blockcount) in xfs_reflink_convert_cow_locked() 271 got.br_state = XFS_EXT_NORM; in xfs_reflink_convert_cow_locked() 273 XFS_COW_FORK, &icur, &dummy_cur, &got, in xfs_reflink_convert_cow_locked() 277 } while (xfs_iext_next_extent(ip->i_cowfp, &icur, &got)); in xfs_reflink_convert_cow_locked() 585 struct xfs_bmbt_irec got, del; xfs_reflink_cancel_cow_blocks() local 725 struct xfs_bmbt_irec got, del, data; xfs_reflink_end_cow_extent() local 1561 struct xfs_bmbt_irec got; xfs_reflink_inode_has_shared_extents() local [all...] |
/kernel/linux/linux-5.10/fs/xfs/scrub/ |
H A D | dir.c | 251 /* Make sure we got a real directory entry. */ in xchk_dir_rec() 649 struct xfs_bmbt_irec got; in xchk_directory_blocks() local 680 found = xfs_iext_lookup_extent(sc->ip, ifp, lblk, &icur, &got); in xchk_directory_blocks() 684 (got.br_startoff > 0 || in xchk_directory_blocks() 685 got.br_blockcount != args.geo->fsbcount)) { in xchk_directory_blocks() 687 got.br_startoff); in xchk_directory_blocks() 692 if (got.br_startoff >= leaf_lblk) in xchk_directory_blocks() 706 for (lblk = roundup((xfs_dablk_t)got.br_startoff, in xchk_directory_blocks() 708 lblk < got.br_startoff + got in xchk_directory_blocks() [all...] |
/kernel/linux/linux-5.10/arch/x86/include/asm/ |
H A D | insn.h | 19 unsigned char got; member 132 if (!insn->prefixes.got) in insn_is_avx() 139 if (!insn->prefixes.got) in insn_is_evex() 152 return insn->opcode.got && insn->modrm.got && insn->sib.got && in insn_complete() 153 insn->displacement.got && insn->immediate.got; in insn_complete()
|
/kernel/linux/linux-5.10/tools/arch/x86/include/asm/ |
H A D | insn.h | 19 unsigned char got; member 132 if (!insn->prefixes.got) in insn_is_avx() 139 if (!insn->prefixes.got) in insn_is_evex() 152 return insn->opcode.got && insn->modrm.got && insn->sib.got && in insn_complete() 153 insn->displacement.got && insn->immediate.got; in insn_complete()
|