diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-06-05 22:46:02 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-06-05 22:46:02 +0000 |
commit | 04324c48cfc7ea3aad8f95552e6349c42537ccdc (patch) | |
tree | 7499eed31bb77462d1260406ece6464886087eb7 /package/fuse/patches/210-posix_test_lock.patch | |
parent | 72823077cdabdb6b3432a254d413000d00630634 (diff) | |
download | upstream-04324c48cfc7ea3aad8f95552e6349c42537ccdc.tar.gz upstream-04324c48cfc7ea3aad8f95552e6349c42537ccdc.tar.bz2 upstream-04324c48cfc7ea3aad8f95552e6349c42537ccdc.zip |
upgrade a few packages to newer versions (includes patch by kaloz) - preparation for 2.6.22
SVN-Revision: 7507
Diffstat (limited to 'package/fuse/patches/210-posix_test_lock.patch')
-rw-r--r-- | package/fuse/patches/210-posix_test_lock.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/fuse/patches/210-posix_test_lock.patch b/package/fuse/patches/210-posix_test_lock.patch new file mode 100644 index 0000000000..50c6e75c8b --- /dev/null +++ b/package/fuse/patches/210-posix_test_lock.patch @@ -0,0 +1,11 @@ +--- 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 @@ + if (cmd == F_GETLK) { + if (fc->no_lock) { + #ifdef KERNEL_2_6_17_PLUS +- if (!posix_test_lock(file, fl, fl)) ++ if (!posix_test_lock(file, fl)) + fl->fl_type = F_UNLCK; + #else + struct file_lock *cfl = posix_test_lock(file, fl); |