From: Rick Jones <rick.jones2@hp.com>
To: Eric Dumazet <eric.dumazet@gmail.com>
Cc: "David S. Miller" <davem@davemloft.net>,
Linux Netdev List <netdev@vger.kernel.org>
Subject: Re: [RFC net-next-2.6] net: speedup sk_wake_async()
Date: Tue, 06 Oct 2009 17:42:15 -0700 [thread overview]
Message-ID: <4ACBE3E7.60404@hp.com> (raw)
In-Reply-To: <4ACBCDD8.5000306@gmail.com>
Eric Dumazet wrote:
> Latency works, part 1
>
>
> An incoming datagram must bring into cpu cache *lot* of cache lines,
> in particular : (other parts omitted (hash chains, ip route cache...))
>
> On 32bit arches :
How about 64-bit?
> offsetof(struct sock, sk_rcvbuf) =0x30 (read)
> offsetof(struct sock, sk_lock) =0x34 (rw)
>
> offsetof(struct sock, sk_sleep) =0x50 (read)
> offsetof(struct sock, sk_rmem_alloc) =0x64 (rw)
> offsetof(struct sock, sk_receive_queue)=0x74 (rw)
>
> offsetof(struct sock, sk_forward_alloc)=0x98 (rw)
>
> offsetof(struct sock, sk_callback_lock)=0xcc (rw)
> offsetof(struct sock, sk_drops) =0xd8 (read if we add dropcount support, rw if frame dropped)
> offsetof(struct sock, sk_filter) =0xf8 (read)
>
> offsetof(struct sock, sk_socket) =0x138 (read)
>
> offsetof(struct sock, sk_data_ready) =0x15c (read)
>
>
> We can avoid sk->sk_socket and socket->fasync_list referencing on sockets
> with no fasync() structures. (socket->fasync_list ptr is probably already in cache
> because it shares a cache line with socket->wait, ie location pointed by sk->sk_sleep)
>
> This avoids one cache line load per incoming packet for common cases (no fasync())
>
> We can leave (or even move in a future patch) sk->sk_socket in a cold location
>
> Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Got any netperf service demand changes?
rick jones
next prev parent reply other threads:[~2009-10-07 0:51 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-10-06 23:08 [RFC net-next-2.6] net: speedup sk_wake_async() Eric Dumazet
2009-10-07 0:28 ` David Miller
2009-10-07 0:42 ` Rick Jones [this message]
2009-10-07 3:37 ` Eric Dumazet
2009-10-07 4:43 ` [PATCH] udp: extend hash tables to 256 slots Eric Dumazet
2009-10-07 5:29 ` David Miller
2009-10-07 5:33 ` Eric Dumazet
2009-10-07 5:35 ` David Miller
2009-10-07 10:37 ` [PATCH net-next-2.6] udp: dynamically size hash tables at boot time Eric Dumazet
2009-10-07 10:47 ` David Miller
2009-10-08 5:01 ` David Miller
2009-10-07 15:53 ` [RFC net-next-2.6] net: speedup sk_wake_async() Rick Jones
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4ACBE3E7.60404@hp.com \
--to=rick.jones2@hp.com \
--cc=davem@davemloft.net \
--cc=eric.dumazet@gmail.com \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).