Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 Oct 2014 22:20:39 +0000 (UTC)
From:      Xin LI <delphij@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-releng@freebsd.org
Subject:   svn commit: r273192 - releng/10.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs
Message-ID:  <201410162220.s9GMKd6D015893@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: delphij
Date: Thu Oct 16 22:20:38 2014
New Revision: 273192
URL: https://svnweb.freebsd.org/changeset/base/273192

Log:
  MFS r273191: MFC r273060:
  
  Use write_psize instead of write_asize when doing vdev_space_update.
  Without this change the accounting of L2ARC usage would be wrong and
  give 16EB free space because the number became negative and overflows.
  
  Approved by:	re (gjb)

Modified:
  releng/10.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c
Directory Properties:
  releng/10.1/   (props changed)

Modified: releng/10.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c
==============================================================================
--- releng/10.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c	Thu Oct 16 22:12:23 2014	(r273191)
+++ releng/10.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c	Thu Oct 16 22:20:38 2014	(r273192)
@@ -5163,7 +5163,7 @@ l2arc_write_buffers(spa_t *spa, l2arc_de
 	ARCSTAT_INCR(arcstat_l2_write_bytes, write_asize);
 	ARCSTAT_INCR(arcstat_l2_size, write_sz);
 	ARCSTAT_INCR(arcstat_l2_asize, write_asize);
-	vdev_space_update(dev->l2ad_vdev, write_asize, 0, 0);
+	vdev_space_update(dev->l2ad_vdev, write_psize, 0, 0);
 
 	/*
 	 * Bump device hand to the device start if it is approaching the end.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410162220.s9GMKd6D015893>