head 1.4; access; symbols pkgsrc-2013Q2:1.4.0.6 pkgsrc-2013Q2-base:1.4 pkgsrc-2012Q4:1.4.0.4 pkgsrc-2012Q4-base:1.4 pkgsrc-2011Q4:1.4.0.2 pkgsrc-2011Q4-base:1.4 pkgsrc-2011Q3:1.2.0.2 pkgsrc-2011Q3-base:1.2; locks; strict; comment @# @; 1.4 date 2011.11.28.14.58.45; author manu; state dead; branches; next 1.3; 1.3 date 2011.10.06.02.19.06; author manu; state Exp; branches; next 1.2; 1.2 date 2011.09.18.01.36.06; author manu; state Exp; branches; next 1.1; 1.1 date 2011.08.09.07.15.42; author manu; state Exp; branches; next ; desc @@ 1.4 log @Remove two patches being idempotent together. I do not bump PKGREVISION, as the result is the same. @ text @$NetBSD: patch-bu,v 1.3 2011/10/06 02:19:06 manu Exp $ Make gfid file changes non fatal, as it seems to work anyway. --- xlators/protocol/client/src/client3_1-fops.c.orig 2011-08-23 14:31:41.000000000 +0200 +++ xlators/protocol/client/src/client3_1-fops.c 2011-09-17 15:45:30.000000000 +0200 @@@@ -2208,13 +2208,11 @@@@ } if ((!uuid_is_null (inode->gfid)) && (uuid_compare (stbuf.ia_gfid, inode->gfid) != 0)) { - gf_log (frame->this->name, GF_LOG_DEBUG, - "gfid changed for %s", local->loc.path); - rsp.op_ret = -1; - op_errno = ESTALE; - goto out; + gf_log (frame->this->name, GF_LOG_WARNING, + "gfid changed for %s", local->loc.path); + memcpy(&stbuf.ia_gfid, &inode->gfid, sizeof(inode->gfid)); } rsp.op_ret = 0; @ 1.3 log @Add missing comments and RCSId in 3.2.3 patches, fix patch-bb checksum @ text @d1 1 a1 1 $NetBSD$ @ 1.2 log @Update glusterfs to 3.2.3 This maintenance release with no new features. Majot bug fixes are: Bug 2464 Fixed all the issues caused by GFID mismatch during distribute rename. Bug 2988 Fixed the issue of high CPU usage when Directory Quota is enabled. Bug 3122 Enhanced the volume set interface to support io-threads on the client. Bug 3210 Fixed the issue of modified mtime/atime of the files after rebalance operation. Bug 3191 Fixed the issue with symlinks during rebalance operation. @ text @d1 4 @ 1.1 log @- Use linkat(2) if available. This fixes a EPERM error when using rename(2) on a symlink within a glusterfs volume that uses DHT - Consider gfid changes as nn fatal. Glustefs will fix instead of panic. @ text @d1 2 a2 7 $NetBSD$ Avoid fatal error if gfid changed. Patch not committed upstream yet, but it helps. --- xlators/protocol/client/src/client3_1-fops.c.orig 2011-07-14 14:21:10.000000000 +0200 +++ xlators/protocol/client/src/client3_1-fops.c 2011-07-22 09:38:35.000000000 +0200 @