• Home
  • Raw
  • Download

Lines Matching refs:tip

393 static int arp_ignore(struct in_device *in_dev, __be32 sip, __be32 tip)  in arp_ignore()  argument
426 return !inet_confirm_addr(net, in_dev, sip, tip, scope); in arp_ignore()
429 static int arp_filter(__be32 sip, __be32 tip, struct net_device *dev) in arp_filter() argument
436 rt = ip_route_output(net, sip, tip, 0, l3mdev_master_ifindex_rcu(dev)); in arp_filter()
497 __be32 sip, __be32 tip) in arp_fwd_pvlan() argument
504 if (sip == tip) in arp_fwd_pvlan()
647 __be32 sip, __be32 tip, in arp_is_garp() argument
650 bool is_garp = tip == sip; in arp_is_garp()
684 __be32 sip, tip; in arp_process() local
758 memcpy(&tip, arp_ptr, 4); in arp_process()
763 if (ipv4_is_multicast(tip) || in arp_process()
764 (!IN_DEV_ROUTE_LOCALNET(in_dev) && ipv4_is_loopback(tip))) in arp_process()
772 if (sip == tip && IN_DEV_ORCONF(in_dev, DROP_GRATUITOUS_ARP)) in arp_process()
806 inet_addr_type_dev_table(net, dev, tip) == RTN_LOCAL && in arp_process()
807 !arp_ignore(in_dev, sip, tip)) in arp_process()
808 arp_send_dst(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, in arp_process()
814 ip_route_input_noref(skb, tip, sip, 0, dev) == 0) { in arp_process()
822 dont_send = arp_ignore(in_dev, sip, tip); in arp_process()
824 dont_send = arp_filter(sip, tip, dev); in arp_process()
829 sip, dev, tip, sha, in arp_process()
839 arp_fwd_pvlan(in_dev, dev, rt, sip, tip) || in arp_process()
841 pneigh_lookup(&arp_tbl, net, &tip, dev, 0)))) { in arp_process()
850 sip, dev, tip, sha, in arp_process()
870 sip, tip, sha, tha); in arp_process()