[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <D3F292ADF945FB49B35E96C94C2061B91257D61B@nsmail.netscout.com>
Date: Tue, 5 Jul 2011 12:03:29 -0400
From: "Loke, Chetan" <Chetan.Loke@...scout.com>
To: "Eric Dumazet" <eric.dumazet@...il.com>,
"Victor Julien" <victor@...iniac.net>
Cc: "David Miller" <davem@...emloft.net>, <netdev@...r.kernel.org>
Subject: RE: [PATCH 2/2] packet: Add fanout support.
> -----Original Message-----
> From: netdev-owner@...r.kernel.org [mailto:netdev-
> owner@...r.kernel.org] On Behalf Of Eric Dumazet
> Sent: July 05, 2011 3:00 AM
> To: Victor Julien
> Cc: David Miller; netdev@...r.kernel.org
> Subject: Re: [PATCH 2/2] packet: Add fanout support.
>
> Le mardi 05 juillet 2011 à 08:56 +0200, Victor Julien a écrit :
>
> > Is this still also true for IP fragments?
> >
>
> This point was already raised. IP fragments have rxhash = 0, obviously,
> since we dont have full information (source / destination ports for
> example)
Can we not do something like:
a = src_ip_addr;
b = dst_ip_addr;
if (ip_is_fragment(ip_hdr(skb)))
c = ip_hdr->id;
else
c = src_port | dest_port ; /* port_32 etc - Similar to what we have today */
/* swap a/b etc */
jhash3_words(a,b,c);
Chetan Loke
Powered by blists - more mailing lists