prequeue receive queue backlog queue

prequeue和backlog和receive

5.6 TCP prequeue

http://blog.csdn.net/u011130578/article/details/44814201

tcp_recvmsg 函数详解

http://blog.csdn.net/mrpre/article/details/33347221

 

Implementation of Transmission Control Protocol in Linux

https://mafiadoc.com/implementation-of-transmission-control-protocol-in-linux_59d644e41723ddf8309661b4.html

https://blog.csdn.net/lmjjw/article/details/9992253

linux 内核tcp接收数据的实现

http://blog.csdn.net/dog250/

https://people.cs.clemson.edu/~westall/853/notes/

内核中的TCP的追踪分析-20-TCP(IPV4)的服务器端数据的接收-续 

http://bbs.chinaunix.net/thread-4114007-3-1.html

http://blog.chinaunix.net/uid-7960587-id-2035574.html

http://linux-kernel.2935.n7.nabble.com/TCP-prequeue-performance-td13885.html

ftp://ftp.ee.lbl.gov/email/vanj.93sep07.txt

内核中的TCP的追踪分析-20-TCP(IPV4)的服务器端数据的接收-续

http://linux.chinaunix.net/techdoc/net/2008/11/29/1048972.shtml

https://people.cs.clemson.edu/~westall/853/notes/tcprecv.pdf

http://ai2-s2-pdfs.s3.amazonaws.com/0bcc/68abbf04f946df4ab630e298289dc640c085.pdf

http://lkml.iu.edu/hypermail/linux/kernel/0506.1/2007.html

http://www.linuxvox.com/2009/11/what-is-the-linux-kernel-parameter-tcp_low_latency/

tcp三个接收队列

http://abcdxyzk.github.io/blog/2015/05/11/kernel-net-tcp_queue/

http://blog.csdn.net/scdxmoe/article/details/8175076

评价linux协议栈tcp实现中的prequeue

http://linux.chinaunix.net/techdoc/net/2008/11/29/1048972.shtml

sk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
也就是通过sk_prot这个钩子结构转挂入的,那么我再回忆一下
http://blog.chinaunix.net/u2/64681/showart.php?id=1360583
那章节中是设置sk_prot的钩入的是tcp_prot结构,我们上一节也提到过个结构变量,我们看其相关部分
struct proto tcp_prot = {
。。。。。。
.backlog_rcv        = tcp_v4_do_rcv,
。。。。。。
}
至于tcp_v4_do_rcv ()函数我们在
http://blog.chinaunix.net/u2/64681/showart.php?id=1656780

http://blog.csdn.net/scdxmoe/article/details/8175076

http://abcdxyzk.github.io/blog/2015/05/11/kernel-net-tcp_queue/

http://blog.chinaunix.net/uid-30186870-id-5116625.html

http://blog.csdn.net/dog250/article/details/5464513

http://lxr.free-electrons.com/source/include/net/sock.h#L888

http://linux.chinaunix.net/techdoc/net/2008/03/29/987849.shtml

 

posted on   暖风的风  阅读(499)  评论(0编辑  收藏  举报

编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· .NET周刊【3月第1期 2025-03-02】
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器

导航

点击右上角即可分享
微信分享提示