Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Jul 2016 11:36:22 +0000 (UTC)
From:      Andriy Gapon <avg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org
Subject:   svn commit: r302650 - vendor-sys/illumos/dist/uts/common/fs/zfs
Message-ID:  <201607121136.u6CBaM7J096857@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: avg
Date: Tue Jul 12 11:36:22 2016
New Revision: 302650
URL: https://svnweb.freebsd.org/changeset/base/302650

Log:
  6940 Cannot unlink directories when over quota
  
  illumos/illumos-gate@99189164df06057fb968ca7be701bb1a0d5da8c9
  https://github.com/illumos/illumos-gate/commit/99189164df06057fb968ca7be701bb1a0d5da8c9
  
  https://www.illumos.org/issues/6940
    Similar to #6334, but this time with empty directories:
    $ zfs create tank/quota
    $ zfs set quota=10M tank/quota
    $ zfs snapshot tank/quota@snap1
    $ zfs set mountpoint=/mnt/tank/quota tank/quota
    $ mkdir /mnt/tank/quota/dir # create an empty directory
    $ mkfile 11M /mnt/tank/quota/11M
    /mnt/tank/quota/11M: initialized 9830400 of 11534336 bytes: Disc quota exceeded
    $ rmdir /mnt/tank/quota/dir # now unlink the empty directory
    rmdir: directory "/mnt/tank/quota/dir": Disc quota exceeded
    From user perspective, I would expect that ZFS is always able to remove files
    and directories even when the quota is exceeded.
  
  Reviewed by: Dan McDonald <danmcd@omniti.com>
  Reviewed by: Matthew Ahrens <mahrens@delphix.com>
  Approved by: Robert Mustacchi <rm@joyent.com>
  Author: Simon Klinkert <simon.klinkert@gmail.com>

Modified:
  vendor-sys/illumos/dist/uts/common/fs/zfs/zfs_vnops.c

Modified: vendor-sys/illumos/dist/uts/common/fs/zfs/zfs_vnops.c
==============================================================================
--- vendor-sys/illumos/dist/uts/common/fs/zfs/zfs_vnops.c	Tue Jul 12 11:35:07 2016	(r302649)
+++ vendor-sys/illumos/dist/uts/common/fs/zfs/zfs_vnops.c	Tue Jul 12 11:36:22 2016	(r302650)
@@ -2112,6 +2112,7 @@ top:
 	dmu_tx_hold_zap(tx, zfsvfs->z_unlinkedobj, FALSE, NULL);
 	zfs_sa_upgrade_txholds(tx, zp);
 	zfs_sa_upgrade_txholds(tx, dzp);
+	dmu_tx_mark_netfree(tx);
 	error = dmu_tx_assign(tx, waited ? TXG_WAITED : TXG_NOWAIT);
 	if (error) {
 		rw_exit(&zp->z_parent_lock);



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