-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With "casesensitivity=mixed" hitting an assert in ZAP code #7011
Comments
The basic problem is as below: With mixed mode the hash of the filename is computed after the name has been normalised (aka. converted to upper). Thus all the names would endup with the same hash value. And they would be placed in the same zap-leaf-block. Thus when the number of entries exceed the capacity of the leaf block, zap_leaf_split() is called. However, this does not help because, zap_leaf_split() tries to split the entries between the old and new leaf using the bits of the hash. If the bit is set, the entry is moved to new leaf else it is retained in the old leaf. However, since the hash value is exactly the same for all the entries, all the entries either move to new leaf or stay in the old leaf. Thus the split does not result in free space in the leaf. And this eventually results in the failure. Another variant of this bug is: Walking through the code : 822 int
823 fzap_add_cd(zap_name_t *zn,
824 uint64_t integer_size, uint64_t num_integers,
825 const void *val, uint32_t cd, void *tag, dmu_tx_t *tx)
826 {
.....
855 if (err == 0) {
856 zap_increment_num_entries(zap, 1, tx);
857 /* Return the cd for the newly added entry */
858 zn->zn_cd = zeh.zeh_cd;
859 } else if (err == EAGAIN) {
860 err = zap_expand_leaf(zn, l, tag, tx, &l);
861 zap = zn->zn_zap; /* zap_expand_leaf() may change zap */
862 if (err == 0) {
863 goto retry;
864 } else {
865 cmn_err(CE_WARN, "%d err = %d zn %p l %p\n", __LINE__, err, zn, l);
866 }
867 }
868
869 out:
870 if (zap != NULL) {
871 cmn_err(CE_WARN, "%d err = %d zn %p l %p\n", __LINE__, err, zn, l);
872 zap_put_leaf_maybe_grow_ptrtbl(zn, l, tag, tx);
873 } In the above code, zap_expand_leaf() failed with ENOSPC. It eventually fell Also, zfs_link_create() today does not expect zap_add() to fail. |
We need to mitigate the panic by handling the failure and ensure that zfs_link_create() fails gracefully and bails out. This would mean that the ZPL interfaces zfs_create(), zfs_mkdir(), zfs_rename(), zfs_symlink() and zfs_link() would need to handle the zfs_link_create() failure and undo the changes done. I am working on the fix. |
Thank you for the alert ! Is there is someplace that I can refer to where
the problems are mentioned or listed ?
This would be of great help !
Regards,
Sanjeev
…On Tue, Jan 9, 2018 at 10:38 PM, ptx0 ***@***.***> wrote:
jfyi there are many other unresolved issues with case sensitivity
including deadlocks and extreme CPU overhead (likely related to the
deadlocks) especially when sharing over Samba due to its *own* case
sensitivity handling and how they interact... it is not recommended for
use. the implementation is far too simplistic and "stupid".
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#7011 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AK9qqDHX5BP-jC8MVKiKGPY0536MpfhPks5tI50hgaJpZM4RSmpD>
.
|
@sanjeevbagewadi a good place to start would be to get the
|
Thank you Brian ! I will check this.
The lookup mode (sensitive/insensitive) is not configurable if the protocol
implementation is in user land.
So, I will need to get some additional work done before I can enable the
above tests.
Thank you for the alert though ! Because, I have been trying to figure out
if anyone is using the mixed mode and what/if any issues were seen.
Regards,
Sanjeev
…On Tue, Jan 9, 2018 at 11:55 PM, Brian Behlendorf ***@***.***> wrote:
@sanjeevbagewadi <https://github.com/sanjeevbagewadi> a good place to
start would be to get the casenorm test cases working in the ZFS Test
Suite. This is the last remaining upstream test group which hasn't been
updated for Linux. You'll need to uncomment then the
tests/runfile/linux.run.
# 'sensitive_none_lookup', 'sensitive_none_delete',
# 'sensitive_formd_lookup', 'sensitive_formd_delete',
# 'insensitive_none_lookup', 'insensitive_none_delete',
# 'insensitive_formd_lookup', 'insensitive_formd_delete',
# 'mixed_none_lookup', 'mixed_none_lookup_ci', 'mixed_none_delete',
# 'mixed_formd_lookup', 'mixed_formd_lookup_ci', 'mixed_formd_delete']
[tests/functional/casenorm]
tests = ['case_all_values', 'norm_all_values']
tags = ['functional', 'casenorm']
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#7011 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AK9qqIDxiaSXOkLrmBeDjH_-hGBboYlWks5tI68ygaJpZM4RSmpD>
.
|
@ptx0, Thank you very much for the pointers ! |
Is this panic exploitable via the remote file system interface, if the mixed mode is enabled on the ZFS volume backing the remote file system share? |
With "casesensitivity=mixed", zap_add() could fail when the number of files/directories with the same name (varying in case) exceed the capacity of the leaf node of a Fatzap. This results in a ASSERT() failure as zfs_link_create() does not expect zap_add() to fail. The fix is to handle these failures and rollback the transactions. Reviewed by: Matt Ahrens <[email protected]> Reviewed-by: Chunwei Chen <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Sanjeev Bagewadi <[email protected]> Closes openzfs#7011 Closes openzfs#7054
With "casesensitivity=mixed", zap_add() could fail when the number of files/directories with the same name (varying in case) exceed the capacity of the leaf node of a Fatzap. This results in a ASSERT() failure as zfs_link_create() does not expect zap_add() to fail. The fix is to handle these failures and rollback the transactions. Reviewed by: Matt Ahrens <[email protected]> Reviewed-by: Chunwei Chen <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Sanjeev Bagewadi <[email protected]> Closes openzfs#7011 Closes openzfs#7054
This is a squashed patchset for zfs-0.7.7. The individual commits are in the tonyhutter:zfs-0.7.7-hutter branch. I squashed the commits so that buildbot wouldn't have to run against each one, and because github/builbot seem to have a maximum limit of 30 commits they can test from a PR. - Linux 4.16 compat: get_disk_and_module() openzfs#7264 - Change checksum & IO delay ratelimit values openzfs#7252 - Increment zil_itx_needcopy_bytes properly openzfs#6988 openzfs#7176 - Fix some typos openzfs#7237 - Fix zpool(8) list example to match actual format openzfs#7244 - Add SMART self-test results to zpool status -c openzfs#7178 - Add scrub after resilver zed script openzfs#4662 openzfs#7086 - Fix free memory calculation on v3.14+ openzfs#7170 - Report duration and error in mmp_history entries openzfs#7190 - Do not initiate MMP writes while pool is suspended openzfs#7182 - Linux 4.16 compat: use correct *_dec_and_test() openzfs#7179 openzfs#7211 - Allow modprobe to fail when called within systemd openzfs#7174 - Add SMART attributes for SSD and NVMe openzfs#7183 openzfs#7193 - Correct count_uberblocks in mmp.kshlib openzfs#7191 - Fix config issues: frame size and headers openzfs#7169 - Clarify zinject(8) explanation of -e openzfs#7172 - OpenZFS 8857 - zio_remove_child() panic due to already destroyed parent zio openzfs#7168 - 'zfs receive' fails with "dataset is busy" openzfs#7129 openzfs#7154 - contrib/initramfs: add missing conf.d/zfs openzfs#7158 - mmp should use a fixed tag for spa_config locks openzfs#6530 openzfs#7155 - Handle zap_add() failures in mixed case mode openzfs#7011 openzfs#7054 - Fix zdb -ed on objset for exported pool openzfs#7099 openzfs#6464 - Fix zdb -E segfault openzfs#7099 - Fix zdb -R decompression openzfs#7099 openzfs#4984 - Fix racy assignment of zcb.zcb_haderrors openzfs#7099 - Fix zle_decompress out of bound access openzfs#7099 - Fix zdb -c traverse stop on damaged objset root openzfs#7099 - Linux 4.11 compat: avoid refcount_t name conflict openzfs#7148 - Linux 4.16 compat: inode_set_iversion() openzfs#7148 - OpenZFS 8966 - Source file zfs_acl.c, function zfs_aclset_common contains a use after end of the lifetime of a local variable openzfs#7141 - Remove deprecated zfs_arc_p_aggressive_disable openzfs#7135 - Fix default libdir for Debian/Ubuntu openzfs#7083 openzfs#7101 - Bug fix in qat_compress.c for vmalloc addr check openzfs#7125 - Fix systemd_ RPM macros usage on Debian-based distributions openzfs#7074 openzfs#7100 - Emit an error message before MMP suspends pool openzfs#7048 - ZTS: Fix create-o_ashift test case openzfs#6924 openzfs#6977 - Fix --with-systemd on Debian-based distributions (openzfs#6963) openzfs#6591 openzfs#6963 - Remove vn_rename and vn_remove dependency openzfs/spl#648 openzfs#6753 - Add support for "--enable-code-coverage" option openzfs#6670 - Make "-fno-inline" compile option more accessible openzfs#6605 - Add configure option to enable gcov analysis openzfs#6642 - Implement --enable-debuginfo to force debuginfo openzfs#2734 - Make --enable-debug fail when given bogus args openzfs#2734 Signed-off-by: Tony Hutter <[email protected]> Requires-spl: refs/pull/690/head
With "casesensitivity=mixed", zap_add() could fail when the number of files/directories with the same name (varying in case) exceed the capacity of the leaf node of a Fatzap. This results in a ASSERT() failure as zfs_link_create() does not expect zap_add() to fail. The fix is to handle these failures and rollback the transactions. Reviewed by: Matt Ahrens <[email protected]> Reviewed-by: Chunwei Chen <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Sanjeev Bagewadi <[email protected]> Closes openzfs#7011 Closes openzfs#7054
This is a squashed patchset for zfs-0.7.7. The individual commits are in the tonyhutter:zfs-0.7.7-hutter branch. I squashed the commits so that buildbot wouldn't have to run against each one, and because github/builbot seem to have a maximum limit of 30 commits they can test from a PR. - Fix MMP write frequency for large pools openzfs#7205 openzfs#7289 - Handle zio_resume and mmp => off openzfs#7286 - Fix zfs-kmod builds when using rpm >= 4.14 openzfs#7284 - zdb and inuse tests don't pass with real disks openzfs#6939 openzfs#7261 - Take user namespaces into account in policy checks openzfs#6800 openzfs#7270 - Detect long config lock acquisition in mmp openzfs#7212 - Linux 4.16 compat: get_disk_and_module() openzfs#7264 - Change checksum & IO delay ratelimit values openzfs#7252 - Increment zil_itx_needcopy_bytes properly openzfs#6988 openzfs#7176 - Fix some typos openzfs#7237 - Fix zpool(8) list example to match actual format openzfs#7244 - Add SMART self-test results to zpool status -c openzfs#7178 - Add scrub after resilver zed script openzfs#4662 openzfs#7086 - Fix free memory calculation on v3.14+ openzfs#7170 - Report duration and error in mmp_history entries openzfs#7190 - Do not initiate MMP writes while pool is suspended openzfs#7182 - Linux 4.16 compat: use correct *_dec_and_test() - Allow modprobe to fail when called within systemd openzfs#7174 - Add SMART attributes for SSD and NVMe openzfs#7183 openzfs#7193 - Correct count_uberblocks in mmp.kshlib openzfs#7191 - Fix config issues: frame size and headers openzfs#7169 - Clarify zinject(8) explanation of -e openzfs#7172 - OpenZFS 8857 - zio_remove_child() panic due to already destroyed parent zio openzfs#7168 - 'zfs receive' fails with "dataset is busy" openzfs#7129 openzfs#7154 - contrib/initramfs: add missing conf.d/zfs openzfs#7158 - mmp should use a fixed tag for spa_config locks openzfs#6530 openzfs#7155 - Handle zap_add() failures in mixed case mode openzfs#7011 openzfs#7054 - Fix zdb -ed on objset for exported pool openzfs#7099 openzfs#6464 - Fix zdb -E segfault openzfs#7099 - Fix zdb -R decompression openzfs#7099 openzfs#4984 - Fix racy assignment of zcb.zcb_haderrors openzfs#7099 - Fix zle_decompress out of bound access openzfs#7099 - Fix zdb -c traverse stop on damaged objset root openzfs#7099 - Linux 4.11 compat: avoid refcount_t name conflict openzfs#7148 - Linux 4.16 compat: inode_set_iversion() openzfs#7148 - OpenZFS 8966 - Source file zfs_acl.c, function zfs_aclset_common contains a use after end of the lifetime of a local variable openzfs#7141 - Remove deprecated zfs_arc_p_aggressive_disable openzfs#7135 - Fix default libdir for Debian/Ubuntu openzfs#7083 openzfs#7101 - Bug fix in qat_compress.c for vmalloc addr check openzfs#7125 - Fix systemd_ RPM macros usage on Debian-based distributions openzfs#7074 openzfs#7100 - Emit an error message before MMP suspends pool openzfs#7048 - ZTS: Fix create-o_ashift test case openzfs#6924 openzfs#6977 - Fix --with-systemd on Debian-based distributions (openzfs#6963) openzfs#6591 openzfs#6963 - Remove vn_rename and vn_remove dependency openzfs/spl#648 openzfs#6753 - Add support for "--enable-code-coverage" option openzfs#6670 - Make "-fno-inline" compile option more accessible openzfs#6605 - Add configure option to enable gcov analysis openzfs#6642 - Implement --enable-debuginfo to force debuginfo openzfs#2734 - Make --enable-debug fail when given bogus args openzfs#2734 Signed-off-by: Tony Hutter <[email protected]> Requires-spl: refs/pull/690/head
This is a squashed patchset for zfs-0.7.7. The individual commits are in the tonyhutter:zfs-0.7.7-hutter branch. I squashed the commits so that buildbot wouldn't have to run against each one, and because github/builbot seem to have a maximum limit of 30 commits they can test from a PR. - Fix MMP write frequency for large pools openzfs#7205 openzfs#7289 - Handle zio_resume and mmp => off openzfs#7286 - Fix zfs-kmod builds when using rpm >= 4.14 openzfs#7284 - zdb and inuse tests don't pass with real disks openzfs#6939 openzfs#7261 - Take user namespaces into account in policy checks openzfs#6800 openzfs#7270 - Detect long config lock acquisition in mmp openzfs#7212 - Linux 4.16 compat: get_disk_and_module() openzfs#7264 - Change checksum & IO delay ratelimit values openzfs#7252 - Increment zil_itx_needcopy_bytes properly openzfs#6988 openzfs#7176 - Fix some typos openzfs#7237 - Fix zpool(8) list example to match actual format openzfs#7244 - Add SMART self-test results to zpool status -c openzfs#7178 - Add scrub after resilver zed script openzfs#4662 openzfs#7086 - Fix free memory calculation on v3.14+ openzfs#7170 - Report duration and error in mmp_history entries openzfs#7190 - Do not initiate MMP writes while pool is suspended openzfs#7182 - Linux 4.16 compat: use correct *_dec_and_test() - Allow modprobe to fail when called within systemd openzfs#7174 - Add SMART attributes for SSD and NVMe openzfs#7183 openzfs#7193 - Correct count_uberblocks in mmp.kshlib openzfs#7191 - Fix config issues: frame size and headers openzfs#7169 - Clarify zinject(8) explanation of -e openzfs#7172 - OpenZFS 8857 - zio_remove_child() panic due to already destroyed parent zio openzfs#7168 - 'zfs receive' fails with "dataset is busy" openzfs#7129 openzfs#7154 - contrib/initramfs: add missing conf.d/zfs openzfs#7158 - mmp should use a fixed tag for spa_config locks openzfs#6530 openzfs#7155 - Handle zap_add() failures in mixed case mode openzfs#7011 openzfs#7054 - Fix zdb -ed on objset for exported pool openzfs#7099 openzfs#6464 - Fix zdb -E segfault openzfs#7099 - Fix zdb -R decompression openzfs#7099 openzfs#4984 - Fix racy assignment of zcb.zcb_haderrors openzfs#7099 - Fix zle_decompress out of bound access openzfs#7099 - Fix zdb -c traverse stop on damaged objset root openzfs#7099 - Linux 4.11 compat: avoid refcount_t name conflict openzfs#7148 - Linux 4.16 compat: inode_set_iversion() openzfs#7148 - OpenZFS 8966 - Source file zfs_acl.c, function zfs_aclset_common contains a use after end of the lifetime of a local variable openzfs#7141 - Remove deprecated zfs_arc_p_aggressive_disable openzfs#7135 - Fix default libdir for Debian/Ubuntu openzfs#7083 openzfs#7101 - Bug fix in qat_compress.c for vmalloc addr check openzfs#7125 - Fix systemd_ RPM macros usage on Debian-based distributions openzfs#7074 openzfs#7100 - Emit an error message before MMP suspends pool openzfs#7048 - ZTS: Fix create-o_ashift test case openzfs#6924 openzfs#6977 - Fix --with-systemd on Debian-based distributions (openzfs#6963) openzfs#6591 openzfs#6963 - Remove vn_rename and vn_remove dependency openzfs/spl#648 openzfs#6753 - Add support for "--enable-code-coverage" option openzfs#6670 - Make "-fno-inline" compile option more accessible openzfs#6605 - Add configure option to enable gcov analysis openzfs#6642 - Implement --enable-debuginfo to force debuginfo openzfs#2734 - Make --enable-debug fail when given bogus args openzfs#2734 Signed-off-by: Tony Hutter <[email protected]> Requires-spl: refs/pull/690/head
With "casesensitivity=mixed", zap_add() could fail when the number of files/directories with the same name (varying in case) exceed the capacity of the leaf node of a Fatzap. This results in a ASSERT() failure as zfs_link_create() does not expect zap_add() to fail. The fix is to handle these failures and rollback the transactions. Reviewed by: Matt Ahrens <[email protected]> Reviewed-by: Chunwei Chen <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Sanjeev Bagewadi <[email protected]> Closes openzfs#7011 Closes openzfs#7054
This is a squashed patchset for zfs-0.7.7. The individual commits are in the tonyhutter:zfs-0.7.7-hutter branch. I squashed the commits so that buildbot wouldn't have to run against each one, and because github/builbot seem to have a maximum limit of 30 commits they can test from a PR. - Fix MMP write frequency for large pools openzfs#7205 openzfs#7289 - Handle zio_resume and mmp => off openzfs#7286 - Fix zfs-kmod builds when using rpm >= 4.14 openzfs#7284 - zdb and inuse tests don't pass with real disks openzfs#6939 openzfs#7261 - Take user namespaces into account in policy checks openzfs#6800 openzfs#7270 - Detect long config lock acquisition in mmp openzfs#7212 - Linux 4.16 compat: get_disk_and_module() openzfs#7264 - Change checksum & IO delay ratelimit values openzfs#7252 - Increment zil_itx_needcopy_bytes properly openzfs#6988 openzfs#7176 - Fix some typos openzfs#7237 - Fix zpool(8) list example to match actual format openzfs#7244 - Add SMART self-test results to zpool status -c openzfs#7178 - Add scrub after resilver zed script openzfs#4662 openzfs#7086 - Fix free memory calculation on v3.14+ openzfs#7170 - Report duration and error in mmp_history entries openzfs#7190 - Do not initiate MMP writes while pool is suspended openzfs#7182 - Linux 4.16 compat: use correct *_dec_and_test() - Allow modprobe to fail when called within systemd openzfs#7174 - Add SMART attributes for SSD and NVMe openzfs#7183 openzfs#7193 - Correct count_uberblocks in mmp.kshlib openzfs#7191 - Fix config issues: frame size and headers openzfs#7169 - Clarify zinject(8) explanation of -e openzfs#7172 - OpenZFS 8857 - zio_remove_child() panic due to already destroyed parent zio openzfs#7168 - 'zfs receive' fails with "dataset is busy" openzfs#7129 openzfs#7154 - contrib/initramfs: add missing conf.d/zfs openzfs#7158 - mmp should use a fixed tag for spa_config locks openzfs#6530 openzfs#7155 - Handle zap_add() failures in mixed case mode openzfs#7011 openzfs#7054 - Fix zdb -ed on objset for exported pool openzfs#7099 openzfs#6464 - Fix zdb -E segfault openzfs#7099 - Fix zdb -R decompression openzfs#7099 openzfs#4984 - Fix racy assignment of zcb.zcb_haderrors openzfs#7099 - Fix zle_decompress out of bound access openzfs#7099 - Fix zdb -c traverse stop on damaged objset root openzfs#7099 - Linux 4.11 compat: avoid refcount_t name conflict openzfs#7148 - Linux 4.16 compat: inode_set_iversion() openzfs#7148 - OpenZFS 8966 - Source file zfs_acl.c, function zfs_aclset_common contains a use after end of the lifetime of a local variable openzfs#7141 - Remove deprecated zfs_arc_p_aggressive_disable openzfs#7135 - Fix default libdir for Debian/Ubuntu openzfs#7083 openzfs#7101 - Bug fix in qat_compress.c for vmalloc addr check openzfs#7125 - Fix systemd_ RPM macros usage on Debian-based distributions openzfs#7074 openzfs#7100 - Emit an error message before MMP suspends pool openzfs#7048 - ZTS: Fix create-o_ashift test case openzfs#6924 openzfs#6977 - Fix --with-systemd on Debian-based distributions (openzfs#6963) openzfs#6591 openzfs#6963 - Remove vn_rename and vn_remove dependency openzfs/spl#648 openzfs#6753 - Fix "--enable-code-coverage" debug build openzfs#6674 - Update codecov.yml openzfs#6669 - Add support for "--enable-code-coverage" option openzfs#6670 - Make "-fno-inline" compile option more accessible openzfs#6605 - Add configure option to enable gcov analysis openzfs#6642 - Implement --enable-debuginfo to force debuginfo openzfs#2734 - Make --enable-debug fail when given bogus args openzfs#2734 Signed-off-by: Tony Hutter <[email protected]> Requires-spl: refs/pull/690/head
With "casesensitivity=mixed", zap_add() could fail when the number of files/directories with the same name (varying in case) exceed the capacity of the leaf node of a Fatzap. This results in a ASSERT() failure as zfs_link_create() does not expect zap_add() to fail. The fix is to handle these failures and rollback the transactions. Reviewed by: Matt Ahrens <[email protected]> Reviewed-by: Chunwei Chen <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Sanjeev Bagewadi <[email protected]> Closes #7011 Closes #7054
System information
Describe the problem you're observing
With casesensitivity=mixed was running the following test :
root@NTNX-10-5-137-31-A-FSVM:/home/nutanix# cat names.py
#!/usr/bin/python
import itertools
s="abcdefghijklmnopqrstuvwxyz"
length = len(s)
names = map(''.join, itertools.product(*zip(s.upper(), s.lower())))
for name in names:
print name
root@NTNX-10-5-137-31-A-FSVM:/home/nutanix# ./names.py | while read file
And hit the following panic
-- snip --
[ 1.068019] VERIFY(!RW_LOCK_HELD(&l->l_rwlock)) failed
[ 1.068077] PANIC at zap.c:407:zap_leaf_evict_sync()
[ 1.068113] Showing stack for process 67625
[ 1.068116] CPU: 0 PID: 67625 Comm: touch Tainted: P OE 4.4.14-1.el6.nutanix.10272016.x86_64 #1
[ 1.068117] Hardware name: Nutanix AHV, BIOS seabios-1.7.5-11.el6 04/01/2014
[ 1.068122] 0000000000000000 ffff88015312b2a8 ffffffff81319ae3 0000000000000001
[ 1.068125] 0000000100480b8b ffff88015312b2f8 ffffffffa0b5a9c0 ffff88015312b2b8
[ 1.068127] ffffffffa09918c4 ffff88015312b458 ffffffffa0991aeb 0000000000000040
[ 1.068129] Call Trace:
[ 1.068136] [] dump_stack+0x67/0x94
[ 1.068146] [] spl_dumpstack+0x44/0x50 [spl]
[ 1.068150] [] spl_panic+0xcb/0xe0 [spl]
[ 1.068153] [] ? __sg_free_table+0x63/0x90
[ 1.068157] [] ? kmem_cache_free+0x1ee/0x210
[ 1.068160] [] ? spl_kmem_cache_free+0x117/0x140 [spl]
[ 1.068200] [] ? arc_hdr_destroy+0x17c/0x1d0 [zfs]
[ 1.068231] [] zap_leaf_evict_sync+0x57/0x60 [zfs]
[ 1.068248] [] dbuf_evict_user+0x45/0x70 [zfs]
[ 1.068265] [] dbuf_destroy+0x4f/0x330 [zfs]
[ 1.068282] [] dbuf_rele_and_unlock+0x221/0x3e0 [zfs]
[ 1.068313] [] ? zap_lockdir+0x7f/0xa0 [zfs]
[ 1.068344] [] ? zap_grow_ptrtbl+0x186/0x1a0 [zfs]
[ 1.068361] [] dbuf_rele+0x40/0x50 [zfs]
[ 1.068394] [] dmu_buf_rele+0xe/0x10 [zfs]
[ 1.068427] [] zap_put_leaf+0x3d/0x60 [zfs]
[ 1.068460] [] zap_put_leaf_maybe_grow_ptrtbl+0xc7/0x130 [zfs]
[ 1.068492] [] fzap_add_cd+0xd8/0x130 [zfs]
[ 1.068541] [] mzap_upgrade+0x194/0x210 [zfs]
[ 1.068593] [] zap_lockdir_impl+0x25a/0x370 [zfs]
[ 1.068628] [] zap_lockdir+0x7f/0xa0 [zfs]
[ 1.068664] [] zap_add+0x5b/0xa0 [zfs]
[ 1.068668] [] ? __raw_callee_save___pv_queued_spin_unlock+0x11/0x20
[ 1.068703] [] zfs_link_create+0x37f/0x520 [zfs]
[ 1.068761] [] zfs_create+0x62a/0x810 [zfs]
[ 1.068764] [] ? __kmalloc_node+0x1f6/0x2b0
[ 1.068798] [] zpl_create+0xb2/0x160 [zfs]
[ 1.068802] [] vfs_create+0xd4/0x100
[ 1.068804] [] ? lookup_real+0x1d/0x60
[ 1.068806] [] lookup_open+0x173/0x1a0
[ 1.068808] [] do_last+0x299/0x760
[ 1.068811] [] ? get_empty_filp+0xd7/0x1c0
[ 1.068813] [] path_openat+0x7c/0x140
[ 1.068832] [] ? __pte_alloc+0xe2/0x190
[ 1.068834] [] do_filp_open+0x85/0xe0
[ 1.068836] [] ? getname_flags+0xce/0x1f0
[ 1.068838] [] do_sys_open+0x11a/0x220
[ 1.068842] [] ? syscall_trace_enter_phase1+0x133/0x150
[ 1.068844] [] SyS_open+0x1e/0x20
[ 1.068850] [] entry_SYSCALL_64_fastpath+0x12/0x71
-- snip --
Describe how to reproduce the problem
The following are the steps:
Include any warning/errors/backtraces from the system logs
The text was updated successfully, but these errors were encountered: