From 8df98f3c779fa43d073a42e82bd18cf28c2bd4af Mon Sep 17 00:00:00 2001 From: Wendell Smith Date: Sat, 7 Feb 2015 15:42:13 -0500 Subject: [PATCH 2/3] Fix d_alias to d_u.d_alias for kernel 3.18 --- open-vm-tools/modules/linux/vmhgfs/inode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/open-vm-tools/modules/linux/vmhgfs/inode.c b/open-vm-tools/modules/linux/vmhgfs/inode.c index 77b1669..2d289e3 100644 --- a/modules/linux/vmhgfs/inode.c +++ b/modules/linux/vmhgfs/inode.c @@ -1917,7 +1917,7 @@ HgfsPermission(struct inode *inode, p, #endif &inode->i_dentry, - d_alias) { + d_u.d_alias) { int dcount = hgfs_d_count(dentry); if (dcount) { LOG(4, ("Found %s %d \n", dentry->d_name.name, dcount)); @@ -1970,7 +1970,7 @@ HgfsPermission(struct inode *inode, /* Find a dentry with valid d_count. Refer bug 587879. */ list_for_each(pos, &inode->i_dentry) { int dcount; - struct dentry *dentry = list_entry(pos, struct dentry, d_alias); + struct dentry *dentry = list_entry(pos, struct dentry, d_u.d_alias); dcount = hgfs_d_count(dentry); if (dcount) { LOG(4, ("Found %s %d \n", (dentry)->d_name.name, dcount)); -- 2.3.4