You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I absolutely need for my filesystem to set the direct_io boolean in the fuse_file_info struct to true because I stream data from internet and I can't know the size of the final file in advance.
According to fuse documentation, this structure should be a parameter of the (f)open callback function. But it's not the case in ocamlfuse ?
So how to enable "direct_io" in this case ? It's very important for me because otherwise I will have to fetch every entire file content before reading them making my network filesystem completely unusable
Thank you
The text was updated successfully, but these errors were encountered:
Hello, I absolutely need for my filesystem to set the direct_io boolean in the fuse_file_info struct to true because I stream data from internet and I can't know the size of the final file in advance.
According to fuse documentation, this structure should be a parameter of the (f)open callback function. But it's not the case in ocamlfuse ?
So how to enable "direct_io" in this case ? It's very important for me because otherwise I will have to fetch every entire file content before reading them making my network filesystem completely unusable
Thank you
The text was updated successfully, but these errors were encountered: