| /linux/arch/riscv/kernel/ |
| A D | ftrace.c | 39 unsigned int nops[2] = {NOP4, NOP4}; in ftrace_check_current_call() local 43 expected = nops; in ftrace_check_current_call() 71 unsigned int nops[2] = {NOP4, NOP4}; in __ftrace_modify_call() local 79 if (patch_insn_write((void *)hook_pos, enable ? call : nops, MCOUNT_INSN_SIZE)) in __ftrace_modify_call() 100 unsigned int nops[2] = {NOP4, NOP4}; in ftrace_make_nop() local 102 if (patch_insn_write((void *)rec->ip, nops, MCOUNT_INSN_SIZE)) in ftrace_make_nop()
|
| /linux/arch/csky/kernel/ |
| A D | ftrace.c | 68 static uint16_t nops[7] = {NOP, NOP32_HI, NOP32_LO, NOP32_HI, NOP32_LO, variable 76 sizeof(nops))) in ftrace_check_current_nop() 79 if (memcmp((void *)nops, (void *)olds, sizeof(nops))) { in ftrace_check_current_nop() 101 ret = copy_to_kernel_nofault((void *)hook_pos, enable ? call : nops, in ftrace_modify_code() 102 sizeof(nops)); in ftrace_modify_code()
|
| /linux/tools/perf/arch/powerpc/util/ |
| A D | skip-callchain-idx.c | 51 size_t nops; in check_return_reg() local 54 result = dwarf_frame_register(frame, ra_regno, ops_mem, &ops, &nops); in check_return_reg() 65 if ((nops != 0 || ops != NULL) && in check_return_reg() 66 !(nops == 1 && ops[0].atom == DW_OP_regx && in check_return_reg() 74 result = dwarf_frame_cfa(frame, &ops, &nops); in check_return_reg() 84 if (nops == 1 && ops[0].atom == DW_OP_bregx && ops[0].number == 1 && in check_return_reg()
|
| /linux/tools/perf/util/ |
| A D | dwarf-aux.c | 1225 nops--; in check_allowed_ops() 1233 while (nops) { in check_allowed_ops() 1244 nops--; in check_allowed_ops() 1330 size_t nops; in die_get_var_range() local 1437 size_t nops; in __die_find_var_reg_cb() local 1532 size_t nops; in __die_find_var_addr_cb() local 1584 size_t nops; in __die_collect_vars_cb() local 1601 if (!check_allowed_ops(ops, nops)) in __die_collect_vars_cb() 1647 size_t nops; in __die_collect_global_vars_cb() local 1663 if (!check_allowed_ops(ops, nops)) in __die_collect_global_vars_cb() [all …]
|
| A D | probe-finder.c | 65 size_t nops; in convert_variable_location() local 92 if (dwarf_getlocation_addr(&attr, addr, &op, &nops, 1) <= 0) { in convert_variable_location() 114 &nops, 1) > 0) in convert_variable_location() 120 if (nops == 0) in convert_variable_location() 576 size_t nops; in call_probe_finder() local 602 ret = dwarf_getlocation_addr(&fb_attr, pf->addr, &pf->fb_ops, &nops, 1); in call_probe_finder() 603 if (ret <= 0 || nops == 0) { in call_probe_finder() 606 } else if (nops == 1 && pf->fb_ops[0].atom == DW_OP_call_frame_cfa && in call_probe_finder() 610 dwarf_frame_cfa(frame, &pf->fb_ops, &nops) != 0) { in call_probe_finder()
|
| A D | annotate-data.c | 89 size_t nops; in pr_debug_location() local 97 while ((off = dwarf_getlocations(&attr, off, &base, &start, &end, &ops, &nops)) > 0) { in pr_debug_location()
|
| /linux/tools/build/feature/ |
| A D | test-dwarf_getlocations.c | 10 size_t nops; in main() local 12 return (int)dwarf_getlocations(&attr, offset, &base, &start, &end, &op, &nops); in main()
|
| /linux/arch/powerpc/kernel/ |
| A D | switch.S | 28 .macro nops number macro 46 nops 6 64 nops 3 69 nops 7
|
| /linux/fs/nfsd/ |
| A D | nfs4callback.c | 58 u32 nops; member 271 BUG_ON(hdr->nops > NFS4_MAX_BACK_CHANNEL_OPS); in encode_cb_nops() 272 *hdr->nops_p = cpu_to_be32(hdr->nops); in encode_cb_nops() 300 hdr->nops = be32_to_cpup(p); in decode_cb_compound4res() 329 hdr->nops++; in encode_cb_recall4args() 347 hdr->nops++; in encode_cb_recallany4args() 371 hdr->nops++; in encode_cb_getattr4args() 406 hdr->nops++; in encode_cb_sequence4args() 714 hdr->nops++; in encode_cb_layout4args() 788 hdr.nops++; in nfs4_xdr_enc_cb_notify_lock() [all …]
|
| /linux/fs/nfs/ |
| A D | callback_xdr.c | 165 hdr->nops = ntohl(*p); in decode_compound_hdr_arg() 692 hdr->nops = xdr_reserve_space(xdr, 4); in encode_compound_hdr_res() 693 if (unlikely(hdr->nops == NULL)) in encode_compound_hdr_res() 969 unsigned int nops = 0; in nfs4_callback_compound() local 997 while (status == 0 && nops != hdr_arg.nops) { in nfs4_callback_compound() 998 status = process_op(nops, rqstp, &cps); in nfs4_callback_compound() 999 nops++; in nfs4_callback_compound() 1006 nops--; in nfs4_callback_compound() 1015 *hdr_res.nops = htonl(nops); in nfs4_callback_compound()
|
| A D | callback.h | 37 unsigned nops; member 44 __be32 *nops; member
|
| A D | nfs4xdr.c | 960 uint32_t nops; member 1044 *p = cpu_to_be32(hdr->nops); in encode_compound_hdr() 1052 hdr->nops++; in encode_op_hdr() 1058 WARN_ON_ONCE(hdr->nops > NFS4_MAX_OPS); in encode_nops() 1059 *hdr->nops_p = htonl(hdr->nops); in encode_nops() 2421 .nops = 0, in nfs4_xdr_enc_open_confirm() 2781 .nops = 0, in nfs4_xdr_enc_renew() 2798 .nops = 0, in nfs4_xdr_enc_setclientid() 2815 .nops = 0, in nfs4_xdr_enc_setclientid_confirm() 3239 hdr->nops = tmp; in decode_compound_hdr() [all …]
|
| /linux/arch/arm64/include/asm/ |
| A D | arch_gicv3.h | 70 nops(8); in gic_read_iar_cavium_thunderx() 72 nops(4); in gic_read_iar_cavium_thunderx()
|
| A D | barrier.h | 17 #define nops(n) asm volatile(__nops(n)) macro
|
| A D | alternative-macros.h | 203 nops (662b-661b) / AARCH64_INSN_SIZE
|
| A D | assembler.h | 112 .macro nops, num
|
| /linux/arch/riscv/include/asm/ |
| A D | barrier.h | 19 #define nops(n) __asm__ __volatile__ (__nops(n)) macro
|
| A D | asm.h | 79 .macro nops, num
|
| /linux/arch/x86/net/ |
| A D | bpf_jit_comp.c | 1474 int nops; in do_jit() local 2301 nops = INSN_SZ_DIFF - 2; in do_jit() 2302 if (nops != 0 && nops != 4) { in do_jit() 2304 nops); in do_jit() 2307 emit_nops(&prog, nops); in do_jit() 2355 nops = INSN_SZ_DIFF; in do_jit() 2356 if (nops != 0 && nops != 2 && nops != 5) { in do_jit() 2358 nops); in do_jit() 2361 emit_nops(&prog, nops); in do_jit() 2381 if (nops != 0 && nops != 3) { in do_jit() [all …]
|
| /linux/arch/x86/kernel/ |
| A D | callthunks.c | 174 static const u8 nops[] = { variable 195 if (bcmp(pad, nops, tsize)) { in patch_dest()
|
| /linux/include/linux/mtd/ |
| A D | spinand.h | 288 unsigned int nops; member 294 .nops = sizeof((struct spi_mem_op[]){ __VA_ARGS__ }) / \
|
| /linux/tools/objtool/arch/x86/ |
| A D | decode.c | 765 static const char nops[5][5] = { in arch_nop_insn() local 778 return nops[len-1]; in arch_nop_insn()
|
| /linux/arch/s390/kernel/ |
| A D | entry.S | 229 # interrupts. So lets use 3 nops as a landing pad for all possible rewinds.
|
| /linux/drivers/net/ethernet/mellanox/mlx5/core/ |
| A D | en_stats.h | 453 u64 nops; member
|
| A D | en_stats.c | 287 s->tx_xdp_nops += xdpsq_red_stats->nops; in mlx5e_stats_grp_sw_update_stats_xdp_red() 299 s->rx_xdp_tx_nops += xdpsq_stats->nops; in mlx5e_stats_grp_sw_update_stats_xdpsq() 2155 { MLX5E_DECLARE_RQ_XDPSQ_STAT(struct mlx5e_xdpsq_stats, nops) }, 2165 { MLX5E_DECLARE_XDPSQ_STAT(struct mlx5e_xdpsq_stats, nops) },
|