/openbmc/linux/arch/s390/kvm/ |
H A D | gaccess.h | 64 unsigned long ga) in _kvm_s390_logical_to_effective() argument 67 return ga; in _kvm_s390_logical_to_effective() 69 return ga & ((1UL << 31) - 1); in _kvm_s390_logical_to_effective() 70 return ga & ((1UL << 24) - 1); in _kvm_s390_logical_to_effective() 87 unsigned long ga) in kvm_s390_logical_to_effective() argument 89 return _kvm_s390_logical_to_effective(&vcpu->arch.sie_block->gpsw, ga); in kvm_s390_logical_to_effective() 202 int access_guest_with_key(struct kvm_vcpu *vcpu, unsigned long ga, u8 ar, 259 int write_guest_with_key(struct kvm_vcpu *vcpu, unsigned long ga, u8 ar, in write_guest_with_key() argument 262 return access_guest_with_key(vcpu, ga, ar, data, len, GACC_STORE, in write_guest_with_key() 278 int write_guest(struct kvm_vcpu *vcpu, unsigned long ga, u8 ar, void *data, in write_guest() argument [all …]
|
H A D | gaccess.c | 573 unsigned long ga, u8 ar, enum gacc_mode mode) in get_vcpu_asce() argument 600 return trans_exc(vcpu, rc, ga, ar, mode, PROT_TYPE_ALC); in get_vcpu_asce() 796 static inline int is_low_address(unsigned long ga) in is_low_address() argument 799 return (ga & ~0x11fful) == 0; in is_low_address() 861 static bool fetch_prot_override_applies(unsigned long ga, unsigned int len) in fetch_prot_override_applies() argument 863 return ga < 2048 && ga + len <= 2048; in fetch_prot_override_applies() 880 unsigned long ga, unsigned int len) in vcpu_check_access_key() argument 908 fetch_prot_override_applies(ga, len)) in vcpu_check_access_key() 952 static int guest_range_to_gpas(struct kvm_vcpu *vcpu, unsigned long ga, u8 ar, in guest_range_to_gpas() argument 958 unsigned int offset = offset_in_page(ga); in guest_range_to_gpas() [all …]
|
H A D | priv.c | 193 u64 ga; in handle_store_cpu_address() local 202 ga = kvm_s390_get_base_disp_s(vcpu, &ar); in handle_store_cpu_address() 204 if (ga & 1) in handle_store_cpu_address() 207 rc = write_guest(vcpu, ga, ar, &vcpu_id, sizeof(vcpu_id)); in handle_store_cpu_address() 211 VCPU_EVENT(vcpu, 3, "STAP: storing cpu address (%u) to 0x%llx", vcpu_id, ga); in handle_store_cpu_address() 212 trace_kvm_s390_handle_stap(vcpu, ga); in handle_store_cpu_address() 1341 u64 ga; in kvm_s390_handle_lctl() local 1349 ga = kvm_s390_get_base_disp_rs(vcpu, &ar); in kvm_s390_handle_lctl() 1351 if (ga & 3) in kvm_s390_handle_lctl() 1354 VCPU_EVENT(vcpu, 4, "LCTL: r1:%d, r3:%d, addr: 0x%llx", reg1, reg3, ga); in kvm_s390_handle_lctl() [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | gitarchivetests.py | 12 import oeqa.utils.gitarchive as ga namespace 35 repo = ga.init_git_repo(tempdir, False, False, logger) 73 ga.gitarchive(path, path, True, False, 87 ga.gitarchive(path, path, True, False, 100 revs = ga.get_test_revs(logger, git_obj, tag_name, branch="main") 111 tags = ga.get_tags(git_obj, self.log, pattern="yocto-*", url=url) 125 tags = ga.get_tags(git_obj, self.log) 135 tags = ga.get_tags(git_obj, self.log, pattern="yocto-*", url=url)
|
/openbmc/qemu/docs/interop/ |
H A D | qemu-ga.rst | 7 **qemu-ga** [*OPTIONS*] 25 qemu-ga will read a system configuration file on startup (located at 26 |CONFDIR|\ ``/qemu-ga.conf`` by default), then parse remaining 48 .. program:: qemu-ga 52 Configuration file path (the default is |CONFDIR|\ ``/qemu-ga.conf``, 73 Specify pid file (default is ``/var/run/qemu-ga.pid``). 113 Dump the configuration in a format compatible with ``qemu-ga.conf`` 124 The syntax of the ``qemu-ga.conf`` configuration file follows the 130 # qemu-ga configuration sample 133 pidfile = /var/run/qemu-ga.pid
|
H A D | index.rst | 22 qemu-ga 23 qemu-ga-ref
|
/openbmc/linux/net/802/ |
H A D | garp.c | 291 struct garp_attr_hdr *ga; in garp_pdu_append_attr() local 309 len = sizeof(*ga) + attr->dlen; in garp_pdu_append_attr() 312 ga = __skb_put(app->pdu, len); in garp_pdu_append_attr() 313 ga->len = len; in garp_pdu_append_attr() 314 ga->event = event; in garp_pdu_append_attr() 315 memcpy(ga->data, attr->data, attr->dlen); in garp_pdu_append_attr() 441 const struct garp_attr_hdr *ga; in garp_pdu_parse_attr() local 446 if (!pskb_may_pull(skb, sizeof(*ga))) in garp_pdu_parse_attr() 448 ga = (struct garp_attr_hdr *)skb->data; in garp_pdu_parse_attr() 449 if (ga->len < sizeof(*ga)) in garp_pdu_parse_attr() [all …]
|
/openbmc/linux/kernel/ |
H A D | cred.c | 542 struct group_info *ga, *gb; in cred_fscmp() local 557 ga = a->group_info; in cred_fscmp() 559 if (ga == gb) in cred_fscmp() 561 if (ga == NULL) in cred_fscmp() 565 if (ga->ngroups < gb->ngroups) in cred_fscmp() 567 if (ga->ngroups > gb->ngroups) in cred_fscmp() 570 for (g = 0; g < ga->ngroups; g++) { in cred_fscmp() 571 if (gid_lt(ga->gid[g], gb->gid[g])) in cred_fscmp() 573 if (gid_gt(ga->gid[g], gb->gid[g])) in cred_fscmp()
|
/openbmc/linux/net/tipc/ |
H A D | link.c | 277 static u8 __tipc_build_gap_ack_blks(struct tipc_gap_ack_blks *ga, 282 struct tipc_gap_ack_blks *ga, 1438 u16 tipc_get_gap_ack_blks(struct tipc_gap_ack_blks **ga, struct tipc_link *l, in tipc_get_gap_ack_blks() argument 1465 *ga = p; in tipc_get_gap_ack_blks() 1469 static u8 __tipc_build_gap_ack_blks(struct tipc_gap_ack_blks *ga, in __tipc_build_gap_ack_blks() argument 1472 struct tipc_gap_ack *gacks = &ga->gacks[start_index]; in __tipc_build_gap_ack_blks() 1519 struct tipc_gap_ack_blks *ga; in tipc_build_gap_ack_blks() local 1522 ga = (struct tipc_gap_ack_blks *)msg_data(hdr); in tipc_build_gap_ack_blks() 1528 ga->bgack_cnt = __tipc_build_gap_ack_blks(ga, bcl, 0); in tipc_build_gap_ack_blks() 1532 ga->ugack_cnt = (msg_seq_gap(hdr)) ? in tipc_build_gap_ack_blks() [all …]
|
H A D | link.h | 145 u16 tipc_get_gap_ack_blks(struct tipc_gap_ack_blks **ga, struct tipc_link *l, 148 struct tipc_gap_ack_blks *ga,
|
H A D | bcast.c | 503 struct tipc_gap_ack_blks *ga; in tipc_bcast_sync_rcv() local 513 tipc_get_gap_ack_blks(&ga, l, hdr, false); in tipc_bcast_sync_rcv() 517 msg_bc_gap(hdr), ga, &xmitq, in tipc_bcast_sync_rcv()
|
/openbmc/qemu/linux-user/ |
H A D | elfload.c | 2753 static bool pgb_try_mmap_set(const PGBAddrs *ga, uintptr_t base, uintptr_t brk) in pgb_try_mmap_set() argument 2755 for (int i = ga->nbounds - 1; i >= 0; --i) { in pgb_try_mmap_set() 2756 if (pgb_try_mmap_skip_brk(ga->bounds[i][0] + base, in pgb_try_mmap_set() 2757 ga->bounds[i][1] + base, in pgb_try_mmap_set() 2774 static bool pgb_addr_set(PGBAddrs *ga, abi_ulong guest_loaddr, in pgb_addr_set() argument 2792 memset(ga, 0, sizeof(*ga)); in pgb_addr_set() 2796 ga->bounds[n][0] = try_identity ? mmap_min_addr : 0; in pgb_addr_set() 2797 ga->bounds[n][1] = reserved_va; in pgb_addr_set() 2803 ga->bounds[n][0] = 0; in pgb_addr_set() 2804 ga->bounds[n][1] = LO_COMMPAGE + TARGET_PAGE_SIZE - 1; in pgb_addr_set() [all …]
|
/openbmc/u-boot/drivers/i2c/ |
H A D | fsl_i2c.c | 133 ushort a, b, ga, gb; in set_i2c_bus_speed() local 151 for (ga = 0x4, a = 10; a <= 30; ga++, a += 2) { in set_i2c_bus_speed() 160 bin_ga = (ga & 0x3) | ((ga & 0x4) << 3); in set_i2c_bus_speed() 166 debug("ga: 0x%x, gb: 0x%x, ", ga, gb); in set_i2c_bus_speed()
|
/openbmc/qemu/qga/ |
H A D | meson.build | 122 qga = executable('qemu-ga', qga_ss.sources() + qga_objs, 156 input: files('installer/qemu-ga.wxs'), 157 output: 'qemu-ga-@0@.msi'.format(host_arch), 180 alias_target('qemu-ga', all_qga)
|
/openbmc/qemu/tests/data/ |
H A D | test-qga-os-release | 1 ID=qemu-ga-test
|
H A D | test-qga-config | 5 pidfile=/var/foo/qemu-ga.pid
|
/openbmc/linux/include/linux/platform_data/ |
H A D | apds990x.h | 36 int ga; member
|
/openbmc/qemu/contrib/systemd/ |
H A D | qemu-guest-agent.service | 7 ExecStart=-/usr/bin/qemu-ga
|
/openbmc/qemu/docs/ |
H A D | meson.build | 48 'qemu-ga.8': (have_ga ? 'man8' : ''), 49 'qemu-ga-ref.7': (have_ga ? 'man7' : ''),
|
/openbmc/linux/arch/powerpc/perf/ |
H A D | hv-common.c | 35 caps->ga = !!(arg.caps.capability_mask & HV_GPCI_CM_GA); in hv_perf_caps_get()
|
H A D | hv-common.h | 11 ga:1, member
|
/openbmc/openbmc-test-automation/lib/ |
H A D | obmc_boot_test.py | 22 import gen_arg as ga namespace 1191 if ga.psutil_imported: 1192 ga.terminate_descendants() 1239 if ga.psutil_imported: 1240 ga.terminate_descendants() 1317 ga.set_term_options(
|
/openbmc/linux/drivers/iio/light/ |
H A D | us5182d.c | 122 u32 ga; member 316 result = ret * data->ga / US5182D_GA_RESOLUTION; in us5182d_get_als() 764 &data->ga)) in us5182d_get_platform_data() 765 data->ga = US5182D_GA_RESOLUTION; in us5182d_get_platform_data()
|
/openbmc/linux/net/appletalk/ |
H A D | ddp.c | 499 struct sockaddr_at *ga = (struct sockaddr_at *)&r->rt_gateway; in atrtr_create() local 511 (!devhint && ga->sat_family != AF_APPLETALK)) in atrtr_create() 534 ntohs(ga->sat_addr.s_net) >= in atrtr_create() 536 ntohs(ga->sat_addr.s_net) <= in atrtr_create() 540 if (ga->sat_addr.s_net == iface->address.s_net && in atrtr_create() 541 ga->sat_addr.s_node == iface->address.s_node) in atrtr_create() 569 rt->gateway = ga->sat_addr; in atrtr_create()
|
/openbmc/openbmc/poky/meta/recipes-devtools/qemu/qemu/ |
H A D | qemu-guest-agent.init | 11 NAME=qemu-ga
|