/openbmc/qemu/tests/qemu-iotests/ |
H A D | 122 | 59 -o backing_fmt=$IMGFMT "$TEST_IMG" "$TEST_IMG".orig 60 $QEMU_IMG map "$TEST_IMG".orig | _filter_qemu_img_map 71 "$TEST_IMG" "$TEST_IMG".orig 72 $QEMU_IO -c "read -P 0 0 3M" "$TEST_IMG".orig 2>&1 | _filter_qemu_io | _filter_testdir 74 "$TEST_IMG" "$TEST_IMG".orig 75 $QEMU_IO -c "read -P 0 0 3M" "$TEST_IMG".orig 2>&1 | _filter_qemu_io | _filter_testdir 79 "$TEST_IMG" "$TEST_IMG".orig 80 $QEMU_IO -c "read -P 0 0 3M" "$TEST_IMG".orig 2>&1 | _filter_qemu_io | _filter_testdir 82 "$TEST_IMG" "$TEST_IMG".orig 83 $QEMU_IO -c "read -P 0 0 3M" "$TEST_IMG".orig 2>&1 | _filter_qemu_io | _filter_testdir [all …]
|
/openbmc/linux/tools/testing/selftests/bpf/progs/ |
H A D | connect_force_port6.c | 32 struct svc_addr *orig; in connect6() local 44 orig = bpf_sk_storage_get(&service_mapping, ctx->sk, 0, in connect6() 46 if (!orig) in connect6() 49 orig->addr[0] = ctx->user_ip6[0]; in connect6() 50 orig->addr[1] = ctx->user_ip6[1]; in connect6() 51 orig->addr[2] = ctx->user_ip6[2]; in connect6() 52 orig->addr[3] = ctx->user_ip6[3]; in connect6() 53 orig->port = ctx->user_port; in connect6() 84 struct svc_addr *orig; in getpeername6() local 91 orig = bpf_sk_storage_get(&service_mapping, ctx->sk, 0, 0); in getpeername6() [all …]
|
H A D | connect_force_port4.c | 33 struct svc_addr *orig; in connect4() local 45 orig = bpf_sk_storage_get(&service_mapping, ctx->sk, 0, in connect4() 47 if (!orig) in connect4() 50 orig->addr = ctx->user_ip4; in connect4() 51 orig->port = ctx->user_port; in connect4() 76 struct svc_addr *orig; in getpeername4() local 83 orig = bpf_sk_storage_get(&service_mapping, ctx->sk, 0, 0); in getpeername4() 84 if (orig) { in getpeername4() 85 ctx->user_ip4 = orig->addr; in getpeername4() 86 ctx->user_port = orig->port; in getpeername4()
|
/openbmc/linux/drivers/hwtracing/coresight/ |
H A D | coresight-sysfs.c | 73 if (!info->orig || !info->target || in coresight_add_sysfs_link() 76 if (!info->orig->has_conns_grp || !info->target->has_conns_grp) in coresight_add_sysfs_link() 80 ret = sysfs_add_link_to_group(&info->orig->dev.kobj, in coresight_add_sysfs_link() 90 &info->orig->dev.kobj, in coresight_add_sysfs_link() 95 sysfs_remove_link_from_group(&info->orig->dev.kobj, in coresight_add_sysfs_link() 99 info->orig->nr_links++; in coresight_add_sysfs_link() 111 if (!info->orig || !info->target || in coresight_remove_sysfs_link() 115 sysfs_remove_link_from_group(&info->orig->dev.kobj, in coresight_remove_sysfs_link() 123 info->orig->nr_links--; in coresight_remove_sysfs_link() 143 int coresight_make_links(struct coresight_device *orig, in coresight_make_links() argument [all …]
|
/openbmc/qemu/tests/tcg/x86_64/ |
H A D | cmpxchg.c | 5 static unsigned long test_cmpxchgb(unsigned long orig) in test_cmpxchgb() argument 8 mem = orig; in test_cmpxchgb() 11 : [ cmp ] "r"(0x77), "a"(orig)); in test_cmpxchgb() 15 static unsigned long test_cmpxchgw(unsigned long orig) in test_cmpxchgw() argument 18 mem = orig; in test_cmpxchgw() 21 : [ cmp ] "r"(0x7777), "a"(orig)); in test_cmpxchgw() 25 static unsigned long test_cmpxchgl(unsigned long orig) in test_cmpxchgl() argument 28 mem = orig; in test_cmpxchgl() 31 : [ cmp ] "r"(0x77777777u), "a"(orig)); in test_cmpxchgl()
|
/openbmc/linux/lib/ |
H A D | test_bitmap.c | 743 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit_wrap() 747 bitmap_zero(orig, 500); in test_for_each_set_bit_wrap() 751 bitmap_set(orig, bit, 1); in test_for_each_set_bit_wrap() 754 bitmap_set(orig, 100, 50); in test_for_each_set_bit_wrap() 759 for_each_set_bit_wrap(bit, orig, 500, wr) in test_for_each_set_bit_wrap() 762 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit_wrap() 768 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit() 772 bitmap_zero(orig, 500); in test_for_each_set_bit() 777 bitmap_set(orig, bit, 1); in test_for_each_set_bit() 780 bitmap_set(orig, 100, 50); in test_for_each_set_bit() [all …]
|
H A D | fortify_kunit.c | 148 void *orig; \ 187 orig = kmalloc(alloc_size, gfp); \ 188 KUNIT_EXPECT_TRUE(test, orig != NULL); \ 190 krealloc(orig, (alloc_size) * 2, gfp), \ 192 orig = kmalloc(alloc_size, gfp); \ 193 KUNIT_EXPECT_TRUE(test, orig != NULL); \ 195 krealloc_array(orig, 1, (alloc_size) * 2, gfp), \ 197 orig = kmalloc(alloc_size, gfp); \ 198 KUNIT_EXPECT_TRUE(test, orig != NULL); \ 200 krealloc_array(orig, (alloc_size) * 2, 1, gfp), \ [all …]
|
/openbmc/qemu/include/qemu/ |
H A D | stats64.h | 55 uint64_t orig = qatomic_read__nocheck(&s->value); in stat64_min() local 56 while (orig > value) { in stat64_min() 57 orig = qatomic_cmpxchg__nocheck(&s->value, orig, value); in stat64_min() 63 uint64_t orig = qatomic_read__nocheck(&s->value); in stat64_max() local 64 while (orig < value) { in stat64_max() 65 orig = qatomic_cmpxchg__nocheck(&s->value, orig, value); in stat64_max() 94 uint32_t orig = s->low; in stat64_add() local 95 uint32_t result = orig + low; in stat64_add() 110 old = qatomic_cmpxchg(&s->low, orig, result); in stat64_add() 111 if (orig == old) { in stat64_add()
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/uml-utilities/uml-utilities-20040406/ |
H A D | fix-ldflags.patch | 19 diff -uNr tools.orig/jailtest/Makefile tools/jailtest/Makefile 20 --- tools.orig/jailtest/Makefile 2017-04-03 15:56:02.068461380 +0200 31 diff -uNr tools.orig/moo/Makefile tools/moo/Makefile 32 --- tools.orig/moo/Makefile 2017-04-03 15:56:02.068461380 +0200 47 diff -uNr tools.orig/port-helper/Makefile tools/port-helper/Makefile 48 --- tools.orig/port-helper/Makefile 2017-04-03 15:56:02.068461380 +0200 59 diff -uNr tools.orig/tunctl/Makefile tools/tunctl/Makefile 60 --- tools.orig/tunctl/Makefile 2017-04-03 15:56:02.068461380 +0200 71 diff -uNr tools.orig/uml_net/Makefile tools/uml_net/Makefile 72 --- tools.orig/uml_net/Makefile 2017-04-03 15:56:02.068461380 +0200 [all …]
|
H A D | unstrip.patch | 9 --- tools.orig/jailtest/Makefile 2003-02-07 20:10:27.000000000 -0800 19 --- tools.orig/mconsole/Makefile 2012-09-05 12:05:09.869607043 -0700 29 --- tools.orig/moo/Makefile 2003-06-26 09:27:00.000000000 -0700 39 --- tools.orig/port-helper/Makefile 2003-02-07 20:05:31.000000000 -0800 49 --- tools.orig/tunctl/Makefile 2003-02-07 20:05:04.000000000 -0800 59 --- tools.orig/uml_net/Makefile 2003-02-07 20:04:55.000000000 -0800 69 --- tools.orig/uml_router/Makefile 2003-02-07 20:04:39.000000000 -0800 79 --- tools.orig/watchdog/Makefile 2003-02-07 20:04:25.000000000 -0800
|
/openbmc/qemu/ui/ |
H A D | vnc-jobs.c | 179 static void vnc_async_encoding_start(VncState *orig, VncState *local) in vnc_async_encoding_start() argument 185 local->vnc_encoding = orig->vnc_encoding; in vnc_async_encoding_start() 186 local->features = orig->features; in vnc_async_encoding_start() 187 local->vd = orig->vd; in vnc_async_encoding_start() 188 local->lossy_rect = orig->lossy_rect; in vnc_async_encoding_start() 189 local->write_pixels = orig->write_pixels; in vnc_async_encoding_start() 190 local->client_pf = orig->client_pf; in vnc_async_encoding_start() 191 local->client_be = orig->client_be; in vnc_async_encoding_start() 192 local->tight = orig->tight; in vnc_async_encoding_start() 193 local->zlib = orig->zlib; in vnc_async_encoding_start() [all …]
|
/openbmc/linux/tools/lib/perf/ |
H A D | cpumap.c | 404 struct perf_cpu_map *perf_cpu_map__merge(struct perf_cpu_map *orig, in perf_cpu_map__merge() argument 412 if (perf_cpu_map__is_subset(orig, other)) in perf_cpu_map__merge() 413 return orig; in perf_cpu_map__merge() 414 if (perf_cpu_map__is_subset(other, orig)) { in perf_cpu_map__merge() 415 perf_cpu_map__put(orig); in perf_cpu_map__merge() 419 tmp_len = __perf_cpu_map__nr(orig) + __perf_cpu_map__nr(other); in perf_cpu_map__merge() 426 while (i < __perf_cpu_map__nr(orig) && j < __perf_cpu_map__nr(other)) { in perf_cpu_map__merge() 427 if (__perf_cpu_map__cpu(orig, i).cpu <= __perf_cpu_map__cpu(other, j).cpu) { in perf_cpu_map__merge() 428 if (__perf_cpu_map__cpu(orig, i).cpu == __perf_cpu_map__cpu(other, j).cpu) in perf_cpu_map__merge() 430 tmp_cpus[k++] = __perf_cpu_map__cpu(orig, i++); in perf_cpu_map__merge() [all …]
|
/openbmc/linux/net/batman-adv/ |
H A D | multicast.c | 1204 if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig, vid)) { in batadv_mcast_forw_send_orig() 1528 struct batadv_orig_node *orig, in batadv_mcast_want_unsnoop_update() argument 1531 struct hlist_node *node = &orig->mcast_want_all_unsnoopables_node; in batadv_mcast_want_unsnoop_update() 1534 lockdep_assert_held(&orig->mcast_handler_lock); in batadv_mcast_want_unsnoop_update() 1538 !(orig->mcast_flags & BATADV_MCAST_WANT_ALL_UNSNOOPABLES)) { in batadv_mcast_want_unsnoop_update() 1549 orig->mcast_flags & BATADV_MCAST_WANT_ALL_UNSNOOPABLES) { in batadv_mcast_want_unsnoop_update() 1573 struct batadv_orig_node *orig, in batadv_mcast_want_ipv4_update() argument 1576 struct hlist_node *node = &orig->mcast_want_all_ipv4_node; in batadv_mcast_want_ipv4_update() 1579 lockdep_assert_held(&orig->mcast_handler_lock); in batadv_mcast_want_ipv4_update() 1583 !(orig->mcast_flags & BATADV_MCAST_WANT_ALL_IPV4)) { in batadv_mcast_want_ipv4_update() [all …]
|
/openbmc/linux/drivers/mtd/nand/ |
H A D | ecc.c | 529 struct nand_page_io_req *orig, *tweak; in nand_ecc_tweak_req() local 535 orig = &ctx->orig_req; in nand_ecc_tweak_req() 539 if (orig->datalen < nanddev_page_size(nand)) { in nand_ecc_tweak_req() 547 if (orig->ooblen < nanddev_per_page_oobsize(nand)) { in nand_ecc_tweak_req() 556 if (orig->type == NAND_PAGE_WRITE) { in nand_ecc_tweak_req() 558 memcpy((void *)tweak->databuf.out + orig->dataoffs, in nand_ecc_tweak_req() 559 orig->databuf.out, orig->datalen); in nand_ecc_tweak_req() 562 memcpy((void *)tweak->oobbuf.out + orig->ooboffs, in nand_ecc_tweak_req() 563 orig->oobbuf.out, orig->ooblen); in nand_ecc_tweak_req() 571 struct nand_page_io_req *orig, *tweak; in nand_ecc_restore_req() local [all …]
|
/openbmc/linux/arch/sparc/mm/ |
H A D | tlb.c | 113 pte_t *ptep, pte_t orig, int fullmm, in tlb_batch_add() argument 117 pte_dirty(orig)) { in tlb_batch_add() 118 unsigned long paddr, pfn = pte_pfn(orig); in tlb_batch_add() 143 tlb_batch_add_one(mm, vaddr, pte_exec(orig), hugepage_shift); in tlb_batch_add() 171 pmd_t orig, pmd_t pmd) in __set_pmd_acct() argument 176 if ((pmd_val(pmd) ^ pmd_val(orig)) & _PAGE_PMD_HUGE) { in __set_pmd_acct() 191 if (is_huge_zero_page(pmd_page(orig))) in __set_pmd_acct() 207 if (!pmd_none(orig)) { in __set_pmd_acct() 209 if (pmd_trans_huge(orig)) { in __set_pmd_acct() 210 pte_t orig_pte = __pte(pmd_val(orig)); in __set_pmd_acct() [all …]
|
/openbmc/linux/drivers/md/ |
H A D | dm-rq.c | 21 struct request *orig, *clone; member 83 unsigned int nr_bytes = info->orig->bi_iter.bi_size; in end_clone_bio() 119 blk_update_request(tio->orig, BLK_STS_OK, tio->completed); in end_clone_bio() 127 static void rq_end_stats(struct mapped_device *md, struct request *orig) in rq_end_stats() argument 130 struct dm_rq_target_io *tio = tio_from_request(orig); in rq_end_stats() 133 dm_stats_account_io(&md->stats, rq_data_dir(orig), in rq_end_stats() 134 blk_rq_pos(orig), tio->n_sectors, true, in rq_end_stats() 161 struct request *rq = tio->orig; in dm_end_request() 191 struct request *rq = tio->orig; in dm_requeue_original_request() 302 dm_complete_request(tio->orig, error); in end_clone_request() [all …]
|
/openbmc/linux/drivers/net/wireless/realtek/rtw88/ |
H A D | hci.h | 191 u32 orig; in rtw_read32_mask() local 194 orig = rtw_read32(rtwdev, addr); in rtw_read32_mask() 195 ret = (orig & mask) >> shift; in rtw_read32_mask() 204 u32 orig; in rtw_read16_mask() local 207 orig = rtw_read16(rtwdev, addr); in rtw_read16_mask() 208 ret = (orig & mask) >> shift; in rtw_read16_mask() 217 u32 orig; in rtw_read8_mask() local 220 orig = rtw_read8(rtwdev, addr); in rtw_read8_mask() 221 ret = (orig & mask) >> shift; in rtw_read8_mask() 230 u32 orig; in rtw_write32_mask() local [all …]
|
/openbmc/linux/tools/lib/perf/include/internal/ |
H A D | rc_check.h | 63 struct original_##struct_name *orig; \ 77 result ? (result->orig = object, result) \ 83 #define RC_CHK_ACCESS(object) object->orig 88 zfree(&object->orig); \ 93 #define RC_CHK_GET(result, object) ADD_RC_CHK(result, (object ? object->orig : NULL)) 99 object->orig = NULL; \
|
/openbmc/linux/net/netfilter/ |
H A D | xt_DSCP.c | 76 u_int8_t orig, nv; in tos_tg() local 78 orig = ipv4_get_dsfield(iph); in tos_tg() 79 nv = (orig & ~info->tos_mask) ^ info->tos_value; in tos_tg() 81 if (orig != nv) { in tos_tg() 96 u_int8_t orig, nv; in tos_tg6() local 98 orig = ipv6_get_dsfield(iph); in tos_tg6() 99 nv = (orig & ~info->tos_mask) ^ info->tos_value; in tos_tg6() 101 if (orig != nv) { in tos_tg6()
|
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/ |
H A D | si.c | 2436 u32 data, orig; in si_program_aspm() local 2445 orig = data = RREG32_PCIE_PORT(PCIE_LC_N_FTS_CNTL); in si_program_aspm() 2448 if (orig != data) in si_program_aspm() 2451 orig = data = RREG32_PCIE_PORT(PCIE_LC_CNTL3); in si_program_aspm() 2453 if (orig != data) in si_program_aspm() 2456 orig = data = RREG32_PCIE(PCIE_P_CNTL); in si_program_aspm() 2458 if (orig != data) in si_program_aspm() 2461 orig = data = RREG32_PCIE_PORT(PCIE_LC_CNTL); in si_program_aspm() 2470 if (orig != data) in si_program_aspm() 2476 orig = data = si_pif_phy0_rreg(adev,PB0_PIF_PWRDOWN_0); in si_program_aspm() [all …]
|
/openbmc/linux/arch/mips/generic/ |
H A D | board-sead3.c | 184 unsigned int freq, orig, tick = 0; in sead3_measure_hpt_freq() local 189 orig = readl(status_reg) & 0x2; /* get original sample */ in sead3_measure_hpt_freq() 191 while ((readl(status_reg) & 0x2) == orig) in sead3_measure_hpt_freq() 193 orig = orig ^ 0x2; /* flip the bit */ in sead3_measure_hpt_freq() 200 while ((readl(status_reg) & 0x2) == orig) in sead3_measure_hpt_freq() 202 orig = orig ^ 0x2; /* flip the bit */ in sead3_measure_hpt_freq()
|
/openbmc/sdbusplus/test/message/ |
H A D | native_types.cpp | 60 auto orig = "str"s; in TEST() local 61 sdbusplus::message::object_path obj = orig; in TEST() 63 EXPECT_EQ(orig, out); in TEST() 68 auto orig = "str"s; in TEST() local 69 sdbusplus::message::object_path obj = orig; in TEST() 71 EXPECT_EQ(orig, out); in TEST()
|
/openbmc/linux/fs/netfs/ |
H A D | iterator.c | 36 ssize_t netfs_extract_user_iter(struct iov_iter *orig, size_t orig_len, in netfs_extract_user_iter() argument 50 if (WARN_ON_ONCE(!iter_is_ubuf(orig) && !iter_is_iovec(orig))) in netfs_extract_user_iter() 53 max_pages = iov_iter_npages(orig, INT_MAX); in netfs_extract_user_iter() 67 ret = iov_iter_extract_pages(orig, &pages, count, in netfs_extract_user_iter() 100 iov_iter_bvec(new, orig->data_source, bv, npages, orig_len - count); in netfs_extract_user_iter()
|
/openbmc/openbmc/poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/ |
H A D | expand_remote_port.patch | 3 diff -ruN tcp_wrappers_7.6.orig/eval.c tcp_wrappers_7.6/eval.c 4 --- tcp_wrappers_7.6.orig/eval.c 1995-01-30 19:51:46.000000000 +0100 35 diff -ruN tcp_wrappers_7.6.orig/hosts_access.5 tcp_wrappers_7.6/hosts_access.5 36 --- tcp_wrappers_7.6.orig/hosts_access.5 2004-11-04 13:17:45.000000000 +0100 47 diff -ruN tcp_wrappers_7.6.orig/percent_x.c tcp_wrappers_7.6/percent_x.c 48 --- tcp_wrappers_7.6.orig/percent_x.c 1994-12-28 17:42:38.000000000 +0100 59 diff -ruN tcp_wrappers_7.6.orig/tcpd.h tcp_wrappers_7.6/tcpd.h 60 --- tcp_wrappers_7.6.orig/tcpd.h 2004-11-04 13:17:45.000000000 +0100
|
/openbmc/linux/arch/arm/probes/kprobes/ |
H A D | opt-arm.c | 182 int arch_prepare_optimized_kprobe(struct optimized_kprobe *op, struct kprobe *orig) in NOKPROBE_SYMBOL() 189 if (!can_optimize(orig)) in NOKPROBE_SYMBOL() 222 (long)orig->addr + 8) & 0xfe000003; in NOKPROBE_SYMBOL() 239 BUG_ON(orig->ainsn.stack_space < 0); in NOKPROBE_SYMBOL() 241 stack_protect += orig->ainsn.stack_space; in NOKPROBE_SYMBOL() 260 orig->ainsn.kprobe_direct_exec = false; in NOKPROBE_SYMBOL() 261 if (can_kprobe_direct_exec(orig->ainsn.register_usage_flags)) { in NOKPROBE_SYMBOL() 273 code[TMPL_RESTORE_ORIGN_INSN] = __opcode_to_mem_arm(orig->opcode); in NOKPROBE_SYMBOL() 277 orig->ainsn.kprobe_direct_exec = true; in NOKPROBE_SYMBOL()
|