inode->i_private = kdbus_node_ref(node);
inode->i_mapping->a_ops = &empty_aops;
inode->i_mode = node->mode & S_IALLUGO;
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6,6,0))
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6,7,0))
+ inode_set_atime_to_ts(inode,
+ inode_set_mtime_to_ts(inode,
+ inode_set_ctime_current(inode)));
+#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(6,6,0))
inode->i_atime = inode->i_mtime = inode_set_ctime_current(inode);
#else
inode->i_atime = inode->i_ctime = inode->i_mtime = current_time(inode);