From da240b1100be2f0685e40439d3025cdd3e0184dc Mon Sep 17 00:00:00 2001 From: nico Date: Sun, 10 Jun 2007 19:47:55 +0000 Subject: fix fuse (closes: #1847) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7548 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/fuse/patches/210-posix_test_lock.patch | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) (limited to 'package/fuse/patches/210-posix_test_lock.patch') diff --git a/package/fuse/patches/210-posix_test_lock.patch b/package/fuse/patches/210-posix_test_lock.patch index 50c6e75c8..d2e2f784c 100644 --- a/package/fuse/patches/210-posix_test_lock.patch +++ b/package/fuse/patches/210-posix_test_lock.patch @@ -1,11 +1,21 @@ --- fuse.old/kernel/file.c 2007-01-28 21:25:02.000000000 +0000 +++ fuse.dev/kernel/file.c 2007-05-29 00:10:29.000000000 +0100 -@@ -782,7 +782,7 @@ +@@ -781,6 +785,10 @@ + if (cmd == F_GETLK) { if (fc->no_lock) { - #ifdef KERNEL_2_6_17_PLUS -- if (!posix_test_lock(file, fl, fl)) ++#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; - #else - struct file_lock *cfl = posix_test_lock(file, fl); +@@ -791,6 +799,7 @@ + else + *fl = *cfl; + #endif ++#endif + err = 0; + } else + err = fuse_getlk(file, fl); -- cgit v1.2.3