Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
e55d92b9
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
e55d92b9
编写于
7月 24, 2011
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
get rid of create_proc_entry() abuses - proc_mkdir() is there for purpose
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
e772aed3
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
9 addition
and
13 deletion
+9
-13
arch/arm/mach-bcmring/dma.c
arch/arm/mach-bcmring/dma.c
+1
-1
drivers/staging/rtl8187se/r8180_core.c
drivers/staging/rtl8187se/r8180_core.c
+1
-1
drivers/staging/rtl8192e/ieee80211/ieee80211_module.c
drivers/staging/rtl8192e/ieee80211/ieee80211_module.c
+1
-1
drivers/staging/rtl8192e/r8192E_core.c
drivers/staging/rtl8192e/r8192E_core.c
+2
-4
drivers/staging/rtl8192u/ieee80211/ieee80211_module.c
drivers/staging/rtl8192u/ieee80211/ieee80211_module.c
+1
-1
drivers/staging/rtl8192u/r8192U_core.c
drivers/staging/rtl8192u/r8192U_core.c
+2
-4
sound/core/info.c
sound/core/info.c
+1
-1
未找到文件。
arch/arm/mach-bcmring/dma.c
浏览文件 @
e55d92b9
...
...
@@ -835,7 +835,7 @@ int dma_init(void)
/* Create /proc/dma/channels and /proc/dma/devices */
gDmaDir
=
create_proc_entry
(
"dma"
,
S_IFDIR
|
S_IRUGO
|
S_IXUGO
,
NULL
);
gDmaDir
=
proc_mkdir
(
"dma"
,
NULL
);
if
(
gDmaDir
==
NULL
)
{
printk
(
KERN_ERR
"Unable to create /proc/dma
\n
"
);
...
...
drivers/staging/rtl8187se/r8180_core.c
浏览文件 @
e55d92b9
...
...
@@ -307,7 +307,7 @@ static int proc_get_stats_tx(char *page, char **start,
void
rtl8180_proc_module_init
(
void
)
{
DMESG
(
"Initializing proc filesystem"
);
rtl8180_proc
=
create_proc_entry
(
RTL8180_MODULE_NAME
,
S_IFDIR
,
init_net
.
proc_net
);
rtl8180_proc
=
proc_mkdir
(
RTL8180_MODULE_NAME
,
init_net
.
proc_net
);
}
void
rtl8180_proc_module_remove
(
void
)
...
...
drivers/staging/rtl8192e/ieee80211/ieee80211_module.c
浏览文件 @
e55d92b9
...
...
@@ -311,7 +311,7 @@ int __init ieee80211_rtl_init(void)
}
ieee80211_debug_level
=
debug
;
ieee80211_proc
=
create_proc_entry
(
DRV_NAME
,
S_IFDIR
,
init_net
.
proc_net
);
ieee80211_proc
=
proc_mkdir
(
DRV_NAME
,
init_net
.
proc_net
);
if
(
ieee80211_proc
==
NULL
)
{
IEEE80211_ERROR
(
"Unable to create "
DRV_NAME
" proc directory
\n
"
);
...
...
drivers/staging/rtl8192e/r8192E_core.c
浏览文件 @
e55d92b9
...
...
@@ -508,7 +508,7 @@ static int proc_get_stats_rx(char *page, char **start,
static
void
rtl8192_proc_module_init
(
void
)
{
RT_TRACE
(
COMP_INIT
,
"Initializing proc filesystem
\n
"
);
rtl8192_proc
=
create_proc_entry
(
RTL819xE_MODULE_NAME
,
S_IFDIR
,
init_net
.
proc_net
);
rtl8192_proc
=
proc_mkdir
(
RTL819xE_MODULE_NAME
,
init_net
.
proc_net
);
}
...
...
@@ -540,9 +540,7 @@ static void rtl8192_proc_init_one(struct r8192_priv *priv)
struct
net_device
*
dev
=
priv
->
ieee80211
->
dev
;
struct
proc_dir_entry
*
e
;
priv
->
dir_dev
=
create_proc_entry
(
dev
->
name
,
S_IFDIR
|
S_IRUGO
|
S_IXUGO
,
rtl8192_proc
);
priv
->
dir_dev
=
proc_mkdir
(
dev
->
name
,
rtl8192_proc
);
if
(
!
priv
->
dir_dev
)
{
RT_TRACE
(
COMP_ERR
,
"Unable to initialize /proc/net/rtl8192/%s
\n
"
,
dev
->
name
);
...
...
drivers/staging/rtl8192u/ieee80211/ieee80211_module.c
浏览文件 @
e55d92b9
...
...
@@ -283,7 +283,7 @@ int __init ieee80211_debug_init(void)
ieee80211_debug_level
=
debug
;
ieee80211_proc
=
create_proc_entry
(
DRV_NAME
,
S_IFDIR
,
init_net
.
proc_net
);
ieee80211_proc
=
proc_mkdir
(
DRV_NAME
,
init_net
.
proc_net
);
if
(
ieee80211_proc
==
NULL
)
{
IEEE80211_ERROR
(
"Unable to create "
DRV_NAME
" proc directory
\n
"
);
...
...
drivers/staging/rtl8192u/r8192U_core.c
浏览文件 @
e55d92b9
...
...
@@ -671,7 +671,7 @@ static int proc_get_stats_rx(char *page, char **start,
void
rtl8192_proc_module_init
(
void
)
{
RT_TRACE
(
COMP_INIT
,
"Initializing proc filesystem"
);
rtl8192_proc
=
create_proc_entry
(
RTL819xU_MODULE_NAME
,
S_IFDIR
,
init_net
.
proc_net
);
rtl8192_proc
=
proc_mkdir
(
RTL819xU_MODULE_NAME
,
init_net
.
proc_net
);
}
...
...
@@ -706,9 +706,7 @@ void rtl8192_proc_init_one(struct net_device *dev)
{
struct
proc_dir_entry
*
e
;
struct
r8192_priv
*
priv
=
(
struct
r8192_priv
*
)
ieee80211_priv
(
dev
);
priv
->
dir_dev
=
create_proc_entry
(
dev
->
name
,
S_IFDIR
|
S_IRUGO
|
S_IXUGO
,
rtl8192_proc
);
priv
->
dir_dev
=
proc_mkdir
(
dev
->
name
,
rtl8192_proc
);
if
(
!
priv
->
dir_dev
)
{
RT_TRACE
(
COMP_ERR
,
"Unable to initialize /proc/net/rtl8192/%s
\n
"
,
dev
->
name
);
...
...
sound/core/info.c
浏览文件 @
e55d92b9
...
...
@@ -531,7 +531,7 @@ int __init snd_info_init(void)
{
struct
proc_dir_entry
*
p
;
p
=
create_proc_entry
(
"asound"
,
S_IFDIR
|
S_IRUGO
|
S_IXUGO
,
NULL
);
p
=
proc_mkdir
(
"asound"
,
NULL
);
if
(
p
==
NULL
)
return
-
ENOMEM
;
snd_proc_root
=
p
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录