Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
f72051b0
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
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看板
提交
f72051b0
编写于
9月 23, 2008
作者:
D
David S. Miller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
neigh: Remove by-hand SKB queue handling.
Signed-off-by:
N
David S. Miller
<
davem@davemloft.net
>
上级
f4ab5432
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
8 addition
and
13 deletion
+8
-13
net/core/neighbour.c
net/core/neighbour.c
+8
-13
未找到文件。
net/core/neighbour.c
浏览文件 @
f72051b0
...
...
@@ -927,8 +927,7 @@ int __neigh_event_send(struct neighbour *neigh, struct sk_buff *skb)
if
(
skb_queue_len
(
&
neigh
->
arp_queue
)
>=
neigh
->
parms
->
queue_len
)
{
struct
sk_buff
*
buff
;
buff
=
neigh
->
arp_queue
.
next
;
__skb_unlink
(
buff
,
&
neigh
->
arp_queue
);
buff
=
__skb_dequeue
(
&
neigh
->
arp_queue
);
kfree_skb
(
buff
);
NEIGH_CACHE_STAT_INC
(
neigh
->
tbl
,
unres_discards
);
}
...
...
@@ -1259,24 +1258,20 @@ static void neigh_proxy_process(unsigned long arg)
struct
neigh_table
*
tbl
=
(
struct
neigh_table
*
)
arg
;
long
sched_next
=
0
;
unsigned
long
now
=
jiffies
;
struct
sk_buff
*
skb
;
struct
sk_buff
*
skb
,
*
n
;
spin_lock
(
&
tbl
->
proxy_queue
.
lock
);
skb
=
tbl
->
proxy_queue
.
next
;
while
(
skb
!=
(
struct
sk_buff
*
)
&
tbl
->
proxy_queue
)
{
struct
sk_buff
*
back
=
skb
;
long
tdif
=
NEIGH_CB
(
back
)
->
sched_next
-
now
;
skb_queue_walk_safe
(
&
tbl
->
proxy_queue
,
skb
,
n
)
{
long
tdif
=
NEIGH_CB
(
skb
)
->
sched_next
-
now
;
skb
=
skb
->
next
;
if
(
tdif
<=
0
)
{
struct
net_device
*
dev
=
back
->
dev
;
__skb_unlink
(
back
,
&
tbl
->
proxy_queue
);
struct
net_device
*
dev
=
skb
->
dev
;
__skb_unlink
(
skb
,
&
tbl
->
proxy_queue
);
if
(
tbl
->
proxy_redo
&&
netif_running
(
dev
))
tbl
->
proxy_redo
(
back
);
tbl
->
proxy_redo
(
skb
);
else
kfree_skb
(
back
);
kfree_skb
(
skb
);
dev_put
(
dev
);
}
else
if
(
!
sched_next
||
tdif
<
sched_next
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录