Home
last modified time | relevance | path

Searched full:apply (Results 1 – 25 of 1942) sorted by relevance

12345678910>>...78

/linux/drivers/net/ethernet/mellanox/mlx5/core/steering/hws/
H A Daction.h95 typedef void (*mlx5hws_action_setter_fp)(struct mlx5hws_actions_apply_data *apply,
235 mlx5hws_action_setter_default_single(struct mlx5hws_actions_apply_data *apply, in mlx5hws_action_setter_default_single() argument
238 apply->wqe_data[MLX5HWS_ACTION_OFFSET_DW5] = 0; in mlx5hws_action_setter_default_single()
239 apply->wqe_ctrl->stc_ix[MLX5HWS_ACTION_STC_IDX_DW5] = in mlx5hws_action_setter_default_single()
240 htonl(apply->common_res->default_stc->nop_dw5.offset); in mlx5hws_action_setter_default_single()
244 mlx5hws_action_setter_default_double(struct mlx5hws_actions_apply_data *apply, in mlx5hws_action_setter_default_double() argument
247 apply->wqe_data[MLX5HWS_ACTION_OFFSET_DW6] = 0; in mlx5hws_action_setter_default_double()
248 apply->wqe_data[MLX5HWS_ACTION_OFFSET_DW7] = 0; in mlx5hws_action_setter_default_double()
249 apply->wqe_ctrl->stc_ix[MLX5HWS_ACTION_STC_IDX_DW6] = in mlx5hws_action_setter_default_double()
250 htonl(apply->common_res->default_stc->nop_dw6.offset); in mlx5hws_action_setter_default_double()
[all …]
H A Daction.c2191 hws_action_apply_stc(struct mlx5hws_actions_apply_data *apply, in hws_action_apply_stc() argument
2195 struct mlx5hws_action *action = apply->rule_action[action_idx].action; in hws_action_apply_stc()
2197 apply->wqe_ctrl->stc_ix[stc_idx] = htonl(action->stc.offset); in hws_action_apply_stc()
2201 hws_action_setter_push_vlan(struct mlx5hws_actions_apply_data *apply, in hws_action_setter_push_vlan() argument
2206 rule_action = &apply->rule_action[setter->idx_double]; in hws_action_setter_push_vlan()
2207 apply->wqe_data[MLX5HWS_ACTION_OFFSET_DW6] = 0; in hws_action_setter_push_vlan()
2208 apply->wqe_data[MLX5HWS_ACTION_OFFSET_DW7] = rule_action->push_vlan.vlan_hdr; in hws_action_setter_push_vlan()
2210 hws_action_apply_stc(apply, MLX5HWS_ACTION_STC_IDX_DW6, setter->idx_double); in hws_action_setter_push_vlan()
2211 apply->wqe_ctrl->stc_ix[MLX5HWS_ACTION_STC_IDX_DW7] = 0; in hws_action_setter_push_vlan()
2215 hws_action_setter_modify_header(struct mlx5hws_actions_apply_data *apply, in hws_action_setter_modify_header() argument
[all …]
H A Drule.c226 struct mlx5hws_actions_apply_data *apply, in hws_rule_create_init() argument
256 /* Init default action apply */ in hws_rule_create_init()
257 apply->tbl_type = tbl->type; in hws_rule_create_init()
258 apply->common_res = &ctx->common_res; in hws_rule_create_init()
259 apply->require_dep = 0; in hws_rule_create_init()
300 struct mlx5hws_actions_apply_data apply; in hws_rule_create_hws() local
316 hws_rule_create_init(rule, &ste_attr, &apply, is_update); in hws_rule_create_hws()
327 apply.wqe_ctrl = &dep_wqe->wqe_ctrl; in hws_rule_create_hws()
328 apply.wqe_data = (__force __be32 *)&dep_wqe->wqe_data; in hws_rule_create_hws()
329 apply.rule_action = rule_actions; in hws_rule_create_hws()
[all …]
/linux/arch/riscv/
H A DKconfig.errata14 bool "Apply Andes cache management errata"
19 This will apply the cache management errata to handle the
58 bool "Apply SiFive errata CIP-453"
62 This will apply the SiFive CIP-453 errata to add sign extension
69 bool "Apply SiFive errata CIP-1200"
73 This will apply the SiFive CIP-1200 errata to repalce all
110 bool "Apply T-Head's memory attribute extension (XTheadMae) errata"
115 This will apply the memory attribute extension errata to handle the
121 bool "Apply T-Head cache management errata"
128 This will apply the cache management errata to handle the
[all …]
/linux/Documentation/process/
H A Dapplying-patches.rst14 A frequently asked question on the Linux Kernel Mailing List is how to apply
19 In addition to explaining how to apply and revert patches, a brief
20 description of the different kernel trees (and examples of how to apply
31 To correctly apply a patch you need to know what base it was generated from
37 How do I apply or revert a patch?
40 You apply a patch with the ``patch`` program. The patch program reads a diff
122 options. It can either refuse to apply the changes and abort or it can try
123 to find a way to make the patch apply with a few minor changes.
131 usually adjust the line numbers and apply the patch.
145 only patches from kernel.org and you apply the patches in the correct order,
[all …]
/linux/fs/nls/
H A DKconfig47 DOS/Windows partitions correctly. This does apply to the filenames
59 DOS/Windows partitions correctly. This does apply to the filenames
71 DOS/Windows partitions correctly. This does apply to the filenames
84 DOS/Windows partitions correctly. This does apply to the filenames
100 DOS/Windows partitions correctly. This does apply to the filenames
115 DOS/Windows partitions correctly. This does apply to the filenames
126 DOS/Windows partitions correctly. This does apply to the filenames
137 DOS/Windows partitions correctly. This does apply to the filenames
148 DOS/Windows partitions correctly. This does apply to the filenames
159 DOS/Windows partitions correctly. This does apply to the filenames
[all …]
/linux/arch/mips/include/asm/
H A Dmachine.h60 * struct mips_fdt_fixup - Describe a fixup to apply to an FDT
61 * @apply: applies the fixup to @fdt, returns zero on success else -errno
64 * Describes a fixup applied to an FDT blob by the @apply function. The
66 * use in error messages if the @apply function returns non-zero.
69 int (*apply)(void *fdt); member
74 * apply_mips_fdt_fixups() - apply fixups to an FDT blob
80 * Loop through the array of fixups pointed to by @fixups, calling the apply
82 * the list as indicated by an entry with a NULL apply field.
/linux/drivers/gpu/drm/i915/gem/
H A Di915_gem_ttm_pm.c32 * struct i915_gem_ttm_pm_apply - Apply-to-region subclass for restore
43 static int i915_ttm_backup(struct i915_gem_apply_to_region *apply, in i915_ttm_backup() argument
47 container_of(apply, typeof(*pm_apply), base); in i915_ttm_backup()
89 err = i915_gem_object_lock(backup, apply->ww); in i915_ttm_backup()
118 static int i915_ttm_recover(struct i915_gem_apply_to_region *apply, in i915_ttm_recover() argument
138 struct i915_gem_apply_to_region apply = {.ops = &recover_ops}; in i915_ttm_recover_region() local
141 ret = i915_gem_process_region(mr, &apply); in i915_ttm_recover_region()
169 static int i915_ttm_restore(struct i915_gem_apply_to_region *apply, in i915_ttm_restore() argument
173 container_of(apply, typeof(*pm_apply), base); in i915_ttm_restore()
185 err = i915_gem_object_lock(backup, apply->ww); in i915_ttm_restore()
H A Di915_gem_region.c144 * @apply: ops and private data
155 struct i915_gem_apply_to_region *apply) in i915_gem_process_region() argument
157 const struct i915_gem_apply_to_region_ops *ops = apply->ops; in i915_gem_process_region()
163 * In the future, a non-NULL apply->ww could mean the caller is in i915_gem_process_region()
166 GEM_WARN_ON(apply->ww); in i915_gem_process_region()
188 apply->ww = &ww; in i915_gem_process_region()
189 for_i915_gem_ww(&ww, ret, apply->interruptible) { in i915_gem_process_region()
190 ret = i915_gem_object_lock(obj, apply->ww); in i915_gem_process_region()
195 ret = ops->process_obj(apply, obj); in i915_gem_process_region()
/linux/tools/bootconfig/scripts/
H A Dbconf2ftrace.sh6 echo "Usage: $0 [--apply|--init] [--debug] BOOTCONFIG-FILE"
7 echo " --apply: Test actual apply to tracefs (need sudo)"
8 echo " --init: Initialize ftrace before applying (imply --apply)"
16 APPLY=
22 "--apply")
23 APPLY=$1;;
25 APPLY=$1
34 if [ x"$APPLY" != x ]; then
37 exec sudo $0 $DEBUG $APPLY $BCONF
43 if [ x"$APPLY" != x ]; then # apply command
/linux/drivers/accel/habanalabs/common/
H A Dsecurity.c296 * @num_dcores: number of decores to apply configuration to
297 * set to HL_PB_SHARED if need to apply only once
299 * @num_instances: number of instances to apply configuration to
346 * @num_dcores: number of decores to apply configuration to
347 * set to HL_PB_SHARED if need to apply only once
349 * @num_instances: number of instances to apply configuration to
374 * @num_dcores: number of decores to apply configuration to
375 * set to HL_PB_SHARED if need to apply only once
377 * @num_instances: number of instances to apply configuration to
430 * @num_dcores: number of decores to apply configuration to
[all …]
/linux/drivers/of/
H A Doverlay.c67 * @cset: changeset to apply fragments to live device tree
94 * If a changeset apply or revert encounters an error, an attempt will
397 * to nodes in the live devicetree so that it can apply an overlay to
486 pr_debug("Failed to apply prop @%pOF/%s, err=%d\n", in build_changeset_next_level()
495 pr_debug("Failed to apply node @%pOF/%pOFn, err=%d\n", in build_changeset_next_level()
517 pr_debug("Failed to apply symbols prop @%pOF/%s, err=%d\n", in build_changeset_symbols_node()
653 pr_debug("fragment apply failed '%pOF'\n", in build_changeset()
667 pr_debug("symbols fragment apply failed '%pOF'\n", in build_changeset()
731 * @target_base: Point to the target node to apply overlay
891 * of_overlay_apply() - Create and apply an overlay changeset
[all …]
/linux/tools/bootconfig/
H A Dmain.c406 printf("Apply %s to %s\n", xbc_path, path); in apply_xbc()
424 /* Apply new one */ in apply_xbc()
457 pr_err("Failed to apply a boot config: %d\n", ret); in apply_xbc()
485 " Apply, delete or show boot config to initrd.\n" in usage()
487 " -a <config>: Apply boot config to initrd\n" in usage()
497 char *apply = NULL; in main() local
507 apply = optarg; in main()
518 if ((apply && delete) || (delete && list) || (apply && list)) { in main()
530 if (apply) in main()
531 return apply_xbc(path, apply); in main()
/linux/drivers/video/fbdev/omap2/omapfb/dss/
H A Dmanager-sysfs.c103 r = mgr->apply(mgr); in manager_display_store()
105 DSSERR("failed to apply dispc config\n"); in manager_display_store()
146 r = mgr->apply(mgr); in manager_default_color_store()
190 r = mgr->apply(mgr); in manager_trans_key_type_store()
226 r = mgr->apply(mgr); in manager_trans_key_value_store()
262 r = mgr->apply(mgr); in manager_trans_key_enabled_store()
306 r = mgr->apply(mgr); in manager_alpha_blending_enabled_store()
348 r = mgr->apply(mgr); in manager_cpr_enable_store()
409 r = mgr->apply(mgr); in manager_cpr_coef_store()
H A Doverlay-sysfs.c80 r = old_mgr->apply(old_mgr); in overlay_manager_store()
92 r = mgr->apply(mgr); in overlay_manager_store()
156 r = ovl->manager->apply(ovl->manager); in overlay_position_store()
195 r = ovl->manager->apply(ovl->manager); in overlay_output_size_store()
262 r = ovl->manager->apply(ovl->manager); in overlay_global_alpha_store()
304 r = ovl->manager->apply(ovl->manager); in overlay_pre_mult_alpha_store()
344 r = ovl->manager->apply(ovl->manager); in overlay_zorder_store()
/linux/tools/testing/selftests/drivers/net/hw/
H A Dnic_timestamp.py125 The driver should apply provided config and report back proper state.
149 The driver should apply provided config and report back proper state.
157 The driver should apply provided config and report back proper state.
166 The driver should apply the config without error and report back proper state.
197 The driver should apply the config without error and report back proper state.
207 The driver should apply the config without error and report back proper state.
/linux/LICENSES/dual/
H A DCC-BY-4.095 b. Adapter's License means the license You apply to Your Copyright
123 all Copyright and Similar Rights that apply to Your use of the
162 Exceptions and Limitations apply to Your use, this Public
163 License does not apply, and You do not need to comply with
191 apply any Effective Technological Measures to, the
272 License You apply must not prevent recipients of the Adapted
279 apply to Your use of the Licensed Material:
309 ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
319 IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
386 that apply to the Licensor or You, including from the legal
[all …]
/linux/Documentation/gpu/nova/
H A Dguidelines.rst7 This document describes the general project guidelines that apply to nova-core
15 :doc:`../../rust/general-information` apply. Additionally, the following rules
16 apply.
29 :doc:`../../rust/coding-guidelines` apply.
/linux/arch/arm/mach-sa1100/include/mach/
H A Dh3xxx.h63 #define H3XXX_EGPIO_OPT_NVRAM_ON (H3XXX_EGPIO_BASE + 4) /* apply power to optionpack nvram, active …
70 #define H3600_EGPIO_IR_ON (H3XXX_EGPIO_BASE + 9) /* apply power to IR module. active high. */
71 #define H3600_EGPIO_AUD_AMP_ON (H3XXX_EGPIO_BASE + 10) /* apply power to audio power amp. active …
72 #define H3600_EGPIO_AUD_PWR_ON (H3XXX_EGPIO_BASE + 11) /* apply power to reset of audio circuit. …
/linux/tools/power/cpupower/
H A Dcpupower.sh8 # apply CPU clock frequency options
20 # apply CPU policy options
26 # apply Energy Performance Preference
/linux/include/kunit/
H A Dof.h42 * @overlay_begin: start address of overlay to apply
43 * @overlay_end: end address of overlay to apply
75 * @overlay_name: name of overlay to apply
77 * This macro is used to apply a device tree overlay built with the
/linux/sound/soc/ti/
H A Dams-delta.c254 /* To actually apply any modem controlled configuration changes to the codec,
344 int apply, ret; in cx81801_receive() local
374 /* Complete modem response received, apply config to codec */ in cx81801_receive()
378 apply = !ams_delta_muted && !cx81801_cmd_pending; in cx81801_receive()
382 /* Apply config pulse by connecting the codec to the modem in cx81801_receive()
384 if (apply) in cx81801_receive()
424 int apply; in ams_delta_mute() local
431 apply = !cx81801_cmd_pending; in ams_delta_mute()
434 if (apply) in ams_delta_mute()
/linux/drivers/gpu/drm/xe/
H A DKconfig.profile53 to apply to applicable user. For elevated user, all above MIN
54 and MAX values will apply when this configuration is enable to
55 apply limitation. By default limitation is applied.
/linux/Documentation/admin-guide/device-mapper/
H A Ddelay.rst15 3: apply offset and delay to read, write and flush operations on device
17 6: apply offset and delay to device, also apply write_offset and write_delay
/linux/drivers/gpu/drm/meson/
H A Dmeson_dw_hdmi.h18 * Bit 4 RW sw_reset_phyif: PHY interface. 1=Apply reset; 0=Release from reset.
20 * Bit 3 RW sw_reset_intr: interrupt module. 1=Apply reset;
23 * Bit 2 RW sw_reset_mem: KSV/REVOC mem. 1=Apply reset; 0=Release from reset.
25 * Bit 1 RW sw_reset_rnd: random number interface to HDCP. 1=Apply reset;
27 * Bit 0 RW sw_reset_core: connects to IP's ~irstz. 1=Apply reset;

12345678910>>...78