Searched refs:replaced (Results 1 - 19 of 19) sorted by relevance

/linux-master/arch/riscv/kernel/
H A Dftrace.c37 unsigned int replaced[2]; local
48 if (copy_from_kernel_nofault(replaced, (void *)hook_pos,
56 if (memcmp(expected, replaced, sizeof(replaced))) {
58 (void *)hook_pos, expected[0], expected[1], replaced[0],
59 replaced[1]);
/linux-master/arch/sparc/kernel/
H A Dftrace.c28 u32 replaced; local
46 : "=r" (replaced), [faulted] "=r" (faulted)
50 if (replaced != old && replaced != new)
/linux-master/arch/sh/kernel/
H A Dftrace.c195 unsigned char replaced[MCOUNT_INSN_SIZE]; local
206 if (copy_from_kernel_nofault(replaced, (void *)ip, MCOUNT_INSN_SIZE))
210 if (memcmp(replaced, old_code, MCOUNT_INSN_SIZE) != 0)
/linux-master/arch/arm/kernel/
H A Dftrace.c101 unsigned long replaced; local
109 if (copy_from_kernel_nofault(&replaced, (void *)pc,
113 if (replaced != old)
/linux-master/arch/loongarch/kernel/
H A Dftrace_dyn.c17 u32 replaced; local
20 if (larch_insn_read((void *)pc, &replaced))
23 if (replaced != old)
/linux-master/arch/arm64/kernel/
H A Dftrace.c148 * If @validate == true, a replaced instruction is checked against 'old'.
153 u32 replaced; local
164 if (aarch64_insn_read((void *)pc, &replaced))
167 if (replaced != old)
/linux-master/drivers/gpu/drm/
H A Ddrm_color_mgmt.c289 bool replaced; local
330 replaced = drm_property_replace_blob(&crtc_state->degamma_lut,
332 replaced |= drm_property_replace_blob(&crtc_state->ctm, NULL);
333 replaced |= drm_property_replace_blob(&crtc_state->gamma_lut,
335 crtc_state->color_mgmt_changed |= replaced;
H A Ddrm_atomic_uapi.c371 bool replaced = false; local
389 &replaced);
390 state->color_mgmt_changed |= replaced;
397 &replaced);
398 state->color_mgmt_changed |= replaced;
405 &replaced);
406 state->color_mgmt_changed |= replaced;
476 bool replaced = false; local
547 &replaced);
674 bool replaced local
[all...]
H A Ddrm_property.c667 * @replace: location of blob property pointer to be replaced
734 * @blob: a pointer to the member blob to be replaced
737 * Return: true if the blob was in fact replaced.
758 * @blob: a pointer to the member blob to be replaced
762 * @replaced: if the blob was in fact replaced
768 * Return: true if the blob was in fact replaced. -EINVAL if the new blob was
776 bool *replaced)
806 *replaced |= drm_property_replace_blob(blob, new_blob);
771 drm_property_replace_blob_from_id(struct drm_device *dev, struct drm_property_blob **blob, uint64_t blob_id, ssize_t expected_size, ssize_t expected_elem_size, bool *replaced) argument
H A Ddrm_fb_helper.c927 bool replaced; local
962 replaced = drm_property_replace_blob(&crtc_state->degamma_lut,
964 replaced |= drm_property_replace_blob(&crtc_state->ctm, NULL);
965 replaced |= drm_property_replace_blob(&crtc_state->gamma_lut,
967 crtc_state->color_mgmt_changed |= replaced;
/linux-master/kernel/kcsan/
H A Dreport.c311 * that entry with @ip, returning the entries to skip with @replaced containing
312 * the replaced entry.
316 unsigned long *replaced)
335 *replaced = stack_entries[skip];
349 unsigned long *replaced)
351 return ip ? replace_stack_entry(stack_entries, num_entries, ip, replaced) :
315 replace_stack_entry(unsigned long stack_entries[], int num_entries, unsigned long ip, unsigned long *replaced) argument
348 sanitize_stack_entries(unsigned long stack_entries[], int num_entries, unsigned long ip, unsigned long *replaced) argument
/linux-master/include/drm/
H A Ddrm_property.h287 bool *replaced);
/linux-master/arch/powerpc/kernel/trace/
H A Dftrace_64_pg.c61 ppc_inst_t replaced; local
72 if (copy_inst_from_kernel_nofault(&replaced, (void *)ip))
76 if (!ppc_inst_equal(replaced, old)) {
77 pr_err("%p: replaced (%08lx) != old (%08lx)", (void *)ip,
78 ppc_inst_as_ulong(replaced), ppc_inst_as_ulong(old));
/linux-master/drivers/gpu/drm/amd/display/amdgpu_dm/
H A Damdgpu_dm_plane.c1539 bool replaced = false; local
1547 &replaced);
1548 dm_plane_state->base.color_mgmt_changed |= replaced;
1565 &replaced);
1566 dm_plane_state->base.color_mgmt_changed |= replaced;
1573 &replaced);
1574 dm_plane_state->base.color_mgmt_changed |= replaced;
1586 &replaced);
1587 dm_plane_state->base.color_mgmt_changed |= replaced;
1594 &replaced);
[all...]
/linux-master/drivers/tty/serial/
H A Dmsm_serial.c1602 bool replaced = false; local
1639 if (c == '\n' && !replaced) {
1642 replaced = true;
1647 replaced = false;
/linux-master/fs/btrfs/
H A Drelocation.c1200 * reloc tree was create can be replaced.
1202 * if a block was replaced, level of the block + 1 is returned.
1203 * if no block got replaced, 0 is returned. if there are other
1706 int replaced = 0; local
1781 replaced = 0;
1803 replaced = 1;
1824 if (replaced && rc->stage == UPDATE_DATA_PTRS)
1851 if (replaced && rc->stage == UPDATE_DATA_PTRS)
/linux-master/drivers/net/ethernet/mellanox/mlxsw/
H A Dspectrum_router.c4120 * 2. The nexthop group was replaced by a newer group, in which case
5419 * and its nexthop group info is the old info that was just replaced
5585 NL_SET_ERR_MSG_MOD(extack, "Nexthop bucket was not replaced because it was active during replacement");
6817 struct mlxsw_sp_fib_entry *replaced; local
6847 replaced = fib_node->fib_entry;
6855 if (!replaced)
6858 mlxsw_sp_fib_entry_hw_flags_clear(mlxsw_sp, replaced);
6859 fib4_replaced = container_of(replaced, struct mlxsw_sp_fib4_entry,
6866 fib_node->fib_entry = replaced;
6912 /* In case of route replace, replaced rout
7509 struct mlxsw_sp_fib_entry *replaced; local
[all...]
/linux-master/arch/arm64/net/
H A Dbpf_jit_comp.c1898 * This nop will be replaced with a cbnz later.
2337 u32 replaced; local
2420 if (aarch64_insn_read(ip, &replaced)) {
2425 if (replaced != old_insn) {
/linux-master/fs/nfsd/
H A Dtrace.h776 DEFINE_CLIENTID_EVENT(replaced); variable

Completed in 469 milliseconds