/linux-6.3-rc2/arch/arm/common/ |
A D | mcpm_entry.c | 155 unsigned long *poke = &mcpm_entry_early_pokes[cluster][cpu][0]; in mcpm_set_early_poke() local 156 poke[0] = poke_phys_addr; in mcpm_set_early_poke() 157 poke[1] = poke_val; in mcpm_set_early_poke() 158 __sync_cache_range_w(poke, 2 * sizeof(*poke)); in mcpm_set_early_poke()
|
A D | mcpm_head.S | 81 @ Perform an early poke, if any
|
/linux-6.3-rc2/kernel/bpf/ |
A D | arraymap.c | 1003 struct bpf_jit_poke_descriptor *poke; in prog_array_map_poke_run() local 1007 poke = &elem->aux->poke_tab[i]; in prog_array_map_poke_run() 1039 if (!READ_ONCE(poke->tailcall_target_stable)) in prog_array_map_poke_run() 1041 if (poke->reason != BPF_POKE_REASON_TAIL_CALL) in prog_array_map_poke_run() 1043 if (poke->tail_call.map != map || in prog_array_map_poke_run() 1044 poke->tail_call.key != key) in prog_array_map_poke_run() 1052 ret = bpf_arch_text_poke(poke->tailcall_target, in prog_array_map_poke_run() 1059 poke->bypass_addr, in prog_array_map_poke_run() 1064 ret = bpf_arch_text_poke(poke->tailcall_bypass, in prog_array_map_poke_run() 1067 poke->bypass_addr); in prog_array_map_poke_run() [all …]
|
A D | core.c | 782 struct bpf_jit_poke_descriptor *poke) in bpf_jit_add_poke_descriptor() argument 791 if (poke->tailcall_target || poke->tailcall_target_stable || in bpf_jit_add_poke_descriptor() 792 poke->tailcall_bypass || poke->adj_off || poke->bypass_addr) in bpf_jit_add_poke_descriptor() 795 switch (poke->reason) { in bpf_jit_add_poke_descriptor() 797 if (!poke->tail_call.map) in bpf_jit_add_poke_descriptor() 804 tab = krealloc(tab, size * sizeof(*poke), GFP_KERNEL); in bpf_jit_add_poke_descriptor() 808 memcpy(&tab[slot], poke, sizeof(*poke)); in bpf_jit_add_poke_descriptor()
|
A D | verifier.c | 16069 struct bpf_jit_poke_descriptor *poke; in jit_subprogs() local 16071 poke = &prog->aux->poke_tab[j]; in jit_subprogs() 16072 if (poke->insn_idx < subprog_end && in jit_subprogs() 16073 poke->insn_idx >= subprog_start) in jit_subprogs() 16074 poke->aux = func[i]->aux; in jit_subprogs()
|
/linux-6.3-rc2/arch/x86/net/ |
A D | bpf_jit_comp.c | 565 poke->tailcall_bypass = ip + (prog - start); in emit_bpf_tail_call_direct() 566 poke->adj_off = X86_TAIL_CALL_OFFSET; in emit_bpf_tail_call_direct() 568 poke->bypass_addr = (u8 *)poke->tailcall_target + X86_PATCH_SIZE; in emit_bpf_tail_call_direct() 571 poke->tailcall_bypass); in emit_bpf_tail_call_direct() 589 struct bpf_jit_poke_descriptor *poke; in bpf_tail_call_direct_fixup() local 595 poke = &prog->aux->poke_tab[i]; in bpf_tail_call_direct_fixup() 596 if (poke->aux && poke->aux != prog->aux) in bpf_tail_call_direct_fixup() 601 if (poke->reason != BPF_POKE_REASON_TAIL_CALL) in bpf_tail_call_direct_fixup() 606 target = array->ptrs[poke->tail_call.key]; in bpf_tail_call_direct_fixup() 611 poke->adj_off); in bpf_tail_call_direct_fixup() [all …]
|
/linux-6.3-rc2/arch/sparc/kernel/ |
A D | smp_64.c | 78 static DEFINE_PER_CPU(bool, poke); 1411 if (!__this_cpu_read(poke)) in scheduler_poke() 1414 __this_cpu_write(poke, false); in scheduler_poke() 1422 per_cpu(poke, cpu) = true; in send_cpu_poke() 1425 per_cpu(poke, cpu) = false; in send_cpu_poke()
|
/linux-6.3-rc2/Documentation/sh/ |
A D | register-banks.rst | 22 reasons. Userspace is also not able to poke at the bank1 values, so these can
|
/linux-6.3-rc2/net/rxrpc/ |
A D | sendmsg.c | 247 bool last = test_bit(RXRPC_TXBUF_LAST, &txb->flags), poke; in rxrpc_queue_packet() local 265 poke = list_empty(&call->tx_sendmsg); in rxrpc_queue_packet() 272 if (poke) in rxrpc_queue_packet()
|
/linux-6.3-rc2/drivers/infiniband/hw/qib/ |
A D | qib_qsfp.c | 300 u8 poke = 0; in qib_refresh_qsfp_cache() local 302 ret = qib_qsfp_write(ppd, 127, &poke, 1); in qib_refresh_qsfp_cache()
|
/linux-6.3-rc2/Documentation/mm/ |
A D | balance.rst | 90 Orthogonal to this, is the decision to poke kswapd to free some zone pages.
|
/linux-6.3-rc2/drivers/gpu/drm/nouveau/nvkm/engine/gr/fuc/ |
A D | com.fuc | 314 // read the size of each strand, poke the context offset of
|
/linux-6.3-rc2/include/linux/ |
A D | filter.h | 1062 struct bpf_jit_poke_descriptor *poke); 1173 struct bpf_jit_poke_descriptor *poke) in bpf_jit_add_poke_descriptor() argument
|
/linux-6.3-rc2/tools/perf/Documentation/ |
A D | perf-script.txt | 357 --show-text-poke-events 358 Display text poke events i.e. events of type PERF_RECORD_TEXT_POKE and
|
/linux-6.3-rc2/Documentation/timers/ |
A D | timekeeping.rst | 89 desired time specification value and calculate the values to poke into
|
/linux-6.3-rc2/Documentation/PCI/ |
A D | pci-error-recovery.rst | 196 start operations again, only to peek/poke at the device, extract diagnostic
|
/linux-6.3-rc2/Documentation/process/ |
A D | coding-style.rst | 1114 and should poke hardware from C when possible.
|
/linux-6.3-rc2/Documentation/driver-api/ |
A D | pin-control.rst | 570 is possible to perform the requested mux setting, poke the hardware so that
|
/linux-6.3-rc2/drivers/scsi/aic7xxx/ |
A D | aic7xxx.seq | 946 * the flushing process now. We'll poke
|