-
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
panic: excl->share in zfs_clone_range when block_cloning is enabled #16789
Comments
As I can see, it is a lock recursion on a source of copy_file_range(). As I can see the first lock is taken by zfs_freebsd_copy_file_range(), calling zfs_clone_range(), while the second lock is taken by zn_flush_cached_data() called by zfs_clone_range(). Seems we need some reorganization there. The problem should happen only if mmap() and copy_file_range() are mixed on the same file. |
Yes, fsx does that. It mixes ordinary writes, mmap writes, and copy_file_range writes on the same file. |
It seems |
Previously vnode was not locked there, unlike Linux. It required locking it in vn_flush_cached_data(), which recursed on the lock if called from zfs_clone_range(), having the vnode locked. Signed-off-by: Alexander Motin <[email protected]> Sponsored by: iXsystems, Inc. Closes openzfs#16789
Linux locks copy_file_range() source as shared. FreeBSD was doing it also, but then was changed to exclusive, partially because KPI of that time was doing so, and partially seems out of caution. Considering zfs_clone_range() uses range locks on both source and destination, neither should require exclusive vnode locks. But one step at a time, just sync it with Linux for now. Signed-off-by: Alexander Motin <[email protected]> Sponsored by: iXsystems, Inc. Closes openzfs#16789
System information
Describe the problem you're observing
I can immediately reproduce a
panic: excl->share
on FreeBSD 15.0-CURRENT with witness enabled by using fsx to copy part of a file to another offset of the same file, withcopy_file_range
. Note thatzpool create
by default enables theblock_cloning
feature. If I disable that withzpool create -o feature@block_cloning=disabled
then I cannot reproduce the crash.Describe how to reproduce the problem
Include any warning/errors/backtraces from the system logs
Links
Downstream bug report: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=282878
The text was updated successfully, but these errors were encountered: