reflinks are non-e2d safe

This commit is contained in:
ed 2025-09-27 19:29:36 +00:00
parent eb5d767b01
commit e3baf932f3

View file

@ -2726,7 +2726,11 @@ class AuthSrv(object):
if "dedup" in zv.flags: if "dedup" in zv.flags:
have_dedup = True have_dedup = True
if "e2d" not in zv.flags and "hardlink" not in zv.flags: if (
"e2d" not in zv.flags
and "hardlink" not in zv.flags
and "reflink" not in zv.flags
):
unsafe_dedup.append("/" + zv.vpath) unsafe_dedup.append("/" + zv.vpath)
t += "\n" t += "\n"