mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 13:41:51 +00:00
pstore: convert to ctime accessor functions
In later patches, we're going to change how the inode's ctime field is used. Switch to using accessor functions instead of raw accesses of inode->i_ctime. Acked-by: Kees Cook <keescook@chromium.org> Signed-off-by: Jeff Layton <jlayton@kernel.org> Reviewed-by: Jan Kara <jack@suse.cz> Message-Id: <20230705190309.579783-66-jlayton@kernel.org> Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
parent
e9d7d3cb9f
commit
a411ea5af7
@ -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->i_ctime = current_time(inode);
|
||||
inode->i_atime = inode->i_mtime = inode_set_ctime_current(inode);
|
||||
}
|
||||
return inode;
|
||||
}
|
||||
@ -390,7 +390,7 @@ int pstore_mkfile(struct dentry *root, struct pstore_record *record)
|
||||
inode->i_private = private;
|
||||
|
||||
if (record->time.tv_sec)
|
||||
inode->i_mtime = inode->i_ctime = record->time;
|
||||
inode->i_mtime = inode_set_ctime_to_ts(inode, record->time);
|
||||
|
||||
d_add(dentry, inode);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user