Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
8bbb20a8
Commit
8bbb20a8
authored
Jul 28, 2016
by
Martin Brandenburg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
orangefs: Account for jiffies wraparound.
Signed-off-by:
Martin Brandenburg
<
martin@omnibond.com
>
parent
957ee437
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+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
No files found.
fs/orangefs/dcache.c
View file @
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
View file @
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
View file @
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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment