overlayfs: make mcoverlayfs compile for 4.14.0-115 (el7 arm64)

Use the 4.18 module as a base

Change-Id: I6c9ef66399800828e1932573da5a97573545c5da
This commit is contained in:
Dominique Martinet
2019-01-15 14:29:05 +09:00
parent 0fbdcc44b9
commit f5320fc2b4
7 changed files with 46 additions and 0 deletions

View File

@@ -13,6 +13,7 @@
#include <linux/xattr.h>
#include <linux/posix_acl.h>
#include <linux/ratelimit.h>
#include <linux/version.h>
#include "overlayfs.h"
@@ -778,8 +779,12 @@ static bool ovl_hash_bylower(struct super_block *sb, struct dentry *upper,
static struct inode *ovl_iget5(struct super_block *sb, struct inode *newinode,
struct inode *key)
{
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 18, 0)
return newinode ? inode_insert5(newinode, (unsigned long) key,
ovl_inode_test, ovl_inode_set, key) :
#else
return
#endif
iget5_locked(sb, (unsigned long) key,
ovl_inode_test, ovl_inode_set, key);
}