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

prequeue receive queue backlog queue的更多相关文章

  1. ZOJ2724 Windows Message Queue 裸queue的模拟

    题目要求FIFO #include<cstdio> #include<cstdlib> #include<iostream> #include<queue&g ...

  2. [Algorithms] Queue & Priority Queue

    In this lesson, you will learn how to create a queue in JavaScript. A queue is a first-in, first-out ...

  3. tcp 输入 prequeue以及backlog队列

    /*ipv4_specific是TCP传输层到网络层数据发送以及TCP建立过程的真正OPS, 在tcp_prot->init中被赋值给inet_connection_sock->icsk_ ...

  4. rabbitmq之back queue草稿

    申请队列rabbit_reader在收到消息后处理数据帧时,如果channel id不是0(0代表连接),则认为是channel相关方法. handle_frame(Type, Channel, Pa ...

  5. rabbitmq method之queue.declare

    queue.declare即申请队列,首先对队列名作处理,若未指定队列名则随机生成一个,然后查询数据库队列是否已经创建,若创建完成则会申请队列返回 handle_method(#'queue.decl ...

  6. 【c#】队列(Queue)和MSMQ(消息队列)的基础使用

    首先我们知道队列是先进先出的机制,所以在处理并发是个不错的选择.然后就写两个队列的简单应用. Queue 命名空间 命名空间:System.Collections,不在这里做过多的理论解释,这个东西非 ...

  7. ActiveMQ的queue以及topic两种消息处理机制分析

    1    queue与topic的技术特点对比 对比项 Topic Queue 概要 Publish Subscribe messaging 发布订阅消息 Point-to-Point 点对点 有无状 ...

  8. [Windows Azure] How to use the Queue Storage Service

    How to use the Queue Storage Service version 1.7 version 2.0 This guide will show you how to perform ...

  9. ActiveMQ5.0实战三:使用Spring发送,消费topic和queue消息

    实战一 , 实战二 介绍了ActiveMQ的基本概念和配置方式. 本篇将通过一个实例介绍使用spring发送,消费topic, queue类型消息的方法. 不懂topic和queue的google 之 ...

随机推荐

  1. iOS 应用上传所需 Icon图片大小

    iPhone-only Apps Include the following in your application's Resources group in the Xcode project: T ...

  2. [置顶] Zend Optimizer 和 Zend Debugger 同时安装

    下载地址: Zend Optimizer:  http://download.csdn.net/detail/wf120355/6479947 Zend Debugger: http://downlo ...

  3. vue 常见报错问题

    情况一:http://eslint.org/docs/rules/no-tabs  Unexpected tab character 解决方案:缩进是4个空格,而不是tab,设置indent 情况二 ...

  4. ViewPager切换动画效果改动

    比方我们点击向右button,希望左边的view移动过来,有个平移效果,可是用系统默认的ViewPager切换的时候,会一闪而过. 这是为什么呢? 由于viewpager外面事实上有个scrollvi ...

  5. HDU 5358 First One(枚举)

    这道题假设依照表达式一个个来算肯定超时,下午时候想了一个O(nlogn*logn)的算法.可是t了.由于这道题卡的很紧几百个例子,必须nlogn的算法才干够ac 回到这道题,考虑log(sum(i,j ...

  6. servlet ServletConfig ServletContext

    ServletConfig对象 在Servlet的配置文件中,可以使用一个或者多个<init-param>标签为servlet配置一些初始化参数. 当servlet配置了初始化参数后,we ...

  7. 彻底抛弃脚本录制,LR脚本之使用web_custom_request函数自定义http请求

    初学性能测试时候,第一步必学脚本录制,但一路下来各种录制失败.回放脚本失败的问题层出不穷,究其原因一是LR本身存在对测试环境的兼容性问题导致录制失败,更深层次的原因是录制者不清楚LR录制脚本的原理,或 ...

  8. zabbix对数据盘磁盘容量进行监控

    示例将数据盘挂载到 /mnt目录 , 对 /mnt目录进程容量监控 item 添加对 /mnt 目录的监控项 tragger 添加触发项 这样完成对一个数据盘磁盘容量的监控

  9. 【LeetCode】43. Multiply Strings

    Multiply Strings Given two numbers represented as strings, return multiplication of the numbers as a ...

  10. UltraEdit加入到右键菜单中

    http://www.cppblog.com/prayer/archive/2009/02/20/74429.htmlUltraEdit安装好之后,拷贝到其它机器就可以直接使用而无需注册,但少了一个功 ...