Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
fe55f6d5
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
fe55f6d5
编写于
8月 30, 2008
作者:
V
Vegard Nossum
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
net: use kmemcheck bitfields API for skbuff
Signed-off-by:
N
Vegard Nossum
<
vegard.nossum@gmail.com
>
上级
fc7d0c9f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
15 addition
and
0 deletion
+15
-0
include/linux/skbuff.h
include/linux/skbuff.h
+7
-0
net/core/skbuff.c
net/core/skbuff.c
+8
-0
未找到文件。
include/linux/skbuff.h
浏览文件 @
fe55f6d5
...
...
@@ -15,6 +15,7 @@
#define _LINUX_SKBUFF_H
#include <linux/kernel.h>
#include <linux/kmemcheck.h>
#include <linux/compiler.h>
#include <linux/time.h>
#include <linux/cache.h>
...
...
@@ -346,6 +347,7 @@ struct sk_buff {
};
};
__u32
priority
;
kmemcheck_bitfield_begin
(
flags1
);
__u8
local_df
:
1
,
cloned:
1
,
ip_summed:
2
,
...
...
@@ -356,6 +358,7 @@ struct sk_buff {
ipvs_property:
1
,
peeked:
1
,
nf_trace:
1
;
kmemcheck_bitfield_end
(
flags1
);
__be16
protocol
;
void
(
*
destructor
)(
struct
sk_buff
*
skb
);
...
...
@@ -375,6 +378,8 @@ struct sk_buff {
__u16
tc_verd
;
/* traffic control verdict */
#endif
#endif
kmemcheck_bitfield_begin
(
flags2
);
#ifdef CONFIG_IPV6_NDISC_NODETYPE
__u8
ndisc_nodetype
:
2
;
#endif
...
...
@@ -382,6 +387,8 @@ struct sk_buff {
__u8
do_not_encrypt
:
1
;
__u8
requeue
:
1
;
#endif
kmemcheck_bitfield_end
(
flags2
);
/* 0/13/14 bit hole */
#ifdef CONFIG_NET_DMA
...
...
net/core/skbuff.c
浏览文件 @
fe55f6d5
...
...
@@ -39,6 +39,7 @@
#include <linux/module.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/kmemcheck.h>
#include <linux/mm.h>
#include <linux/interrupt.h>
#include <linux/in.h>
...
...
@@ -201,6 +202,8 @@ struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
skb
->
data
=
data
;
skb_reset_tail_pointer
(
skb
);
skb
->
end
=
skb
->
tail
+
size
;
kmemcheck_annotate_bitfield
(
skb
,
flags1
);
kmemcheck_annotate_bitfield
(
skb
,
flags2
);
/* make sure we initialize shinfo sequentially */
shinfo
=
skb_shinfo
(
skb
);
atomic_set
(
&
shinfo
->
dataref
,
1
);
...
...
@@ -217,6 +220,8 @@ struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
struct
sk_buff
*
child
=
skb
+
1
;
atomic_t
*
fclone_ref
=
(
atomic_t
*
)
(
child
+
1
);
kmemcheck_annotate_bitfield
(
child
,
flags1
);
kmemcheck_annotate_bitfield
(
child
,
flags2
);
skb
->
fclone
=
SKB_FCLONE_ORIG
;
atomic_set
(
fclone_ref
,
1
);
...
...
@@ -633,6 +638,9 @@ struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
n
=
kmem_cache_alloc
(
skbuff_head_cache
,
gfp_mask
);
if
(
!
n
)
return
NULL
;
kmemcheck_annotate_bitfield
(
n
,
flags1
);
kmemcheck_annotate_bitfield
(
n
,
flags2
);
n
->
fclone
=
SKB_FCLONE_UNAVAILABLE
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录