Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
a6322de6
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,发现更多精彩内容 >>
提交
a6322de6
编写于
12月 08, 2011
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
vfs: switch ->show_path() to struct dentry *
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
d861c630
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
4 addition
and
4 deletion
+4
-4
fs/nfs/super.c
fs/nfs/super.c
+2
-2
fs/proc_namespace.c
fs/proc_namespace.c
+1
-1
include/linux/fs.h
include/linux/fs.h
+1
-1
未找到文件。
fs/nfs/super.c
浏览文件 @
a6322de6
...
...
@@ -264,7 +264,7 @@ static void nfs_umount_begin(struct super_block *);
static
int
nfs_statfs
(
struct
dentry
*
,
struct
kstatfs
*
);
static
int
nfs_show_options
(
struct
seq_file
*
,
struct
vfsmount
*
);
static
int
nfs_show_devname
(
struct
seq_file
*
,
struct
dentry
*
);
static
int
nfs_show_path
(
struct
seq_file
*
,
struct
vfsmount
*
);
static
int
nfs_show_path
(
struct
seq_file
*
,
struct
dentry
*
);
static
int
nfs_show_stats
(
struct
seq_file
*
,
struct
dentry
*
);
static
struct
dentry
*
nfs_fs_mount
(
struct
file_system_type
*
,
int
,
const
char
*
,
void
*
);
...
...
@@ -776,7 +776,7 @@ static int nfs_show_devname(struct seq_file *m, struct dentry *root)
return
err
;
}
static
int
nfs_show_path
(
struct
seq_file
*
m
,
struct
vfsmount
*
mnt
)
static
int
nfs_show_path
(
struct
seq_file
*
m
,
struct
dentry
*
dentry
)
{
seq_puts
(
m
,
"/"
);
return
0
;
...
...
fs/proc_namespace.c
浏览文件 @
a6322de6
...
...
@@ -131,7 +131,7 @@ static int show_mountinfo(struct seq_file *m, struct vfsmount *mnt)
seq_printf
(
m
,
"%i %i %u:%u "
,
r
->
mnt_id
,
r
->
mnt_parent
->
mnt_id
,
MAJOR
(
sb
->
s_dev
),
MINOR
(
sb
->
s_dev
));
if
(
sb
->
s_op
->
show_path
)
err
=
sb
->
s_op
->
show_path
(
m
,
mnt
);
err
=
sb
->
s_op
->
show_path
(
m
,
mnt
->
mnt_root
);
else
seq_dentry
(
m
,
mnt
->
mnt_root
,
"
\t\n\\
"
);
if
(
err
)
...
...
include/linux/fs.h
浏览文件 @
a6322de6
...
...
@@ -1674,7 +1674,7 @@ struct super_operations {
int
(
*
show_options
)(
struct
seq_file
*
,
struct
vfsmount
*
);
int
(
*
show_devname
)(
struct
seq_file
*
,
struct
dentry
*
);
int
(
*
show_path
)(
struct
seq_file
*
,
struct
vfsmount
*
);
int
(
*
show_path
)(
struct
seq_file
*
,
struct
dentry
*
);
int
(
*
show_stats
)(
struct
seq_file
*
,
struct
dentry
*
);
#ifdef CONFIG_QUOTA
ssize_t
(
*
quota_read
)(
struct
super_block
*
,
int
,
char
*
,
size_t
,
loff_t
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录