]> git.proxmox.com Git - mirror_zfs.git/commit - include/sys/zap_leaf.h
Fix ENOSPC in "Handle zap_add() failures in ..."
authorChunwei Chen <tuxoko@gmail.com>
Wed, 18 Apr 2018 21:19:50 +0000 (14:19 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 18 Apr 2018 21:19:50 +0000 (14:19 -0700)
commit599b8648133738b524ff4c58a72fc744b62fe142
tree2a1fff2f1f18d3043098eb9bf800ca2be85e7aff
parentb0ee5946aaee396c9c90b07f27504c39f6dec0ef
Fix ENOSPC in "Handle zap_add() failures in ..."

Commit cc63068 caused ENOSPC error when copy a large amount of files
between two directories. The reason is that the patch limits zap leaf
expansion to 2 retries, and return ENOSPC when failed.

The intent for limiting retries is to prevent pointlessly growing table
to max size when adding a block full of entries with same name in
different case in mixed mode. However, it turns out we cannot use any
limit on the retry. When we copy files from one directory in readdir
order, we are copying in hash order, one leaf block at a time. Which
means that if the leaf block in source directory has expanded 6 times,
and you copy those entries in that block, by the time you need to expand
the leaf in destination directory, you need to expand it 6 times in one
go. So any limit on the retry will result in error where it shouldn't.

Note that while we do use different salt for different directories, it
seems that the salt/hash function doesn't provide enough randomization
to the hash distance to prevent this from happening.

Since cc63068 has already been reverted. This patch adds it back and
removes the retry limit.

Also, as it turn out, failing on zap_add() has a serious side effect for
mzap_upgrade(). When upgrading from micro zap to fat zap, it will
call zap_add() to transfer entries one at a time. If it hit any error
halfway through, the remaining entries will be lost, causing those files
to become orphan. This patch add a VERIFY to catch it.

Reviewed-by: Sanjeev Bagewadi <sanjeev.bagewadi@gmail.com>
Reviewed-by: Richard Yao <ryao@gentoo.org>
Reviewed-by: Tony Hutter <hutter2@llnl.gov>
Reviewed-by: Albert Lee <trisk@forkgnu.org>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Signed-off-by: Chunwei Chen <david.chen@nutanix.com>
Closes #7401
Closes #7421
17 files changed:
configure.ac
include/sys/zap_leaf.h
module/zfs/zap.c
module/zfs/zap_leaf.c
module/zfs/zap_micro.c
module/zfs/zfs_dir.c
module/zfs/zfs_vnops.c
tests/runfiles/linux.run
tests/zfs-tests/tests/functional/Makefile.am
tests/zfs-tests/tests/functional/casenorm/Makefile.am
tests/zfs-tests/tests/functional/casenorm/mixed_create_failure.ksh [new file with mode: 0755]
tests/zfs-tests/tests/functional/cp_files/.gitignore [new file with mode: 0644]
tests/zfs-tests/tests/functional/cp_files/Makefile.am [new file with mode: 0644]
tests/zfs-tests/tests/functional/cp_files/cleanup.ksh [new file with mode: 0755]
tests/zfs-tests/tests/functional/cp_files/cp_files.c [new file with mode: 0644]
tests/zfs-tests/tests/functional/cp_files/cp_files_001_pos.ksh [new file with mode: 0755]
tests/zfs-tests/tests/functional/cp_files/setup.ksh [new file with mode: 0755]