Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
8bbb20a8
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
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看板
提交
8bbb20a8
编写于
7月 28, 2016
作者:
M
Martin Brandenburg
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
orangefs: Account for jiffies wraparound.
Signed-off-by:
N
Martin Brandenburg
<
martin@omnibond.com
>
上级
957ee437
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
8 addition
and
8 deletion
+8
-8
fs/orangefs/dcache.c
fs/orangefs/dcache.c
+1
-1
fs/orangefs/namei.c
fs/orangefs/namei.c
+5
-5
fs/orangefs/orangefs-utils.c
fs/orangefs/orangefs-utils.c
+2
-2
未找到文件。
fs/orangefs/dcache.c
浏览文件 @
8bbb20a8
...
...
@@ -95,7 +95,7 @@ static int orangefs_d_revalidate(struct dentry *dentry, unsigned int flags)
{
int
ret
;
if
(
dentry
->
d_time
>
jiffies
)
if
(
time_before
(
jiffies
,
dentry
->
d_time
)
)
return
1
;
if
(
flags
&
LOOKUP_RCU
)
...
...
fs/orangefs/namei.c
浏览文件 @
8bbb20a8
...
...
@@ -73,7 +73,7 @@ static int orangefs_create(struct inode *dir,
d_instantiate
(
dentry
,
inode
);
unlock_new_inode
(
inode
);
dentry
->
d_time
=
jiffies
+
dcache_timeout_msecs
*
HZ
/
1000
;
ORANGEFS_I
(
inode
)
->
getattr_time
=
0
;
ORANGEFS_I
(
inode
)
->
getattr_time
=
jiffies
-
1
;
gossip_debug
(
GOSSIP_NAME_DEBUG
,
"%s: dentry instantiated for %s
\n
"
,
...
...
@@ -193,7 +193,7 @@ static struct dentry *orangefs_lookup(struct inode *dir, struct dentry *dentry,
goto
out
;
}
ORANGEFS_I
(
inode
)
->
getattr_time
=
0
;
ORANGEFS_I
(
inode
)
->
getattr_time
=
jiffies
-
1
;
gossip_debug
(
GOSSIP_NAME_DEBUG
,
"%s:%s:%d "
...
...
@@ -323,7 +323,7 @@ static int orangefs_symlink(struct inode *dir,
d_instantiate
(
dentry
,
inode
);
unlock_new_inode
(
inode
);
dentry
->
d_time
=
jiffies
+
dcache_timeout_msecs
*
HZ
/
1000
;
ORANGEFS_I
(
inode
)
->
getattr_time
=
0
;
ORANGEFS_I
(
inode
)
->
getattr_time
=
jiffies
-
1
;
gossip_debug
(
GOSSIP_NAME_DEBUG
,
"Inode (Symlink) %pU -> %s
\n
"
,
...
...
@@ -387,7 +387,7 @@ static int orangefs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode
d_instantiate
(
dentry
,
inode
);
unlock_new_inode
(
inode
);
dentry
->
d_time
=
jiffies
+
dcache_timeout_msecs
*
HZ
/
1000
;
ORANGEFS_I
(
inode
)
->
getattr_time
=
0
;
ORANGEFS_I
(
inode
)
->
getattr_time
=
jiffies
-
1
;
gossip_debug
(
GOSSIP_NAME_DEBUG
,
"Inode (Directory) %pU -> %s
\n
"
,
...
...
@@ -418,7 +418,7 @@ static int orangefs_rename(struct inode *old_dir,
"orangefs_rename: called (%pd2 => %pd2) ct=%d
\n
"
,
old_dentry
,
new_dentry
,
d_count
(
new_dentry
));
ORANGEFS_I
(
new_dentry
->
d_parent
->
d_inode
)
->
getattr_time
=
0
;
ORANGEFS_I
(
new_dentry
->
d_parent
->
d_inode
)
->
getattr_time
=
jiffies
-
1
;
new_op
=
op_alloc
(
ORANGEFS_VFS_OP_RENAME
);
if
(
!
new_op
)
...
...
fs/orangefs/orangefs-utils.c
浏览文件 @
8bbb20a8
...
...
@@ -262,7 +262,7 @@ int orangefs_inode_getattr(struct inode *inode, int new, int bypass)
get_khandle_from_ino
(
inode
));
if
(
!
new
&&
!
bypass
)
{
if
(
orangefs_inode
->
getattr_time
>
jiffies
)
if
(
time_before
(
jiffies
,
orangefs_inode
->
getattr_time
)
)
return
0
;
}
...
...
@@ -421,7 +421,7 @@ int orangefs_inode_setattr(struct inode *inode, struct iattr *iattr)
ClearMtimeFlag
(
orangefs_inode
);
ClearCtimeFlag
(
orangefs_inode
);
ClearModeFlag
(
orangefs_inode
);
orangefs_inode
->
getattr_time
=
0
;
orangefs_inode
->
getattr_time
=
jiffies
-
1
;
}
return
ret
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录