Home
last modified time | relevance | path

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

123456789

/kernel/linux/linux-5.10/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 …]
/kernel/linux/linux-5.10/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!")
/kernel/linux/linux-5.10/arch/x86/lib/
Dinsn.c115 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()
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()
324 if (modrm->got) in insn_get_modrm()
327 if (!insn->opcode.got) { in insn_get_modrm()
352 modrm->got = 1; in insn_get_modrm()
[all …]
/kernel/linux/linux-5.10/tools/arch/x86/lib/
Dinsn.c115 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()
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()
324 if (modrm->got) in insn_get_modrm()
327 if (!insn->opcode.got) { in insn_get_modrm()
352 modrm->got = 1; in insn_get_modrm()
[all …]
/kernel/linux/linux-5.10/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()
/kernel/linux/linux-5.10/fs/xfs/libxfs/
Dxfs_bmap.c1277 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.br_startblock)) { in xfs_bmap_adjacent()
3229 adjust = gotdiff = ap->got.br_startoff - ap->offset; in xfs_bmap_adjacent()
[all …]
/kernel/linux/linux-5.10/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.c87 error = xfs_bmap_extsize_align(mp, &ap->got, &ap->prev, in xfs_bmap_rtalloc()
189 struct xfs_bmbt_irec got; in xfs_bmap_count_leaves() local
192 for_each_xfs_iext(ifp, &icur, &got) { in xfs_bmap_count_leaves()
193 if (!isnullstartblock(got.br_startblock)) { in xfs_bmap_count_leaves()
194 *count += got.br_blockcount; in xfs_bmap_count_leaves()
262 struct xfs_bmbt_irec *got) in xfs_getbmap_report_one() argument
268 error = xfs_reflink_trim_around_shared(ip, got, &shared); in xfs_getbmap_report_one()
272 if (isnullstartblock(got->br_startblock) || in xfs_getbmap_report_one()
273 got->br_startblock == DELAYSTARTBLOCK) { in xfs_getbmap_report_one()
282 if (got->br_startoff < XFS_B_TO_FSB(ip->i_mount, XFS_ISIZE(ip))) in xfs_getbmap_report_one()
[all …]
/kernel/linux/linux-5.10/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 …]
/kernel/linux/linux-5.10/arch/arm/boot/compressed/
Dvmlinux.lds.S69 .got.plt : { *(.got.plt) }
72 .got : { *(.got) }
84 *(.got)
/kernel/linux/linux-5.10/fs/xfs/scrub/
Ddir.c649 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.br_blockcount; in xchk_directory_blocks()
715 dabno = got.br_startoff + got.br_blockcount; in xchk_directory_blocks()
717 found = xfs_iext_lookup_extent(sc->ip, ifp, lblk, &icur, &got); in xchk_directory_blocks()
[all …]
/kernel/linux/linux-5.10/tools/arch/x86/include/asm/
Dinsn.h19 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/arch/x86/include/asm/
Dinsn.h19 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/arch/um/kernel/
Ddyn.lds.S53 .rel.got : { *(.rel.got) }
54 .rela.got : { *(.rela.got) }
154 .got : { *(.got.plt) *(.got) }
/kernel/linux/linux-5.10/arch/x86/kernel/
Dvmlinux.lds.S444 .got.plt (INFO) : { *(.got.plt) }
445 ASSERT(SIZEOF(.got.plt) == 0 ||
447 SIZEOF(.got.plt) == 0x18,
449 SIZEOF(.got.plt) == 0xc,
457 .got : {
458 *(.got) *(.igot.*)
460 ASSERT(SIZEOF(.got) == 0, "Unexpected GOT entries detected!")
/kernel/linux/linux-5.10/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()
/kernel/linux/linux-5.10/arch/nios2/boot/compressed/
Dvmlinux.lds.S27 .got : {
28 *(.got.plt)
30 *(.got)
/kernel/linux/linux-5.10/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()
/kernel/linux/linux-5.10/arch/nios2/kernel/
Dvmlinux.lds.S35 .got : {
36 *(.got.plt)
38 *(.got)
/kernel/linux/linux-5.10/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()
/kernel/linux/linux-5.10/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 …]
/kernel/linux/linux-5.10/drivers/vdpa/mlx5/net/
Dmain.c17 u64 got; in required_caps_supported() local
19 got = MLX5_CAP_GEN_64(mdev, general_obj_types); in required_caps_supported()
21 if (!(got & MLX5_GENERAL_OBJ_TYPES_CAP_VIRTIO_NET_Q)) in required_caps_supported()
/kernel/linux/linux-5.10/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()
/kernel/linux/linux-5.10/arch/ia64/kernel/
Dvmlinux.lds.S192 .got : AT(ADDR(.got) - LOAD_OFFSET) {
193 *(.got.plt)
194 *(.got)
196 __gp = ADDR(.got) + 0x200000;
/kernel/linux/linux-5.10/arch/arm64/kernel/
Dvmlinux.lds.S141 *(.got) /* Global offset table */
148 .got.plt : { *(.got.plt) }
149 ASSERT(SIZEOF(.got.plt) == 0 || SIZEOF(.got.plt) == 0x18,

123456789