Home
last modified time | relevance | path

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

12345678910>>...122

/openbmc/linux/arch/riscv/
H A DKconfig.errata14 bool "Apply Andes cache management errata"
19 This will apply the cache management errata to handle the
35 bool "Apply SiFive errata CIP-453"
39 This will apply the SiFive CIP-453 errata to add sign extension
46 bool "Apply SiFive errata CIP-1200"
50 This will apply the SiFive CIP-1200 errata to repalce all
67 bool "Apply T-Head memory type errata"
72 This will apply the memory type errata to handle the non-standard
78 bool "Apply T-Head cache management errata"
84 This will apply the cache management errata to handle the
[all …]
/openbmc/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 …]
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/
H A DSettings.v1_4_0.json14 … "AtMaintenanceWindowStart": "Apply during a maintenance window as specified by an administrator.",
15 …"Immediate": "Apply immediately. This value might result in an immediate host reset, manager rese…
16 …"InMaintenanceWindowOnReset": "Apply after a reset but within maintenance window as specified by a…
17 "OnReset": "Apply on a reset."
58 …s property shall indicate the date and time when the service can start to apply the requested sett…
72 …"description": "The client can request a specific apply time of a create, delete, or action operat…
73 …"longDescription": "This type shall indicate that a client can request a specific apply time of a …
114 …"description": "The types of apply times that the client can request when performing a create, del…
118 …"longDescription": "This property shall indicate the types of apply times the client can request w…
131 "description": "The preferred time to apply configuration settings.",
[all …]
H A DUpdateService.v1_14_1.json
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema-installed/
H A DSettings.v1_4_0.json14 … "AtMaintenanceWindowStart": "Apply during a maintenance window as specified by an administrator.",
15 …"Immediate": "Apply immediately. This value might result in an immediate host reset, manager rese…
16 …"InMaintenanceWindowOnReset": "Apply after a reset but within maintenance window as specified by a…
17 "OnReset": "Apply on a reset."
58 …s property shall indicate the date and time when the service can start to apply the requested sett…
72 …"description": "The client can request a specific apply time of a create, delete, or action operat…
73 …"longDescription": "This type shall indicate that a client can request a specific apply time of a …
114 …"description": "The types of apply times that the client can request when performing a create, del…
118 …"longDescription": "This property shall indicate the types of apply times the client can request w…
131 "description": "The preferred time to apply configuration settings.",
[all …]
H A DUpdateService.v1_14_1.json
/openbmc/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.
/openbmc/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 …]
/openbmc/sdbusplus/include/sdbusplus/sdbuspp_support/
H A Dserver.hpp40 std::apply([&](Args&... a) { (m.read(a), ...); }, arg); in property_callback()
46 m.append(std::apply(f, std::move(arg))); in property_callback()
51 std::apply(f, std::move(arg)); in property_callback()
96 std::apply([&](Args&... a) { (m.read(a), ...); }, arg); in method_callback()
105 std::apply(f, std::move(arg)); in method_callback()
110 reply.append(std::apply(f, std::move(arg))); in method_callback()
116 // - std::apply(f, std::move(arg)) in method_callback()
119 // - Apply on return from 'f' into lambda that does an append. in method_callback()
120 std::apply([&](auto&&... v) { (reply.append(std::move(v)), ...); }, in method_callback()
121 std::apply(f, std::move(arg))); in method_callback()
/openbmc/linux/drivers/gpu/drm/i915/gem/
H A Di915_gem_ttm_pm.c31 * struct i915_gem_ttm_pm_apply - Apply-to-region subclass for restore
42 static int i915_ttm_backup(struct i915_gem_apply_to_region *apply, in i915_ttm_backup() argument
46 container_of(apply, typeof(*pm_apply), base); in i915_ttm_backup()
88 err = i915_gem_object_lock(backup, apply->ww); in i915_ttm_backup()
117 static int i915_ttm_recover(struct i915_gem_apply_to_region *apply, in i915_ttm_recover() argument
137 struct i915_gem_apply_to_region apply = {.ops = &recover_ops}; in i915_ttm_recover_region() local
140 ret = i915_gem_process_region(mr, &apply); in i915_ttm_recover_region()
168 static int i915_ttm_restore(struct i915_gem_apply_to_region *apply, in i915_ttm_restore() argument
172 container_of(apply, typeof(*pm_apply), base); in i915_ttm_restore()
184 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()
/openbmc/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
/openbmc/docs/architecture/code-update/
H A Dcode-update-deprecated.md85 (preserving the filename), then run the `update` script to apply the images:
102 An OpenBMC system can download an update image from a TFTP server, and apply
109 5. Apply update
136 - `auto_apply`: Attempt to write the images by invoking the `Apply` method after
174 `Image ready to apply`.
176 ### Apply update
178 If the status is `Image ready to apply.` then you can either initiate a reboot
179 or call the Apply method to start the process of writing the flash:
183 https://${bmc}/org/openbmc/control/flash/bmc/action/Apply
190 `Apply Complete. Reboot to take effect.`
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/templates/
H A Dprojectconf.html23 <button id="apply-change-distro" class="btn btn-default" type="button">Save</button>
42 <button id="apply-change-dl_dir" class="btn btn-default" type="button">Save</button>
62 <button id="apply-change-image_fstypes" type="button" class="btn btn-default">Save</button>
92 <button id="apply-change-image_install" class="btn btn-default" type="button">Save</button>
134 <button id="apply-change-package_classes" type="button" class="btn btn-default">Save</button>
152 <button id="apply-change-sstate_dir" class="btn btn-default" type="button">Save</button>
311 $("#apply-change-distro").attr("disabled","disabled");
320 $("#apply-change-distro").removeAttr("disabled");
331 $("#apply-change-image_fstypes").attr("disabled","disabled");
336 $("#apply-change-image_fstypes").removeAttr("disabled");
[all …]
/openbmc/linux/drivers/accel/habanalabs/common/
H A Dsecurity.c280 * @num_dcores: number of decores to apply configuration to
281 * set to HL_PB_SHARED if need to apply only once
283 * @num_instances: number of instances to apply configuration to
332 * @num_dcores: number of decores to apply configuration to
333 * set to HL_PB_SHARED if need to apply only once
335 * @num_instances: number of instances to apply configuration to
360 * @num_dcores: number of decores to apply configuration to
361 * set to HL_PB_SHARED if need to apply only once
363 * @num_instances: number of instances to apply configuration to
418 * @num_dcores: number of decores to apply configuration to
[all …]
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Software/
H A DApplyTime.interface.yaml2 To implement the apply time of a newly updated software image. The apply
19 Apply immediately.
22 Apply on a reset.
/openbmc/openbmc/poky/meta/files/common-licenses/
H A DCC-BY-SA-4.083 b. Adapter's License means the license You apply to Your Copyright
119 all Copyright and Similar Rights that apply to Your use of the
158 Exceptions and Limitations apply to Your use, this Public
159 License does not apply, and You do not need to comply with
189 under the conditions of the Adapter's License You apply.
193 apply any Effective Technological Measures to, the
276 Adapted Material You produce, the following conditions also apply.
278 1. The Adapter's License You apply must be a Creative Commons
283 Adapter's License You apply. You may satisfy this condition
288 or conditions on, or apply any Effective Technological
[all …]
H A DCC-BY-NC-SA-4.021 …b. Adapter's License means the license You apply to Your Copyright and Similar Rights in Your cont…
35 …ublic License, which are limited to all Copyright and Similar Rights that apply to Your use of the…
57 …idance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not
67 …he Licensed Rights in the Adapted Material under the conditions of the Adapter’s License You apply.
69 …ot offer or impose any additional or different terms or conditions on, or apply any Effective Tech…
109 …ns in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply.
111 …1. The Adapter’s License You apply must be a Creative Commons license with the same License Elemen…
113 …nclude the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy t…
115 …or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the r…
119 Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the License…
[all …]
H A DCC-BY-4.021 …b. Adapter's License means the license You apply to Your Copyright and Similar Rights in Your cont…
31 …ublic License, which are limited to all Copyright and Similar Rights that apply to Your use of the…
51 …idance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not
61 …ot offer or impose any additional or different terms or conditions on, or apply any Effective Tech…
101 …4. If You Share Adapted Material You produce, the Adapter's License You apply must not prevent rec…
105 Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the License…
116 …disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.
118 … a limitation of liability is not allowed in full or in part, this limitation may not apply to You.
152 …ed as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or…
154 …ty to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public …
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libcereal/files/
H A D0001-Fix-instances-of-Wmissing-template-arg-list-after-te.patch26 static void apply( Archive & ar, std::tuple<Types...> & tuple )
28 - serialize<Height - 1>::template apply( ar, tuple );
29 + serialize<Height - 1>::apply( ar, tuple );
37 - tuple_detail::serialize<std::tuple_size<std::tuple<Types...>>::value>::template apply( ar, tup…
38 + tuple_detail::serialize<std::tuple_size<std::tuple<Types...>>::value>::apply( ar, tuple );
/openbmc/linux/Documentation/doc-guide/
H A Dparse-headers.rst101 The ignore or replace statement will apply to ioctl definitions like:
109 The ignore or replace statement will apply to any other #define found
116 The ignore or replace statement will apply to typedef statements at C_FILE.
122 The ignore or replace statement will apply to the name of struct statements
129 The ignore or replace statement will apply to the name of enum statements
136 The ignore or replace statement will apply to the name of enum value
/openbmc/libpldm/scripts/
H A Dapply-renames11 : "${LIBPLDM_ROOT:="${ABSPATH%scripts/apply-renames}"}"
16 : "${CLANG_APPLY_REPLACEMENTS:="$(command -v clang-apply-replacements-"${CLANG_VERSION}")"}"
31 # We export the fixes to yaml files so we can apply them all in one hit later
43 # Now apply the generated fixes
/openbmc/bmcweb/redfish-core/include/generated/enums/
H A Dcomposition_service.hpp14 Apply, enumerator
26 {ComposeRequestType::Apply, "Apply"},
/openbmc/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()
/openbmc/linux/drivers/of/
H A Doverlay.c67 * @cset: changeset to apply fragments to live device tree
88 * 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
487 pr_debug("Failed to apply prop @%pOF/%s, err=%d\n", in build_changeset_next_level()
496 pr_debug("Failed to apply node @%pOF/%pOFn, err=%d\n", in build_changeset_next_level()
519 pr_debug("Failed to apply symbols prop @%pOF/%s, err=%d\n", in build_changeset_symbols_node()
655 pr_debug("fragment apply failed '%pOF'\n", in build_changeset()
669 pr_debug("symbols fragment apply failed '%pOF'\n", in build_changeset()
733 * @target_base: Point to the target node to apply overlay
893 * of_overlay_apply() - Create and apply an overlay changeset
[all …]

12345678910>>...122