diff options
author | Pacho Ramos <pacho@gentoo.org> | 2016-12-31 15:16:02 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2016-12-31 15:16:13 +0100 |
commit | 7a16304f48603371a9de922a42741420a7329fc9 (patch) | |
tree | 19c347d162c8419801091f9c8854195b64d428ad /app-emulation/open-vm-tools-kmod/files/9.10.0-0002-Fix-d_alias-to-d_u.d_alias-for-kernel-3.18.patch | |
parent | profiles: Move media-libs/mlt[vdpau] package.use.mask from base to arch (diff) | |
download | gentoo-7a16304f48603371a9de922a42741420a7329fc9.tar.gz gentoo-7a16304f48603371a9de922a42741420a7329fc9.tar.bz2 gentoo-7a16304f48603371a9de922a42741420a7329fc9.zip |
Remove masked for removal packages
Diffstat (limited to 'app-emulation/open-vm-tools-kmod/files/9.10.0-0002-Fix-d_alias-to-d_u.d_alias-for-kernel-3.18.patch')
-rw-r--r-- | app-emulation/open-vm-tools-kmod/files/9.10.0-0002-Fix-d_alias-to-d_u.d_alias-for-kernel-3.18.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/app-emulation/open-vm-tools-kmod/files/9.10.0-0002-Fix-d_alias-to-d_u.d_alias-for-kernel-3.18.patch b/app-emulation/open-vm-tools-kmod/files/9.10.0-0002-Fix-d_alias-to-d_u.d_alias-for-kernel-3.18.patch deleted file mode 100644 index 8d8f25daf53c..000000000000 --- a/app-emulation/open-vm-tools-kmod/files/9.10.0-0002-Fix-d_alias-to-d_u.d_alias-for-kernel-3.18.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 8df98f3c779fa43d073a42e82bd18cf28c2bd4af Mon Sep 17 00:00:00 2001 -From: Wendell Smith <wendellwsmith@gmail.com> -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/open-vm-tools/modules/linux/vmhgfs/inode.c -+++ b/open-vm-tools/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 - |