| /linux/tools/testing/selftests/bpf/progs/ |
| H A D | cpumask_success.c | 318 struct bpf_cpumask *mask1, *mask2, *dst1, *dst2; in BPF_PROG() local 323 if (!create_cpumask_set(&mask1, &mask2, &dst1, &dst2)) in BPF_PROG() 348 bpf_cpumask_xor(dst2, cast(mask1), cast(mask2)); in BPF_PROG() 349 if (!bpf_cpumask_equal(cast(dst1), cast(dst2))) { in BPF_PROG() 358 bpf_cpumask_release(dst2); in BPF_PROG() 365 struct bpf_cpumask *mask1, *mask2, *dst1, *dst2; in BPF_PROG() local 370 if (!create_cpumask_set(&mask1, &mask2, &dst1, &dst2)) in BPF_PROG() 400 bpf_cpumask_release(dst2); in BPF_PROG() 407 struct bpf_cpumask *mask1, *mask2, *dst1, *dst2; in BPF_PROG() local 413 if (!create_cpumask_set(&mask1, &mask2, &dst1, &dst2)) in BPF_PROG() [all...] |
| /linux/tools/testing/selftests/net/ |
| H A D | pmtu.sh | 1171 dst2="${prefix4}.${b_r2}.1" 1175 dst2="${prefix6}:${b_r2}::1" 1191 run_cmd ${ns_a} ${ping} -q -M want -i 0.1 -w 1 -s 1800 ${dst2} 1196 pmtu_2="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst2})" 1205 pmtu_2="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst2})" 1214 pmtu_2="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst2})" 1223 run_cmd ${ns_a} ${ping} -q -M want -i 0.1 -w 1 -s 1400 ${dst2} 1224 pmtu_2="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst2})" 1230 pmtu_2="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst2})" 1236 pmtu_2="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst2})" [all...] |
| /linux/net/ipv6/ |
| H A D | icmp.c | 359 struct dst_entry *dst, *dst2; in icmpv6_route_lookup() local 379 dst2 = dst; in icmpv6_route_lookup() 383 if (dst != dst2) in icmpv6_route_lookup() 396 err = ip6_dst_lookup(net, sk, &dst2, &fl2); in icmpv6_route_lookup() 400 dst2 = xfrm_lookup(net, dst2, flowi6_to_flowi(&fl2), sk, XFRM_LOOKUP_ICMP); in icmpv6_route_lookup() 401 if (!IS_ERR(dst2)) { in icmpv6_route_lookup() 403 dst = dst2; in icmpv6_route_lookup() 405 err = PTR_ERR(dst2); in icmpv6_route_lookup() 408 return dst2; in icmpv6_route_lookup()
|
| /linux/Documentation/bpf/ |
| H A D | cpumasks.rst | 291 struct bpf_cpumask *mask1, *mask2, *dst1, *dst2; 321 bpf_cpumask_xor(dst2, (const struct cpumask *)mask1, (const struct cpumask *)mask2); 323 (const struct cpumask *)dst2)) 331 bpf_cpumask_release(dst2);
|
| /linux/net/ipv4/ |
| H A D | icmp.c | 500 struct dst_entry *dst, *dst2; in icmp_route_lookup() local 589 dst2 = xfrm_lookup(net, &rt2->dst, flowi4_to_flowi(&fl4_dec), NULL, in icmp_route_lookup() 591 rt2 = dst_rtable(dst2); in icmp_route_lookup() 592 if (!IS_ERR(dst2)) { in icmp_route_lookup() 596 } else if (PTR_ERR(dst2) == -EPERM) { in icmp_route_lookup() 601 err = PTR_ERR(dst2); in icmp_route_lookup()
|
| /linux/mm/ |
| H A D | migrate.c | 1708 struct folio *folio, *folio2, *dst, *dst2; in migrate_folios_move() local 1714 dst2 = list_next_entry(dst, lru); in migrate_folios_move() 1746 dst = dst2; in migrate_folios_move() 1747 dst2 = list_next_entry(dst, lru); in migrate_folios_move() 1756 struct folio *folio, *folio2, *dst, *dst2; in migrate_folios_undo() local 1759 dst2 = list_next_entry(dst, lru); in migrate_folios_undo() 1769 dst = dst2; in migrate_folios_undo() 1770 dst2 = list_next_entry(dst, lru); in migrate_folios_undo()
|
| /linux/drivers/video/fbdev/core/ |
| H A D | svgalib.c | 242 u16 __iomem *dst2 = dst; in svga_tilecopy() local 244 fb_writew(fb_readw(src2), dst2); in svga_tilecopy() 247 dst2 += colstride; in svga_tilecopy()
|
| /linux/net/xfrm/ |
| H A D | xfrm_policy.c | 3652 struct dst_entry *dst2; in xfrm_out_fwd_icmp() local 3660 dst2 = xfrm_lookup(net, dst, &fl1, NULL, (XFRM_LOOKUP_QUEUE | XFRM_LOOKUP_ICMP)); in xfrm_out_fwd_icmp() 3662 if (IS_ERR(dst2)) in xfrm_out_fwd_icmp() 3665 if (dst2->xfrm) { in xfrm_out_fwd_icmp() 3667 dst = dst2; in xfrm_out_fwd_icmp() 3669 dst_release(dst2); in xfrm_out_fwd_icmp()
|