projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
200d942
)
pstore: convert to new timestamp accessors
author
Jeff Layton
<jlayton@kernel.org>
Wed, 4 Oct 2023 18:52:47 +0000
(14:52 -0400)
committer
Christian Brauner
<brauner@kernel.org>
Wed, 18 Oct 2023 12:08:26 +0000
(14:08 +0200)
Convert to using the new inode timestamp accessor functions.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Link:
https://lore.kernel.org/r/20231004185347.80880-60-jlayton@kernel.org
Acked-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Christian Brauner <brauner@kernel.org>
fs/pstore/inode.c
patch
|
blob
|
history
diff --git
a/fs/pstore/inode.c
b/fs/pstore/inode.c
index 585360706b335fe0c89ca109a89d52309e26bdaf..d41c20d1b5e82ae5e2e92f54901ce517140afd0e 100644
(file)
--- a/
fs/pstore/inode.c
+++ b/
fs/pstore/inode.c
@@
-223,7
+223,7
@@
static struct inode *pstore_get_inode(struct super_block *sb)
struct inode *inode = new_inode(sb);
if (inode) {
inode->i_ino = get_next_ino();
-
inode->i_atime = inode->i_mtime = inode_set_ctime_current
(inode);
+
simple_inode_init_ts
(inode);
}
return inode;
}
@@
-390,7
+390,8
@@
int pstore_mkfile(struct dentry *root, struct pstore_record *record)
inode->i_private = private;
if (record->time.tv_sec)
- inode->i_mtime = inode_set_ctime_to_ts(inode, record->time);
+ inode_set_mtime_to_ts(inode,
+ inode_set_ctime_to_ts(inode, record->time));
d_add(dentry, inode);