summaryrefslogtreecommitdiffstats
path: root/package/fuse/patches/210-posix_test_lock.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/fuse/patches/210-posix_test_lock.patch')
-rw-r--r--package/fuse/patches/210-posix_test_lock.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/package/fuse/patches/210-posix_test_lock.patch b/package/fuse/patches/210-posix_test_lock.patch
deleted file mode 100644
index d2c746af7..000000000
--- a/package/fuse/patches/210-posix_test_lock.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-Index: fuse-2.6.5/kernel/file.c
-===================================================================
---- fuse-2.6.5.orig/kernel/file.c 2007-06-23 13:03:50.000000000 +0200
-+++ fuse-2.6.5/kernel/file.c 2007-06-23 13:03:51.000000000 +0200
-@@ -781,6 +781,10 @@
-
- if (cmd == F_GETLK) {
- if (fc->no_lock) {
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,22)
-+ if (!posix_test_lock(file, fl))
-+ fl->fl_type = F_UNLCK;
-+#else
- #ifdef KERNEL_2_6_17_PLUS
- if (!posix_test_lock(file, fl, fl))
- fl->fl_type = F_UNLCK;
-@@ -791,6 +795,7 @@
- else
- *fl = *cfl;
- #endif
-+#endif
- err = 0;
- } else
- err = fuse_getlk(file, fl);