Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
88187398
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
88187398
编写于
3月 20, 2012
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
debugfs-related mode_t whack-a-mole
all of those should be umode_t... Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
a051f71c
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
7 addition
and
7 deletion
+7
-7
Documentation/filesystems/debugfs.txt
Documentation/filesystems/debugfs.txt
+1
-1
drivers/mmc/card/block.c
drivers/mmc/card/block.c
+1
-1
drivers/net/ethernet/brocade/bna/bnad_debugfs.c
drivers/net/ethernet/brocade/bna/bnad_debugfs.c
+1
-1
fs/debugfs/file.c
fs/debugfs/file.c
+1
-1
fs/nfsd/fault_inject.c
fs/nfsd/fault_inject.c
+1
-1
include/linux/debugfs.h
include/linux/debugfs.h
+2
-2
未找到文件。
Documentation/filesystems/debugfs.txt
浏览文件 @
88187398
...
@@ -133,7 +133,7 @@ file.
...
@@ -133,7 +133,7 @@ file.
void __iomem *base;
void __iomem *base;
};
};
struct dentry *debugfs_create_regset32(const char *name, mode_t mode,
struct dentry *debugfs_create_regset32(const char *name,
u
mode_t mode,
struct dentry *parent,
struct dentry *parent,
struct debugfs_regset32 *regset);
struct debugfs_regset32 *regset);
...
...
drivers/mmc/card/block.c
浏览文件 @
88187398
...
@@ -1685,7 +1685,7 @@ static int mmc_add_disk(struct mmc_blk_data *md)
...
@@ -1685,7 +1685,7 @@ static int mmc_add_disk(struct mmc_blk_data *md)
if
((
md
->
area_type
&
MMC_BLK_DATA_AREA_BOOT
)
&&
if
((
md
->
area_type
&
MMC_BLK_DATA_AREA_BOOT
)
&&
card
->
ext_csd
.
boot_ro_lockable
)
{
card
->
ext_csd
.
boot_ro_lockable
)
{
mode_t
mode
;
u
mode_t
mode
;
if
(
card
->
ext_csd
.
boot_ro_lock
&
EXT_CSD_BOOT_WP_B_PWR_WP_DIS
)
if
(
card
->
ext_csd
.
boot_ro_lock
&
EXT_CSD_BOOT_WP_B_PWR_WP_DIS
)
mode
=
S_IRUGO
;
mode
=
S_IRUGO
;
...
...
drivers/net/ethernet/brocade/bna/bnad_debugfs.c
浏览文件 @
88187398
...
@@ -531,7 +531,7 @@ static const struct file_operations bnad_debugfs_op_drvinfo = {
...
@@ -531,7 +531,7 @@ static const struct file_operations bnad_debugfs_op_drvinfo = {
struct
bnad_debugfs_entry
{
struct
bnad_debugfs_entry
{
const
char
*
name
;
const
char
*
name
;
mode_t
mode
;
u
mode_t
mode
;
const
struct
file_operations
*
fops
;
const
struct
file_operations
*
fops
;
};
};
...
...
fs/debugfs/file.c
浏览文件 @
88187398
...
@@ -611,7 +611,7 @@ static const struct file_operations fops_regset32 = {
...
@@ -611,7 +611,7 @@ static const struct file_operations fops_regset32 = {
* %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling
* %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling
* code.
* code.
*/
*/
struct
dentry
*
debugfs_create_regset32
(
const
char
*
name
,
mode_t
mode
,
struct
dentry
*
debugfs_create_regset32
(
const
char
*
name
,
u
mode_t
mode
,
struct
dentry
*
parent
,
struct
dentry
*
parent
,
struct
debugfs_regset32
*
regset
)
struct
debugfs_regset32
*
regset
)
{
{
...
...
fs/nfsd/fault_inject.c
浏览文件 @
88187398
...
@@ -72,7 +72,7 @@ int nfsd_fault_inject_init(void)
...
@@ -72,7 +72,7 @@ int nfsd_fault_inject_init(void)
{
{
unsigned
int
i
;
unsigned
int
i
;
struct
nfsd_fault_inject_op
*
op
;
struct
nfsd_fault_inject_op
*
op
;
mode_t
mode
=
S_IFREG
|
S_IRUSR
|
S_IWUSR
;
u
mode_t
mode
=
S_IFREG
|
S_IRUSR
|
S_IWUSR
;
debug_dir
=
debugfs_create_dir
(
"nfsd"
,
NULL
);
debug_dir
=
debugfs_create_dir
(
"nfsd"
,
NULL
);
if
(
!
debug_dir
)
if
(
!
debug_dir
)
...
...
include/linux/debugfs.h
浏览文件 @
88187398
...
@@ -86,7 +86,7 @@ struct dentry *debugfs_create_blob(const char *name, umode_t mode,
...
@@ -86,7 +86,7 @@ struct dentry *debugfs_create_blob(const char *name, umode_t mode,
struct
dentry
*
parent
,
struct
dentry
*
parent
,
struct
debugfs_blob_wrapper
*
blob
);
struct
debugfs_blob_wrapper
*
blob
);
struct
dentry
*
debugfs_create_regset32
(
const
char
*
name
,
mode_t
mode
,
struct
dentry
*
debugfs_create_regset32
(
const
char
*
name
,
u
mode_t
mode
,
struct
dentry
*
parent
,
struct
dentry
*
parent
,
struct
debugfs_regset32
*
regset
);
struct
debugfs_regset32
*
regset
);
...
@@ -208,7 +208,7 @@ static inline struct dentry *debugfs_create_blob(const char *name, umode_t mode,
...
@@ -208,7 +208,7 @@ static inline struct dentry *debugfs_create_blob(const char *name, umode_t mode,
}
}
static
inline
struct
dentry
*
debugfs_create_regset32
(
const
char
*
name
,
static
inline
struct
dentry
*
debugfs_create_regset32
(
const
char
*
name
,
mode_t
mode
,
struct
dentry
*
parent
,
u
mode_t
mode
,
struct
dentry
*
parent
,
struct
debugfs_regset32
*
regset
)
struct
debugfs_regset32
*
regset
)
{
{
return
ERR_PTR
(
-
ENODEV
);
return
ERR_PTR
(
-
ENODEV
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录