summaryrefslogtreecommitdiff
path: root/filesystems
diff options
context:
space:
mode:
authormanu <manu>2011-06-29 13:53:01 +0000
committermanu <manu>2011-06-29 13:53:01 +0000
commit9feffbd12110d90b5626210f30fce276bc39da33 (patch)
treed8d3fa36904b74007097bb7b5ae89c765a6ae9a9 /filesystems
parentdcb6a11f7c6de9cc8ceade5137e81a485dbb8211 (diff)
downloadpkgsrc-9feffbd12110d90b5626210f30fce276bc39da33.tar.gz
Restore a missing patch so that accessing some file cannot produce
spurious ENOTDIR
Diffstat (limited to 'filesystems')
-rw-r--r--filesystems/glusterfs/Makefile4
-rw-r--r--filesystems/glusterfs/distinfo3
-rw-r--r--filesystems/glusterfs/patches/patch-bb13
3 files changed, 17 insertions, 3 deletions
diff --git a/filesystems/glusterfs/Makefile b/filesystems/glusterfs/Makefile
index 7e1f70ce6c9..a6cca074a55 100644
--- a/filesystems/glusterfs/Makefile
+++ b/filesystems/glusterfs/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.10 2011/06/06 15:53:13 manu Exp $
+# $NetBSD: Makefile,v 1.11 2011/06/29 13:53:01 manu Exp $
#
DISTNAME= glusterfs-3.2.0
-PKGREVISION= 2
+PKGREVISION= 3
CATEGORIES= filesystems
MASTER_SITES= http://download.gluster.com/pub/gluster/glusterfs/3.2/LATEST/
diff --git a/filesystems/glusterfs/distinfo b/filesystems/glusterfs/distinfo
index 8440305e8ae..a5fc5c8ed20 100644
--- a/filesystems/glusterfs/distinfo
+++ b/filesystems/glusterfs/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.5 2011/06/07 07:27:11 manu Exp $
+$NetBSD: distinfo,v 1.6 2011/06/29 13:53:01 manu Exp $
SHA1 (glusterfs-3.2.0.tar.gz) = a8095e04feedce81aa21634639f278b3810398b8
RMD160 (glusterfs-3.2.0.tar.gz) = a69f47efd396a413ffb350e1711345ff49557325
@@ -14,6 +14,7 @@ SHA1 (patch-ar) = a5a18baa88fda145795d0b6f85ba86014e2128f7
SHA1 (patch-as) = 54f6ea0ee4208cd29052084efeb928618936c7d1
SHA1 (patch-ax) = 2588db4c21df8559ffbcf1b814479228dadd4623
SHA1 (patch-ba) = e53d4b833f7b26eaa474a339e5962a251ecacd49
+SHA1 (patch-bb) = 10689b5cf75f3d66ee53b1950212af2d4af998d7
SHA1 (patch-bc) = e9323641ed748cbe0ef6cb8912ab76dc5508cc80
SHA1 (patch-be) = 0db2543504300504be1064cdbb6f19de06917e17
SHA1 (patch-bf) = 30a39360435dd5f9faaf00e272a2d14fdb1ec86c
diff --git a/filesystems/glusterfs/patches/patch-bb b/filesystems/glusterfs/patches/patch-bb
new file mode 100644
index 00000000000..3674c3e1148
--- /dev/null
+++ b/filesystems/glusterfs/patches/patch-bb
@@ -0,0 +1,13 @@
+--- xlators/performance/quick-read/src/quick-read.c.orig 2011-04-22 19:37:28.000000000 +0200
++++ xlators/performance/quick-read/src/quick-read.c 2011-06-29 15:09:58.000000000 +0200
+@@ -726,9 +726,9 @@
+ }
+ }
+ UNLOCK (&table->lock);
+
+- if (content_cached && ((flags & O_DIRECTORY) == O_DIRECTORY)) {
++ if (content_cached && (flags & O_DIRECTORY)) {
+ op_ret = -1;
+ op_errno = ENOTDIR;
+ gf_log (this->name, GF_LOG_WARNING,
+ "open with O_DIRECTORY flag received on non-directory");