mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
FreeBSD: try to fallback early if can't do optimized copy
Not complete, but already shaves on some locking. Reviewed-by: Alexander Motin <mav@FreeBSD.org> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Mateusz Guzik <mjguzik@gmail.com> Sponsored by: Rubicon Communications, LLC ("Netgate") Closes #14723
This commit is contained in:
parent
a7982d5d30
commit
ff0e135e25
@ -6235,6 +6235,7 @@ struct vop_copy_file_range_args {
|
|||||||
static int
|
static int
|
||||||
zfs_freebsd_copy_file_range(struct vop_copy_file_range_args *ap)
|
zfs_freebsd_copy_file_range(struct vop_copy_file_range_args *ap)
|
||||||
{
|
{
|
||||||
|
zfsvfs_t *outzfsvfs;
|
||||||
struct vnode *invp = ap->a_invp;
|
struct vnode *invp = ap->a_invp;
|
||||||
struct vnode *outvp = ap->a_outvp;
|
struct vnode *outvp = ap->a_outvp;
|
||||||
struct mount *mp;
|
struct mount *mp;
|
||||||
@ -6250,6 +6251,13 @@ zfs_freebsd_copy_file_range(struct vop_copy_file_range_args *ap)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
vn_start_write(outvp, &mp, V_WAIT);
|
vn_start_write(outvp, &mp, V_WAIT);
|
||||||
|
if (__predict_true(mp == outvp->v_mount)) {
|
||||||
|
outzfsvfs = (zfsvfs_t *)mp->mnt_data;
|
||||||
|
if (!spa_feature_is_enabled(dmu_objset_spa(outzfsvfs->z_os),
|
||||||
|
SPA_FEATURE_BLOCK_CLONING)) {
|
||||||
|
goto bad_write_fallback;
|
||||||
|
}
|
||||||
|
}
|
||||||
if (invp == outvp) {
|
if (invp == outvp) {
|
||||||
if (vn_lock(outvp, LK_EXCLUSIVE) != 0) {
|
if (vn_lock(outvp, LK_EXCLUSIVE) != 0) {
|
||||||
goto bad_write_fallback;
|
goto bad_write_fallback;
|
||||||
|
Loading…
Reference in New Issue
Block a user