Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
2e03f3ea
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
161
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看板
提交
2e03f3ea
编写于
9年前
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
sysv: switch to simple_follow_link()
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
0f301bd3
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
4 addition
and
24 deletion
+4
-24
fs/sysv/Makefile
fs/sysv/Makefile
+1
-1
fs/sysv/inode.c
fs/sysv/inode.c
+3
-2
fs/sysv/symlink.c
fs/sysv/symlink.c
+0
-20
fs/sysv/sysv.h
fs/sysv/sysv.h
+0
-1
未找到文件。
fs/sysv/Makefile
浏览文件 @
2e03f3ea
...
...
@@ -5,4 +5,4 @@
obj-$(CONFIG_SYSV_FS)
+=
sysv.o
sysv-objs
:=
ialloc.o balloc.o inode.o itree.o file.o dir.o
\
namei.o super.o
symlink.o
namei.o super.o
This diff is collapsed.
Click to expand it.
fs/sysv/inode.c
浏览文件 @
2e03f3ea
...
...
@@ -166,8 +166,9 @@ void sysv_set_inode(struct inode *inode, dev_t rdev)
inode
->
i_op
=
&
sysv_symlink_inode_operations
;
inode
->
i_mapping
->
a_ops
=
&
sysv_aops
;
}
else
{
inode
->
i_op
=
&
sysv_fast_symlink_inode_operations
;
nd_terminate_link
(
SYSV_I
(
inode
)
->
i_data
,
inode
->
i_size
,
inode
->
i_op
=
&
simple_symlink_inode_operations
;
inode
->
i_link
=
(
char
*
)
SYSV_I
(
inode
)
->
i_data
;
nd_terminate_link
(
inode
->
i_link
,
inode
->
i_size
,
sizeof
(
SYSV_I
(
inode
)
->
i_data
)
-
1
);
}
}
else
...
...
This diff is collapsed.
Click to expand it.
fs/sysv/symlink.c
已删除
100644 → 0
浏览文件 @
0f301bd3
/*
* linux/fs/sysv/symlink.c
*
* Handling of System V filesystem fast symlinks extensions.
* Aug 2001, Christoph Hellwig (hch@infradead.org)
*/
#include "sysv.h"
#include <linux/namei.h>
static
void
*
sysv_follow_link
(
struct
dentry
*
dentry
,
struct
nameidata
*
nd
)
{
nd_set_link
(
nd
,
(
char
*
)
SYSV_I
(
d_inode
(
dentry
))
->
i_data
);
return
NULL
;
}
const
struct
inode_operations
sysv_fast_symlink_inode_operations
=
{
.
readlink
=
generic_readlink
,
.
follow_link
=
sysv_follow_link
,
};
This diff is collapsed.
Click to expand it.
fs/sysv/sysv.h
浏览文件 @
2e03f3ea
...
...
@@ -161,7 +161,6 @@ extern ino_t sysv_inode_by_name(struct dentry *);
extern
const
struct
inode_operations
sysv_file_inode_operations
;
extern
const
struct
inode_operations
sysv_dir_inode_operations
;
extern
const
struct
inode_operations
sysv_fast_symlink_inode_operations
;
extern
const
struct
file_operations
sysv_file_operations
;
extern
const
struct
file_operations
sysv_dir_operations
;
extern
const
struct
address_space_operations
sysv_aops
;
...
...
This diff is collapsed.
Click to expand it.
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录