Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 26 Jan 2016 12:48:10 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r294803 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs
Message-ID:  <201601261248.u0QCmAI1015244@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mav
Date: Tue Jan 26 12:48:10 2016
New Revision: 294803
URL: https://svnweb.freebsd.org/changeset/base/294803

Log:
  MFV r294802: 6334 Cannot unlink files when over quota
  
  Reviewed by: Matthew Ahrens <mahrens@delphix.com>
  Reviewed by: Toomas Soome <tsoome@me.com>
  Approved by: Dan McDonald <danmcd@omniti.com>
  Author: Simon Klinkert <simon.klinkert@gmail.com>
  
  illumos/illumos-gate@6575bca01367958c7237253d88e5fa9ef0b1650a

Modified:
  head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c
Directory Properties:
  head/sys/cddl/contrib/opensolaris/   (props changed)

Modified: head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c
==============================================================================
--- head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c	Tue Jan 26 12:47:33 2016	(r294802)
+++ head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c	Tue Jan 26 12:48:10 2016	(r294803)
@@ -2009,12 +2009,9 @@ top:
 	dmu_tx_hold_zap(tx, zfsvfs->z_unlinkedobj, FALSE, NULL);
 
 	/*
-	 * Mark this transaction as typically resulting in a net free of
-	 * space, unless object removal will be delayed indefinitely
-	 * (due to active holds on the vnode due to the file being open).
+	 * Mark this transaction as typically resulting in a net free of space
 	 */
-	if (may_delete_now)
-		dmu_tx_mark_netfree(tx);
+	dmu_tx_mark_netfree(tx);
 
 	error = dmu_tx_assign(tx, waited ? TXG_WAITED : TXG_NOWAIT);
 	if (error) {



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