Mark Eichin
Mark Eichin
(if it matters this is `Google Chrome 102.0.5005.115 (Official Build) (64-bit)` as I see I didn't include that in the initial post.)
`strace` confirms that the `ls` is getting an `EL2NSYNC`, but I don't find reference to that in the fuse sources, or really anywhere but fairly obscure places in the kernel....
Ah! Recalling that `errno` values are really just numbers... for `x86_64` linux, `EL2NSYNC` is 45. Looking at `extension/background.js`, though, ``` const unix = { ... ENOTSUP: 45, ... ``` so...
So there are two issues here. The easier one would be that the AppleDouble filtering matches some `sanitize`d paths, that probably just means tweaking `sanitize` a little. The trickier one...