19:19:12 i can't recall if this is a known issue, but I have someone that's using an LX zone and whatever software he's running is using sendfilev and it's returning EINTR which I guess doesn't happen on Linux 19:19:20 (it's breaking that software because it's not expecting it) 19:28:55 https://man7.org/linux/man-pages/man2/sendfile.2.html does mention sendfile, but not sendfilev. So this sounds like the problem is because we emulate sendfile via sendfilev (and it can get EINTR)? 19:41:55 Hmm. FreeBSD man page mentions EINTR. 19:43:28 The linux man page doesn't list ENOSYS in its returns, but mentions it in the notes section, so clearly the man page is incomplete. 19:45:11 well, linux also does tell that the implementation may be different in other systems. .. 19:47:17 i guess it sends a bit, then stops and fails w/ EINTR