Home
last modified time | relevance | path

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

123456789

/Linux-v5.15/arch/x86/lib/
Dinsn.c130 if (prefixes->got) in insn_get_prefixes()
189 insn->rex_prefix.got = 1; in insn_get_prefixes()
237 insn->vex_prefix.got = 1; in insn_get_prefixes()
239 prefixes->got = 1; in insn_get_prefixes()
267 if (opcode->got) in insn_get_opcode()
270 if (!insn->prefixes.got) { in insn_get_opcode()
313 opcode->got = 1; in insn_get_opcode()
338 if (modrm->got) in insn_get_modrm()
341 if (!insn->opcode.got) { in insn_get_modrm()
365 modrm->got = 1; in insn_get_modrm()
[all …]
/Linux-v5.15/tools/arch/x86/lib/
Dinsn.c130 if (prefixes->got) in insn_get_prefixes()
189 insn->rex_prefix.got = 1; in insn_get_prefixes()
237 insn->vex_prefix.got = 1; in insn_get_prefixes()
239 prefixes->got = 1; in insn_get_prefixes()
267 if (opcode->got) in insn_get_opcode()
270 if (!insn->prefixes.got) { in insn_get_opcode()
313 opcode->got = 1; in insn_get_opcode()
338 if (modrm->got) in insn_get_modrm()
341 if (!insn->opcode.got) { in insn_get_modrm()
365 modrm->got = 1; in insn_get_modrm()
[all …]
/Linux-v5.15/arch/riscv/kernel/
Dmodule-sections.c15 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()
104 mod->arch.got.shdr = sechdrs + i; in module_frob_arch_sections()
113 if (!mod->arch.got.shdr) { in module_frob_arch_sections()
145 mod->arch.got.shdr->sh_type = SHT_NOBITS; in module_frob_arch_sections()
[all …]
/Linux-v5.15/arch/x86/boot/compressed/
Dvmlinux.lds.S83 .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!")
/Linux-v5.15/drivers/infiniband/hw/qib/
Dqib_user_pages.c98 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()
/Linux-v5.15/fs/xfs/libxfs/
Dxfs_bmap.c1264 struct xfs_bmbt_irec got; in xfs_bmap_first_unused() local
1282 for_each_xfs_iext(ifp, &icur, &got) { in xfs_bmap_first_unused()
1286 if (got.br_startoff >= lowest + len && in xfs_bmap_first_unused()
1287 got.br_startoff - max >= len) in xfs_bmap_first_unused()
1289 lastaddr = got.br_startoff + got.br_blockcount; in xfs_bmap_first_unused()
1311 struct xfs_bmbt_irec got; in xfs_bmap_last_before() local
1331 if (!xfs_iext_lookup_extent_before(ip, ifp, last_block, &icur, &got)) in xfs_bmap_last_before()
1445 struct xfs_bmbt_irec *new = &bma->got; in xfs_bmap_add_extent_delay_real()
3174 if (!isnullstartblock(ap->got.br_startblock)) { in xfs_bmap_adjacent()
3178 adjust = gotdiff = ap->got.br_startoff - ap->offset; in xfs_bmap_adjacent()
[all …]
/Linux-v5.15/fs/xfs/
Dxfs_reflink.c248 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()
[all …]
Dxfs_bmap_util.c93 error = xfs_bmap_extsize_align(mp, &ap->got, &ap->prev, in xfs_bmap_rtalloc()
233 struct xfs_bmbt_irec got; in xfs_bmap_count_leaves() local
236 for_each_xfs_iext(ifp, &icur, &got) { in xfs_bmap_count_leaves()
237 if (!isnullstartblock(got.br_startblock)) { in xfs_bmap_count_leaves()
238 *count += got.br_blockcount; in xfs_bmap_count_leaves()
304 struct xfs_bmbt_irec *got) in xfs_getbmap_report_one() argument
310 error = xfs_reflink_trim_around_shared(ip, got, &shared); in xfs_getbmap_report_one()
314 if (isnullstartblock(got->br_startblock) || in xfs_getbmap_report_one()
315 got->br_startblock == DELAYSTARTBLOCK) { in xfs_getbmap_report_one()
324 if (got->br_startoff < XFS_B_TO_FSB(ip->i_mount, XFS_ISIZE(ip))) in xfs_getbmap_report_one()
[all …]
/Linux-v5.15/arch/alpha/kernel/
Dmodule.c69 Elf64_Shdr *esechdrs, *symtab, *s, *got; in module_frob_arch_sections() local
73 symtab = got = NULL; in module_frob_arch_sections()
82 got = s; in module_frob_arch_sections()
90 if (!got) { 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->sh_type = SHT_NOBITS; in module_frob_arch_sections()
116 &got->sh_size); in module_frob_arch_sections()
141 unsigned long got, gp; in apply_relocate_add() local
152 got = sechdrs[me->arch.gotsecindex].sh_addr; in apply_relocate_add()
[all …]
/Linux-v5.15/arch/arm/boot/compressed/
Dvmlinux.lds.S69 .got.plt : { *(.got.plt) }
72 .got : { *(.got) }
84 *(.got)
/Linux-v5.15/arch/x86/kernel/
Dvmlinux.lds.S423 .got.plt (INFO) : { *(.got.plt) }
424 ASSERT(SIZEOF(.got.plt) == 0 ||
426 SIZEOF(.got.plt) == 0x18,
428 SIZEOF(.got.plt) == 0xc,
436 .got : {
437 *(.got) *(.igot.*)
439 ASSERT(SIZEOF(.got) == 0, "Unexpected GOT entries detected!")
/Linux-v5.15/fs/xfs/scrub/
Ddir.c663 struct xfs_bmbt_irec got; in xchk_directory_blocks() local
694 found = xfs_iext_lookup_extent(sc->ip, ifp, lblk, &icur, &got); in xchk_directory_blocks()
697 if (got.br_startoff >= leaf_lblk) in xchk_directory_blocks()
711 for (lblk = roundup((xfs_dablk_t)got.br_startoff, in xchk_directory_blocks()
713 lblk < got.br_startoff + got.br_blockcount; in xchk_directory_blocks()
720 dabno = got.br_startoff + got.br_blockcount; in xchk_directory_blocks()
722 found = xfs_iext_lookup_extent(sc->ip, ifp, lblk, &icur, &got); in xchk_directory_blocks()
729 if (xfs_iext_lookup_extent(sc->ip, ifp, leaf_lblk, &icur, &got) && in xchk_directory_blocks()
730 got.br_startoff == leaf_lblk && in xchk_directory_blocks()
731 got.br_blockcount == args.geo->fsbcount && in xchk_directory_blocks()
[all …]
/Linux-v5.15/arch/um/kernel/
Ddyn.lds.S53 .rel.got : { *(.rel.got) }
54 .rela.got : { *(.rela.got) }
154 .got : { *(.got.plt) *(.got) }
/Linux-v5.15/arch/powerpc/platforms/512x/
Dmpc512x_shared.c74 unsigned long offset, want, got, delta; in mpc512x_set_pixel_clock() local
140 got = clk_get_rate(clk_diu); in mpc512x_set_pixel_clock()
141 delta = abs(pixclock - got); in mpc512x_set_pixel_clock()
149 got = clk_get_rate(clk_diu); in mpc512x_set_pixel_clock()
150 delta = abs(pixclock - got); in mpc512x_set_pixel_clock()
157 pixclock, got, delta, epsilon); in mpc512x_set_pixel_clock()
170 got = clk_get_rate(clk_diu); in mpc512x_set_pixel_clock()
171 delta = abs(pixclock - got); in mpc512x_set_pixel_clock()
173 pixclock, got, delta, epsilon); in mpc512x_set_pixel_clock()
/Linux-v5.15/arch/riscv/include/asm/
Dmodule.h21 struct mod_section got; member
38 struct got_entry *got = (struct got_entry *)(sec->shdr->sh_addr); in get_got_entry() local
41 if (got[i].symbol_addr == val) in get_got_entry()
42 return &got[i]; in get_got_entry()
/Linux-v5.15/arch/nios2/boot/compressed/
Dvmlinux.lds.S27 .got : {
28 *(.got.plt)
30 *(.got)
/Linux-v5.15/tools/testing/selftests/bpf/prog_tests/
Dflow_dissector.c15 #define CHECK_FLOW_KEYS(desc, got, expected) \ argument
16 CHECK_ATTR(memcmp(&got, &expected, sizeof(got)) != 0, \
29 got.nhoff, expected.nhoff, \
30 got.thoff, expected.thoff, \
31 got.addr_proto, expected.addr_proto, \
32 got.is_frag, expected.is_frag, \
33 got.is_first_frag, expected.is_first_frag, \
34 got.is_encap, expected.is_encap, \
35 got.ip_proto, expected.ip_proto, \
36 got.n_proto, expected.n_proto, \
[all …]
/Linux-v5.15/tools/testing/selftests/powerpc/primitives/
Dload_unaligned_zeropad.c105 unsigned long got; in do_one_test() local
111 got = load_unaligned_zeropad(p); in do_one_test()
113 if (should != got) { in do_one_test()
114 …printf("offset %u load_unaligned_zeropad returned 0x%lx, should be 0x%lx\n", page_offset, got, sho… in do_one_test()
/Linux-v5.15/arch/nios2/kernel/
Dvmlinux.lds.S35 .got : {
36 *(.got.plt)
38 *(.got)
/Linux-v5.15/arch/ia64/kernel/
Dvmlinux.lds.S192 .got : AT(ADDR(.got) - LOAD_OFFSET) {
193 *(.got.plt)
194 *(.got)
196 __gp = ADDR(.got) + 0x200000;
/Linux-v5.15/tools/testing/selftests/powerpc/copyloops/
Dexc_validate.c62 unsigned long got, expected; in do_one_test() local
64 got = COPY_LOOP(dstp, srcp, len); in do_one_test()
67 if (got != expected) { in do_one_test()
70 srcp, dstp, len, got, expected); in do_one_test()
/Linux-v5.15/arch/s390/kernel/vdso32/
Dvdso32.lds.S53 .got ALIGN(8) : { *(.got .toc) }
54 .got.plt ALIGN(8) : { *(.got.plt) }
/Linux-v5.15/arch/s390/kernel/vdso64/
Dvdso64.lds.S53 .got ALIGN(8) : { *(.got .toc) }
54 .got.plt ALIGN(8) : { *(.got.plt) }
/Linux-v5.15/tools/testing/selftests/powerpc/security/
Dbranch_loops.S46 ld r6, jump_table@got(%r2)
49 ld r7, .Lstate_0@got(%r2)
75 ld r4, 2f@got(%r2)
/Linux-v5.15/arch/powerpc/boot/
Dopal-calls.S19 ld r11,opal@got(r2)
38 ld r11,opal_return@got(r2)
48 ld r11,opal@got(r2)

123456789