Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
14934efa
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
6
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
14934efa
编写于
1月 09, 2011
作者:
D
David S. Miller
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'dccp' of
git://eden-feed.erg.abdn.ac.uk/net-next-2.6
上级
86aa7785
bfbb2346
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
7 addition
and
3 deletion
+7
-3
Documentation/networking/dccp.txt
Documentation/networking/dccp.txt
+1
-0
net/dccp/dccp.h
net/dccp/dccp.h
+2
-1
net/dccp/input.c
net/dccp/input.c
+1
-1
net/dccp/sysctl.c
net/dccp/sysctl.c
+3
-1
未找到文件。
Documentation/networking/dccp.txt
浏览文件 @
14934efa
...
...
@@ -167,6 +167,7 @@ rx_ccid = 2
seq_window = 100
The initial sequence window (sec. 7.5.2) of the sender. This influences
the local ackno validity and the remote seqno validity windows (7.5.1).
Values in the range Wmin = 32 (RFC 4340, 7.5.2) up to 2^32-1 can be set.
tx_qlen = 5
The size of the transmit buffer in packets. A value of 0 corresponds
...
...
net/dccp/dccp.h
浏览文件 @
14934efa
...
...
@@ -426,7 +426,8 @@ static inline void dccp_update_gsr(struct sock *sk, u64 seq)
{
struct
dccp_sock
*
dp
=
dccp_sk
(
sk
);
dp
->
dccps_gsr
=
seq
;
if
(
after48
(
seq
,
dp
->
dccps_gsr
))
dp
->
dccps_gsr
=
seq
;
/* Sequence validity window depends on remote Sequence Window (7.5.1) */
dp
->
dccps_swl
=
SUB48
(
ADD48
(
dp
->
dccps_gsr
,
1
),
dp
->
dccps_r_seq_win
/
4
);
/*
...
...
net/dccp/input.c
浏览文件 @
14934efa
...
...
@@ -260,7 +260,7 @@ static int dccp_check_seqno(struct sock *sk, struct sk_buff *skb)
*/
if
(
time_before
(
now
,
(
dp
->
dccps_rate_last
+
sysctl_dccp_sync_ratelimit
)))
return
0
;
return
-
1
;
DCCP_WARN
(
"Step 6 failed for %s packet, "
"(LSWL(%llu) <= P.seqno(%llu) <= S.SWH(%llu)) and "
...
...
net/dccp/sysctl.c
浏览文件 @
14934efa
...
...
@@ -21,7 +21,8 @@
/* Boundary values */
static
int
zero
=
0
,
u8_max
=
0xFF
;
static
unsigned
long
seqw_min
=
32
;
static
unsigned
long
seqw_min
=
DCCPF_SEQ_WMIN
,
seqw_max
=
0xFFFFFFFF
;
/* maximum on 32 bit */
static
struct
ctl_table
dccp_default_table
[]
=
{
{
...
...
@@ -31,6 +32,7 @@ static struct ctl_table dccp_default_table[] = {
.
mode
=
0644
,
.
proc_handler
=
proc_doulongvec_minmax
,
.
extra1
=
&
seqw_min
,
/* RFC 4340, 7.5.2 */
.
extra2
=
&
seqw_max
,
},
{
.
procname
=
"rx_ccid"
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录