Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
3ace95c0
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
3ace95c0
编写于
9月 21, 2012
作者:
J
Jozsef Kadlecsik
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
netfilter: ipset: Coding style fixes
Signed-off-by:
N
Jozsef Kadlecsik
<
kadlec@blackhole.kfki.hu
>
上级
10111a6e
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
12 addition
and
8 deletion
+12
-8
include/linux/netfilter/ipset/ip_set.h
include/linux/netfilter/ipset/ip_set.h
+3
-2
include/linux/netfilter/ipset/ip_set_ahash.h
include/linux/netfilter/ipset/ip_set_ahash.h
+1
-1
net/netfilter/ipset/ip_set_bitmap_ipmac.c
net/netfilter/ipset/ip_set_bitmap_ipmac.c
+2
-2
net/netfilter/ipset/ip_set_core.c
net/netfilter/ipset/ip_set_core.c
+6
-3
未找到文件。
include/linux/netfilter/ipset/ip_set.h
浏览文件 @
3ace95c0
...
...
@@ -255,7 +255,7 @@ struct ip_set_type_variant {
* returns negative error code,
* zero for no match/success to add/delete
* positive for matching element */
int
(
*
kadt
)(
struct
ip_set
*
set
,
const
struct
sk_buff
*
skb
,
int
(
*
kadt
)(
struct
ip_set
*
set
,
const
struct
sk_buff
*
skb
,
const
struct
xt_action_param
*
par
,
enum
ipset_adt
adt
,
const
struct
ip_set_adt_opt
*
opt
);
...
...
@@ -430,7 +430,8 @@ static inline int nla_put_ipaddr4(struct sk_buff *skb, int type, __be32 ipaddr)
return
ret
;
}
static
inline
int
nla_put_ipaddr6
(
struct
sk_buff
*
skb
,
int
type
,
const
struct
in6_addr
*
ipaddrptr
)
static
inline
int
nla_put_ipaddr6
(
struct
sk_buff
*
skb
,
int
type
,
const
struct
in6_addr
*
ipaddrptr
)
{
struct
nlattr
*
__nested
=
ipset_nest_start
(
skb
,
type
);
int
ret
;
...
...
include/linux/netfilter/ipset/ip_set_ahash.h
浏览文件 @
3ace95c0
...
...
@@ -696,7 +696,7 @@ type_pf_list(const struct ip_set *set,
}
static
int
type_pf_kadt
(
struct
ip_set
*
set
,
const
struct
sk_buff
*
skb
,
type_pf_kadt
(
struct
ip_set
*
set
,
const
struct
sk_buff
*
skb
,
const
struct
xt_action_param
*
par
,
enum
ipset_adt
adt
,
const
struct
ip_set_adt_opt
*
opt
);
static
int
...
...
net/netfilter/ipset/ip_set_bitmap_ipmac.c
浏览文件 @
3ace95c0
...
...
@@ -323,11 +323,11 @@ bitmap_ipmac_tlist(const struct ip_set *set,
(
elem
->
match
==
MAC_FILLED
&&
nla_put
(
skb
,
IPSET_ATTR_ETHER
,
ETH_ALEN
,
elem
->
ether
)))
goto
nla_put_failure
;
goto
nla_put_failure
;
timeout
=
elem
->
match
==
MAC_UNSET
?
elem
->
timeout
:
ip_set_timeout_get
(
elem
->
timeout
);
if
(
nla_put_net32
(
skb
,
IPSET_ATTR_TIMEOUT
,
htonl
(
timeout
)))
goto
nla_put_failure
;
goto
nla_put_failure
;
ipset_nest_end
(
skb
,
nested
);
}
ipset_nest_end
(
skb
,
atd
);
...
...
net/netfilter/ipset/ip_set_core.c
浏览文件 @
3ace95c0
...
...
@@ -69,7 +69,8 @@ find_set_type(const char *name, u8 family, u8 revision)
list_for_each_entry_rcu
(
type
,
&
ip_set_type_list
,
list
)
if
(
STREQ
(
type
->
name
,
name
)
&&
(
type
->
family
==
family
||
type
->
family
==
NFPROTO_UNSPEC
)
&&
(
type
->
family
==
family
||
type
->
family
==
NFPROTO_UNSPEC
)
&&
revision
>=
type
->
revision_min
&&
revision
<=
type
->
revision_max
)
return
type
;
...
...
@@ -149,7 +150,8 @@ __find_set_type_minmax(const char *name, u8 family, u8 *min, u8 *max,
rcu_read_lock
();
list_for_each_entry_rcu
(
type
,
&
ip_set_type_list
,
list
)
if
(
STREQ
(
type
->
name
,
name
)
&&
(
type
->
family
==
family
||
type
->
family
==
NFPROTO_UNSPEC
))
{
(
type
->
family
==
family
||
type
->
family
==
NFPROTO_UNSPEC
))
{
found
=
true
;
if
(
type
->
revision_min
<
*
min
)
*
min
=
type
->
revision_min
;
...
...
@@ -721,7 +723,8 @@ ip_set_create(struct sock *ctnl, struct sk_buff *skb,
* by the nfnl mutex. Find the first free index in ip_set_list
* and check clashing.
*/
if
((
ret
=
find_free_id
(
set
->
name
,
&
index
,
&
clash
))
!=
0
)
{
ret
=
find_free_id
(
set
->
name
,
&
index
,
&
clash
);
if
(
ret
!=
0
)
{
/* If this is the same set and requested, ignore error */
if
(
ret
==
-
EEXIST
&&
(
flags
&
IPSET_FLAG_EXIST
)
&&
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录