/openbmc/qemu/.gitlab-ci.d/ |
H A D | check-patch.py | 25 # ancestor between the user's branch and current git master. 29 ancestor = subprocess.check_output(["git", "merge-base", variable 33 ancestor = ancestor.strip() variable 36 ancestor + "..."], 42 print("\nNo commits since %s, skipping checks\n" % ancestor) 47 print("\nChecking all commits since %s...\n" % ancestor, flush=True) 49 ret = subprocess.run(["scripts/checkpatch.pl", "--terse", ancestor + "..."])
|
H A D | check-dco.py | 26 ancestor = subprocess.check_output(["git", "merge-base", variable 30 ancestor = ancestor.strip() variable 37 "on all commits since %s...\n" % ancestor) 40 ancestor + "..."],
|
/openbmc/linux/drivers/gpu/drm/ci/ |
H A D | check-patch.py | 20 # ancestor between the user's branch and current git master. 28 ancestor = subprocess.check_output(["git", "merge-base", variable 32 ancestor = ancestor.strip() variable 35 ancestor + "..."], 41 print("\nNo commits since %s, skipping checks\n" % ancestor) 46 print("\nChecking all commits since %s...\n" % ancestor, flush=True) 51 "--git", ancestor + "..."])
|
/openbmc/linux/fs/overlayfs/ |
H A D | export.c | 44 * "layer N connected" ancestor and verifying that all parents along the way are 45 * "layer N connectable". If an ancestor that is NOT "layer N connectable" is 46 * found, we need to copy up an ancestor, which is "layer N connectable", thus 47 * making that ancestor "layer N connected". For example: 58 * To avoid this problem on decode time, we need to copy up an ancestor of 59 * /a/b/c, which is "layer 2 connectable", on encode time. That ancestor is 62 * ovl_lookup_real_ancestor() will find the indexed ancestor /a/b and decoding 98 * @dentry is "connected" if all ancestors up to root or a "connected" ancestor 100 * copy up a "connectable" ancestor to make it "connected". A "connected" dentry 120 /* Find the topmost origin layer connectable ancestor of @dentry */ in ovl_connect_layer() [all …]
|
/openbmc/linux/include/linux/ |
H A D | cgroup.h | 507 * @ancestor: possible ancestor of @cgrp 509 * Test whether @cgrp is a descendant of @ancestor. It also returns %true 510 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp 511 * and @ancestor are accessible. 514 struct cgroup *ancestor) in cgroup_is_descendant() argument 516 if (cgrp->root != ancestor->root || cgrp->level < ancestor->level) in cgroup_is_descendant() 518 return cgrp->ancestors[ancestor->level] == ancestor; in cgroup_is_descendant() 522 * cgroup_ancestor - find ancestor of cgroup 523 * @cgrp: cgroup to find ancestor of 524 * @ancestor_level: level of ancestor to find starting from root [all …]
|
H A D | user_namespace.h | 179 extern bool in_userns(const struct user_namespace *ancestor, 212 static inline bool in_userns(const struct user_namespace *ancestor, in in_userns() argument
|
/openbmc/linux/net/netfilter/ |
H A D | xt_cgroup.c | 117 struct cgroup *ancestor = info->priv; in cgroup_mt_v1() local 123 if (ancestor) in cgroup_mt_v1() 124 return cgroup_is_descendant(sock_cgroup_ptr(skcd), ancestor) ^ in cgroup_mt_v1() 135 struct cgroup *ancestor = info->priv; in cgroup_mt_v2() local 141 if (ancestor) in cgroup_mt_v2() 142 return cgroup_is_descendant(sock_cgroup_ptr(skcd), ancestor) ^ in cgroup_mt_v2()
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | path.py | 40 # find the common ancestor directory 41 ancestor = path 43 while ancestor and not link.startswith(ancestor): 44 ancestor = ancestor.rpartition('/')[0] 47 if not ancestor: 48 …print("make_relative_symlink() Error: unable to find the common ancestor of %s and its target" % p… 51 base = link.partition(ancestor)[2].strip('/')
|
/openbmc/linux/drivers/base/power/ |
H A D | qos.c | 622 * dev_pm_qos_add_ancestor_request - Add PM QoS request for device's ancestor. 623 * @dev: Device whose ancestor to add the request for. 632 struct device *ancestor = dev->parent; in dev_pm_qos_add_ancestor_request() local 637 while (ancestor && !ancestor->power.ignore_children) in dev_pm_qos_add_ancestor_request() 638 ancestor = ancestor->parent; in dev_pm_qos_add_ancestor_request() 642 while (ancestor && !ancestor->power.set_latency_tolerance) in dev_pm_qos_add_ancestor_request() 643 ancestor = ancestor->parent; in dev_pm_qos_add_ancestor_request() 647 ancestor = NULL; in dev_pm_qos_add_ancestor_request() 649 if (ancestor) in dev_pm_qos_add_ancestor_request() 650 ret = dev_pm_qos_add_request(ancestor, req, type, value); in dev_pm_qos_add_ancestor_request()
|
/openbmc/linux/Documentation/filesystems/ |
H A D | directory-locking.rst | 49 * lock parents in "ancestors first" order. If one is not ancestor of 66 If no directory is its own ancestor, the scheme above is deadlock-free. 72 objects - A < B iff (A is an ancestor of B) or (B is not an ancestor 124 try to acquire lock on descendent before the lock on ancestor.
|
/openbmc/linux/kernel/cgroup/ |
H A D | freezer.c | 19 * If the new state is frozen, some freezing ancestor cgroups may change in cgroup_propagate_frozen() 22 * Otherwise, all ancestor cgroups are forced into the non-frozen state. in cgroup_propagate_frozen() 82 /* Update the state of ancestor cgroups. */ in cgroup_update_frozen() 288 * Already frozen because of ancestor's settings? in cgroup_freeze() 295 * Still frozen because of ancestor's settings? in cgroup_freeze() 312 * The state can be enforced by an ancestor cgroup: the cgroup in cgroup_freeze()
|
/openbmc/linux/tools/lib/perf/Documentation/ |
H A D | manpage-suppress-sp.xsl | 15 <xsl:if test="not(ancestor::authorblurb) and 16 not(ancestor::personblurb)">
|
/openbmc/linux/tools/perf/Documentation/ |
H A D | manpage-suppress-sp.xsl | 15 <xsl:if test="not(ancestor::authorblurb) and 16 not(ancestor::personblurb)">
|
/openbmc/linux/scripts/ |
H A D | setlocalversion | 39 # Is it an ancestor of HEAD, and if so, how many commits are in $tag..HEAD? 43 # $1 is 0 if and only if $tag is an ancestor of HEAD. Use 89 # annotated tag exists and is an ancestor of HEAD, use 97 # KERNELVERSION exists and is an ancestor of HEAD, use
|
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/ |
H A D | ObjectMapper.interface.yaml | 30 Obtain a dictionary of ancestor -> services where ancestor is an 31 ancestor of path and services is of the type returned by the GetObject 46 A dictionary of ancestor -> services.
|
/openbmc/linux/kernel/ |
H A D | pid_namespace.c | 399 struct pid_namespace *ancestor, *new = to_pid_ns(ns); in pidns_install() local 416 ancestor = new; in pidns_install() 417 while (ancestor->level > active->level) in pidns_install() 418 ancestor = ancestor->parent; in pidns_install() 419 if (ancestor != active) in pidns_install()
|
/openbmc/linux/drivers/base/ |
H A D | property.c | 639 * fwnode_get_next_parent_dev - Find device of closest ancestor fwnode 642 * Given a firmware node (@fwnode), this function finds its closest ancestor 649 * Return: a pointer to the device of the @fwnode's closest ancestor. 713 * fwnode_is_ancestor_of - Test if @ancestor is ancestor of @child 714 * @ancestor: Firmware which is tested for being an ancestor 717 * A node is considered an ancestor of itself too. 719 * Return: true if @ancestor is an ancestor of @child. Otherwise, returns false. 721 bool fwnode_is_ancestor_of(const struct fwnode_handle *ancestor, const struct fwnode_handle *child) in fwnode_is_ancestor_of() argument 725 if (IS_ERR_OR_NULL(ancestor)) in fwnode_is_ancestor_of() 728 if (child == ancestor) in fwnode_is_ancestor_of() [all …]
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 043.out | 16 == ancestor references another ancestor ==
|
H A D | 043 | 75 echo "== ancestor references another ancestor =="
|
/openbmc/linux/mm/ |
H A D | vmpressure.c | 159 bool ancestor, bool signalled) in vmpressure_event() argument 166 if (ancestor && ev->mode == VMPRESSURE_LOCAL) in vmpressure_event() 186 bool ancestor = false; in vmpressure_work_fn() local 212 if (vmpressure_event(vmpr, level, ancestor, signalled)) in vmpressure_work_fn() 214 ancestor = true; in vmpressure_work_fn()
|
/openbmc/linux/kernel/bpf/ |
H A D | helpers.c | 423 struct cgroup *ancestor; in BPF_CALL_1() local 428 ancestor = cgroup_ancestor(cgrp, ancestor_level); in BPF_CALL_1() 429 cgrp_id = ancestor ? cgroup_id(ancestor) : 0; in BPF_CALL_1() 2240 * bpf_cgroup_ancestor - Perform a lookup on an entry in a cgroup's ancestor 2244 * @level: The level of ancestor to look up. 2248 struct cgroup *ancestor; in bpf_cgroup_ancestor() local 2254 ancestor = cgrp->ancestors[level]; in bpf_cgroup_ancestor() 2255 if (!cgroup_tryget(ancestor)) in bpf_cgroup_ancestor() 2257 return ancestor; in bpf_cgroup_ancestor() 2280 * @ancestor: possible ancestor of @task's cgroup [all …]
|
/openbmc/linux/drivers/cpufreq/ |
H A D | spear-cpufreq.c | 72 * access a source clock (clk) which might not be ancestor of cpu at present. 130 * src clock to be altered is ancestor of cpu clock. Hence we in spear_cpufreq_target()
|
/openbmc/linux/tools/testing/selftests/bpf/progs/ |
H A D | test_task_under_cgroup.c | 11 long bpf_task_under_cgroup(struct task_struct *task, struct cgroup *ancestor) __ksym;
|
/openbmc/qemu/python/qemu/qmp/ |
H A D | error.py | 9 QMPError serves as the ancestor for all exceptions raised by this
|
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/ |
H A D | amdgpu_vm_pt.c | 381 struct amdgpu_bo *ancestor = &vmbo->bo; in amdgpu_vm_pt_clear() local 388 if (ancestor->parent) { in amdgpu_vm_pt_clear() 390 while (ancestor->parent->parent) { in amdgpu_vm_pt_clear() 392 ancestor = ancestor->parent; in amdgpu_vm_pt_clear() 408 pt = ancestor->vm_bo; in amdgpu_vm_pt_clear()
|