[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4CF687F3.7030107@hp.com>
Date: Wed, 01 Dec 2010 12:37:55 -0500
From: Brian Haley <brian.haley@...com>
To: Eric Dumazet <eric.dumazet@...il.com>
CC: David Miller <davem@...emloft.net>, netdev <netdev@...r.kernel.org>
Subject: Re: [PATCH net-next-2.6] net: optimize INET input path further
On 12/01/2010 12:04 AM, Eric Dumazet wrote:
> struct sock_common {
> - /*
> - * first fields are not copied in sock_copy()
> + /* skc_daddr and skc_rcv_saddr must be grouped :
> + * cf INET_MATCH() and INET_TW_MATCH()
> */
> - union {
> - struct hlist_node skc_node;
> - struct hlist_nulls_node skc_nulls_node;
> - };
> - atomic_t skc_refcnt;
> - int skc_tx_queue_mapping;
> + __be32 skc_daddr;
> + __be32 skc_rcv_saddr;
>
> union {
> unsigned int skc_hash;
Putting IPv4 addresses in sock_common doesn't make it so common anymore :)
Is it possible to make this a union so other address families like IPv6
can benefit from this as well, or will that blow the whole cache line
effect you were trying to achieve?
-Brian
--
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