svn commit: r260705 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

Andriy Gapon avg at FreeBSD.org
Thu Jan 16 12:26:54 UTC 2014


Author: avg
Date: Thu Jan 16 12:26:54 2014
New Revision: 260705
URL: http://svnweb.freebsd.org/changeset/base/260705

Log:
  fix a bug in ZFS mirror code for handling multiple DVAa
  
  The bug was introduced in r256956 "Improve ZFS N-way mirror read
  performance".
  The code in vdev_mirror_dva_select erroneously considers already
  tried DVAs for the next attempt.  Thus, it is possible that a failing DVA
  would be retried forever.
  As a secondary effect, if the attempts fail with checksum error, then
  checksum error reports are accumulated until the original request
  ultimately fails or succeeds.  But because retrying is going on indefinitely
  the cheksum reports accumulation will effectively be a memory leak.
  
  Reviewed by:	gibbs
  MFC after:	13 days
  Sponsored by:	HybridCluster

Modified:
  head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c

Modified: head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c
==============================================================================
--- head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c	Thu Jan 16 12:22:46 2014	(r260704)
+++ head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c	Thu Jan 16 12:26:54 2014	(r260705)
@@ -317,9 +317,13 @@ vdev_mirror_dva_select(zio_t *zio, int p
 {
 	dva_t *dva = zio->io_bp->blk_dva;
 	mirror_map_t *mm = zio->io_vsd;
+	mirror_child_t *mc;
 	int c;
 
 	for (c = preferred - 1; c >= 0; c--) {
+		mc = &mm->mm_child[c];
+		if (mc->mc_tried || mc->mc_skipped)
+			continue;
 		if (DVA_GET_VDEV(&dva[c]) == DVA_GET_VDEV(&dva[preferred]))
 			preferred = c;
 	}


More information about the svn-src-all mailing list