Hi, I am developing an instant snapshot backup solution for macOS using Endpoint Security. We have stumbled upon a Kernel Panic when using the fclonefileat API. Yes, this is a known bug (r.161340058). More specifically, the ..namedfork/rsrc construct is a longstanding part of the system, but it's not widely used and it allows the expression of operations that aren't entirely coherent (like cloning an object that isn't a file). Have you tested this on macOS 26.4? I believe the issue should now be fixed. Having said that: I expect that no userspace syscall should be able to cause a kernel panic. It looks like a bug in the APFS implementation and requires a fix on the XNU/kext side. ...this is a good example of one of my long-standing warnings, namely that us fixing kernel bugs doesn't mean your code will work. The panic above is actually fixed in the VFS layer by having fclonefileat fail, just like clonefile does when presented with the same scenario. As a more general comment, I'd suggest adding a che