Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
b0316615
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看板
提交
b0316615
编写于
4月 04, 2013
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
bluetooth: kill unused 'module' argument of bt_procfs_init()
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
14805359
变更
9
显示空白变更内容
内联
并排
Showing
9 changed file
with
10 addition
and
10 deletion
+10
-10
include/net/bluetooth/bluetooth.h
include/net/bluetooth/bluetooth.h
+1
-1
net/bluetooth/af_bluetooth.c
net/bluetooth/af_bluetooth.c
+2
-2
net/bluetooth/bnep/sock.c
net/bluetooth/bnep/sock.c
+1
-1
net/bluetooth/cmtp/sock.c
net/bluetooth/cmtp/sock.c
+1
-1
net/bluetooth/hci_sock.c
net/bluetooth/hci_sock.c
+1
-1
net/bluetooth/hidp/sock.c
net/bluetooth/hidp/sock.c
+1
-1
net/bluetooth/l2cap_sock.c
net/bluetooth/l2cap_sock.c
+1
-1
net/bluetooth/rfcomm/sock.c
net/bluetooth/rfcomm/sock.c
+1
-1
net/bluetooth/sco.c
net/bluetooth/sco.c
+1
-1
未找到文件。
include/net/bluetooth/bluetooth.h
浏览文件 @
b0316615
...
...
@@ -319,7 +319,7 @@ extern void hci_sock_cleanup(void);
extern
int
bt_sysfs_init
(
void
);
extern
void
bt_sysfs_cleanup
(
void
);
extern
int
bt_procfs_init
(
struct
module
*
module
,
struct
net
*
net
,
const
char
*
name
,
extern
int
bt_procfs_init
(
struct
net
*
net
,
const
char
*
name
,
struct
bt_sock_list
*
sk_list
,
int
(
*
seq_show
)(
struct
seq_file
*
,
void
*
));
extern
void
bt_procfs_cleanup
(
struct
net
*
net
,
const
char
*
name
);
...
...
net/bluetooth/af_bluetooth.c
浏览文件 @
b0316615
...
...
@@ -634,7 +634,7 @@ static const struct file_operations bt_fops = {
.
release
=
seq_release_private
};
int
bt_procfs_init
(
struct
module
*
module
,
struct
net
*
net
,
const
char
*
name
,
int
bt_procfs_init
(
struct
net
*
net
,
const
char
*
name
,
struct
bt_sock_list
*
sk_list
,
int
(
*
seq_show
)(
struct
seq_file
*
,
void
*
))
{
...
...
@@ -656,7 +656,7 @@ void bt_procfs_cleanup(struct net *net, const char *name)
remove_proc_entry
(
name
,
net
->
proc_net
);
}
#else
int
bt_procfs_init
(
struct
module
*
module
,
struct
net
*
net
,
const
char
*
name
,
int
bt_procfs_init
(
struct
net
*
net
,
const
char
*
name
,
struct
bt_sock_list
*
sk_list
,
int
(
*
seq_show
)(
struct
seq_file
*
,
void
*
))
{
...
...
net/bluetooth/bnep/sock.c
浏览文件 @
b0316615
...
...
@@ -234,7 +234,7 @@ int __init bnep_sock_init(void)
goto
error
;
}
err
=
bt_procfs_init
(
THIS_MODULE
,
&
init_net
,
"bnep"
,
&
bnep_sk_list
,
NULL
);
err
=
bt_procfs_init
(
&
init_net
,
"bnep"
,
&
bnep_sk_list
,
NULL
);
if
(
err
<
0
)
{
BT_ERR
(
"Failed to create BNEP proc file"
);
bt_sock_unregister
(
BTPROTO_BNEP
);
...
...
net/bluetooth/cmtp/sock.c
浏览文件 @
b0316615
...
...
@@ -245,7 +245,7 @@ int cmtp_init_sockets(void)
goto
error
;
}
err
=
bt_procfs_init
(
THIS_MODULE
,
&
init_net
,
"cmtp"
,
&
cmtp_sk_list
,
NULL
);
err
=
bt_procfs_init
(
&
init_net
,
"cmtp"
,
&
cmtp_sk_list
,
NULL
);
if
(
err
<
0
)
{
BT_ERR
(
"Failed to create CMTP proc file"
);
bt_sock_unregister
(
BTPROTO_HIDP
);
...
...
net/bluetooth/hci_sock.c
浏览文件 @
b0316615
...
...
@@ -1102,7 +1102,7 @@ int __init hci_sock_init(void)
goto
error
;
}
err
=
bt_procfs_init
(
THIS_MODULE
,
&
init_net
,
"hci"
,
&
hci_sk_list
,
NULL
);
err
=
bt_procfs_init
(
&
init_net
,
"hci"
,
&
hci_sk_list
,
NULL
);
if
(
err
<
0
)
{
BT_ERR
(
"Failed to create HCI proc file"
);
bt_sock_unregister
(
BTPROTO_HCI
);
...
...
net/bluetooth/hidp/sock.c
浏览文件 @
b0316615
...
...
@@ -284,7 +284,7 @@ int __init hidp_init_sockets(void)
goto
error
;
}
err
=
bt_procfs_init
(
THIS_MODULE
,
&
init_net
,
"hidp"
,
&
hidp_sk_list
,
NULL
);
err
=
bt_procfs_init
(
&
init_net
,
"hidp"
,
&
hidp_sk_list
,
NULL
);
if
(
err
<
0
)
{
BT_ERR
(
"Failed to create HIDP proc file"
);
bt_sock_unregister
(
BTPROTO_HIDP
);
...
...
net/bluetooth/l2cap_sock.c
浏览文件 @
b0316615
...
...
@@ -1292,7 +1292,7 @@ int __init l2cap_init_sockets(void)
goto
error
;
}
err
=
bt_procfs_init
(
THIS_MODULE
,
&
init_net
,
"l2cap"
,
&
l2cap_sk_list
,
err
=
bt_procfs_init
(
&
init_net
,
"l2cap"
,
&
l2cap_sk_list
,
NULL
);
if
(
err
<
0
)
{
BT_ERR
(
"Failed to create L2CAP proc file"
);
...
...
net/bluetooth/rfcomm/sock.c
浏览文件 @
b0316615
...
...
@@ -1036,7 +1036,7 @@ int __init rfcomm_init_sockets(void)
goto
error
;
}
err
=
bt_procfs_init
(
THIS_MODULE
,
&
init_net
,
"rfcomm"
,
&
rfcomm_sk_list
,
NULL
);
err
=
bt_procfs_init
(
&
init_net
,
"rfcomm"
,
&
rfcomm_sk_list
,
NULL
);
if
(
err
<
0
)
{
BT_ERR
(
"Failed to create RFCOMM proc file"
);
bt_sock_unregister
(
BTPROTO_RFCOMM
);
...
...
net/bluetooth/sco.c
浏览文件 @
b0316615
...
...
@@ -1083,7 +1083,7 @@ int __init sco_init(void)
goto
error
;
}
err
=
bt_procfs_init
(
THIS_MODULE
,
&
init_net
,
"sco"
,
&
sco_sk_list
,
NULL
);
err
=
bt_procfs_init
(
&
init_net
,
"sco"
,
&
sco_sk_list
,
NULL
);
if
(
err
<
0
)
{
BT_ERR
(
"Failed to create SCO proc file"
);
bt_sock_unregister
(
BTPROTO_SCO
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录