提交 e4cbb02a 编写于 作者: E Eric Dumazet 提交者: David S. Miller

net: add a prefetch in socket backlog processing

TCP or UDP stacks have big enough latencies that prefetching next
pointer is worth it.
Signed-off-by: NEric Dumazet <edumazet@google.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 5dac94e1
...@@ -1700,6 +1700,7 @@ static void __release_sock(struct sock *sk) ...@@ -1700,6 +1700,7 @@ static void __release_sock(struct sock *sk)
do { do {
struct sk_buff *next = skb->next; struct sk_buff *next = skb->next;
prefetch(next);
WARN_ON_ONCE(skb_dst_is_noref(skb)); WARN_ON_ONCE(skb_dst_is_noref(skb));
skb->next = NULL; skb->next = NULL;
sk_backlog_rcv(sk, skb); sk_backlog_rcv(sk, skb);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册