Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
4c1d5a64
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看板
提交
4c1d5a64
编写于
12月 07, 2011
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
vfs: for usbfs, etc. internal vfsmounts ->mnt_sb->s_root == ->mnt_root
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
32dc7308
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
8 addition
and
8 deletion
+8
-8
arch/ia64/kernel/perfmon.c
arch/ia64/kernel/perfmon.c
+1
-1
drivers/usb/core/inode.c
drivers/usb/core/inode.c
+3
-3
fs/configfs/dir.c
fs/configfs/dir.c
+1
-1
fs/debugfs/inode.c
fs/debugfs/inode.c
+1
-1
fs/hppfs/hppfs.c
fs/hppfs/hppfs.c
+1
-1
security/inode.c
security/inode.c
+1
-1
未找到文件。
arch/ia64/kernel/perfmon.c
浏览文件 @
4c1d5a64
...
...
@@ -2228,7 +2228,7 @@ pfm_alloc_file(pfm_context_t *ctx)
/*
* allocate a new dcache entry
*/
path
.
dentry
=
d_alloc
(
pfmfs_mnt
->
mnt_
sb
->
s_
root
,
&
this
);
path
.
dentry
=
d_alloc
(
pfmfs_mnt
->
mnt_root
,
&
this
);
if
(
!
path
.
dentry
)
{
iput
(
inode
);
return
ERR_PTR
(
-
ENOMEM
);
...
...
drivers/usb/core/inode.c
浏览文件 @
4c1d5a64
...
...
@@ -501,7 +501,7 @@ static int fs_create_by_name (const char *name, mode_t mode,
*/
if
(
!
parent
)
{
if
(
usbfs_mount
&&
usbfs_mount
->
mnt_sb
)
{
parent
=
usbfs_mount
->
mnt_
sb
->
s_
root
;
parent
=
usbfs_mount
->
mnt_root
;
}
}
...
...
@@ -608,7 +608,7 @@ static int create_special_files (void)
ignore_mount
=
0
;
parent
=
usbfs_mount
->
mnt_
sb
->
s_
root
;
parent
=
usbfs_mount
->
mnt_root
;
devices_usbfs_dentry
=
fs_create_file
(
"devices"
,
listmode
|
S_IFREG
,
parent
,
NULL
,
&
usbfs_devices_fops
,
...
...
@@ -662,7 +662,7 @@ static void usbfs_add_bus(struct usb_bus *bus)
sprintf
(
name
,
"%03d"
,
bus
->
busnum
);
parent
=
usbfs_mount
->
mnt_
sb
->
s_
root
;
parent
=
usbfs_mount
->
mnt_root
;
bus
->
usbfs_dentry
=
fs_create_file
(
name
,
busmode
|
S_IFDIR
,
parent
,
bus
,
NULL
,
busuid
,
busgid
);
if
(
bus
->
usbfs_dentry
==
NULL
)
{
...
...
fs/configfs/dir.c
浏览文件 @
4c1d5a64
...
...
@@ -312,7 +312,7 @@ static int configfs_create_dir(struct config_item * item, struct dentry *dentry)
if
(
item
->
ci_parent
)
parent
=
item
->
ci_parent
->
ci_dentry
;
else
if
(
configfs_mount
&&
configfs_mount
->
mnt_sb
)
parent
=
configfs_mount
->
mnt_
sb
->
s_
root
;
parent
=
configfs_mount
->
mnt_root
;
else
return
-
EFAULT
;
...
...
fs/debugfs/inode.c
浏览文件 @
4c1d5a64
...
...
@@ -160,7 +160,7 @@ static int debugfs_create_by_name(const char *name, mode_t mode,
* have around.
*/
if
(
!
parent
)
parent
=
debugfs_mount
->
mnt_
sb
->
s_
root
;
parent
=
debugfs_mount
->
mnt_root
;
*
dentry
=
NULL
;
mutex_lock
(
&
parent
->
d_inode
->
i_mutex
);
...
...
fs/hppfs/hppfs.c
浏览文件 @
4c1d5a64
...
...
@@ -725,7 +725,7 @@ static int hppfs_fill_super(struct super_block *sb, void *d, int silent)
sb
->
s_fs_info
=
proc_mnt
;
err
=
-
ENOMEM
;
root_inode
=
get_inode
(
sb
,
dget
(
proc_mnt
->
mnt_
sb
->
s_
root
));
root_inode
=
get_inode
(
sb
,
dget
(
proc_mnt
->
mnt_root
));
if
(
!
root_inode
)
goto
out_mntput
;
...
...
security/inode.c
浏览文件 @
4c1d5a64
...
...
@@ -159,7 +159,7 @@ static int create_by_name(const char *name, mode_t mode,
* have around.
*/
if
(
!
parent
)
parent
=
mount
->
mnt_
sb
->
s_
root
;
parent
=
mount
->
mnt_root
;
mutex_lock
(
&
parent
->
d_inode
->
i_mutex
);
*
dentry
=
lookup_one_len
(
name
,
parent
,
strlen
(
name
));
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录