summarylogtreecommitdiffstats
path: root/kernel-4.2.patch
blob: bedac9934b9faa72958cf5a2b5d8876aa2a75f3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#Index: trunk/src/VBox/Additions/linux/sharedfolders/lnkops.c
#===================================================================
# https://raw.githubusercontent.com/manjaro/packages-extra/master/linux42-extramodules/virtualbox-modules/kernel-4.2.patch
diff --git a/vboxsf/lnkops.c b/vboxsf/lnkops.c

--- a/vboxsf/lnkops.c
+++ b/vboxsf/lnkops.c
@@ -21,5 +21,9 @@
 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0)
 
+# if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 2, 0)
+static const char *sf_follow_link(struct dentry *dentry, void **cookie)
+# else
 static void *sf_follow_link(struct dentry *dentry, struct nameidata *nd)
+# endif
 {
     struct inode *inode = dentry->d_inode;
@@ -41,8 +45,13 @@
         }
     }
+# if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 2, 0)
+    return error ? ERR_PTR(error) : (*cookie = path);
+# else
     nd_set_link(nd, error ? ERR_PTR(error) : path);
     return NULL;
+# endif
 }
 
+# if LINUX_VERSION_CODE < KERNEL_VERSION(4, 2, 0)
 static void sf_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
 {
@@ -51,4 +60,5 @@
         free_page((unsigned long)page);
 }
+#endif
 
 struct inode_operations sf_lnk_iops =
@@ -56,5 +66,9 @@
     .readlink       = generic_readlink,
     .follow_link    = sf_follow_link,
+# if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 2, 0)
+    .put_link       = free_page_put_link,
+# else
     .put_link       = sf_put_link
+# endif
 };