Fix build for kernel 6.6

See also: 278832b81c
This results to a build failure on 6.6 kernel
without this commit.
This commit is contained in:
Zhang Hua 2023-11-01 14:49:49 +08:00 committed by Christian Hoff
parent abead1debf
commit 205c8037e6
1 changed files with 16 additions and 0 deletions

View File

@ -146,7 +146,11 @@ static int binderfs_binder_device_create(struct inode *ref_inode,
goto err; goto err;
inode->i_ino = minor + INODE_OFFSET; inode->i_ino = minor + INODE_OFFSET;
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6,6,0))
inode->i_mtime = inode->i_atime = inode_set_ctime_current(inode);
#else
inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode); inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
#endif
init_special_inode(inode, S_IFCHR | 0600, init_special_inode(inode, S_IFCHR | 0600,
MKDEV(MAJOR(binderfs_dev), minor)); MKDEV(MAJOR(binderfs_dev), minor));
inode->i_fop = &binder_fops; inode->i_fop = &binder_fops;
@ -453,7 +457,11 @@ static int binderfs_binder_ctl_create(struct super_block *sb)
} }
inode->i_ino = SECOND_INODE; inode->i_ino = SECOND_INODE;
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6,6,0))
inode->i_mtime = inode->i_atime = inode_set_ctime_current(inode);
#else
inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode); inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
#endif
init_special_inode(inode, S_IFCHR | 0600, init_special_inode(inode, S_IFCHR | 0600,
MKDEV(MAJOR(binderfs_dev), minor)); MKDEV(MAJOR(binderfs_dev), minor));
inode->i_fop = &binder_ctl_fops; inode->i_fop = &binder_ctl_fops;
@ -495,7 +503,11 @@ static struct inode *binderfs_make_inode(struct super_block *sb, int mode)
if (ret) { if (ret) {
ret->i_ino = iunique(sb, BINDERFS_MAX_MINOR + INODE_OFFSET); ret->i_ino = iunique(sb, BINDERFS_MAX_MINOR + INODE_OFFSET);
ret->i_mode = mode; ret->i_mode = mode;
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6,6,0))
ret->i_atime = ret->i_mtime = inode_set_ctime_current(ret);
#else
ret->i_atime = ret->i_mtime = ret->i_ctime = current_time(ret); ret->i_atime = ret->i_mtime = ret->i_ctime = current_time(ret);
#endif
} }
return ret; return ret;
} }
@ -718,7 +730,11 @@ static int binderfs_fill_super(struct super_block *sb, struct fs_context *fc)
inode->i_ino = FIRST_INODE; inode->i_ino = FIRST_INODE;
inode->i_fop = &simple_dir_operations; inode->i_fop = &simple_dir_operations;
inode->i_mode = S_IFDIR | 0755; inode->i_mode = S_IFDIR | 0755;
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6,6,0))
inode->i_mtime = inode->i_atime = inode_set_ctime_current(inode);
#else
inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode); inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
#endif
inode->i_op = &binderfs_dir_inode_operations; inode->i_op = &binderfs_dir_inode_operations;
set_nlink(inode, 2); set_nlink(inode, 2);