Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
04a01ac7
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
04a01ac7
编写于
7月 04, 2017
作者:
M
Miklos Szeredi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ovl: move cache and version to ovl_inode
Signed-off-by:
N
Miklos Szeredi
<
mszeredi@redhat.com
>
上级
a015dafc
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
13 addition
and
17 deletion
+13
-17
fs/overlayfs/ovl_entry.h
fs/overlayfs/ovl_entry.h
+3
-5
fs/overlayfs/super.c
fs/overlayfs/super.c
+2
-0
fs/overlayfs/util.c
fs/overlayfs/util.c
+8
-12
未找到文件。
fs/overlayfs/ovl_entry.h
浏览文件 @
04a01ac7
...
...
@@ -35,12 +35,8 @@ struct ovl_fs {
/* private information held for every overlayfs dentry */
struct
ovl_entry
{
struct
ovl_dir_cache
*
cache
;
union
{
struct
{
u64
version
;
bool
opaque
;
};
bool
opaque
;
struct
rcu_head
rcu
;
};
unsigned
numlower
;
...
...
@@ -50,7 +46,9 @@ struct ovl_entry {
struct
ovl_entry
*
ovl_alloc_entry
(
unsigned
int
numlower
);
struct
ovl_inode
{
struct
ovl_dir_cache
*
cache
;
const
char
*
redirect
;
u64
version
;
unsigned
long
flags
;
struct
inode
vfs_inode
;
struct
dentry
*
__upperdentry
;
...
...
fs/overlayfs/super.c
浏览文件 @
04a01ac7
...
...
@@ -169,7 +169,9 @@ static struct inode *ovl_alloc_inode(struct super_block *sb)
{
struct
ovl_inode
*
oi
=
kmem_cache_alloc
(
ovl_inode_cachep
,
GFP_KERNEL
);
oi
->
cache
=
NULL
;
oi
->
redirect
=
NULL
;
oi
->
version
=
0
;
oi
->
flags
=
0
;
oi
->
__upperdentry
=
NULL
;
oi
->
lower
=
NULL
;
...
...
fs/overlayfs/util.c
浏览文件 @
04a01ac7
...
...
@@ -160,16 +160,12 @@ struct inode *ovl_inode_real(struct inode *inode)
struct
ovl_dir_cache
*
ovl_dir_cache
(
struct
dentry
*
dentry
)
{
struct
ovl_entry
*
oe
=
dentry
->
d_fsdata
;
return
oe
->
cache
;
return
OVL_I
(
d_inode
(
dentry
))
->
cache
;
}
void
ovl_set_dir_cache
(
struct
dentry
*
dentry
,
struct
ovl_dir_cache
*
cache
)
{
struct
ovl_entry
*
oe
=
dentry
->
d_fsdata
;
oe
->
cache
=
cache
;
OVL_I
(
d_inode
(
dentry
))
->
cache
=
cache
;
}
bool
ovl_dentry_is_opaque
(
struct
dentry
*
dentry
)
...
...
@@ -242,18 +238,18 @@ void ovl_inode_update(struct inode *inode, struct dentry *upperdentry)
void
ovl_dentry_version_inc
(
struct
dentry
*
dentry
)
{
struct
ovl_entry
*
oe
=
dentry
->
d_fsdata
;
struct
inode
*
inode
=
d_inode
(
dentry
)
;
WARN_ON
(
!
inode_is_locked
(
dentry
->
d_
inode
));
oe
->
version
++
;
WARN_ON
(
!
inode_is_locked
(
inode
));
OVL_I
(
inode
)
->
version
++
;
}
u64
ovl_dentry_version_get
(
struct
dentry
*
dentry
)
{
struct
ovl_entry
*
oe
=
dentry
->
d_fsdata
;
struct
inode
*
inode
=
d_inode
(
dentry
)
;
WARN_ON
(
!
inode_is_locked
(
dentry
->
d_
inode
));
return
oe
->
version
;
WARN_ON
(
!
inode_is_locked
(
inode
));
return
OVL_I
(
inode
)
->
version
;
}
bool
ovl_is_whiteout
(
struct
dentry
*
dentry
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录