[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <Pine.LNX.4.58.1001172213550.10728@u.domain.uli>
Date: Sun, 17 Jan 2010 22:43:54 +0200 (EET)
From: Julian Anastasov <ja@....bg>
To: Octavian Purdila <opurdila@...acom.com>
cc: David Miller <davem@...emloft.net>, netdev@...r.kernel.org,
Laurent Chavey <chavey@...gle.com>
Subject: Re: [PATCH v2] ipv4: support for request type gratuitous ARP
Hello,
On Sun, 17 Jan 2010, Octavian Purdila wrote:
> On Sunday 17 January 2010 15:45:45 you wrote:
>
> > May be I'm missing something but the description and
> > the changed code do not match. You claim this patch now supports
> > dest mac ff:ff:ff:ff:ff:ff while without the patch the
> > 'skb->pkt_type != PACKET_HOST' check usually updates the
> > existing entry with state NUD_STALE (neigh_update). What
> Hi Julian,
>
> Thanks for looking at this patch ! You are indeed correct, we don't need to do anything special when we want to update an existing ARP entry.
>
> But I also want to be able to create a new ARP entry not only update an existing one (and we can do that with Linux today, but only with response type grat arp).
>
> How about this new version?
Looks correct to me. You will save some CPU cycles
if the 'arp->ar_op == htons(ARPOP_REQUEST)' check is not added.
May be you also need to change arp_accept in
Documentation/networking/ip-sysctl.txt to show that we do not
differentiate Gratuitous ARP requests from replies.
> [PATCH] ipv4: allow warming up the ARP cache with request type gratuitous ARP
>
> If the per device ARP_ACCEPT option is enabled, currently we only allow
> creating new ARP cache entries for response type gratuitous ARP.
>
> Allowing gratuitous ARP to create new ARP entries (not only to update
> existing ones) is useful when we want to avoid unnecessary delays for
> the first packet of a stream.
>
> This patch allows request type gratuitous ARP to create new ARP cache
> entries as well. This is useful when we want to warm-up the ARP cache
> entries for a large number of hosts on the same LAN.
>
> Signed-off-by: Octavian Purdila <opurdila@...acom.com>
> ---
> net/ipv4/arp.c | 3 ++-
> 1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/net/ipv4/arp.c b/net/ipv4/arp.c
> index 0787092..1940b4d 100644
> --- a/net/ipv4/arp.c
> +++ b/net/ipv4/arp.c
> @@ -907,7 +907,8 @@ static int arp_process(struct sk_buff *skb)
> devices (strip is candidate)
> */
> if (n == NULL &&
> - arp->ar_op == htons(ARPOP_REPLY) &&
> + (arp->ar_op == htons(ARPOP_REPLY) ||
> + (arp->ar_op == htons(ARPOP_REQUEST) && tip == sip)) &&
> inet_addr_type(net, sip) == RTN_UNICAST)
> n = __neigh_lookup(&arp_tbl, &sip, dev, 1);
> }
Regards
--
Julian Anastasov <ja@....bg>
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists