Home
last modified time | relevance | path

Searched refs:rt2 (Results 1 – 8 of 8) sorted by relevance

/linux/net/ipv6/
H A Dmip6.c291 struct rt2_hdr *rt2 = (struct rt2_hdr *)skb->data; in mip6_rthdr_input() local
292 int err = rt2->rt_hdr.nexthdr; in mip6_rthdr_input()
309 struct rt2_hdr *rt2; in mip6_rthdr_output() local
318 rt2 = (struct rt2_hdr *)skb_transport_header(skb); in mip6_rthdr_output()
319 rt2->rt_hdr.nexthdr = nexthdr; in mip6_rthdr_output()
320 rt2->rt_hdr.hdrlen = (x->props.header_len >> 3) - 1; in mip6_rthdr_output()
321 rt2->rt_hdr.type = IPV6_SRCRT_TYPE_2; in mip6_rthdr_output()
322 rt2->rt_hdr.segments_left = 1; in mip6_rthdr_output()
323 memset(&rt2->reserved, 0, sizeof(rt2->reserved)); in mip6_rthdr_output()
325 WARN_ON(rt2->rt_hdr.hdrlen != 2); in mip6_rthdr_output()
[all …]
/linux/net/ipv4/
H A Dicmp.c502 struct rtable *rt, *rt2; in icmp_route_lookup() local
525 rt2 = rt; in icmp_route_lookup()
531 if (rt != rt2) in icmp_route_lookup()
547 rt2 = __ip_route_output_key(net, &fl4_dec); in icmp_route_lookup()
548 if (IS_ERR(rt2)) in icmp_route_lookup()
549 err = PTR_ERR(rt2); in icmp_route_lookup()
555 rt2 = ip_route_output_key(net, &fl4_2); in icmp_route_lookup()
556 if (IS_ERR(rt2)) { in icmp_route_lookup()
557 err = PTR_ERR(rt2); in icmp_route_lookup()
563 dscp, rt2->dst.dev) ? -EINVAL : 0; in icmp_route_lookup()
[all …]
/linux/net/mctp/test/
H A Droute-test.c1206 struct mctp_test_route *rt1, *rt2; in mctp_test_route_gw_lookup() local
1217 rt2 = mctp_test_create_route_gw(&init_net, dev->mdev->net, 10, 9, 0); in mctp_test_route_gw_lookup()
1218 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, rt2); in mctp_test_route_gw_lookup()
1229 mctp_test_route_destroy(test, rt2); in mctp_test_route_gw_lookup()
1236 struct mctp_test_route *rt1, *rt2; in mctp_test_route_gw_loop() local
1247 rt2 = mctp_test_create_route_gw(&init_net, dev->mdev->net, 10, 9, 0); in mctp_test_route_gw_loop()
1248 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, rt2); in mctp_test_route_gw_loop()
1254 mctp_test_route_destroy(test, rt2); in mctp_test_route_gw_loop()
1293 struct mctp_test_route *rt1, *rt2, *rt3; in mctp_test_route_gw_mtu() local
1310 rt2 = mctp_test_create_route_gw(&init_net, netid, 10, 9, mtus->gw); in mctp_test_route_gw_mtu()
[all …]
/linux/net/mpls/
H A Daf_mpls.c2583 struct mpls_route *rt0 = NULL, *rt2 = NULL; in resize_platform_label_table() local
2613 rt2 = mpls_rt_alloc(1, lo->addr_len, 0); in resize_platform_label_table()
2614 if (IS_ERR(rt2)) in resize_platform_label_table()
2617 rt2->rt_nh->nh_dev = lo; in resize_platform_label_table()
2618 netdev_hold(lo, &rt2->rt_nh->nh_dev_tracker, GFP_KERNEL); in resize_platform_label_table()
2619 rt2->rt_protocol = RTPROT_KERNEL; in resize_platform_label_table()
2620 rt2->rt_payload_type = MPT_IPV6; in resize_platform_label_table()
2621 rt2->rt_ttl_propagate = MPLS_TTL_PROP_DEFAULT; in resize_platform_label_table()
2622 rt2->rt_nh->nh_via_table = NEIGH_LINK_TABLE; in resize_platform_label_table()
2623 rt2->rt_nh->nh_via_alen = lo->addr_len; in resize_platform_label_table()
[all …]
/linux/net/netfilter/
H A Dnf_conntrack_h323_main.c684 struct rtable *rt1, *rt2; in callforward_do_filter() local
693 if (!nf_ip_route(net, (struct dst_entry **)&rt2, in callforward_do_filter()
696 rt_nexthop(rt2, fl2.daddr) && in callforward_do_filter()
697 rt1->dst.dev == rt2->dst.dev) in callforward_do_filter()
699 dst_release(&rt2->dst); in callforward_do_filter()
707 struct rt6_info *rt1, *rt2; in callforward_do_filter() local
717 if (!nf_ip6_route(net, (struct dst_entry **)&rt2, in callforward_do_filter()
720 rt6_nexthop(rt2, &fl2.daddr)) && in callforward_do_filter()
721 rt1->dst.dev == rt2->dst.dev) in callforward_do_filter()
723 dst_release(&rt2->dst); in callforward_do_filter()
/linux/arch/arm/probes/kprobes/
H A Dactions-thumb.c163 int rt2 = (insn >> 8) & 0xf; in t32_emulate_ldrdstrd() local
167 register unsigned long rt2v asm("r1") = regs->uregs[rt2]; in t32_emulate_ldrdstrd()
181 regs->uregs[rt2] = rt2v; in t32_emulate_ldrdstrd()
/linux/lib/crc/mips/
H A Dcrc32.h17 _ASM_MACRO_3R(OP, rt, rs, rt2, \
/linux/net/mctp/
H A Droute.c877 struct mctp_route *rt2) in mctp_rt_compare_exact() argument
880 return mctp_route_netid(rt1) == mctp_route_netid(rt2) && in mctp_rt_compare_exact()
881 rt1->min == rt2->min && in mctp_rt_compare_exact()
882 rt1->max == rt2->max; in mctp_rt_compare_exact()