diff options
author | V3n3RiX <venerix@rogentos.ro> | 2016-04-15 16:22:23 +0100 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2016-04-15 16:22:23 +0100 |
commit | 51e7c083b849fb1a2a7bb8c7d7313d1c72167c74 (patch) | |
tree | e573d3a8fe2614d63cc944e595fdb4745af86f1d /app-emulation/virtualbox-guest-additions/files/virtualbox-guest-additions-3.19.patch | |
parent | 078be42f559a7d5fe114a008ef2bfcc2d2b32dec (diff) |
drop virtualbox, we use the one from gentoo tree
Diffstat (limited to 'app-emulation/virtualbox-guest-additions/files/virtualbox-guest-additions-3.19.patch')
-rw-r--r-- | app-emulation/virtualbox-guest-additions/files/virtualbox-guest-additions-3.19.patch | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/app-emulation/virtualbox-guest-additions/files/virtualbox-guest-additions-3.19.patch b/app-emulation/virtualbox-guest-additions/files/virtualbox-guest-additions-3.19.patch deleted file mode 100644 index d0eea45d..00000000 --- a/app-emulation/virtualbox-guest-additions/files/virtualbox-guest-additions-3.19.patch +++ /dev/null @@ -1,76 +0,0 @@ ---- a/vboxsf/dirops.c -+++ b/vboxsf/dirops.c -@@ -127,13 +127,11 @@ - TRACE(); - -- sf_g = GET_GLOB_INFO(dir->f_dentry->d_inode->i_sb); -+ inode = GET_F_DENTRY(dir)->d_inode; -+ sf_i = GET_INODE_INFO(inode); -+ sf_g = GET_GLOB_INFO(inode->i_sb); - sf_d = dir->private_data; - - BUG_ON(!sf_g); - BUG_ON(!sf_d); -- -- inode = dir->f_dentry->d_inode; -- sf_i = GET_INODE_INFO(inode); -- - BUG_ON(!sf_i); - ---- a/vboxsf/regops.c -+++ b/vboxsf/regops.c -@@ -109,5 +109,5 @@ - size_t left = size; - ssize_t total_bytes_read = 0; -- struct inode *inode = file->f_dentry->d_inode; -+ struct inode *inode = GET_F_DENTRY(file)->d_inode; - struct sf_glob_info *sf_g = GET_GLOB_INFO(inode->i_sb); - struct sf_reg_info *sf_r = file->private_data; -@@ -184,5 +184,5 @@ - size_t left = size; - ssize_t total_bytes_written = 0; -- struct inode *inode = file->f_dentry->d_inode; -+ struct inode *inode = GET_F_DENTRY(file)->d_inode; - struct sf_inode_info *sf_i = GET_INODE_INFO(inode); - struct sf_glob_info *sf_g = GET_GLOB_INFO(inode->i_sb); -@@ -455,5 +455,5 @@ - static struct page *sf_reg_nopage(struct vm_area_struct *vma, unsigned long vaddr, int *type) - # define SET_TYPE(t) *type = (t) --#else /* LINUX_VERSION_CODE < KERNEL_VERSION (2, 6, 0) */ -+#else /* LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0) */ - static struct page *sf_reg_nopage(struct vm_area_struct *vma, unsigned long vaddr, int unused) - # define SET_TYPE(t) -@@ -466,5 +466,5 @@ - int err; - struct file *file = vma->vm_file; -- struct inode *inode = file->f_dentry->d_inode; -+ struct inode *inode = GET_F_DENTRY(file)->d_inode; - struct sf_glob_info *sf_g = GET_GLOB_INFO(inode->i_sb); - struct sf_reg_info *sf_r = file->private_data; -@@ -606,5 +606,5 @@ - static int sf_readpage(struct file *file, struct page *page) - { -- struct inode *inode = file->f_dentry->d_inode; -+ struct inode *inode = GET_F_DENTRY(file)->d_inode; - struct sf_glob_info *sf_g = GET_GLOB_INFO(inode->i_sb); - struct sf_reg_info *sf_r = file->private_data; ---- a/vboxsf/vfsmod.h -+++ b/vboxsf/vfsmod.h -@@ -146,5 +146,5 @@ - #endif - --#if LINUX_VERSION_CODE >= KERNEL_VERSION (2, 6, 19) || defined(KERNEL_FC6) -+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 19) || defined(KERNEL_FC6) - /* FC6 kernel 2.6.18, vanilla kernel 2.6.19+ */ - # define GET_INODE_INFO(i) ((struct sf_inode_info *) (i)->i_private) -@@ -156,4 +156,10 @@ - #endif - -+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 19, 0) -+# define GET_F_DENTRY(f) (f->f_path.dentry) -+#else -+# define GET_F_DENTRY(f) (f->f_dentry) - #endif - -+#endif -+ |