Skip to content

Commit

Permalink
Merge pull request #13 from arshad512/Port_Centos75_Kernel_310
Browse files Browse the repository at this point in the history
Backport to kernel version 3.10
  • Loading branch information
psankar authored Feb 10, 2021
2 parents 60ac9bf + 4b5576c commit aa31352
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions simple.c
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ static int simplefs_create_fs_object(struct inode *dir, struct dentry *dentry,

inode->i_sb = sb;
inode->i_op = &simplefs_inode_ops;
inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
inode->i_ino = (count + SIMPLEFS_START_INO - SIMPLEFS_RESERVED_INODES + 1);

sfs_inode = kmem_cache_alloc(sfs_inode_cachep, GFP_KERNEL);
Expand Down Expand Up @@ -639,7 +639,7 @@ static struct inode *simplefs_iget(struct super_block *sb, int ino)

/* FIXME: We should store these times to disk and retrieve them */
inode->i_atime = inode->i_mtime = inode->i_ctime =
current_time(inode);
CURRENT_TIME;

inode->i_private = sfs_inode;

Expand Down Expand Up @@ -875,7 +875,7 @@ int simplefs_fill_super(struct super_block *sb, void *data, int silent)
root_inode->i_op = &simplefs_inode_ops;
root_inode->i_fop = &simplefs_dir_operations;
root_inode->i_atime = root_inode->i_mtime = root_inode->i_ctime =
current_time(root_inode);
CURRENT_TIME;

root_inode->i_private =
simplefs_get_inode(sb, SIMPLEFS_ROOTDIR_INODE_NUMBER);
Expand Down

0 comments on commit aa31352

Please sign in to comment.